:root {
  --navy: #061121;
  --navy-2: #0a1a31;
  --navy-3: #102641;
  --blue: #1767e8;
  --blue-light: #6da4f5;
  --paper: #f2f0ea;
  --paper-bright: #fbfaf7;
  --steel: #b8c4d1;
  --steel-dim: #8797a9;
  --ink: #111c2c;
  --muted: #586474;
  --line: #d5d8d5;
  --line-dark: #213550;
  --maxw: 1340px;
  --gutter: clamp(20px, 4vw, 54px);
  --section-y: clamp(76px, 9vw, 132px);
  --head-h: 118px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --display: "Newsreader", Georgia, serif;
  --body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 16px); -webkit-text-size-adjust: 100%; }
html.nav-open,
html.nav-open body { overflow: hidden; }
body { margin: 0; background: var(--navy); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:where(a, button, [tabindex]):focus-visible { outline: 3px solid var(--blue-light); outline-offset: 4px; }

.skip { position: fixed; left: 12px; top: -80px; z-index: 300; background: var(--paper-bright); color: var(--ink); padding: 12px 18px; text-decoration: none; font-weight: 700; }
.skip:focus { top: 12px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: var(--section-y); }
.section--white { background: var(--paper-bright); }
.section--paper { background: var(--paper); }
.section--dark, .section--dark-alt { background: var(--navy); color: #fff; }
.section--dark-alt { background: var(--navy-2); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -.025em; text-wrap: balance; }
h3 { font-family: var(--body); }
.h-hero { max-width: 15ch; margin-bottom: 22px; color: #fff; font-family: var(--body); font-size: clamp(48px, 4.1vw, 60px); font-weight: 700; line-height: .98; letter-spacing: -.04em; }
.h-sec { max-width: 16ch; margin-bottom: 0; font-size: clamp(38px, 4.4vw, 62px); line-height: 1.02; }
.h-sec--wide { max-width: 20ch; }
.lede { max-width: 58ch; margin: 28px 0 0; color: var(--muted); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65; }
.section--dark .lede, .section--dark-alt .lede, .cta .lede { color: var(--steel); }
.body-copy { max-width: 68ch; color: var(--muted); }
.section--dark .body-copy, .section--dark-alt .body-copy { color: var(--steel); }
.body-copy p:last-child { margin-bottom: 0; }
.mono-note, .scope-note, .cert-note { color: var(--muted); font-size: 13px; line-height: 1.65; }
.section--dark .mono-note, .section--dark-alt .mono-note, .section--dark .scope-note { color: var(--steel-dim); }
.col-label, .attrib__label { margin-bottom: 18px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section--dark .col-label, .section--dark-alt .col-label, .section--dark .attrib__label { color: var(--blue-light); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 14px 24px; border: 1px solid transparent; border-radius: 0; font-size: 13px; font-weight: 700; letter-spacing: .055em; text-decoration: none; text-transform: uppercase; transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.btn__arrow, .text-link span { transition: transform .22s var(--ease); }
.btn:hover .btn__arrow, .text-link:hover span { transform: translateX(5px); }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: #0d57cc; }
.btn--ghost-light { border-color: #63758b; color: #fff; }
.btn--ghost-light:hover { border-color: #fff; }
.btn--sm { min-height: 42px; padding: 10px 17px; font-size: 11px; }
.text-link, .link-arrow { display: inline-flex; align-items: center; gap: 11px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--blue); font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link--light, .section--dark .link-arrow, .section--dark-alt .link-arrow { color: var(--blue-light); }

.preview-bar { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 30px; padding: 6px 14px; background: var(--blue); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.site-head { position: fixed; inset: 0 0 auto; z-index: 100; background: var(--navy); border-bottom: 1px solid transparent; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.site-head.is-stuck { border-bottom-color: var(--line-dark); box-shadow: 0 16px 36px rgba(0, 0, 0, .14); }
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; height: 86px; }
.site-head.is-stuck .head-inner { height: 72px; }
.brand { flex: none; }
.brand img { width: auto; height: 43px; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.nav > .btn { display: none; }
.nav a:not(.btn) { color: var(--steel); font-size: 12px; font-weight: 600; text-decoration: none; transition: color .18s var(--ease); }
.nav a:not(.btn):hover { color: #fff; }
.nav a[aria-current="page"]:not(.btn) { color: #fff; box-shadow: inset 0 -2px 0 var(--blue-light); }
.head-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; position: relative; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-dark); background: transparent; color: #fff; cursor: pointer; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 12px; width: 18px; height: 2px; background: currentColor; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle span { top: 20px; }
.nav-toggle span::before { left: 0; top: -6px; }
.nav-toggle span::after { left: 0; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; padding-top: var(--head-h); background: var(--navy); overflow: hidden; }
.hero__inner { display: flex; align-items: flex-end; width: 100%; max-width: var(--maxw); height: clamp(560px, calc(100svh - var(--head-h) - 96px), 720px); margin-inline: auto; padding-inline: var(--gutter); }
.hero__copy { position: relative; z-index: 2; width: min(620px, 49vw); margin-bottom: clamp(34px, 4vw, 54px); padding: clamp(38px, 4vw, 54px); background: rgba(6, 17, 33, .96); }
.hero__sub { max-width: 43ch; margin-bottom: 30px; color: var(--steel); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.58; }
.hero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.hero__media { position: absolute; inset: var(--head-h) 0 0; margin: 0; overflow: hidden; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: rgba(6, 17, 33, .1); pointer-events: none; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 55% center; }
.hero__media figcaption, .operations-photo figcaption { position: absolute; right: 18px; bottom: 14px; z-index: 3; padding: 7px 9px; background: rgba(6, 17, 33, .86); color: #d9e2ec; font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
@media (prefers-reduced-motion: no-preference) {
  .hero__media img { animation: hero-open 1s var(--ease) both; }
  @keyframes hero-open { from { opacity: .7; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }
}
.proofline { background: var(--paper-bright); border-bottom: 1px solid var(--line); }
.proofline__inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.proofline__item { display: flex; align-items: center; justify-content: center; gap: 22px; min-width: 0; min-height: 96px; padding: 20px 28px; border-right: 1px solid var(--line); color: var(--navy); text-decoration: none; transition: background-color .2s var(--ease); }
.proofline__item:last-child { border-right: 0; }
.proofline__item:hover { background: #f1f4f8; }
.proofline__icon { flex: none; width: 38px; height: 38px; color: var(--blue); }
.proofline__fact { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.proofline strong { color: var(--navy); font-family: var(--body); font-size: 30px; font-weight: 700; line-height: 1; white-space: nowrap; }
.proofline span { max-width: 16ch; color: var(--muted); font-size: 12px; font-weight: 600; line-height: 1.35; }

.model-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(48px, 7vw, 110px); align-items: center; }
.model-copy .lede { margin-bottom: 42px; }
.model-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.model-steps li { display: grid; grid-template-columns: 120px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.model-steps strong { color: var(--ink); }
.model-steps span { color: var(--muted); }
.model-note { margin: 26px 0 0; color: var(--blue); font-weight: 700; }
.operations-photo { position: relative; margin: 0; min-height: 580px; overflow: hidden; }
.operations-photo::before { content: ""; position: absolute; inset: 18px 18px auto auto; z-index: 2; width: 72px; height: 72px; border-top: 2px solid var(--blue); border-right: 2px solid var(--blue); }
.operations-photo img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }

.capabilities-grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(58px, 9vw, 142px); align-items: start; }
.capabilities-intro .h-sec { color: #fff; }
.capabilities-intro .lede { margin-bottom: 34px; }
.caps { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; margin: 0; padding: 0; list-style: none; }
.cap { position: relative; min-height: 69px; padding: 21px 34px 19px 0; border-top: 1px solid var(--line-dark); color: #fff; font-size: 15px; font-weight: 600; }
.cap:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line-dark); }
.cap::after { content: ""; position: absolute; right: 2px; top: 31px; width: 15px; height: 1px; background: var(--blue-light); }
.scope-note { max-width: 72ch; margin: 28px 0 0; }

.sec-head--split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .68fr); gap: clamp(44px, 8vw, 120px); align-items: end; margin-bottom: clamp(42px, 6vw, 78px); }
.sec-head--split .lede { margin: 0; }
.coverage { display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(280px, .62fr); gap: clamp(34px, 6vw, 84px); align-items: center; }
.map-frame { position: relative; min-width: 0; padding: 34px; background: var(--navy); overflow: hidden; }
.map-frame__tag { display: block; color: var(--blue-light); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.usmap { display: block; width: 100%; height: auto; margin-top: 12px; }
.usmap path { fill: #24344c; stroke: #506177; stroke-width: 1; vector-effect: non-scaling-stroke; transition: fill .24s var(--ease), stroke .24s var(--ease); }
.usmap path[data-covered] { fill: #245fc4; stroke: #a7c7f5; }
.usmap path[data-covered="primary"] { fill: var(--blue); stroke: #fff; }
.usmap.is-armed path[data-covered]:not([data-lit]) { fill: #24344c; stroke: #506177; }
.usmap path[data-lit] { fill: #245fc4 !important; stroke: #a7c7f5 !important; }
.usmap path[data-state="GA"][data-lit] { fill: var(--blue) !important; stroke: #fff !important; }
.map-legend { display: flex; flex-wrap: wrap; gap: 14px 24px; margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line-dark); list-style: none; color: var(--steel); font-size: 11px; }
.map-legend li { display: flex; align-items: center; gap: 8px; }
.map-legend i { width: 10px; height: 10px; }
.sw-primary { background: var(--blue); border: 1px solid #fff; }
.sw-covered { background: #245fc4; border: 1px solid #a7c7f5; }
.sw-open { background: #24344c; border: 1px solid #506177; }
.map-tip { position: absolute; z-index: 4; transform: translate(12px, -115%); padding: 5px 8px; background: var(--paper-bright); color: var(--ink); font-size: 11px; opacity: 0; pointer-events: none; }
.map-tip.is-on { opacity: 1; }
.states-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.states-list li { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.st-name { font-weight: 700; }
.st-tag { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.st-tag--primary { color: var(--blue); }

.attrib { display: grid; grid-template-columns: 140px 1fr; gap: 30px; margin: -10px 0 48px; padding: 24px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: var(--steel); }
.attrib p { margin-bottom: 0; }
.attrib__label { margin: 0; }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.stat { min-width: 0; padding: 34px 24px; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: 0; }
.stat__v { color: #fff; font-family: var(--display); font-size: clamp(43px, 5vw, 68px); line-height: 1; }
.stat__l { margin: 12px 0 0; color: var(--steel); font-size: 12px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 110px); margin-top: clamp(48px, 7vw, 86px); }
.chipset { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; margin: 28px 0 0; padding: 0; list-style: none; }
.chipset li { padding: 11px 0; border-bottom: 1px solid var(--line-dark); color: var(--steel); font-size: 13px; }
.section--paper .chipset li, .section--white .chipset li { border-color: var(--line); color: var(--muted); }

.ladder { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(48px, 8vw, 110px); margin: 0; padding: 0; list-style: none; counter-reset: process; }
.ladder li { position: relative; padding: 30px 0 30px 66px; border-top: 1px solid var(--line); counter-increment: process; }
.ladder li:nth-last-child(-n + 2) { border-bottom: 1px solid var(--line); }
.ladder li::before { content: counter(process, decimal-leading-zero); position: absolute; left: 0; top: 31px; color: var(--blue); font-size: 12px; font-weight: 700; }
.ladder h3 { margin: 0 0 9px; color: var(--ink); font-size: 17px; }
.ladder p { margin: 0; color: var(--muted); font-size: 14px; }

.qualification { background: var(--blue); color: #fff; }
.qualification-grid { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); gap: clamp(54px, 9vw, 144px); align-items: start; }
.qualification .lede { color: #d8e8ff; }
.qualification-list { border-top: 1px solid rgba(255, 255, 255, .38); }
.qualification-list > div { display: grid; grid-template-columns: 210px 1fr; gap: 30px; padding: 23px 0; border-bottom: 1px solid rgba(255, 255, 255, .38); }
.qualification-list span { color: #d8e8ff; }
.cert-note { margin: 28px 0 0; color: #fff; font-weight: 600; }

.qualification-summary { background: var(--navy-2); color: #fff; }
.qualification-summary__grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); gap: clamp(54px, 9vw, 144px); align-items: start; }
.qualification-summary .h-sec { color: #fff; }
.qualification-summary .lede { color: var(--steel); }
.qualification-summary__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.fact-ledger { margin: 0; border-top: 1px solid var(--line-dark); }
.fact-ledger > div { display: grid; grid-template-columns: 190px 1fr; gap: 32px; padding: 24px 0; border-bottom: 1px solid var(--line-dark); }
.fact-ledger dt { color: #fff; font-weight: 700; }
.fact-ledger dd { margin: 0; color: var(--steel); }

.people { display: grid; gap: 0; }
.person { padding: 26px 0; border-top: 1px solid var(--line); }
.person:last-child { border-bottom: 1px solid var(--line); }
.person h3 { margin: 0 0 4px; font-size: 20px; }
.role { margin: 0 0 18px; color: var(--blue); font-size: 13px; font-weight: 700; }
.person ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.person li::before { content: ""; display: inline-block; width: 12px; height: 1px; margin: 0 8px 4px 0; background: var(--blue); }

.partner { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(54px, 9vw, 144px); align-items: start; }
.partner .h-sec { color: #fff; }
.callout { padding: 24px; background: rgba(23, 103, 232, .1); border: 1px solid rgba(109, 164, 245, .4); }
.callout p { margin: 0; }

.cta { background: var(--navy-3); color: #fff; overflow: hidden; }
.cta::after { content: "ST"; position: absolute; right: -20px; bottom: -142px; color: rgba(255, 255, 255, .035); font-family: var(--display); font-size: 390px; font-weight: 600; line-height: 1; pointer-events: none; }
.cta__inner { position: relative; z-index: 1; }
.cta .h-sec { color: #fff; }
.cta__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; margin-top: 36px; }
.cta__note { max-width: 72ch; margin: 34px 0 0; color: var(--steel-dim); font-size: 12px; }

.site-foot { padding: 58px 0 22px; background: var(--navy); color: var(--steel); border-top: 1px solid var(--line-dark); }
.foot-top { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.5fr); gap: clamp(48px, 8vw, 120px); align-items: start; }
.foot-brand img { width: 270px; height: auto; }
.foot-brand p { max-width: 36ch; margin: 17px 0 0; color: var(--steel-dim); font-size: 13px; }
.foot-nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 54px); }
.foot-col h3 { margin: 0 0 10px; color: #fff; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.foot-col ul { margin: 0; padding: 0; list-style: none; }
.foot-col li { margin: 0; }
.foot-col a { display: inline-flex; align-items: center; min-height: 32px; color: var(--steel); font-size: 12px; line-height: 1.35; text-decoration: none; }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 19px; border-top: 1px solid var(--line-dark); color: var(--steel-dim); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.foot-bottom a { display: inline-flex; align-items: center; min-height: 32px; }

.reveal { opacity: 1; }

@media (max-width: 1080px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .head-cta .btn { display: none; }
  .nav.is-open { display: flex; position: fixed; inset: var(--head-h) 0 0; flex-direction: column; align-items: stretch; gap: 0; min-height: calc(100dvh - var(--head-h)); padding: 18px var(--gutter) max(28px, env(safe-area-inset-bottom)); background: var(--navy-2); border-top: 1px solid var(--line-dark); overflow-y: auto; overscroll-behavior: contain; }
  .nav.is-open a:not(.btn) { display: flex; align-items: center; min-height: 58px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); font-size: 15px; }
  .nav.is-open .btn { display: inline-flex; margin-top: 28px; }
  .hero__copy { width: min(580px, 58vw); }
  .model-grid, .capabilities-grid { gap: 52px; }
  .coverage { grid-template-columns: 1fr; }
  .map-frame { max-width: 820px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(-n + 3) { border-bottom: 1px solid var(--line-dark); }
  .foot-top { gap: 48px; }
}

@media (max-width: 800px) {
  :root { --head-h: 108px; }
  .pv-more { display: none; }
  .head-inner { height: 78px; }
  .brand img { height: 38px; }
  .hero__inner { display: flex; flex-direction: column; height: auto; padding-inline: 0; }
  .hero__copy { width: 100%; margin: 0; padding: 46px var(--gutter) 44px; background: var(--navy); }
  .h-hero { max-width: 11ch; font-size: clamp(43px, 11vw, 58px); }
  .hero__sub { max-width: 36ch; margin-bottom: 27px; font-size: 16px; }
  .hero__media { display: none; }
  .proofline__inner { grid-template-columns: repeat(3, 1fr); padding-inline: 0; }
  .proofline__item { flex-direction: column; gap: 10px; min-height: 116px; padding: 17px 10px; text-align: center; }
  .proofline__icon { width: 29px; height: 29px; }
  .proofline__fact { flex-direction: column; align-items: center; gap: 4px; }
  .proofline strong { font-size: 25px; }
  .proofline span { max-width: 13ch; font-size: 10px; }
  .model-grid, .capabilities-grid, .sec-head--split, .two-col, .qualification-grid, .qualification-summary__grid, .partner { grid-template-columns: 1fr; }
  .sec-head--split { gap: 26px; }
  .model-grid { gap: 48px; }
  .operations-photo { display: none; }
  .capabilities-grid { gap: 46px; }
  .caps { grid-template-columns: 1fr; }
  .cap:nth-last-child(-n + 2) { border-bottom: 0; }
  .cap:last-child { border-bottom: 1px solid var(--line-dark); }
  .attrib { grid-template-columns: 1fr; gap: 10px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line-dark); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(3) { border-right: 1px solid var(--line-dark); }
  .stat:last-child { border-bottom: 0; }
  .ladder { grid-template-columns: 1fr; }
  .ladder li:nth-last-child(-n + 2) { border-bottom: 0; }
  .ladder li:last-child { border-bottom: 1px solid var(--line); }
  .qualification-list > div { grid-template-columns: 1fr; gap: 8px; }
  .fact-ledger > div { grid-template-columns: 170px 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 38px; }
  .foot-nav { gap: 30px; }
}

@media (max-width: 520px) {
  body { font-size: 15px; }
  .preview-bar { font-size: 9px; letter-spacing: .08em; }
  .brand img { height: 32px; }
  .hero__copy { padding-top: 42px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .proofline__item { min-height: 110px; padding-inline: 7px; }
  .proofline span { font-size: 9px; }
  .model-steps li { grid-template-columns: 1fr; gap: 4px; }
  .map-frame { padding: 22px 16px; }
  .map-legend { gap: 10px 15px; }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(3) { border-right: 0; }
  .stat:last-child { border-bottom: 0; }
  .chipset, .person ul { grid-template-columns: 1fr; }
  .ladder li { padding-left: 50px; }
  .fact-ledger > div { grid-template-columns: 1fr; gap: 7px; }
  .site-foot { padding-top: 50px; }
  .foot-brand img { width: min(240px, 100%); }
  .foot-nav { grid-template-columns: 1fr 1fr; gap: 26px 24px; }
  .foot-col--work { grid-column: 1 / -1; }
  .foot-col--work ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 24px; }
  .foot-col--work li:last-child { grid-column: 1 / -1; }
  .foot-bottom { display: grid; grid-template-columns: 1fr auto; gap: 10px 18px; margin-top: 34px; }
  .foot-bottom span:first-child { grid-column: 1 / -1; }
}

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

@media print {
  .site-head, .preview-bar, .hero__media, .operations-photo, .nav-toggle { display: none !important; }
  .hero { min-height: auto; padding: 30px 0; }
  .hero__copy { padding: 0; }
  .h-hero, .section--dark, .section--dark-alt, .cta, .qualification { color: #000 !important; }
  .section--dark, .section--dark-alt, .cta, .qualification, .map-frame { background: #fff !important; }
  .section { padding: 36px 0; break-inside: avoid; }
}
