:root {
  --ink: #05070a;
  --ink-soft: #0b1016;
  --panel: #101720;
  --paper: #f3f6f9;
  --white: #ffffff;
  --blue: #0877d1;
  --blue-bright: #1599ff;
  --blue-deep: #034f91;
  --muted: #9aa7b5;
  --line: rgba(255, 255, 255, 0.13);
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--white); background: var(--blue); }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -80px; padding: 10px 16px; color: #000; background: #fff; transition: top .2s; }
.skip-link:focus { top: 16px; }

.scroll-progress { position: fixed; z-index: 100; inset: 0 0 auto; height: 3px; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); }

.site-header { position: absolute; z-index: 50; width: 100%; border-bottom: 1px solid rgba(255,255,255,.11); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { position: relative; width: 46px; height: 46px; overflow: hidden; border-radius: 8px; background: #fff; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.7); }
.brand-name { font-size: 1rem; font-weight: 800; line-height: 1; letter-spacing: .08em; }
.brand-name small { display: block; margin-top: 7px; color: var(--blue-bright); font-size: .61rem; font-weight: 700; letter-spacing: .42em; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: .84rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.site-nav > a:not(.nav-cta) { color: #c9d0d8; transition: color .2s; }
.site-nav > a:not(.nav-cta):hover { color: #fff; }
.nav-cta { padding: 11px 17px; border: 1px solid var(--blue-bright); border-radius: 4px; transition: background .2s, color .2s; }
.nav-cta:hover { color: #001221; background: var(--blue-bright); }
.menu-button { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); background: transparent; }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero { position: relative; min-height: 850px; padding: 160px 0 0; overflow: hidden; background: radial-gradient(circle at 80% 33%, #102537 0, #070b10 25%, #040608 61%); }
.hero-grid, .final-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, #000, transparent 75%); }
.hero-glow { position: absolute; width: 520px; height: 520px; right: 8%; top: 22%; border: 1px solid rgba(21,153,255,.15); border-radius: 50%; box-shadow: 0 0 140px rgba(8,119,209,.13), inset 0 0 100px rgba(8,119,209,.08); }
.hero-layout { position: relative; display: grid; grid-template-columns: minmax(0, 940px); align-items: center; min-height: 610px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-index { color: var(--blue-bright); font-size: .77rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 42px; height: 2px; background: var(--blue-bright); }
.hero h1, .display-text, .section-heading h2, .consulting h2, .plans h2, .results h2, .about h2, .final-cta h2 { margin: 0; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; font-weight: 400; line-height: .93; letter-spacing: .01em; text-transform: uppercase; }
.hero h1 { margin-top: 25px; max-width: 940px; font-size: clamp(4.2rem, 7.3vw, 7.2rem); }
.hero h1 em, .final-cta h2 em { display: inline; color: var(--blue-bright); font-style: normal; }
.hero-lead { max-width: 670px; margin: 28px 0 0; color: #b7c2cd; font-size: 1.14rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 13px 20px; border: 1px solid transparent; border-radius: 4px; font-size: .86rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 10px 34px rgba(8,119,209,.22); }
.button-primary:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.24); }
.button-ghost:hover { border-color: #fff; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 40px; }
.hero-tags span { padding: 7px 10px; color: #8d9aa8; border: 1px solid var(--line); border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.marquee { position: relative; z-index: 3; width: 100%; margin-top: 70px; overflow: hidden; color: #001221; background: var(--blue-bright); transform: rotate(-1.5deg) scale(1.03); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 13px 0; animation: marquee 27s linear infinite; font-family: Impact, sans-serif; font-size: 1.05rem; letter-spacing: .11em; }
.marquee i { width: 7px; height: 7px; background: currentColor; transform: rotate(45deg); }

.section { padding: 125px 0; }
.statement { color: #101820; background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 190px 1fr; gap: 40px; }
.display-text { font-size: clamp(3.2rem, 6.2vw, 6.6rem); }
.display-text span, .about h2 span { color: var(--blue); }
.statement-body { max-width: 820px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 52px; margin: 55px 0 0 auto; color: #495561; font-size: 1.02rem; }
.statement-body p { margin: 0; }

.process { position: relative; background: #070b0f; }
.section-heading { display: grid; grid-template-columns: 190px 1fr; gap: 40px; align-items: end; }
.section-heading h2, .consulting h2, .results h2, .about h2 { font-size: clamp(3.5rem, 6vw, 6.2rem); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--line); }
.step-card { min-height: 330px; padding: 28px 24px 30px 0; border-right: 1px solid var(--line); }
.step-card + .step-card { padding-left: 24px; }
.step-card:last-child { border-right: 0; }
.step-number { color: var(--blue-bright); font-family: Impact, sans-serif; font-size: 2.2rem; }
.step-line { width: 40px; height: 2px; margin: 35px 0 42px; background: var(--blue); transition: width .45s; }
.step-card:hover .step-line { width: 82px; }
.step-card h3, .deliverable h3 { margin: 0 0 10px; font-size: 1.17rem; text-transform: uppercase; letter-spacing: .04em; }
.step-card p, .deliverable p { margin: 0; color: var(--muted); font-size: .93rem; }

.consulting { background: linear-gradient(125deg, #073c6b, #076bb3 48%, #0886db); }
.consulting-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 105px; align-items: start; }
.consulting .section-index { color: #bce1ff; }
.consulting h2 { margin-top: 22px; }
.consulting h2 span { color: #001d34; }
.consulting-copy > p { max-width: 490px; margin: 29px 0; color: #d5ebfa; }
.text-link { display: inline-flex; gap: 20px; align-items: center; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.7); font-size: .86rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.deliverables { border-top: 1px solid rgba(255,255,255,.25); }
.deliverable { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
.deliverable b { color: #00233d; font-family: Impact, sans-serif; font-size: 1.55rem; }
.deliverable h3 { margin-bottom: 5px; }
.deliverable p { color: #d4eafa; }

.plans { background: #05070a; }
.plans-heading { grid-template-columns: 190px 1fr 350px; }
.plans-heading p { margin: 0; color: var(--muted); }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 78px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column; min-height: 640px; padding: 31px; background: #0b1118; border: 1px solid var(--line); border-radius: 6px; }
.plan-card.featured { background: linear-gradient(155deg, #0d2638, #07111a 66%); border-color: var(--blue-bright); box-shadow: 0 25px 80px rgba(5,101,170,.18); }
.recommended { position: absolute; right: 18px; top: 0; padding: 7px 11px; color: #00182a; background: var(--blue-bright); font-size: .63rem; font-weight: 900; letter-spacing: .12em; }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.plan-top span { font-size: .82rem; font-weight: 900; letter-spacing: .16em; }
.plan-top b { color: var(--blue-bright); font-size: .73rem; letter-spacing: .06em; text-transform: uppercase; }
.price { display: flex; align-items: baseline; margin: 28px 0 15px; line-height: 1; }
.price small { margin-right: 8px; color: var(--blue-bright); font-size: .8rem; font-weight: 800; }
.price strong { font-family: Impact, sans-serif; font-size: 3.5rem; font-weight: 400; letter-spacing: .02em; }
.price sup { font-size: 1.15rem; }
.plan-card > p { min-height: 75px; margin: 0; color: var(--muted); font-size: .9rem; }
.plan-card ul { display: grid; gap: 13px; margin: 23px 0 28px; padding: 21px 0 0; border-top: 1px solid var(--line); list-style: none; }
.plan-card li { position: relative; padding-left: 23px; color: #d4dbe2; font-size: .87rem; }
.plan-card li::before { content: '✓'; position: absolute; left: 0; color: var(--blue-bright); font-weight: 900; }
.plan-card .button { width: 100%; margin-top: auto; }
.button-plan { color: #fff; border-color: rgba(255,255,255,.25); }
.button-plan:hover { border-color: var(--blue-bright); }
.plan-note { margin: 24px 0 0; color: #788593; font-size: .76rem; text-align: center; }

.results { position: relative; overflow: hidden; background: linear-gradient(145deg, #07111a 0%, #04070b 58%, #071827 100%); }
.results-glow { position: absolute; width: 720px; height: 720px; right: -280px; top: 6%; border: 1px solid rgba(21,153,255,.11); border-radius: 50%; box-shadow: 0 0 180px rgba(8,119,209,.1), inset 0 0 140px rgba(8,119,209,.06); }
.results-heading { position: relative; z-index: 2; grid-template-columns: 190px 1fr 330px; }
.results-heading h2 span { color: var(--blue-bright); }
.results-heading > p { margin: 0; color: var(--muted); }
.result-list { position: relative; z-index: 2; display: grid; gap: 30px; margin-top: 78px; }
.result-story { display: grid; grid-template-columns: minmax(320px, .82fr) 1.18fr; overflow: hidden; background: rgba(11,17,24,.88); border: 1px solid var(--line); border-radius: 7px; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.result-story.reverse { grid-template-columns: 1.18fr minmax(320px, .82fr); }
.result-story.reverse .result-photo { grid-column: 2; }
.result-story.reverse .result-copy { grid-column: 1; grid-row: 1; }
.result-photo { position: relative; min-height: 590px; margin: 0; overflow: hidden; background: #020406; border-right: 1px solid var(--line); }
.result-story.reverse .result-photo { border-right: 0; border-left: 1px solid var(--line); }
.result-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 32%); pointer-events: none; }
.result-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.result-photo figcaption { position: absolute; z-index: 2; left: 25px; bottom: 21px; display: flex; align-items: center; gap: 12px; color: #d9e9f7; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.result-photo figcaption span { display: grid; width: 37px; height: 37px; place-items: center; color: #001221; background: var(--blue-bright); border-radius: 50%; font-family: Impact, sans-serif; font-size: 1rem; letter-spacing: 0; }
.result-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 5vw, 70px); }
.result-label { display: flex; align-items: center; gap: 12px; color: var(--blue-bright); font-size: .73rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.result-label::before { content: ''; width: 35px; height: 2px; background: currentColor; }
.result-copy blockquote { position: relative; margin: 34px 0 0; }
.result-copy blockquote::before { content: '“'; position: absolute; right: 0; top: -54px; color: rgba(21,153,255,.14); font-family: Georgia, serif; font-size: 8rem; line-height: 1; }
.result-copy blockquote p { position: relative; margin: 0; color: #ced7df; font-size: 1rem; line-height: 1.8; }
.result-copy blockquote p + p { margin-top: 17px; }
.result-author { display: grid; grid-template-columns: 58px 1fr; column-gap: 15px; align-items: center; margin-top: 34px; font-style: normal; }
.result-author::before { content: ''; grid-row: 1 / span 2; width: 58px; height: 2px; background: var(--blue-bright); }
.result-author strong { color: #fff; font-size: .94rem; letter-spacing: .1em; text-transform: uppercase; }
.result-author span { color: #71808d; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.about { color: #101820; background: var(--paper); }
.about-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.about-logo { aspect-ratio: 1/1; overflow: hidden; background: #fff; border: 1px solid #dce2e8; box-shadow: 0 30px 80px rgba(4,26,45,.11); }
.about-logo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.about-copy h2 { margin: 22px 0 34px; }
.about-copy p { max-width: 680px; color: #4f5d69; font-size: 1.03rem; }

.final-cta { position: relative; min-height: 590px; display: grid; place-items: center; overflow: hidden; text-align: center; background: radial-gradient(circle at center, #0d5f9f, #041a2d 52%, #03080d); }
.final-grid { opacity: .13; mask-image: radial-gradient(circle, #000, transparent 65%); }
.final-inner { position: relative; z-index: 2; padding-block: 100px; }
.final-inner > p { color: #a9c9df; font-size: .77rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.final-cta h2 { margin: 24px auto 40px; font-size: clamp(3.9rem, 8vw, 8.4rem); }
.button-light { color: #031728; background: #fff; }
.button-light:hover { color: #fff; background: var(--blue-bright); }

.site-footer { padding: 62px 0 30px; color: #8e9aa6; background: #020406; }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding-bottom: 45px; border-bottom: 1px solid var(--line); }
.footer-grid > p { font-size: .73rem; font-weight: 700; letter-spacing: .13em; text-align: center; text-transform: uppercase; }
.footer-grid > a:last-child { justify-self: end; font-size: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; font-size: .72rem; }
.mobile-contact { display: none; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .78s cubic-bezier(.22,1,.36,1), transform .78s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.steps .reveal:nth-child(2), .deliverables .reveal:nth-child(2), .plan-grid .reveal:nth-child(2) { transition-delay: .08s; }
.steps .reveal:nth-child(3), .deliverables .reveal:nth-child(3), .plan-grid .reveal:nth-child(3) { transition-delay: .16s; }
.steps .reveal:nth-child(4), .deliverables .reveal:nth-child(4) { transition-delay: .24s; }

@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1000px) {
  .hero { min-height: auto; padding-top: 140px; }
  .hero-layout { grid-template-columns: minmax(0, 900px); }
  .hero h1 { font-size: clamp(3.8rem, 8vw, 5.5rem); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(2) { border-right: 0; }
  .step-card:nth-child(n+3) { border-top: 1px solid var(--line); }
  .consulting-layout, .about-layout { gap: 55px; }
  .plans-heading { grid-template-columns: 150px 1fr; }
  .plans-heading p { grid-column: 2; margin-top: 22px; }
  .results-heading { grid-template-columns: 150px 1fr; }
  .results-heading > p { grid-column: 2; margin-top: 22px; }
  .result-story, .result-story.reverse { grid-template-columns: minmax(290px, .78fr) 1.22fr; }
  .result-story.reverse { grid-template-columns: 1.22fr minmax(290px, .78fr); }
  .result-photo { min-height: 620px; }
  .plan-grid { gap: 12px; }
  .plan-card { padding: 25px 20px; }
  .price strong { font-size: 2.9rem; }
}

@media (max-width: 760px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 32px, var(--max)); }
  .site-header { position: absolute; }
  .nav-wrap { height: 75px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: .85rem; }
  .menu-button { display: block; }
  .site-nav { position: absolute; inset: 75px 0 auto; display: none; align-items: stretch; gap: 0; padding: 8px 16px 18px; background: rgba(3,6,9,.98); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 14px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 8px; text-align: center; }

  .hero { padding-top: 119px; }
  .hero-layout { display: block; min-height: auto; }
  .hero-copy { width: 100%; }
  .hero h1 { margin-top: 18px; font-size: clamp(3.5rem, 16vw, 5.2rem); }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; min-height: 55px; }
  .hero-tags { margin-top: 28px; }
  .marquee { margin-top: 80px; }

  .section { padding: 84px 0; }
  .statement-grid, .section-heading, .consulting-layout, .about-layout { grid-template-columns: 1fr; gap: 26px; }
  .display-text, .section-heading h2, .consulting h2, .results h2, .about h2 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .statement-body { grid-template-columns: 1fr; gap: 20px; margin-top: 35px; }
  .steps { grid-template-columns: 1fr; margin-top: 45px; }
  .step-card, .step-card + .step-card { min-height: auto; padding: 27px 0 34px; border-right: 0; border-top: 1px solid var(--line); }
  .step-card:first-child { border-top: 0; }
  .step-line { margin: 19px 0 22px; }
  .consulting-layout { gap: 56px; }
  .plans-heading { grid-template-columns: 1fr; }
  .plans-heading p { grid-column: auto; }
  .results-heading { grid-template-columns: 1fr; }
  .results-heading > p { grid-column: auto; margin-top: 0; }
  .result-list { gap: 20px; margin-top: 46px; }
  .result-story, .result-story.reverse { display: flex; flex-direction: column; }
  .result-story.reverse .result-photo, .result-story.reverse .result-copy { grid-column: auto; grid-row: auto; }
  .result-photo, .result-story.reverse .result-photo { width: 100%; min-height: 0; aspect-ratio: 3/4; border: 0; border-bottom: 1px solid var(--line); }
  .result-copy { padding: 34px 24px 38px; }
  .result-copy blockquote { margin-top: 28px; }
  .result-copy blockquote::before { top: -42px; font-size: 6rem; }
  .result-copy blockquote p { font-size: .96rem; line-height: 1.75; }
  .plan-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 46px; }
  .plan-card { min-height: auto; padding: 28px 24px; }
  .plan-card > p { min-height: auto; }
  .price strong { font-size: 3.4rem; }
  .about-logo { order: 2; }
  .about-copy { order: 1; }
  .final-cta { min-height: 550px; }
  .final-cta h2 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .footer-grid { grid-template-columns: 1fr; justify-items: start; }
  .footer-grid > p { text-align: left; }
  .footer-grid > a:last-child { justify-self: start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .mobile-contact { position: fixed; z-index: 80; display: flex; align-items: center; justify-content: space-between; inset: auto 0 0; height: 68px; padding: 0 22px; color: #fff; background: var(--blue); font-size: .85rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; box-shadow: 0 -8px 25px rgba(0,0,0,.25); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
