:root {
  --ink: #06182d;
  --ink-2: #0b2b55;
  --blue: #2e8bff;
  --sky: #a9d6ff;
  --coral: #ff7a66;
  --paper: #f3f7fb;
  --white: #fff;
  --muted: #64758a;
  --line: #d8e3ed;
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
::selection { color: var(--ink); background: var(--coral); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img, svg { display: block; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 11px 16px; border-radius: 6px; transform: translateY(-150%); color: var(--ink); background: var(--white); font-size: 13px; font-weight: 700; transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }
.page-shell { width: var(--shell); margin-inline: auto; }

.scroll-progress { position: fixed; z-index: 200; top: 0; right: 0; left: 0; height: 2px; }
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--coral); }

.site-header { position: fixed; z-index: 100; top: 16px; right: 0; left: 0; display: flex; align-items: center; justify-content: space-between; width: min(1280px, calc(100vw - 40px)); height: 76px; margin-inline: auto; padding: 0 22px; border: 1px solid rgba(169,214,255,.17); border-radius: 13px; color: var(--white); background: rgba(6,24,45,.46); backdrop-filter: blur(18px); transition: height .25s ease, background .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { height: 64px; background: rgba(6,24,45,.93); box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 19px; letter-spacing: -.03em; }
.brand strong { color: var(--sky); font-weight: 600; }
.brand-mark { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linejoin: round; }
.brand-mark path:last-child { stroke: var(--coral); }
.site-nav { display: flex; align-items: center; gap: 29px; font-size: 12px; font-weight: 700; }
.site-nav > a:not(.nav-focus) { position: relative; color: rgba(255,255,255,.65); transition: color .2s ease; }
.site-nav > a:not(.nav-focus)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--coral); content: ""; transition: transform .2s ease; }
.site-nav > a:not(.nav-focus):hover { color: var(--white); }
.site-nav > a:not(.nav-focus):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-focus { display: inline-flex; align-items: center; gap: 16px; padding: 11px 14px; border: 1px solid rgba(169,214,255,.3); border-radius: 7px; }
.nav-focus span { color: var(--coral); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 850px; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(6,24,45,.99) 0%, rgba(6,24,45,.89) 38%, rgba(6,24,45,.16) 72%), linear-gradient(0deg, rgba(6,24,45,.9), transparent 40%); content: ""; }
.hero-media { position: absolute; inset: 0; transform: scale(1.035); transition: transform .2s ease-out; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.92) contrast(1.03); }
.hero-grid { position: absolute; z-index: 2; inset: 0; opacity: .085; background-image: linear-gradient(rgba(169,214,255,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(169,214,255,.4) 1px, transparent 1px); background-size: 78px 78px; mask-image: linear-gradient(90deg, #000, transparent 69%); }
.hero-light { position: absolute; z-index: 2; width: 360px; height: 360px; border-radius: 50%; transform: translate(-50%,-50%); opacity: 0; background: radial-gradient(circle, rgba(46,139,255,.18), transparent 68%); pointer-events: none; transition: opacity .25s ease; }
.hero:hover .hero-light { opacity: 1; }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr .76fr; align-items: center; min-height: 760px; padding-top: 112px; }
.hero-copy { max-width: 700px; }
.micro-label { display: flex; align-items: center; gap: 10px; margin: 0 0 31px; color: var(--sky); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.micro-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,122,102,.12); animation: atlasBlink 2.2s ease-in-out infinite; }
@keyframes atlasBlink { 50% { box-shadow: 0 0 0 10px rgba(255,122,102,0); } }
.hero h1 { margin: 0; font-family: var(--display); font-size: clamp(68px,7.4vw,110px); font-weight: 500; letter-spacing: -.068em; line-height: .85; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.4px var(--sky); }
.hero-lead { max-width: 610px; margin: 34px 0 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 35px; padding: 0 20px; border-radius: 8px; color: var(--ink); background: var(--coral); font-size: 13px; font-weight: 800; box-shadow: 0 16px 40px rgba(255,122,102,.22); transition: transform .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(255,122,102,.32); }
.button span { font-size: 18px; transition: transform .2s ease; }
.button:hover span { transform: translate(3px,3px); }
.hero-note { color: rgba(255,255,255,.45); font-family: var(--mono); font-size: 9px; line-height: 1.55; text-transform: uppercase; }

.architecture-status { position: absolute; right: 0; bottom: 130px; width: 300px; padding: 16px; border: 1px solid rgba(169,214,255,.27); border-radius: 11px; background: rgba(5,21,41,.7); box-shadow: 0 32px 85px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.status-top, .status-bottom { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.48); font-family: var(--mono); font-size: 8px; letter-spacing: .07em; }
.status-top > span:first-child { display: flex; align-items: center; gap: 8px; }
.status-top i { width: 5px; height: 5px; border-radius: 50%; background: #57d79a; box-shadow: 0 0 10px #57d79a; }
.status-map { position: relative; height: 250px; }
.status-map svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: rgba(169,214,255,.17); stroke-width: 1; }
.status-map .map-path { stroke: rgba(169,214,255,.35); stroke-dasharray: 7 7; animation: atlasDash 12s linear infinite; }
.status-map .path-b { stroke: rgba(255,122,102,.24); animation-direction: reverse; }
@keyframes atlasDash { to { stroke-dashoffset: -140; } }
.map-core { position: absolute; top: 50%; left: 50%; display: grid; width: 61px; height: 61px; border: 1px solid var(--coral); border-radius: 50%; transform: translate(-50%,-50%); color: var(--white); background: rgba(255,122,102,.08); box-shadow: 0 0 45px rgba(255,122,102,.16); font-family: var(--display); font-size: 17px; font-weight: 700; place-items: center; }
.map-node { position: absolute; display: grid; width: 43px; height: 27px; border: 1px solid rgba(169,214,255,.32); border-radius: 5px; color: var(--sky); background: rgba(46,139,255,.09); font-family: var(--mono); font-size: 7px; place-items: center; }
.node-a { top: 42px; left: 27px; }.node-b { top: 40px; right: 25px; }.node-c { right: 35px; bottom: 34px; }.node-d { bottom: 38px; left: 24px; }
.status-bottom { padding-top: 12px; border-top: 1px solid rgba(169,214,255,.15); }
.hero-foot { position: absolute; z-index: 3; right: 0; bottom: 31px; left: 0; display: flex; align-items: center; justify-content: space-between; padding-top: 21px; border-top: 1px solid rgba(169,214,255,.17); color: rgba(255,255,255,.46); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.hero-foot div { display: flex; gap: 25px; }
.hero-foot div span::before { margin-right: 8px; color: var(--coral); content: "/"; }

.light-section { background: var(--paper); }
.statement { padding: 125px 0 116px; }
.statement-grid { display: grid; grid-template-columns: .28fr 1fr; gap: 70px; }
.section-label, .eyebrow { margin: 0; color: var(--blue); font-family: var(--mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.section-label { display: flex; gap: 10px; padding-top: 12px; color: var(--muted); }
.section-label i { width: 7px; height: 7px; border: 2px solid var(--blue); transform: rotate(45deg); }
.statement h2, .section-head h2, .process h2, .approach h2, .closing h2 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -.05em; line-height: 1.02; }
.statement h2 { font-size: clamp(43px,5.2vw,74px); }
.statement h2 em { color: var(--blue); font-style: normal; }
.statement-grid > div > p { max-width: 650px; margin: 33px 0 0 auto; color: var(--muted); font-size: 16px; line-height: 1.8; }

.services { padding: 10px 0 140px; }
.section-head { display: grid; grid-template-columns: 1fr .42fr; align-items: end; gap: 80px; margin-bottom: 55px; }
.section-head .eyebrow { margin-bottom: 17px; }
.section-head h2, .process h2 { font-size: clamp(42px,4.5vw,64px); }
.section-head > p { margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.service-bento { display: grid; grid-template-columns: 1.16fr .84fr .84fr; gap: 14px; }
.service-card { position: relative; display: flex; min-height: 326px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.78); transform-style: preserve-3d; transition: border-color .25s ease, box-shadow .25s ease; }
.service-card:hover { border-color: rgba(46,139,255,.5); box-shadow: 0 25px 75px rgba(12,50,91,.11); }
.service-card--primary { grid-row: span 2; min-height: 600px; color: var(--white); border-color: var(--ink-2); background: var(--ink-2); }
.service-card--wide { grid-column: 2 / 4; min-height: 260px; }
.card-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.card-code { color: var(--blue); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.service-card--primary .card-code { color: var(--sky); }
.card-symbol { color: var(--coral); font-family: var(--mono); font-size: 19px; }
.service-card h3 { max-width: 430px; margin: 14px 0 13px; font-family: var(--display); font-size: 28px; font-weight: 600; letter-spacing: -.035em; line-height: 1.08; }
.service-card--primary h3 { font-size: clamp(35px,3.2vw,48px); }
.service-card p { max-width: 470px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.service-card--primary p { color: rgba(255,255,255,.62); font-size: 14px; }
.service-card ul { display: flex; z-index: 2; margin: 0; padding: 0; list-style: none; }
.service-card li { padding: 7px 11px; border: 1px solid rgba(169,214,255,.22); border-radius: 999px; color: var(--sky); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.service-card li + li { margin-left: -1px; }
.card-visual { position: relative; height: 250px; margin: 25px 0; perspective: 700px; }
.card-visual span { position: absolute; left: 50%; width: 230px; height: 100px; border: 1px solid rgba(169,214,255,.26); border-radius: 10px; transform: translateX(-50%) rotateX(62deg) rotateZ(-14deg); background: rgba(46,139,255,.08); box-shadow: 0 14px 35px rgba(0,0,0,.15); }
.card-visual span:nth-child(1) { top: 9px; }.card-visual span:nth-child(2) { top: 48px; }.card-visual span:nth-child(3) { top: 87px; }.card-visual span:nth-child(4) { top: 126px; }
.card-visual i { position: absolute; z-index: 2; top: 50%; left: 50%; width: 18px; height: 18px; border: 2px solid var(--coral); transform: translate(-50%,-50%) rotate(45deg); box-shadow: 0 0 30px var(--coral); animation: atlasCore 3s ease-in-out infinite; }
@keyframes atlasCore { 50% { transform: translate(-50%,-50%) rotate(135deg) scale(1.2); } }
.mini-flow { display: flex; align-items: center; margin-top: 24px; }
.mini-flow i { width: 12px; height: 12px; border: 2px solid var(--blue); border-radius: 3px; transform: rotate(45deg); }
.mini-flow i:last-child { border-color: var(--coral); }
.mini-flow span { position: relative; width: 50px; height: 1px; overflow: hidden; background: var(--line); }
.mini-flow span::after { position: absolute; width: 16px; height: 1px; background: var(--blue); content: ""; animation: atlasFlow 2s linear infinite; }
@keyframes atlasFlow { from { transform: translateX(-20px); } to { transform: translateX(55px); } }
.integration-rings { position: relative; width: 118px; height: 80px; margin-top: 18px; }
.integration-rings i { position: absolute; top: 50%; width: 54px; height: 54px; border: 1px solid rgba(46,139,255,.4); border-radius: 50%; transform: translateY(-50%); }
.integration-rings i:nth-child(1) { left: 0; }.integration-rings i:nth-child(2) { left: 31px; }.integration-rings i:nth-child(3) { left: 62px; border-color: rgba(255,122,102,.52); }
.integration-rings b { position: absolute; top: 50%; left: 55%; width: 7px; height: 7px; border-radius: 50%; transform: translate(-50%,-50%); background: var(--coral); box-shadow: 0 0 16px var(--coral); }
.version-track { display: flex; align-items: center; gap: 12px; width: min(100%,490px); margin-top: 26px; color: var(--muted); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.version-track i { position: relative; flex: 1; height: 1px; overflow: hidden; background: var(--line); }
.version-track i::after { position: absolute; width: 30%; height: 100%; background: var(--blue); content: ""; animation: atlasFlow 2.4s linear infinite; }

.capabilities { padding: 130px 0 145px; color: var(--white); background: var(--ink); }
.section-head--dark > p { color: rgba(255,255,255,.5); }
.capability-lab { display: grid; grid-template-columns: 265px 1fr; gap: 28px; }
.capability-tabs { display: grid; gap: 8px; }
.capability-tabs button { display: grid; min-height: 82px; padding: 16px 18px; border: 1px solid rgba(169,214,255,.14); border-radius: 8px; cursor: pointer; text-align: left; background: transparent; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.capability-tabs button:hover { transform: translateX(4px); border-color: rgba(169,214,255,.35); }
.capability-tabs button span { align-self: end; color: rgba(255,255,255,.7); font-family: var(--display); font-size: 17px; font-weight: 600; }
.capability-tabs button small { color: rgba(255,255,255,.38); font-size: 9px; }
.capability-tabs button[aria-selected="true"] { border-color: var(--blue); background: rgba(46,139,255,.12); box-shadow: inset 3px 0 0 var(--coral); }
.capability-tabs button[aria-selected="true"] span { color: var(--white); }
.capability-stage { display: grid; grid-template-columns: .76fr 1fr; min-height: 500px; overflow: hidden; border: 1px solid rgba(169,214,255,.2); border-radius: 15px; background: rgba(11,43,85,.42); box-shadow: 0 35px 100px rgba(0,0,0,.2); }
.capability-stage.is-changing > * { animation: atlasStage .42s cubic-bezier(.22,1,.36,1); }
@keyframes atlasStage { from { opacity: 0; transform: translateY(10px); } }
.stage-copy { padding: 48px 38px; }
.stage-index { color: var(--coral); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; }
.stage-copy h3 { margin: 60px 0 20px; font-family: var(--display); font-size: clamp(34px,3.4vw,49px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.stage-copy > p { color: rgba(255,255,255,.57); font-size: 13px; line-height: 1.75; }
.stage-copy ul { margin: 30px 0 0; padding: 0; list-style: none; }
.stage-copy li { padding: 10px 0; border-top: 1px solid rgba(169,214,255,.14); color: var(--sky); font-size: 10px; }
.stage-copy li::before { margin-right: 10px; color: var(--coral); content: "+"; }
.stage-visual { display: grid; padding: 38px; background: radial-gradient(circle at 65% 45%, rgba(46,139,255,.15), transparent 48%), rgba(5,21,41,.45); place-items: center; }
.visual-shell { width: min(100%,520px); padding: 14px; border: 1px solid rgba(169,214,255,.23); border-radius: 10px; background: rgba(243,247,251,.96); box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.visual-bar { display: flex; align-items: center; gap: 8px; height: 28px; }
.visual-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }
.visual-bar span { width: 85px; height: 5px; border-radius: 3px; background: #d3deea; }
.visual-bar b { width: 22px; height: 22px; margin-left: auto; border-radius: 50%; background: var(--ink-2); }
.visual-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 8px 0; }
.visual-metrics span { height: 62px; padding: 10px; border: 1px solid #d9e4ed; border-radius: 6px; background: var(--white); }
.visual-metrics i { display: block; width: 55%; height: 7px; border-radius: 3px; background: #cddae5; box-shadow: 0 18px 0 -1px var(--blue); }
.visual-chart { padding: 14px; border: 1px solid #d9e4ed; border-radius: 6px; background: var(--white); }
.visual-chart svg { width: 100%; height: 150px; }
.visual-chart path { fill: none; stroke: var(--blue); stroke-width: 4; vector-effect: non-scaling-stroke; }
.flow-board { display: flex; align-items: center; justify-content: center; min-height: 145px; padding: 20px 8px; }
.flow-board > span { display: grid; width: 74px; height: 62px; border: 1px solid #d7e2eb; border-radius: 7px; color: var(--ink-2); background: var(--white); font-family: var(--mono); font-size: 6px; place-content: center; text-align: center; }
.flow-board > span i { width: 7px; height: 7px; margin: 8px auto 0; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(46,139,255,.1); }
.flow-board > span:last-of-type i { background: var(--coral); box-shadow: 0 0 0 4px rgba(255,122,102,.1); }
.flow-board > em { position: relative; width: 42px; height: 1px; overflow: hidden; background: #ccd9e4; }
.flow-board > em::after { position: absolute; width: 14px; height: 1px; background: var(--blue); content: ""; animation: atlasFlow 1.7s linear infinite; }
.flow-log { display: grid; grid-template-columns: 8px 1fr; gap: 8px 10px; padding: 12px; border: 1px solid #d9e4ed; border-radius: 6px; background: var(--white); }
.flow-log i { width: 6px; height: 6px; margin-top: 1px; border-radius: 50%; background: #57b67b; }
.flow-log span { width: 70%; height: 7px; border-radius: 4px; background: #d7e1ea; }
.systems-map { position: relative; display: grid; grid-template-columns: 64px 1fr 76px 1fr 64px; align-items: center; min-height: 180px; padding: 20px; }
.systems-map span, .systems-map strong { display: grid; height: 48px; border: 1px solid #d6e2ec; border-radius: 8px; background: var(--white); font-family: var(--mono); font-size: 7px; place-items: center; }
.systems-map strong { height: 65px; border-color: var(--blue); color: var(--white); background: var(--ink-2); font-family: var(--display); font-size: 17px; }
.systems-map i { position: relative; height: 1px; overflow: hidden; background: #cddae5; }
.systems-map i::after { position: absolute; width: 18px; height: 1px; background: var(--coral); content: ""; animation: atlasFlow 1.9s linear infinite; }
.systems-map em { position: absolute; bottom: 12px; left: 50%; width: 1px; height: 50px; background: #cddae5; }
.systems-map span:last-child { position: absolute; bottom: -15px; left: 50%; width: 64px; transform: translateX(-50%); }
.system-pulses { display: flex; gap: 5px; padding: 15px; border: 1px solid #d9e4ed; border-radius: 6px; background: var(--white); }
.system-pulses i { flex: 1; height: 7px; border-radius: 4px; background: #cfdce7; }
.system-pulses i:nth-child(2) { background: var(--blue); }.system-pulses i:nth-child(4) { background: var(--coral); }

.process { padding: 145px 0; }
.process-grid { display: grid; grid-template-columns: .85fr 1fr; align-items: center; gap: 100px; }
.process-image { position: relative; }
.process-image::before { position: absolute; z-index: 1; inset: 16px; border: 1px solid rgba(169,214,255,.27); border-radius: 13px; content: ""; pointer-events: none; }
.process-image img { width: 100%; aspect-ratio: .76; object-fit: cover; border-radius: 16px; box-shadow: 0 36px 90px rgba(5,36,70,.2); }
.image-caption { position: absolute; z-index: 2; right: -24px; bottom: 35px; max-width: 155px; padding: 15px 18px; border-radius: 7px; color: var(--white); background: var(--ink); font-family: var(--mono); font-size: 8px; line-height: 1.5; text-transform: uppercase; box-shadow: 0 18px 45px rgba(6,24,45,.2); }
.process .eyebrow { margin-bottom: 18px; }
.process-lead { max-width: 480px; margin: 25px 0 37px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.process-steps { margin: 0; padding: 0; list-style: none; }
.process-steps li { display: grid; grid-template-columns: 55px 1fr; gap: 16px; padding: 24px 0; border-top: 1px solid var(--line); }
.process-steps li:last-child { border-bottom: 1px solid var(--line); }
.process-steps > li > span { padding-top: 3px; color: var(--blue); font-family: var(--mono); font-size: 9px; }
.process-steps h3 { margin: 0; font-family: var(--display); font-size: 19px; font-weight: 600; }
.process-steps p { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.approach { padding: 0 0 130px; }
.approach-panel { position: relative; display: grid; grid-template-columns: 1fr .82fr; gap: 95px; padding: 70px; overflow: hidden; border-radius: 18px; color: var(--white); background: var(--ink-2); }
.approach-panel::after { position: absolute; top: -240px; right: -130px; width: 550px; height: 550px; border: 1px solid rgba(169,214,255,.13); border-radius: 50%; box-shadow: 0 0 0 62px rgba(169,214,255,.025), 0 0 0 124px rgba(169,214,255,.014); content: ""; }
.approach-panel > div, .approach-panel ul { position: relative; z-index: 1; }
.approach h2 { margin-top: 17px; font-size: clamp(42px,4.5vw,64px); }
.approach-panel > div > p:last-child { max-width: 530px; margin: 25px 0 0; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.8; }
.approach-panel ul { align-self: end; margin: 0; padding: 0; list-style: none; }
.approach-panel li { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid rgba(169,214,255,.17); font-family: var(--display); font-size: 17px; }
.approach-panel li:last-child { border-bottom: 1px solid rgba(169,214,255,.17); }
.approach-panel li span { color: var(--coral); font-family: var(--mono); font-size: 9px; }

.closing { position: relative; overflow: hidden; padding: 135px 0 0; color: var(--white); background: #041425; }
.closing::before { position: absolute; inset: 0; opacity: .07; background-image: linear-gradient(rgba(169,214,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(169,214,255,.5) 1px, transparent 1px); background-size: 78px 78px; content: ""; mask-image: radial-gradient(circle at center, #000, transparent 75%); }
.closing-orbit { position: absolute; top: 50%; right: -160px; width: 620px; height: 620px; transform: translateY(-50%); }
.closing-orbit i { position: absolute; inset: 0; border: 1px solid rgba(169,214,255,.12); border-radius: 50%; animation: atlasRotate 25s linear infinite; }
.closing-orbit i:nth-child(2) { inset: 90px; border-color: rgba(46,139,255,.16); animation-direction: reverse; }.closing-orbit i:nth-child(3) { inset: 180px; border-color: rgba(255,122,102,.22); }
.closing-orbit i::after { position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 18px var(--coral); content: ""; }
@keyframes atlasRotate { to { transform: rotate(360deg); } }
.closing-inner { position: relative; z-index: 1; min-height: 390px; }
.closing h2 { max-width: 950px; font-size: clamp(58px,7vw,100px); }
.closing h2 span { color: transparent; -webkit-text-stroke: 1.2px var(--sky); }
.closing-inner > p:last-child { max-width: 500px; margin: 27px 0 0; color: rgba(255,255,255,.5); font-size: 14px; }
.site-footer { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr .5fr auto; align-items: center; gap: 20px; padding: 28px 0 34px; border-top: 1px solid rgba(169,214,255,.15); }
.site-footer .brand { font-size: 16px; }.site-footer .brand-mark { width: 27px; height: 27px; }
.site-footer p, .site-footer > a:last-child { margin: 0; color: rgba(255,255,255,.42); font-size: 9px; }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s cubic-bezier(.22,1,.36,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  :root { --shell: min(100% - 40px, 940px); }
  .site-nav { gap: 20px; }.site-nav > a:not(.nav-focus) { display: none; }
  .hero-inner { grid-template-columns: 1fr; }.architecture-status { bottom: 125px; }
  .section-head { grid-template-columns: 1fr .45fr; gap: 40px; }
  .service-bento { grid-template-columns: 1fr 1fr; }.service-card--primary { grid-row: auto; min-height: 450px; }.service-card--wide { grid-column: auto; min-height: 326px; }.card-visual { height: 125px; }.card-visual span { width: 180px; height: 70px; }.card-visual span:nth-child(4) { top: 75px; }
  .capability-stage { grid-template-columns: .8fr 1fr; }.stage-copy { padding: 40px 30px; }.stage-visual { padding: 25px; }
  .process-grid { gap: 65px; }.approach-panel { gap: 55px; padding: 55px; }
}

@media (max-width: 780px) {
  :root { --shell: calc(100vw - 32px); }
  .site-header { top: 8px; width: calc(100vw - 24px); height: 64px; padding: 0 15px; }.site-header.is-scrolled { height: 60px; }.brand { font-size: 17px; }.brand-mark { width: 29px; height: 29px; }
  .menu-toggle { position: relative; z-index: 3; display: grid; width: 42px; height: 42px; padding: 0; border: 0; border-radius: 7px; background: rgba(169,214,255,.1); place-content: center; gap: 6px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 19px; height: 1px; background: var(--white); transition: transform .2s ease; }.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: -8px -12px auto; display: flex; min-height: 100vh; padding: 115px 28px 40px; flex-direction: column; align-items: stretch; gap: 0; transform: translateY(-102%); background: rgba(6,24,45,.985); transition: transform .35s cubic-bezier(.22,1,.36,1); }.site-nav.is-open { transform: translateY(0); }.site-nav > a:not(.nav-focus) { display: block; }.site-nav a { padding: 17px 0; border-bottom: 1px solid rgba(169,214,255,.13); font-family: var(--display); font-size: 25px; }.site-nav .nav-focus { justify-content: space-between; margin-top: 28px; padding: 15px; font-size: 17px; }
  .hero { min-height: 850px; }.hero::after { background: linear-gradient(180deg, rgba(6,24,45,.62), rgba(6,24,45,.94) 55%, var(--ink) 88%); }.hero-media { inset: 0 0 36%; }.hero-media img { object-position: 67% center; }.hero-grid, .hero-light { display: none; }.hero-inner { min-height: 770px; align-items: end; padding: 215px 0 45px; }.hero h1 { font-size: clamp(55px,15.5vw,76px); }.hero-lead { margin-top: 25px; font-size: 14px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }.architecture-status { display: none; }.hero-foot { bottom: 18px; padding-top: 13px; }.hero-foot > span { display: none; }.hero-foot div { gap: 12px; flex-wrap: wrap; }.hero-foot div span { font-size: 7px; }
  .statement { padding: 90px 0 80px; }.statement-grid { grid-template-columns: 1fr; gap: 30px; }.statement h2 { font-size: clamp(40px,11vw,57px); }.statement-grid > div > p { margin-top: 26px; font-size: 14px; }
  .services { padding-bottom: 95px; }.section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }.service-bento { grid-template-columns: 1fr; }.service-card, .service-card--wide { min-height: 290px; }.service-card--primary { min-height: 480px; }
  .capabilities { padding: 92px 0 100px; }.capability-lab { grid-template-columns: 1fr; }.capability-tabs { grid-template-columns: repeat(3,1fr); }.capability-tabs button { min-height: 85px; padding: 12px; }.capability-tabs button small { font-size: 7px; }.capability-stage { grid-template-columns: 1fr; }.stage-copy { padding: 35px 28px 20px; }.stage-copy h3 { margin-top: 35px; }.stage-visual { min-height: 350px; }
  .process { padding: 95px 0; }.process-grid { grid-template-columns: 1fr; gap: 60px; }.process-image { max-width: 540px; margin-inline: auto; }.process-image img { aspect-ratio: .94; object-position: center 62%; }.image-caption { right: -6px; }.approach { padding-bottom: 95px; }.approach-panel { grid-template-columns: 1fr; gap: 45px; padding: 44px 34px; }
  .closing { padding-top: 95px; }.closing-inner { min-height: 340px; }.closing-orbit { right: -390px; opacity: .7; }.site-footer { grid-template-columns: 1fr 1fr; }.site-footer p { text-align: right; }.site-footer p:nth-of-type(2) { text-align: left; }.site-footer > a:last-child { justify-self: end; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100vw - 28px); }
  .hero h1 { font-size: clamp(50px,16vw,67px); }.button { width: 100%; }.hero-note { display: none; }
  .section-head h2, .process h2 { font-size: 40px; }.service-card { padding: 24px; }.service-card ul { flex-wrap: wrap; }.service-card h3 { font-size: 26px; }
  .capability-tabs { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }.capability-tabs::-webkit-scrollbar { display: none; }.capability-tabs button { min-width: 145px; }.stage-copy { padding: 30px 22px 18px; }.stage-visual { min-height: 290px; padding: 16px; }.visual-chart svg { height: 115px; }
  .approach-panel { padding: 38px 24px; }.approach h2 { font-size: 39px; }.approach-panel li { grid-template-columns: 30px 1fr; gap: 10px; }
  .closing h2 { font-size: 49px; }.site-footer { display: flex; align-items: flex-start; flex-direction: column; }.site-footer p { text-align: left; }.site-footer > a:last-child { position: absolute; right: 0; bottom: 36px; }
}

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