:root {
  --ink: #0a2b50;
  --navy: #0d3a67;
  --navy-2: #124d82;
  --panel: rgba(18, 76, 128, .9);
  --panel-solid: #124d82;
  --cyan: #168cff;
  --cyan-soft: #7fc4ff;
  --blue: #245fff;
  --white: #f7fbff;
  --text: #d6e7f7;
  --muted: #95b7d2;
  --line: rgba(74, 157, 255, .3);
  --line-strong: rgba(74, 157, 255, .58);
  --shadow: 0 32px 90px rgba(1, 18, 42, .3);
  --shell: 1240px;
  --header: 82px;
  --heading: "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  --body: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--white); background: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none; background: radial-gradient(circle at 16% 10%, rgba(48, 156, 255, .24), transparent 34%), radial-gradient(circle at 88% 42%, rgba(36, 94, 255, .2), transparent 37%), radial-gradient(circle at 48% 88%, rgba(26, 119, 224, .16), transparent 38%), var(--ink); }
body::after { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .62; background: linear-gradient(118deg, transparent 0 27%, rgba(43, 147, 255, .06) 27.2% 27.35%, transparent 27.55% 72%, rgba(53, 103, 255, .05) 72.2% 72.35%, transparent 72.55%); }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); letter-spacing: -.045em; }
.shell { width: min(100%, var(--shell)); margin-inline: auto; padding-inline: 28px; }
.section { position: relative; padding: 8.5rem 0; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .8rem 1rem; color: var(--ink); background: var(--cyan); font-weight: 800; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header); border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(10, 43, 80, .97), rgba(18, 72, 124, .95), rgba(10, 43, 80, .97)); box-shadow: inset 0 -1px rgba(87, 171, 255, .08); transition: background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: linear-gradient(90deg, rgba(10, 43, 80, .99), rgba(20, 79, 138, .98), rgba(10, 43, 80, .99)); box-shadow: 0 18px 50px rgba(1, 18, 42, .26), 0 1px 22px rgba(24, 140, 255, .14); }
.nav { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; flex: 0 0 auto; }
.brand__mark { width: 52px; height: 52px; overflow: hidden; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; background: var(--navy); box-shadow: 0 0 28px rgba(24, 140, 255, .13); }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transform: scale(1.09); }
.brand__text { display: flex; flex-direction: column; }
.brand__text strong { font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; }
.brand__text small { margin-top: .24rem; color: var(--muted); font-size: .58rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.nav__menu { display: flex; align-items: center; gap: 1.65rem; }
.nav__menu ul { display: flex; gap: 1.65rem; margin: 0; padding: 0; list-style: none; }
.nav__menu a { color: var(--text); font-size: .76rem; font-weight: 650; letter-spacing: .06em; }
.nav__menu li a { position: relative; }
.nav__menu li a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.45rem; height: 1px; background: var(--cyan); transition: right .2s ease; }
.nav__menu li a:hover { color: var(--white); }
.nav__menu li a:hover::after { right: 0; }
.nav__parent { padding-left: 1.65rem; border-left: 1px solid var(--line); }
.nav__parent:hover { color: var(--cyan); }
.nav__toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-strong); border-radius: 4px; background: transparent; }
.nav__toggle span { display: block; width: 20px; height: 1px; margin: 5px auto; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

/* Shared controls */
.button { min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: .9rem 1.4rem; border: 1px solid transparent; border-radius: 3px; cursor: pointer; font-weight: 750; letter-spacing: .015em; transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: .65rem 1rem; font-size: .74rem !important; }
.button--signal { color: #071c33 !important; border-color: #9fd2ff; background: linear-gradient(100deg, #9fd2ff, var(--cyan)); box-shadow: 0 16px 36px rgba(24, 140, 255, .14); }
.button--signal:hover { box-shadow: 0 18px 44px rgba(24, 140, 255, .25); }
.button--ghost { color: var(--white); border-color: var(--line-strong); background: rgba(255, 255, 255, .02); }
.button--ghost:hover { border-color: var(--cyan); background: rgba(24, 140, 255, .06); }
.eyebrow { margin-bottom: 1.1rem; color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.text-link { display: inline-flex; gap: .7rem; color: var(--cyan-soft); font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

/* Hero */
.hero { position: relative; min-height: max(860px, 100svh); display: flex; align-items: center; overflow: hidden; isolation: isolate; padding: calc(var(--header) + 5.5rem) 0 8.5rem; background: #02070e; }
.hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: 1; height: 36%; pointer-events: none; background: linear-gradient(to bottom, transparent, rgba(10, 43, 80, .84) 75%, var(--ink)); }
.hero--datacenter::after { height: 52%; background: linear-gradient(to bottom, transparent, rgba(1, 6, 13, .44) 46%, rgba(1, 5, 11, .93) 84%, #02070e 100%); }
.hero-cinematic { position: absolute; inset: 0; z-index: 0; overflow: hidden; contain: paint; pointer-events: none; background: #02070e; }
.hero-cinematic__image { position: absolute; inset: -5%; opacity: 1; background: url("assets/datacenter-cinematic-v1.jpg") center 43% / cover no-repeat; transform: scale(1.075); }
.hero-cinematic__vignette { position: absolute; inset: 0; background: linear-gradient(rgba(1,8,17,.3),rgba(1,7,15,.38)), radial-gradient(ellipse 65% 74% at 50% 42%, rgba(2,10,20,.02) 0, rgba(1,6,13,.26) 48%, rgba(0,3,8,.82) 100%), linear-gradient(90deg, rgba(0,3,8,.54), transparent 25% 75%, rgba(0,3,8,.54)), linear-gradient(180deg, rgba(1,5,11,.26), transparent 30%, rgba(1,5,11,.78) 92%, #02070e); }
.hero--datacenter .hero__grid { z-index: 1; opacity: .1; }
.hero--datacenter .hero__grid::after,.hero--datacenter .hero__flare,.hero--datacenter .hero__orb,.hero--datacenter .hero__particles { display: none; }
.hero--datacenter .hero__horizon { opacity: .46; }
.hero--datacenter .hero__title { text-shadow: 0 8px 34px rgba(0,0,0,.7),0 2px 12px rgba(0,0,0,.6); }
.hero--datacenter .hero__lede { color: #e0edf8; text-shadow: 0 2px 18px rgba(0,0,0,.9); }
.hero__grid { position: absolute; inset: 0; opacity: .34; background-image: linear-gradient(rgba(24, 140, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 140, 255, .04) 1px, transparent 1px); background-size: clamp(54px, 6vw, 86px) clamp(54px, 6vw, 86px); -webkit-mask-image: radial-gradient(ellipse 75% 78% at 50% 38%, #000 15%, transparent 78%); mask-image: radial-gradient(ellipse 75% 78% at 50% 38%, #000 15%, transparent 78%); }
.hero__grid::after { content: ""; position: absolute; inset: -35%; opacity: .36; background: linear-gradient(112deg, transparent 47%, rgba(24, 140, 255, .22) 49.85%, transparent 50.2%); transform: translateX(0); }
.hero__orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__orb--one { width: min(78vw, 980px); height: min(78vw, 980px); right: -28%; top: -31%; border: 1px solid rgba(24, 140, 255, .08); box-shadow: inset 0 0 180px rgba(45, 102, 255, .055); }
.hero__orb--two { width: min(58vw, 720px); height: min(58vw, 720px); left: -26%; bottom: -35%; background: radial-gradient(circle, rgba(45, 102, 255, .09), transparent 68%); }
.hero__flare { position: absolute; left: 50%; top: 43%; z-index: 0; width: min(88vw, 1120px); aspect-ratio: 1; pointer-events: none; border-radius: 50%; background: radial-gradient(circle, rgba(24, 140, 255, .13) 0, rgba(45, 102, 255, .075) 18%, transparent 57%); filter: saturate(115%); transform: translate(-50%, -50%); }
.hero__flare::before,.hero__flare::after,.hero__flare i { content: ""; position: absolute; border: 1px solid rgba(24, 140, 255, .12); border-radius: 50%; }
.hero__flare::before { inset: 13%; border-style: dashed; animation: orbit 40s linear infinite; }
.hero__flare::after { inset: 27%; border-color: rgba(127, 196, 255, .28); box-shadow: 0 0 80px rgba(24, 140, 255, .1); animation: orbit 28s linear infinite reverse; }
.hero__flare i:nth-child(1) { inset: 5%; opacity: .45; }
.hero__flare i:nth-child(2) { inset: 20%; opacity: .6; }
.hero__flare i:nth-child(3) { inset: 35%; border-color: rgba(45, 102, 255, .2); box-shadow: inset 0 0 95px rgba(24, 140, 255, .06); }
.hero__horizon { position: absolute; left: 50%; top: 48%; z-index: 1; width: min(94vw, 1420px); height: 1px; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(24, 140, 255, .28) 24%, rgba(127, 196, 255, .92) 50%, rgba(24, 140, 255, .28) 76%, transparent); box-shadow: 0 0 30px rgba(24, 140, 255, .42); transform: translateX(-50%); }
.hero__horizon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 38%; height: 120px; background: radial-gradient(ellipse, rgba(24, 140, 255, .12), transparent 68%); transform: translate(-50%, -50%); }
.hero__particles { position: absolute; inset: var(--header) 0 0; z-index: 1; pointer-events: none; }
.hero__particles i { position: absolute; left: var(--x); top: var(--y); width: 3px; height: 3px; border-radius: 50%; opacity: .22; background: var(--cyan-soft); box-shadow: 0 0 12px var(--cyan); animation: particleFloat 5s var(--delay) ease-in-out infinite; }
.hero__layout { position: relative; z-index: 3; width: 100%; }
.hero__copy { width: min(100%, 1120px); min-width: 0; margin-inline: auto; text-align: center; }
.signal-chip { width: fit-content; display: flex; align-items: center; gap: .7rem; margin: 0 auto 2rem; padding: .58rem .8rem; border: 1px solid var(--line); border-radius: 999px; color: var(--text); background: rgba(3, 12, 23, .58); box-shadow: 0 0 35px rgba(24, 140, 255, .05); font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(12px); }
.signal-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(24, 140, 255, .65); animation: signalPulse 2s infinite; }
.hero__title { position: relative; max-width: 1120px; margin: 0 auto 1.8rem; font-size: clamp(4.2rem, 9.1vw, 8.7rem); line-height: .82; letter-spacing: -.075em; text-wrap: balance; }
.hero__title-line { display: flex; justify-content: center; flex-wrap: wrap; column-gap: .19em; }
.hero-word { position: relative; display: inline-block; overflow: visible; color: var(--white); white-space: nowrap; transform-origin: center; }
.hero-word--signal { color: var(--cyan); padding: .14em .045em .16em; margin: -.14em -.045em -.16em; background: linear-gradient(104deg, var(--cyan-soft), var(--cyan) 42%, #3d72ff 88%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 30px rgba(24, 140, 255, .09)); }
.hero-word__final { display: inline; white-space: nowrap; }
.hero-word__assembly { position: absolute; left: 50%; top: 0; display: block; overflow: visible; white-space: nowrap; transform: translateX(-50%); }
.hero-letter { display: inline-block; margin: 0; }
.hero-letter--space { width: auto; }
.hero.is-letterized .hero-word__final { opacity: 0; }
.hero.is-letterized .hero-letter { opacity: 0; filter: blur(5px); transform: translate3d(var(--letter-x),var(--letter-y),0) rotate(var(--letter-rotate)) scale(.84); transform-origin: center 70%; }
.hero.is-letterized .hero-word--signal { background: none; -webkit-text-fill-color: initial; filter: none; }
.hero.is-letterized .hero-word--signal .hero-word__assembly { padding: 0; margin: 0; }
.hero.is-letterized .hero-word--signal .hero-letter { color: var(--signal-color, var(--cyan)); background: none; -webkit-background-clip: initial; background-clip: initial; -webkit-text-fill-color: currentColor; }
.hero.is-assembled .hero-letter { animation: mechanicalLock .58s cubic-bezier(.16,.88,.26,1.18) both; animation-delay: var(--letter-delay); will-change: transform, opacity; }
.hero.is-assembly-complete .hero-word__assembly { pointer-events: none; }
.hero.is-assembly-complete .hero-letter { animation: none; opacity: 1; filter: none; transform: none; will-change: auto; }
.hero.is-letterized .hero__lede,.hero.is-letterized .hero__actions,.hero.is-letterized .hero__proof { opacity: 0; transform: translate3d(0,16px,0); }
.hero.is-assembled .hero__lede { animation: supportLock .55s ease both; animation-delay: var(--assembly-duration); }
.hero.is-assembled .hero__actions { animation: supportLock .55s ease both; animation-delay: calc(var(--assembly-duration) + .12s); }
.hero.is-assembled .hero__proof { animation: supportLock .55s ease both; animation-delay: calc(var(--assembly-duration) + .24s); }
.hero.is-assembled .hero__title::after { content: ""; position: absolute; left: 15%; right: 15%; bottom: -.75rem; height: 1px; opacity: 0; background: linear-gradient(90deg, transparent, var(--cyan-soft), transparent); box-shadow: 0 0 14px rgba(24, 140, 255, .65); animation: assemblyConfirm .8s ease both; animation-delay: calc(var(--assembly-duration) - .15s); transform-origin: center; }
.hero__lede { max-width: 760px; margin: 0 auto 2.2rem; color: var(--text); font-size: clamp(1.02rem, 1.55vw, 1.25rem); line-height: 1.8; text-wrap: balance; }
.hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .85rem; }
.hero__proof { width: min(100%, 900px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 3.5rem auto 0; padding: 1.2rem 0; border-block: 1px solid var(--line); list-style: none; background: linear-gradient(90deg, transparent, rgba(8, 28, 47, .42), transparent); }
.hero__proof li { padding: .3rem 1.35rem; border-right: 1px solid var(--line-strong); }
.hero__proof li:last-child { border-right: 0; }
.hero__proof strong, .hero__proof span { display: block; }
.hero__proof strong { font-size: .76rem; letter-spacing: .06em; }
.hero__proof span { margin-top: .35rem; color: var(--muted); font-size: .67rem; line-height: 1.45; }
.hero__scroll-cue { position: absolute; left: 50%; bottom: 1.7rem; z-index: 4; display: grid; justify-items: center; gap: .65rem; color: var(--muted); transform: translateX(-50%); }
.hero__scroll-cue span { font-size: .56rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll-cue i { width: 1px; height: 38px; overflow: hidden; background: rgba(24, 140, 255, .18); }
.hero__scroll-cue i::after { content: ""; display: block; width: 100%; height: 42%; background: var(--cyan); animation: scrollSignal 2.2s ease-in-out infinite; }

/* Audience */
.audience-strip { border-block: 1px solid var(--line); background: linear-gradient(90deg, rgba(10, 45, 84, .94), rgba(22, 83, 142, .84), rgba(10, 45, 84, .94)); box-shadow: inset 0 1px rgba(127, 196, 255, .09), inset 0 -1px rgba(24, 140, 255, .06); }
.audience-strip__inner { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.audience-strip p { margin: 0; color: var(--text); font-size: .86rem; font-weight: 700; }
.audience-strip ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.audience-strip li { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.audience-strip li::before { content: "•"; margin-right: 1.5rem; color: var(--cyan); }
.audience-strip li:first-child::before { display: none; }

/* Business impact */
.impact { overflow: hidden; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 15% 42%, rgba(24, 140, 255, .18), transparent 33%), radial-gradient(circle at 88% 16%, rgba(53, 102, 255, .12), transparent 28%), linear-gradient(145deg, #125287, #0a2b50 66%); }
.impact::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .26; background-image: linear-gradient(rgba(24, 140, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 140, 255, .04) 1px, transparent 1px); background-size: 80px 80px; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent); mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent); }
.impact .shell { position: relative; }
.impact__heading { max-width: 930px; }
.impact__heading > p:last-child { max-width: 820px; margin: 1.35rem 0 0; color: var(--text); font-size: 1.04rem; line-height: 1.8; }
.impact__layout { display: grid; grid-template-columns: minmax(390px, .78fr) minmax(560px, 1.22fr); align-items: center; gap: clamp(3rem, 6vw, 7rem); }
.impact-radar { position: relative; width: min(100%, 500px); aspect-ratio: 1; overflow: hidden; contain: layout paint; isolation: isolate; border: 1px solid var(--line-strong); border-radius: 50%; background: radial-gradient(circle, rgba(24, 140, 255, .18), transparent 62%), #104a7e; box-shadow: inset 0 0 90px rgba(24, 140, 255, .1), 0 0 55px rgba(24, 140, 255, .07); }
.impact-radar::before,.impact-radar::after { content: ""; position: absolute; z-index: 2; background: rgba(24, 140, 255, .15); pointer-events: none; }
.impact-radar::before { left: 4%; right: 4%; top: 50%; height: 1px; }
.impact-radar::after { top: 4%; bottom: 4%; left: 50%; width: 1px; }
.impact-radar__rings { position: absolute; inset: 4%; z-index: 1; border: 1px solid rgba(24, 140, 255, .13); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 54px, rgba(24, 140, 255, .13) 55px 56px); }
.impact-radar__sweep { position: absolute; inset: 3%; z-index: 3; border-radius: 50%; background: conic-gradient(from -20deg, transparent 0 315deg, rgba(24, 140, 255, .03) 325deg, rgba(24, 140, 255, .22) 350deg, rgba(127, 196, 255, .94) 359deg, transparent 360deg); animation: impactSweep 6.4s linear infinite; transform: rotate(0deg) translateZ(0); transform-origin: 50% 50%; will-change: transform; }
.impact-radar__readout { position: absolute; left: 50%; top: 50%; z-index: 5; width: 48%; min-width: 190px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 1.2rem; border: 1px solid var(--line-strong); border-radius: 50%; background: rgba(10, 43, 80, .94); text-align: center; transform: translate(-50%, -50%); }
.impact-radar__readout > span { color: var(--cyan); font-size: .58rem; font-weight: 850; letter-spacing: .16em; }
.impact-radar__readout strong { display: flex; align-items: baseline; gap: .4rem; margin: .55rem 0; color: var(--white); font-size: clamp(2.8rem, 5vw, 4.5rem); line-height: .9; letter-spacing: -.06em; }
.impact-radar__readout strong small { color: var(--cyan); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.impact-radar__readout p { margin: 0; color: var(--text); font-size: .68rem; line-height: 1.45; }
.impact-radar__readout a { margin-top: .7rem; color: var(--muted); font-size: .55rem; text-decoration: underline; text-underline-offset: 3px; }
.impact-radar__readout a:hover { color: var(--cyan); }
.impact-radar__blip { position: absolute; z-index: 4; width: 8px; height: 8px; border: 1px solid var(--cyan); border-radius: 50%; background: var(--ink); box-shadow: 0 0 12px var(--cyan); animation: radarBlipPulse 2.4s ease-out infinite; animation-play-state: paused; }
.impact-radar__blip--one { left: 22%; top: 30%; }
.impact-radar__blip--two { right: 18%; top: 42%; animation-delay: .8s; }
.impact-radar__blip--three { left: 34%; bottom: 17%; animation-delay: 1.6s; }
.impact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.impact-card { position: relative; min-height: 282px; display: flex; align-items: flex-start; flex-direction: column; overflow: visible; isolation: isolate; padding: 1.45rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(18, 71, 121, .82), rgba(8, 42, 79, .76)); transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease; }
.impact-card > :not(.impact-glass) { position: relative; z-index: 1; transition: opacity .42s ease, filter .48s ease, transform .48s cubic-bezier(.18,.86,.28,1); }
.impact-card.is-obscured:not(.is-revealed) > :not(.impact-glass) { opacity: .13; filter: blur(9px); transform: scale(.975); user-select: none; }
.impact-card > span { color: var(--muted); font-size: .57rem; font-weight: 850; letter-spacing: .16em; }
.impact-card > strong { margin: 1.15rem 0 .35rem; color: var(--cyan); font-size: clamp(2.5rem, 4vw, 3.65rem); line-height: .9; letter-spacing: -.05em; }
.impact-card h3 { margin: 0 0 .75rem; font-size: 1.25rem; }
.impact-card p { margin: 0 0 1rem; color: var(--text); font-size: .76rem; line-height: 1.65; }
.impact-card a { margin-top: auto; color: var(--muted); font-size: .59rem; text-decoration: underline; text-underline-offset: 3px; }
.impact-card a:hover { color: var(--cyan); }
.impact-card.is-active { z-index: 8; border-color: rgba(58, 165, 255, .9); background: linear-gradient(145deg, rgba(25, 102, 170, .94), rgba(10, 57, 105, .92)); box-shadow: 0 0 0 1px rgba(24, 140, 255, .22), 0 18px 45px rgba(1,18,42,.3), inset 0 0 48px rgba(42, 151, 255, .1); transform: translateY(-3px); }
.impact-card--always > strong { color: var(--white); }
.impact-glass { position: absolute !important; inset: -1px; z-index: 6 !important; display: grid; place-items: center; overflow: visible; pointer-events: none; color: var(--cyan) !important; }
.impact-glass::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(127, 196, 255, .28); background: linear-gradient(135deg, rgba(127,196,255,.1), transparent 34%, rgba(45,102,255,.1) 72%, transparent), rgba(5,18,31,.72); box-shadow: inset 0 0 42px rgba(24,140,255,.08); transition: opacity .28s ease, transform .42s ease; }
.impact-glass::after { content: ""; position: absolute; inset: 7%; opacity: 0; background: conic-gradient(from 18deg at 48% 52%, transparent 0 7deg, rgba(190,225,255,.88) 8deg 8.5deg, transparent 9deg 54deg, rgba(127,196,255,.78) 55deg 55.5deg, transparent 56deg 108deg, rgba(190,225,255,.72) 109deg 109.5deg, transparent 110deg 174deg, rgba(127,196,255,.8) 175deg 175.5deg, transparent 176deg 236deg, rgba(190,225,255,.78) 237deg 237.5deg, transparent 238deg 306deg, rgba(127,196,255,.78) 307deg 307.5deg, transparent 308deg); transform: scale(.15); transform-origin: 48% 52%; }
.impact-glass > span { position: relative; z-index: 2; padding: .48rem .62rem; border: 1px solid rgba(24,140,255,.28); background: rgba(10,43,80,.7); color: var(--cyan); font-size: .5rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; transition: opacity .16s ease, transform .2s ease; }
.impact-glass i { --tx: 0px; --ty: 0px; --rot: 0deg; position: absolute; left: 50%; top: 50%; z-index: 4; width: 46%; height: 46%; opacity: 0; border: 1px solid rgba(190,225,255,.56); background: linear-gradient(135deg, rgba(190,225,255,.24), rgba(24,140,255,.035) 55%, rgba(45,102,255,.16)); box-shadow: 0 0 18px rgba(24,140,255,.18); transform: translate(-50%,-50%) scale(.12); }
.impact-glass i:nth-of-type(1) { --tx: -126px; --ty: -92px; --rot: -28deg; clip-path: polygon(0 0,100% 12%,68% 100%,12% 78%); }
.impact-glass i:nth-of-type(2) { --tx: 118px; --ty: -104px; --rot: 34deg; clip-path: polygon(18% 0,100% 20%,82% 88%,0 100%); }
.impact-glass i:nth-of-type(3) { --tx: -148px; --ty: 22px; --rot: -52deg; clip-path: polygon(0 16%,74% 0,100% 72%,24% 100%); }
.impact-glass i:nth-of-type(4) { --tx: 148px; --ty: 18px; --rot: 46deg; clip-path: polygon(28% 0,100% 28%,72% 100%,0 64%); }
.impact-glass i:nth-of-type(5) { --tx: -104px; --ty: 112px; --rot: -38deg; clip-path: polygon(4% 0,88% 20%,100% 100%,20% 74%); }
.impact-glass i:nth-of-type(6) { --tx: 102px; --ty: 116px; --rot: 31deg; clip-path: polygon(20% 0,100% 8%,76% 100%,0 72%); }
.impact-glass i:nth-of-type(7) { --tx: -18px; --ty: -142px; --rot: 12deg; clip-path: polygon(8% 12%,88% 0,100% 84%,20% 100%); }
.impact-glass i:nth-of-type(8) { --tx: 16px; --ty: 144px; --rot: -14deg; clip-path: polygon(18% 0,100% 16%,82% 100%,0 72%); }
.impact-card.is-breaking .impact-glass::after { animation: glassCrack .42s ease-out both; }
.impact-card.is-breaking .impact-glass > span { opacity: 0; transform: scale(1.12); }
.impact-card.is-breaking .impact-glass i { animation: glassShardBurst .86s cubic-bezier(.18,.7,.18,1) both; }
.impact-card.is-breaking .impact-glass i:nth-of-type(2),.impact-card.is-breaking .impact-glass i:nth-of-type(5),.impact-card.is-breaking .impact-glass i:nth-of-type(8) { animation-delay: .035s; }
.impact-card.is-breaking .impact-glass i:nth-of-type(3),.impact-card.is-breaking .impact-glass i:nth-of-type(6) { animation-delay: .07s; }
.impact-card.is-revealed .impact-glass::before { opacity: 0; transform: scale(1.06); }
.impact-verdict { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 4.5rem; border: 1px solid var(--line); }
.impact-verdict p { min-height: 126px; display: flex; justify-content: center; flex-direction: column; gap: .5rem; margin: 0; padding: 1.4rem; border-right: 1px solid var(--line); color: var(--text); font-size: 1.02rem; line-height: 1.45; }
.impact-verdict p:last-child { border-right: 0; color: var(--white); background: rgba(24, 140, 255, .08); }
.impact-verdict span { color: var(--cyan); font-size: .58rem; font-weight: 850; letter-spacing: .16em; }
.impact-verdict strong { color: var(--white); font-size: 1.22rem; }
.impact-verdict p:last-child strong { color: var(--cyan); }
.impact__action { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 2rem; }
.impact__action small { max-width: 480px; color: var(--muted); font-size: .62rem; line-height: 1.55; text-align: right; }

/* Services */
.section-heading { max-width: 820px; margin-bottom: 4.5rem; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr); align-items: end; gap: 5rem; }
.section-heading h2, .studio-standard h2, .quote h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5vw, 5.1rem); line-height: 1; text-shadow: 0 12px 44px rgba(24, 140, 255, .1); }
.section-heading > p, .section-heading--split > p { margin: 1.2rem 0 0; color: var(--text); font-size: 1.02rem; line-height: 1.75; }
.section-heading--split > p { margin: 0; }
.services { overflow: hidden; background: radial-gradient(circle at 84% 18%, rgba(24, 140, 255, .22), transparent 32%), radial-gradient(circle at 10% 82%, rgba(37, 95, 235, .14), transparent 30%), linear-gradient(160deg, rgba(15, 62, 111, .84), rgba(10, 43, 80, .58) 58%, rgba(22, 74, 130, .72)); }
.services::before,.process::before,.quote::before { content: ""; position: absolute; left: 0; right: 0; top: 0; z-index: 2; height: 2px; pointer-events: none; background: linear-gradient(90deg, transparent 5%, rgba(127,196,255,.72) 28%, var(--cyan) 50%, rgba(36,95,255,.68) 72%, transparent 95%); box-shadow: 0 0 18px rgba(24,140,255,.36); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); box-shadow: 0 28px 80px rgba(1, 13, 31, .2); }
.service-card { position: relative; min-height: 390px; padding: 2.3rem; overflow: hidden; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, rgba(24, 88, 148, .76), rgba(9, 45, 84, .7)); transition: background .25s ease, transform .25s ease, box-shadow .25s ease; }
.service-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 2px; opacity: .7; background: linear-gradient(90deg, var(--cyan-soft), var(--cyan), transparent 76%); }
.service-card::after { content: ""; position: absolute; right: -18%; top: -25%; width: 52%; aspect-ratio: 1; pointer-events: none; border-radius: 50%; background: radial-gradient(circle, rgba(75, 154, 255, .16), transparent 70%); }
.service-card:nth-child(2n)::before { background: linear-gradient(90deg, #3d72ff, var(--blue), transparent 76%); }
.service-card:nth-child(3n)::after { background: radial-gradient(circle, rgba(61, 114, 255, .18), transparent 70%); }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { z-index: 2; background: linear-gradient(145deg, rgba(32, 113, 188, .9), rgba(12, 59, 109, .82)); box-shadow: 0 24px 55px rgba(1, 18, 42, .24), inset 0 0 42px rgba(24, 140, 255, .1); transform: translateY(-4px); }
.service-card__number { color: var(--cyan); font-size: .7rem; font-weight: 850; letter-spacing: .16em; }
.service-card__line { width: 52px; height: 1px; display: block; margin: 2.1rem 0 3.6rem; background: var(--line-strong); transition: width .25s ease; }
.service-card:hover .service-card__line { width: 96px; background: var(--cyan); }
.service-card h3 { margin-bottom: 1rem; font-size: clamp(1.75rem, 3vw, 2.6rem); }
.service-card p { max-width: 520px; color: var(--text); line-height: 1.7; }
.service-card ul { display: grid; gap: .55rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.service-card li { color: var(--muted); font-size: .78rem; }
.service-card li::before { content: "+"; margin-right: .7rem; color: var(--cyan); }

/* Process */
.process { overflow: hidden; background: radial-gradient(circle at 15% 76%, rgba(31, 145, 255, .2), transparent 31%), radial-gradient(circle at 88% 20%, rgba(42, 98, 255, .18), transparent 34%), linear-gradient(180deg, rgba(15, 60, 108, .72), rgba(10, 47, 89, .82)); }
.process .section-heading { max-width: 850px; }
.process-track { --process-ratio: 0; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.process-track::before,.process-track::after { display: none; }
.process-track li { position: relative; padding-right: 2rem; }
.process-track li:not(:last-child)::after { content: ""; position: absolute; left: 76px; right: 16px; top: 25px; z-index: 1; height: 10px; opacity: .72; background: var(--line); clip-path: polygon(0 45%, calc(100% - 10px) 45%, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, calc(100% - 10px) 55%, 0 55%); transition: opacity .55s ease, background .55s ease, filter .55s ease; }
.process-track li.is-sequence-complete:not(:last-child)::after { opacity: 1; background: linear-gradient(90deg, var(--cyan-soft), var(--cyan), #3d72ff); filter: drop-shadow(0 0 7px rgba(24, 140, 255, .5)); }
.process-track li > span { position: relative; z-index: 2; width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 2.1rem; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--cyan); background: var(--ink); font-size: .7rem; font-weight: 850; box-shadow: 0 0 0 8px var(--ink); transition: color .38s ease, border-color .38s ease, background .38s ease, box-shadow .38s ease, transform .38s cubic-bezier(.2,.85,.25,1.2); }
.process-track li > div { transition: opacity .55s ease, filter .55s ease, transform .55s cubic-bezier(.18,.86,.28,1); }
.process-track li.is-sequence-pending > div { opacity: .13; filter: blur(7px); transform: translate3d(0,12px,0) scale(.98); user-select: none; }
.process-track li.is-sequence-pending > span { color: var(--muted); border-color: var(--line); box-shadow: 0 0 0 8px var(--ink); }
.process-track li.is-sequence-complete > div { opacity: 1; filter: none; transform: none; }
.process-track li.is-sequence-complete > span { color: var(--cyan-soft); border-color: rgba(24, 140, 255, .72); background: radial-gradient(circle, rgba(24,140,255,.2), rgba(10,43,80,.94) 68%); box-shadow: 0 0 0 8px var(--ink), 0 0 20px rgba(24,140,255,.18); }
.process-track li.is-sequence-active > span { color: var(--ink); border-color: var(--cyan-soft); background: var(--cyan); box-shadow: 0 0 0 8px var(--ink), 0 0 0 9px rgba(24,140,255,.3), 0 0 30px rgba(24,140,255,.72); transform: scale(1.12); animation: processNodePulse .9s ease both; }
.process-track li.is-sequence-active > div { opacity: 1; filter: none; transform: translate3d(0,-3px,0) scale(1.012); }
.process-track small { color: var(--cyan); font-size: .6rem; font-weight: 850; letter-spacing: .16em; }
.process-track h3 { margin: .65rem 0 .8rem; font-size: 1.45rem; text-shadow: 0 8px 24px rgba(24, 140, 255, .09); }
.process-track p { margin: 0; color: var(--text); font-size: .86rem; line-height: 1.7; }

/* Studio standard */
.studio-standard { border-block: 1px solid var(--line); background: radial-gradient(circle at 12% 50%, rgba(24,140,255,.16), transparent 32%), linear-gradient(125deg, #155a94, #0a2b50 64%); }
.studio-standard__layout { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr); align-items: center; gap: 7rem; }
.standard-emblem { position: relative; width: min(100%, 390px); aspect-ratio: 1; display: grid; place-items: center; margin-inline: auto; border: 1px solid var(--line); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 45px, rgba(24, 140, 255, .06) 46px 47px), radial-gradient(circle, rgba(24, 140, 255, .07), transparent 70%); }
.standard-emblem::before, .standard-emblem::after { content: ""; position: absolute; background: var(--line); }
.standard-emblem::before { left: 4%; right: 4%; height: 1px; }
.standard-emblem::after { top: 4%; bottom: 4%; width: 1px; }
.standard-emblem img { position: relative; z-index: 2; width: 56%; border: 1px solid var(--line-strong); border-radius: 50%; box-shadow: 0 0 70px rgba(24, 140, 255, .2); transform: scale(1.09); }
.standard-emblem span { position: absolute; inset: 8%; border: 1px dashed rgba(24, 140, 255, .16); border-radius: 50%; animation: orbit 24s linear infinite; }
.studio-standard__copy p:not(.eyebrow) { max-width: 720px; margin: 1.4rem 0 0; color: var(--text); font-size: 1.02rem; line-height: 1.8; }
.standard-tags { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.standard-tags span { padding: .55rem .7rem; border: 1px solid var(--line); color: var(--cyan-soft); background: linear-gradient(135deg, rgba(24,140,255,.1), rgba(61,114,255,.035)); box-shadow: inset 2px 0 rgba(24,140,255,.36); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Quote */
.quote { background: radial-gradient(circle at 90% 10%, rgba(38, 94, 255, .27), transparent 38%), radial-gradient(circle at 12% 70%, rgba(24, 140, 255, .22), transparent 36%), linear-gradient(145deg, #104b7e, var(--ink) 54%, #155a94); }
.quote__layout { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(560px, 1.28fr); align-items: start; gap: 5rem; }
.quote__intro { position: sticky; top: calc(var(--header) + 2rem); }
.quote__intro > p:not(.eyebrow):not(.quote__direct) { margin: 1.3rem 0 2rem; color: var(--text); font-size: 1.02rem; line-height: 1.75; }
.response-card { padding: 1.5rem; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(17, 63, 108, .72), rgba(8, 31, 60, .7)); box-shadow: inset 3px 0 rgba(24, 140, 255, .24); }
.response-card > span, .brief-panel__top { color: var(--muted); font-size: .58rem; font-weight: 850; letter-spacing: .16em; }
.response-card ol { display: grid; gap: 1.2rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.response-card li { display: flex; gap: .9rem; }
.response-card li > i { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--cyan); font-size: .62rem; font-style: normal; }
.response-card p, .response-card small { display: block; margin: 0; }
.response-card strong { font-size: .8rem; }
.response-card small { margin-top: .25rem; color: var(--muted); line-height: 1.45; }
.quote__direct { margin-top: 1.4rem; color: var(--muted); font-size: .8rem; }
.quote__direct a { color: var(--cyan); }
.brief-panel { border: 1px solid var(--line-strong); border-radius: 18px 3px; background: linear-gradient(145deg, rgba(23, 85, 143, .96), rgba(9, 43, 82, .98)); box-shadow: var(--shadow), 0 0 65px rgba(24, 140, 255, .14); }
.brief-panel__top { display: flex; justify-content: space-between; padding: 1rem 1.3rem; border-bottom: 1px solid var(--line); }
.brief-panel__top span:last-child { color: var(--cyan); }
.project-form { display: grid; gap: 1.35rem; padding: 2rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.project-form label > span, .project-form legend { display: block; margin-bottom: .5rem; color: var(--text); font-size: .72rem; font-weight: 700; letter-spacing: .03em; }
.project-form b { color: var(--cyan); }
.project-form label > span small { float: right; color: var(--muted); font-size: .65rem; font-weight: 500; }
.project-form input:not([type="radio"]):not([type="checkbox"]), .project-form textarea, .project-form select { width: 100%; border: 1px solid var(--line); border-radius: 3px; color: var(--white); background: rgba(8, 44, 82, .9); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.project-form input, .project-form select { min-height: 48px; padding: .7rem .8rem; }
.project-form textarea { display: block; padding: .8rem; resize: vertical; line-height: 1.6; }
.project-form select { color-scheme: dark; }
.project-form input:focus, .project-form textarea:focus, .project-form select:focus { border-color: var(--cyan); outline: none; box-shadow: 0 0 0 3px rgba(24, 140, 255, .08); }
.project-form [aria-invalid="true"] { border-color: #ff788a !important; }
.project-form fieldset { margin: 0; padding: 0; border: 0; }
.project-form legend { margin-bottom: .7rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
.choice { position: relative; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice > span { min-height: 74px; display: flex !important; flex-direction: column; justify-content: center; margin: 0 !important; padding: .75rem .9rem; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(14, 62, 111, .94), rgba(8, 39, 75, .9)); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.choice strong, .choice small { display: block; }
.choice strong { color: var(--white); font-size: .78rem; }
.choice small { margin-top: .25rem; color: var(--muted); font-size: .64rem; font-weight: 500; }
.choice input:checked + span { border-color: var(--cyan); background: rgba(24, 140, 255, .09); box-shadow: inset 3px 0 var(--cyan); }
.choice input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.field-help { display: block; margin-top: .45rem; color: var(--muted); font-size: .64rem; }
.consent { display: flex; align-items: flex-start; gap: .7rem; cursor: pointer; }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: .08rem; accent-color: var(--cyan); }
.consent span { margin: 0 !important; line-height: 1.5; }
.button--submit { width: 100%; margin-top: .2rem; border: 0; }
.button--submit i { font-style: normal; font-size: 1.2rem; }
.form-footnote { margin: -.35rem 0 0; color: var(--muted); font-size: .64rem; text-align: center; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; }
.form-notice { margin: 1.5rem 2rem 0; padding: .9rem 1rem; border: 1px solid var(--line-strong); color: var(--white); background: rgba(24, 140, 255, .07); line-height: 1.5; }
.form-notice.is-error { border-color: rgba(255, 120, 138, .55); background: rgba(255, 120, 138, .08); }

/* Footer */
.footer { border-top: 1px solid var(--line); background: linear-gradient(145deg, #0b3762, #082744 52%, #104777); box-shadow: inset 0 1px rgba(127,196,255,.07); }
.footer__top { min-height: 150px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); }
.footer__top p { margin: 0; color: var(--muted); font-size: .82rem; text-align: right; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; padding-block: 3.5rem; }
.footer__links div { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer__links strong { margin-bottom: .35rem; color: var(--white); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer__links a, .footer__links span { color: var(--muted); font-size: .76rem; }
.footer__links a:hover { color: var(--cyan); }
.footer__bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--line); color: #7195b5; font-size: .65rem; }
.footer__developer-login { color: #7195b5; font-size: .65rem; letter-spacing: .04em; }
.footer__developer-login:hover { color: var(--cyan); }

/* Reveal and motion */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero__grid::after,.hero__flare::before,.hero__flare::after,.hero__particles i,.hero .signal-chip i,.hero__scroll-cue i::after,.standard-emblem span { animation-play-state: paused; }
.hero.is-motion-active .hero__grid::after,.hero.is-motion-active .hero__flare::before,.hero.is-motion-active .hero__flare::after,.hero.is-motion-active .hero__particles i,.hero.is-motion-active .signal-chip i,.hero.is-motion-active .hero__scroll-cue i::after,.studio-standard.is-motion-active .standard-emblem span,.impact.is-motion-active .impact-radar__blip { animation-play-state: running; }
@supports (content-visibility: auto) { .services,.process,.studio-standard,.quote { content-visibility: auto; contain-intrinsic-size: 900px; } }
@keyframes signalPulse { 0% { box-shadow: 0 0 0 0 rgba(24, 140, 255, .55); } 70% { box-shadow: 0 0 0 8px rgba(24, 140, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(24, 140, 255, 0); } }
@keyframes gridScan { from { transform: translateX(-12%); } to { transform: translateX(12%); } }
@keyframes orbit { to { transform: rotate(1turn); } }
@keyframes impactSweep { from { transform: rotate(0deg) translateZ(0); } to { transform: rotate(360deg) translateZ(0); } }
@keyframes particleFloat { 0%,100% { opacity: .18; transform: translate3d(0,0,0) scale(.75); } 50% { opacity: .7; transform: translate3d(0,-14px,0) scale(1.35); } }
@keyframes scrollSignal { 0% { opacity: 0; transform: translateY(-100%); } 35%,65% { opacity: 1; } 100% { opacity: 0; transform: translateY(240%); } }
@keyframes mechanicalLock {
  0% { opacity: 0; filter: blur(5px); transform: translate3d(var(--letter-x),var(--letter-y),0) rotate(var(--letter-rotate)) scale(.84); }
  62% { opacity: 1; filter: blur(0); transform: translate3d(0,-2px,0) rotate(0) scale(1.025); }
  78% { transform: translate3d(0,1px,0) rotate(0) scale(.995); }
  100% { opacity: 1; filter: blur(0); transform: translate3d(0,0,0) rotate(0) scale(1); }
}
@keyframes supportLock { from { opacity: 0; transform: translate3d(0,16px,0); } to { opacity: 1; transform: translate3d(0,0,0); } }
@keyframes assemblyConfirm { 0% { opacity: 0; transform: scaleX(0); } 45% { opacity: 1; transform: scaleX(1); } 100% { opacity: 0; transform: scaleX(.35); } }
@keyframes radarBlipPulse {
  0% { box-shadow: 0 0 0 0 rgba(24,140,255,.8),0 0 12px var(--cyan); transform: scale(.75); }
  55% { box-shadow: 0 0 0 15px rgba(24,140,255,0),0 0 20px var(--cyan); transform: scale(1.25); }
  100% { box-shadow: 0 0 0 20px rgba(24,140,255,0),0 0 8px rgba(24,140,255,.5); transform: scale(.8); }
}
@keyframes processNodePulse {
  0% { box-shadow: 0 0 0 8px var(--ink), 0 0 0 0 rgba(24,140,255,.58), 0 0 18px rgba(24,140,255,.22); }
  55% { box-shadow: 0 0 0 8px var(--ink), 0 0 0 17px rgba(24,140,255,0), 0 0 34px rgba(24,140,255,.78); }
  100% { box-shadow: 0 0 0 8px var(--ink), 0 0 0 9px rgba(24,140,255,.26), 0 0 26px rgba(24,140,255,.56); }
}
@keyframes glassCrack { 0% { opacity: 0; transform: scale(.12) rotate(-3deg); } 38% { opacity: 1; } 100% { opacity: 0; transform: scale(1.35) rotate(2deg); } }
@keyframes glassShardBurst {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.12) rotate(0); }
  20% { opacity: .94; }
  100% { opacity: 0; transform: translate(-50%,-50%) translate(var(--tx),var(--ty)) scale(.72) rotate(var(--rot)); }
}

@media (max-width: 1100px) {
  .nav__parent { display: none; }
  .hero { padding-top: calc(var(--header) + 4rem); }
  .impact__layout { grid-template-columns: 1fr; }
  .impact-radar { margin-inline: auto; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 3rem 1rem; }
  .process-track li:nth-child(2)::after { content: "↙"; left: 0; right: auto; top: auto; bottom: -2.65rem; width: 100%; height: 2rem; color: var(--line-strong); background: none; clip-path: none; font-family: var(--heading); font-size: 1.7rem; font-weight: 400; line-height: 1; text-align: center; }
  .process-track li:nth-child(2).is-sequence-complete::after { color: var(--cyan); background: none; text-shadow: 0 0 12px rgba(24, 140, 255, .55); }
  .studio-standard__layout { gap: 4rem; }
  .quote__layout { grid-template-columns: 1fr; }
  .quote__intro { position: static; max-width: 820px; }
}

@media (max-width: 800px) {
  :root { --header: 74px; }
  .shell { padding-inline: 20px; }
  .section { padding: 6rem 0; }
  .brand__mark { width: 46px; height: 46px; }
  .brand__text strong { font-size: .8rem; }
  .brand__text small { display: none; }
  .nav__toggle { display: block; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav__menu { position: fixed; inset: var(--header) 0 auto; display: grid; gap: 1.4rem; padding: 1.4rem 20px 1.6rem; border-bottom: 1px solid var(--line); background: rgba(10, 43, 80, .98); box-shadow: 0 22px 50px rgba(0,0,0,.36); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__menu ul { display: grid; gap: 1.15rem; }
  .nav__menu li a { display: block; font-size: .9rem; }
  .nav__menu .button { width: 100%; }
  .hero { min-height: max(760px, 100svh); padding-bottom: 7rem; }
  .hero-cinematic__image { inset: -3% -36%; background-position: center 40%; }
  .hero h1 { font-size: clamp(3.3rem, 14vw, 6rem); line-height: .86; }
  .hero__title-line { column-gap: .16em; }
  .hero__lede { max-width: 620px; }
  .hero__proof { grid-template-columns: 1fr; }
  .hero__proof li { padding: .75rem 1rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero__proof li:last-child { border-bottom: 0; }
  .audience-strip__inner { padding-block: 1.6rem; flex-direction: column; align-items: flex-start; }
  .audience-strip ul { justify-content: flex-start; gap: .7rem 1.2rem; }
  .audience-strip li::before { margin-right: 1.2rem; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { min-height: 240px; }
  .impact-card.is-impact-queued { border-color: rgba(24, 140, 255, .5); box-shadow: inset 0 0 34px rgba(24, 140, 255, .06); }
  .impact-glass::before { transition-duration: .65s, .75s; }
  .impact-glass > span { transition-duration: .3s, .35s; }
  .impact-card.is-breaking .impact-glass::after { animation-duration: .72s; }
  .impact-card.is-breaking .impact-glass i { animation-duration: 1.35s; }
  .impact-verdict { grid-template-columns: 1fr; }
  .impact-verdict p { min-height: 106px; border-right: 0; border-bottom: 1px solid var(--line); }
  .impact-verdict p:last-child { border-bottom: 0; }
  .impact__action { align-items: flex-start; flex-direction: column; }
  .impact__action small { text-align: left; }
  .section-heading--split { grid-template-columns: 1fr; gap: 1.4rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; padding: 1.6rem; }
  .service-card__line { margin-bottom: 2.6rem; }
  .process-track { grid-template-columns: 1fr; gap: 2rem; }
  .process-track li { display: grid; grid-template-columns: 58px 1fr; gap: 1rem; padding: 0; }
  .process-track li:not(:last-child)::after,.process-track li:nth-child(2)::after { content: ""; display: block; left: 21px; right: auto; top: 64px; bottom: -2rem; width: 10px; height: auto; color: inherit; background: var(--line); clip-path: polygon(45% 0, 55% 0, 55% calc(100% - 10px), 100% calc(100% - 10px), 50% 100%, 0 calc(100% - 10px), 45% calc(100% - 10px)); text-shadow: none; }
  .process-track li.is-sequence-complete:not(:last-child)::after,.process-track li:nth-child(2).is-sequence-complete::after { background: linear-gradient(180deg, var(--cyan-soft), var(--cyan), #3d72ff); }
  .process-track li > span { width: 52px; height: 52px; margin: 0; transition-duration: .65s; }
  .process-track li > div { transition-duration: .85s; }
  .process-track li.is-sequence-active > span { animation-duration: 1.35s; }
  .studio-standard__layout { grid-template-columns: 1fr; }
  .standard-emblem { width: min(86vw, 360px); }
  .form-row, .choice-grid { grid-template-columns: 1fr; }
  .project-form { padding: 1.3rem; }
  .brief-panel__top span:last-child { display: none; }
  .footer__top { padding-block: 2rem; align-items: flex-start; flex-direction: column; }
  .footer__top p { text-align: left; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { padding-block: 1.4rem; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .signal-chip { max-width: 100%; font-size: .56rem; letter-spacing: .1em; }
  .hero { padding-top: calc(var(--header) + 3.5rem); }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__scroll-cue span { display: none; }
  .impact-radar__readout { min-width: 170px; padding: 1rem; }
  .impact-radar__readout p { font-size: .61rem; }
  .section-heading h2, .studio-standard h2, .quote h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .footer__links { grid-template-columns: 1fr; }
}

@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; }
  .hero-word { opacity: 1 !important; filter: none !important; transform: none !important; }
  .hero-cinematic__image { opacity: 1; transform: scale(1.075); }
}
