:root {
  color-scheme: dark;
  --ink-950: #050c10;
  --ink-925: #071116;
  --ink-900: #0a171d;
  --ink-875: #0d1d24;
  --ink-850: #10242c;
  --line: rgba(155, 190, 199, 0.18);
  --line-strong: rgba(155, 190, 199, 0.32);
  --text: #f2f7f6;
  --muted: #a9bbc0;
  --soft: #789098;
  --cyan: #57d7df;
  --cyan-soft: rgba(87, 215, 223, 0.15);
  --mint: #7ee0bd;
  --mint-soft: rgba(126, 224, 189, 0.14);
  --amber: #e5b968;
  --amber-soft: rgba(229, 185, 104, 0.14);
  --gray-node: #71858b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", sans-serif;
  --max-width: 1280px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 88% 2%, rgba(40, 113, 124, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--ink-950) 0%, #071318 45%, #061015 100%);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure,
ol,
ul {
  margin-top: 0;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child {
  margin-bottom: 0;
}

::selection {
  background: rgba(87, 215, 223, 0.24);
  color: var(--text);
}

:focus {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--text);
  color: var(--ink-950);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-atmosphere {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(135, 172, 181, 0.028) 50%, transparent 50.1%),
    linear-gradient(180deg, transparent 0 49.9%, rgba(135, 172, 181, 0.025) 50%, transparent 50.1%);
  background-size: 160px 160px;
  mask-image: linear-gradient(to bottom, black, transparent 62%);
}

.section-wrap {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.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;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(148, 181, 189, 0.13);
  background: rgba(5, 12, 16, 0.87);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 120px;
  min-height: 52px;
  align-items: center;
  text-decoration: none;
}

.brand-lockup {
  width: clamp(136px, 15vw, 166px);
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  min-width: 0;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 28px);
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--cyan);
  content: "";
  transition: transform 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
  color: var(--text);
}

.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(87, 215, 223, 0.42);
  border-radius: 3px;
  color: var(--text) !important;
}

.nav-cta:hover {
  background: var(--cyan-soft);
}

.menu-toggle {
  display: none;
  min-width: 80px;
  min-height: 44px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  width: 16px;
  display: grid;
  gap: 5px;
}

.menu-toggle-icon i {
  width: 16px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: min(900px, calc(100vh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(410px, 0.96fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
  padding-block: clamp(76px, 8vw, 118px) clamp(92px, 10vw, 142px);
}

.hero-copy {
  min-width: 0;
}

.release-status,
.section-kicker {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
}

.release-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(87, 215, 223, 0.1);
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 29px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 6.1vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.048em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.planning-note {
  max-width: 620px;
  margin-bottom: 29px;
  padding-left: 14px;
  border-left: 2px solid var(--amber);
  color: #c8b58d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 39px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--cyan);
  color: #052027;
}

.button-primary:hover {
  background: #88e6e9;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.018);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(87, 215, 223, 0.5);
  background: var(--cyan-soft);
}

.hero-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.hero-values div {
  min-width: 0;
  padding: 18px 15px 0 0;
}

.hero-values div + div {
  padding-left: 15px;
  border-left: 1px solid var(--line);
}

.hero-values span {
  display: block;
  margin-bottom: 7px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-values strong {
  display: block;
  font-size: 12px;
  line-height: 1.45;
}

.hero-schematic {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(14, 33, 40, 0.94), rgba(7, 20, 25, 0.97));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.visual-heading {
  min-height: 78px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
}

.visual-heading span {
  color: var(--soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-heading strong {
  max-width: 220px;
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.schematic-field {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    linear-gradient(rgba(126, 153, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 153, 160, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 53% 55%, rgba(87, 215, 223, 0.055), transparent 42%);
  background-size: 64px 64px, 64px 64px, auto;
}

.schematic-geometry {
  position: absolute;
  inset: 0;
}

.zone {
  position: absolute;
  top: 53%;
  left: 53%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.zone-awareness {
  width: 76%;
  aspect-ratio: 1;
  border: 1px dashed rgba(120, 144, 150, 0.35);
}

.zone-perimeter {
  width: 49%;
  aspect-ratio: 1;
  border: 1px solid rgba(87, 215, 223, 0.42);
  background: rgba(87, 215, 223, 0.018);
}

.zone-label,
.visual-label,
.map-label,
.warning-label {
  position: absolute;
  z-index: 4;
  padding: 4px 7px;
  border: 1px solid rgba(151, 181, 188, 0.2);
  border-radius: 2px;
  background: rgba(5, 14, 18, 0.84);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.awareness-label {
  top: 15%;
  right: 13%;
  color: var(--soft);
}

.asset-marker,
.map-asset,
.warning-asset {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid var(--text);
  transform: translate(-50%, -50%) rotate(45deg);
  background: #0c2028;
}

.asset-marker {
  top: 53%;
  left: 53%;
  width: 45px;
  height: 45px;
}

.asset-marker i,
.map-asset i,
.warning-asset i {
  width: 14px;
  height: 14px;
  display: block;
  border: 1px solid var(--cyan);
  transform: rotate(-45deg);
  background: var(--cyan-soft);
}

.asset-copy {
  top: calc(53% + 32px);
  left: calc(53% + 19px);
  color: var(--text);
}

.route-line {
  position: absolute;
  z-index: 2;
  top: 22%;
  left: -2%;
  width: 58%;
  height: 2px;
  transform: rotate(28deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--amber));
}

.route-line::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  border-top: 1px dashed rgba(229, 185, 104, 0.7);
  content: "";
}

.route-arrow {
  position: absolute;
  z-index: 4;
  top: 38%;
  left: 33%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  transform: rotate(73deg);
}

.inbound-copy {
  top: 20%;
  left: 8%;
  color: var(--amber);
}

.cue-marker,
.warning-cue {
  position: absolute;
  z-index: 5;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ink-900);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(87, 215, 223, 0.14);
}

.cue-marker {
  top: 31%;
  left: 22%;
}

.cue-copy {
  top: 27%;
  left: 25%;
  color: var(--cyan);
}

.alert-marker,
.warning-alert {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(229, 185, 104, 0.12);
}

.alert-marker {
  top: 43%;
  left: 40%;
  width: 19px;
  height: 19px;
}

.alert-marker i,
.warning-alert i {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
  background: var(--ink-950);
}

.alert-copy {
  top: 44%;
  left: 26%;
  color: var(--amber);
}

.sensor-node,
.demo-node,
.warning-node {
  position: absolute;
  z-index: 5;
  border: 1px solid var(--gray-node);
  border-radius: 50%;
  background: var(--ink-850);
}

.sensor-node {
  width: 20px;
  height: 20px;
}

.sensor-node i,
.demo-node i {
  position: absolute;
  inset: 5px;
  display: block;
  border-radius: 50%;
  background: var(--gray-node);
}

.sensor-node.active,
.demo-node.active {
  border-color: var(--cyan);
}

.sensor-node.active i,
.demo-node.active i {
  background: var(--cyan);
}

.sensor-node.corroborating,
.demo-node.corroborating {
  border-color: var(--mint);
}

.sensor-node.corroborating i,
.demo-node.corroborating i {
  background: var(--mint);
}

.node-one { top: 25%; left: 58%; }
.node-two { top: 70%; left: 72%; }
.node-three { top: 76%; left: 25%; }
.node-four { top: 18%; left: 80%; }
.node-one-copy { top: 19%; left: 56%; color: var(--cyan); }
.node-two-copy { top: 73%; left: 66%; color: var(--mint); }

.refinement-path {
  position: absolute;
  z-index: 1;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(126, 224, 189, 0.1), rgba(126, 224, 189, 0.6));
}

.path-one {
  top: 29%;
  left: 59%;
  width: 31%;
  transform: rotate(-14deg);
}

.path-two {
  top: 72%;
  left: 53%;
  width: 22%;
  transform: rotate(8deg);
}

.hero-sequence {
  display: grid;
  grid-template-columns: 0.8fr 0.95fr 1.45fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-sequence li {
  min-width: 0;
  min-height: 71px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-sequence li + li {
  border-left: 1px solid var(--line);
}

.hero-sequence span {
  font-size: 9px;
}

.hero-sequence .is-cyan span { color: var(--cyan); }
.hero-sequence .is-amber span { color: var(--amber); }
.hero-sequence .is-mint span { color: var(--mint); }

.section-intro h2,
.warning-heading h2,
.pilot-heading h2,
.release-lead h2,
.next-section h2,
.page-title {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.75rem, 4.6vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.038em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-kicker {
  margin-bottom: 15px;
}

.section-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: clamp(40px, 8vw, 108px);
}

.section-intro-split > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.why-section,
.principles-section,
.platform-section,
.warning-section,
.demo-section,
.validation-section,
.pilot-section,
.release-section {
  padding-block: clamp(92px, 10vw, 150px);
}

.why-section {
  border-top: 1px solid var(--line);
}

.why-section .section-intro {
  max-width: 960px;
  margin-bottom: clamp(52px, 7vw, 88px);
}

.threat-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
  align-items: stretch;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.threat-comparison article {
  min-width: 0;
  padding: 38px 0 42px;
}

.comparison-index {
  display: block;
  margin-bottom: 25px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.threat-comparison h3 {
  max-width: 470px;
  margin-bottom: 17px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 400;
  line-height: 1.16;
}

.threat-comparison p {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--muted);
}

.comparison-shift {
  position: relative;
  display: grid;
  place-items: center;
}

.comparison-shift::before {
  width: 1px;
  height: 100%;
  background: var(--line);
  content: "";
}

.comparison-shift span {
  position: absolute;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--amber);
  border-radius: 50%;
  background: var(--ink-925);
}

.comparison-shift span::after {
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--amber);
  border-right: 1px solid var(--amber);
  transform: rotate(45deg);
  content: "";
}

.why-conclusion {
  max-width: 910px;
  margin: 32px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
}

.why-conclusion strong {
  color: var(--mint);
}

.context-boundary {
  max-width: 910px;
  margin: 28px 0 0 auto;
  padding-left: 16px;
  border-left: 1px solid var(--amber);
  color: var(--soft);
  font-size: 12px;
  line-height: 1.6;
}

.principles-section {
  position: relative;
}

.principles-section::before,
.demo-section::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  width: 100vw;
  inset-block: 0;
  transform: translateX(-50%);
  border-block: 1px solid rgba(151, 181, 188, 0.12);
  background: rgba(12, 29, 35, 0.5);
  content: "";
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 1px solid var(--line-strong);
}

.principle-list article {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 31px 28px 5px 0;
}

.principle-list article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.principle-number {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle-list h3 {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.35;
}

.principle-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.maturity-statement {
  margin: 38px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 66px 0 0;
  padding: 0;
  border-block: 1px solid var(--line-strong);
  background: rgba(9, 24, 30, 0.64);
  list-style: none;
}

.workflow li {
  position: relative;
  min-width: 0;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 25px;
}

.workflow li + li {
  border-left: 1px solid var(--line);
}

.workflow li:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 48%;
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--soft);
  border-right: 1px solid var(--soft);
  transform: rotate(45deg);
  background: var(--ink-900);
  content: "";
}

.workflow-step {
  position: absolute;
  top: 22px;
  left: 25px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.workflow-symbol {
  position: absolute;
  top: 67px;
  left: 25px;
  width: 43px;
  height: 43px;
  display: block;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.workflow-symbol::before,
.workflow-symbol::after {
  position: absolute;
  content: "";
}

.symbol-detection::before {
  inset: 9px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
}

.symbol-detection::after {
  top: 19px;
  left: 19px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
}

.symbol-confirmation::before {
  top: 12px;
  left: 11px;
  width: 20px;
  height: 13px;
  border-bottom: 1px solid var(--mint);
  border-left: 1px solid var(--mint);
  transform: rotate(-45deg);
}

.symbol-tracking::before {
  top: 11px;
  left: 9px;
  width: 24px;
  height: 20px;
  border-top: 1px dashed var(--cyan);
  border-right: 1px solid var(--cyan);
  border-radius: 50%;
  transform: rotate(22deg);
}

.symbol-mapping::before {
  inset: 10px;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
}

.symbol-alert::before {
  top: 10px;
  left: 14px;
  width: 14px;
  height: 19px;
  border: 1px solid var(--amber);
  border-radius: 8px 8px 3px 3px;
}

.workflow strong {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.35;
}

.workflow small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.warning-section {
  border-top: 1px solid var(--line);
}

.warning-heading {
  max-width: 850px;
  margin-bottom: 58px;
}

.warning-heading > p:last-child {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.warning-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(330px, 0.74fr);
  border: 1px solid var(--line-strong);
  background: rgba(8, 22, 27, 0.72);
}

.warning-spatial {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(rgba(140, 169, 176, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 169, 176, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 65% 56%, rgba(87, 215, 223, 0.05), transparent 36%);
  background-size: 72px 72px, 72px 72px, auto;
}

.warning-canvas {
  position: absolute;
  inset: 0;
}

.warning-perimeter {
  position: absolute;
  top: 55%;
  left: 67%;
  width: min(47%, 310px);
  aspect-ratio: 1;
  border: 1px solid rgba(87, 215, 223, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.warning-asset {
  top: 55%;
  left: 67%;
  width: 45px;
  height: 45px;
}

.warning-asset-label {
  top: calc(55% + 35px);
  left: calc(67% + 17px);
  color: var(--text);
}

.warning-route {
  position: absolute;
  top: 25%;
  left: -3%;
  width: 68%;
  height: 2px;
  transform: rotate(22deg);
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, var(--amber));
}

.warning-route::after {
  position: absolute;
  right: 8%;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  transform: translateY(-6px) rotate(45deg);
  content: "";
}

.warning-candidate {
  position: absolute;
  z-index: 5;
  top: 27%;
  left: 12%;
  width: 15px;
  height: 15px;
  border: 2px solid var(--amber);
  transform: rotate(45deg);
  background: var(--ink-900);
}

.warning-route-label { top: 17%; left: 8%; color: var(--amber); }
.warning-cue { top: 34%; left: 29%; }
.warning-cue-label { top: 29%; left: 32%; color: var(--cyan); }

.warning-node {
  width: 22px;
  height: 22px;
  border-color: var(--mint);
}

.warning-node::after {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.warning-node-one { top: 31%; left: 69%; }
.warning-node-two { top: 74%; left: 81%; }
.warning-node-label { top: 77%; right: 8%; color: var(--mint); }

.warning-link {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: rgba(126, 224, 189, 0.55);
}

.warning-link-one { top: 35%; left: 59%; width: 14%; transform: rotate(-8deg); }
.warning-link-two { top: 62%; left: 67%; width: 18%; transform: rotate(35deg); }

.warning-alert {
  top: 46%;
  left: 50%;
  width: 20px;
  height: 20px;
}

.warning-alert-label { top: 48%; left: 37%; color: var(--amber); }

.warning-state-label {
  position: absolute;
  z-index: 8;
  bottom: 19px;
  left: 21px;
  padding: 7px 10px;
  border-left: 2px solid var(--amber);
  background: rgba(5, 14, 18, 0.84);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.warning-cue,
.warning-candidate,
.warning-alert,
.warning-node,
.warning-link {
  opacity: 0.25;
  transition: opacity 180ms ease, transform 180ms ease;
}

.warning-spatial[data-warning-stage="cue"] .warning-cue,
.warning-spatial[data-warning-stage="candidate"] .warning-candidate,
.warning-spatial[data-warning-stage="alert"] .warning-alert,
.warning-spatial[data-warning-stage="refinement"] .warning-node,
.warning-spatial[data-warning-stage="refinement"] .warning-link {
  opacity: 1;
}

.warning-spatial[data-warning-stage="candidate"] .warning-cue,
.warning-spatial[data-warning-stage="alert"] .warning-cue,
.warning-spatial[data-warning-stage="alert"] .warning-candidate,
.warning-spatial[data-warning-stage="refinement"] .warning-cue,
.warning-spatial[data-warning-stage="refinement"] .warning-candidate,
.warning-spatial[data-warning-stage="refinement"] .warning-alert {
  opacity: 0.6;
}

.warning-timing {
  min-width: 0;
  padding: 30px;
}

.timing-label {
  margin-bottom: 20px;
  color: var(--amber);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.warning-timeline {
  display: grid;
}

.warning-timeline button {
  position: relative;
  min-width: 0;
  min-height: 91px;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  padding: 18px 12px 18px 21px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.warning-timeline button:last-child {
  border-bottom: 1px solid var(--line);
}

.warning-timeline button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  transform: scaleY(0);
  background: var(--amber);
  content: "";
  transition: transform 160ms ease;
}

.warning-timeline button.is-active {
  background: rgba(229, 185, 104, 0.055);
  color: var(--text);
}

.warning-timeline button.is-active::before {
  transform: scaleY(1);
}

.warning-timeline button > span {
  grid-row: 1 / 3;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.warning-timeline button strong {
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
}

.warning-timeline button small {
  min-width: 0;
  color: var(--soft);
  font-size: 10px;
  line-height: 1.35;
}

.timeline-disclaimer {
  margin: 20px 0 0;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.55;
}

.demo-section {
  position: relative;
}

.demo-intro {
  margin-bottom: 60px;
}

.command-interface {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #07161c;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
}

.command-topbar {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(205px, 1fr) minmax(190px, auto) auto auto;
  align-items: center;
  gap: 22px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-strong);
  background: #0a1b21;
}

.command-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.command-mark {
  width: 27px;
  height: 27px;
  display: block;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
}

.command-mark::after {
  width: 7px;
  height: 7px;
  display: block;
  margin: 9px;
  background: var(--cyan);
  content: "";
}

.command-brand div,
.command-scenario {
  min-width: 0;
  display: grid;
}

.command-brand strong {
  font-size: 12px;
  letter-spacing: 0.13em;
}

.command-brand small,
.command-scenario span {
  color: var(--soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.command-scenario strong {
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
}

.demo-only {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(229, 185, 104, 0.52);
  border-radius: 2px;
  color: var(--amber);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.scenario-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(87, 215, 223, 0.38);
  border-radius: 2px;
  background: rgba(87, 215, 223, 0.07);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.scenario-button:hover {
  background: var(--cyan-soft);
}

.command-main {
  display: grid;
  grid-template-columns: minmax(0, 2.08fr) minmax(285px, 0.92fr);
  border-bottom: 1px solid var(--line-strong);
}

.command-map {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border-right: 1px solid var(--line-strong);
}

.command-map figcaption {
  min-height: 47px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.command-map figcaption span {
  color: var(--soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.command-map figcaption strong {
  max-width: 330px;
  font-size: 12px;
  line-height: 1.45;
  text-align: right;
}

.map-canvas {
  position: relative;
  min-height: 475px;
  overflow: hidden;
  border: 1px solid rgba(151, 181, 188, 0.2);
  background:
    radial-gradient(circle at 54% 54%, rgba(87, 215, 223, 0.055), transparent 34%),
    #081a20;
}

.map-geometry {
  position: absolute;
  inset: 0;
}

.map-grid-line {
  position: absolute;
  background: rgba(147, 180, 188, 0.055);
}

.grid-horizontal-one,
.grid-horizontal-two {
  right: 0;
  left: 0;
  height: 1px;
}

.grid-horizontal-one { top: 33.333%; }
.grid-horizontal-two { top: 66.666%; }

.grid-vertical-one,
.grid-vertical-two {
  top: 0;
  bottom: 0;
  width: 1px;
}

.grid-vertical-one { left: 33.333%; }
.grid-vertical-two { left: 66.666%; }

.map-perimeter {
  position: absolute;
  top: 55%;
  left: 55%;
  width: min(42%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(87, 215, 223, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(87, 215, 223, 0.015);
}

.map-asset {
  top: 55%;
  left: 55%;
  width: 44px;
  height: 44px;
}

.map-asset-label {
  top: calc(55% + 34px);
  left: calc(55% + 17px);
  color: var(--text);
}

.demo-route,
.direction-estimate {
  position: absolute;
  z-index: 2;
  height: 2px;
  transform-origin: left center;
}

.demo-route {
  background: linear-gradient(90deg, rgba(229, 185, 104, 0.36), var(--amber));
}

.direction-estimate {
  height: 1px;
  border-top: 1px dashed rgba(229, 185, 104, 0.75);
}

.demo-route::after {
  position: absolute;
  right: 0;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--amber);
  border-right: 2px solid var(--amber);
  transform: rotate(45deg);
  content: "";
}

.demo-candidate {
  position: absolute;
  z-index: 5;
  width: 18px;
  height: 18px;
  border: 2px solid var(--amber);
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--ink-900);
}

.demo-candidate i {
  position: absolute;
  inset: 5px;
  display: block;
  background: var(--amber);
}

.alert-point {
  position: absolute;
  z-index: 5;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(229, 185, 104, 0.11);
}

.alert-point i {
  width: 4px;
  height: 4px;
  display: block;
  border-radius: 50%;
  background: var(--ink-950);
}

.demo-node {
  width: 22px;
  height: 22px;
  transition: border-color 150ms ease;
}

.demo-node-north { top: 19%; left: 28%; }
.demo-node-east { top: 45%; left: 82%; }
.demo-node-south { top: 82%; left: 54%; }
.demo-node-west { top: 54%; left: 14%; }

.map-canvas[data-scenario="perimeter"] .demo-route {
  top: 21%; left: 8%; width: 50%; transform: rotate(31deg);
}

.map-canvas[data-scenario="perimeter"] .direction-estimate {
  top: 37%; left: 34%; width: 24%; transform: rotate(31deg);
}

.map-canvas[data-scenario="perimeter"] .demo-candidate { top: 21%; left: 8%; }
.map-canvas[data-scenario="perimeter"] .candidate-label { top: 11%; left: 5%; }
.map-canvas[data-scenario="perimeter"] .alert-point { top: 39%; left: 38%; }
.map-canvas[data-scenario="perimeter"] .alert-point-label { top: 42%; left: 29%; }
.map-canvas[data-scenario="perimeter"] .active-node-label { top: 14%; left: 31%; color: var(--cyan); }
.map-canvas[data-scenario="perimeter"] .corroborating-node-label { top: 58%; left: 9%; color: var(--mint); }

.map-canvas[data-scenario="transit"] .demo-route {
  top: 75%; left: 7%; width: 57%; transform: rotate(-19deg);
}

.map-canvas[data-scenario="transit"] .direction-estimate {
  top: 63%; left: 32%; width: 31%; transform: rotate(-19deg);
}

.map-canvas[data-scenario="transit"] .demo-candidate { top: 75%; left: 7%; }
.map-canvas[data-scenario="transit"] .candidate-label { top: 79%; left: 5%; }
.map-canvas[data-scenario="transit"] .alert-point { top: 63%; left: 39%; }
.map-canvas[data-scenario="transit"] .alert-point-label { top: 66%; left: 33%; }
.map-canvas[data-scenario="transit"] .active-node-label { top: 58%; left: 7%; color: var(--cyan); }
.map-canvas[data-scenario="transit"] .corroborating-node-label { top: 86%; left: 52%; color: var(--mint); }

.map-canvas[data-scenario="corroboration"] .demo-route {
  top: 16%; left: 88%; width: 48%; transform: rotate(151deg);
}

.map-canvas[data-scenario="corroboration"] .direction-estimate {
  top: 36%; left: 55%; width: 28%; transform: rotate(-29deg);
}

.map-canvas[data-scenario="corroboration"] .demo-candidate { top: 16%; left: 88%; }
.map-canvas[data-scenario="corroboration"] .candidate-label { top: 7%; right: 4%; }
.map-canvas[data-scenario="corroboration"] .alert-point { top: 36%; left: 64%; }
.map-canvas[data-scenario="corroboration"] .alert-point-label { top: 39%; left: 60%; }
.map-canvas[data-scenario="corroboration"] .active-node-label { top: 39%; right: 3%; color: var(--cyan); }
.map-canvas[data-scenario="corroboration"] .corroborating-node-label { top: 13%; left: 19%; color: var(--mint); }

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 15px 0 0;
  padding: 0;
  color: var(--soft);
  font-size: 9px;
  font-weight: 700;
  list-style: none;
}

.map-legend li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
}

.legend-cyan { background: var(--cyan); }
.legend-mint { background: var(--mint); }
.legend-amber { background: var(--amber); }
.legend-gray { background: var(--gray-node); }
.legend-center { border: 1px solid var(--text); transform: rotate(45deg); }

.operational-summary {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(190px, 1.4fr) repeat(3, minmax(92px, 0.7fr));
  background: #091a20;
}

.summary-module {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px 26px;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.summary-module + .summary-module {
  border-top: 1px solid var(--line);
}

.summary-module > span {
  margin-bottom: 8px;
  color: var(--soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.summary-module strong {
  min-width: 0;
  font-size: 16px;
  line-height: 1.32;
}

.summary-module small {
  margin-top: 7px;
  color: var(--soft);
  font-size: 10px;
}

.summary-time strong {
  color: var(--amber);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.summary-alert strong { color: var(--amber); }
.summary-cue strong { color: var(--cyan); }

.summary-confidence strong {
  color: var(--mint);
}

.confidence-track {
  height: 4px;
  margin-top: 13px;
  overflow: hidden;
  background: rgba(126, 224, 189, 0.12);
}

.confidence-track span {
  width: 78%;
  height: 100%;
  display: block;
  background: var(--mint);
  transition: width 180ms ease;
}

.event-timeline-module {
  padding: 23px 22px 25px;
  border-bottom: 1px solid var(--line);
}

.timeline-module-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 21px;
}

.timeline-module-heading span {
  color: var(--soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.timeline-module-heading strong {
  font-size: 12px;
}

.demo-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-event {
  position: relative;
  min-width: 0;
  min-height: 130px;
  padding: 24px 23px 0 0;
  border-top: 1px solid var(--line-strong);
}

.demo-event:not(:last-child)::after {
  position: absolute;
  top: -4px;
  right: 13px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--soft);
  border-right: 1px solid var(--soft);
  transform: rotate(45deg);
  background: #07161c;
  content: "";
}

.demo-event::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gray-node);
  border-radius: 50%;
  background: #07161c;
  content: "";
}

.demo-event.is-active::before {
  border-color: var(--amber);
  background: var(--amber);
}

.demo-event time {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.demo-event strong {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  line-height: 1.4;
}

.demo-event p {
  margin: 0;
  color: var(--soft);
  font-size: 10px;
  line-height: 1.5;
}

.interface-note {
  margin: 0;
  padding: 18px 22px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.validation-section {
  border-top: 1px solid var(--line);
}

.evidence-matrix {
  margin-top: 65px;
  border-top: 1px solid var(--line-strong);
}

.evidence-heading,
.evidence-matrix article {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(220px, 1.15fr) minmax(180px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.evidence-heading {
  padding: 12px 18px;
  color: var(--soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evidence-matrix article {
  min-width: 0;
  min-height: 78px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.evidence-matrix article:last-child {
  border-bottom: 1px solid var(--line-strong);
}

.evidence-matrix h3,
.evidence-matrix p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.evidence-matrix strong {
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.evidence-matrix p {
  color: var(--muted);
}

.evidence-footnote {
  margin: 18px 0 0;
  color: var(--soft);
  font-size: 11px;
}

.pilot-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 135px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.pilot-heading {
  position: static;
}

.pilot-heading h2 {
  font-size: clamp(2.65rem, 4vw, 3.8rem);
}

.pilot-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
}

.pilot-path {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pilot-path li {
  position: relative;
  min-height: 126px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding-bottom: 34px;
}

.pilot-path li:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 25px;
  width: 1px;
  background: var(--line-strong);
  content: "";
}

.pilot-path > li > span {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--ink-925);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
}

.pilot-path div {
  padding: 5px 0 25px;
  border-bottom: 1px solid var(--line);
}

.pilot-path strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.pilot-path p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.release-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(410px, 1.18fr);
  gap: clamp(56px, 9vw, 130px);
  border-top: 1px solid var(--line-strong);
}

.release-lead > p:last-child {
  margin: 23px 0 0;
  color: var(--muted);
}

.release-classification {
  margin: 23px 0 0;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.release-boundaries {
  border-top: 1px solid var(--line-strong);
}

.release-boundaries article {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 30px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.release-boundaries h3 {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
}

.release-boundaries p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.release-boundaries p + p {
  grid-column: 2;
  margin-top: -18px;
}

.next-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-block: 70px 105px;
}

.next-section > div:first-child {
  max-width: 850px;
}

.next-section h2 {
  font-size: clamp(2.35rem, 4vw, 3.7rem);
}

.next-section .button {
  flex: 0 0 auto;
}

.next-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: #040b0e;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.35fr) auto;
  gap: 50px;
  padding-block: 47px 60px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-brand span {
  margin-top: 6px;
  color: var(--soft);
  font-size: 10px;
}

.footer-legal p {
  margin: 0 0 8px;
  color: #84999f;
  font-size: 10px;
  line-height: 1.55;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-meta a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.page-shell {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  padding-block: 80px;
}

.compact-header .main-nav,
.compact-header .menu-toggle {
  display: none;
}

.compact-header .header-inner {
  justify-content: space-between;
}

.info-page {
  width: min(100%, 880px);
  padding: clamp(38px, 7vw, 76px);
  border: 1px solid var(--line-strong);
  background: rgba(9, 25, 31, 0.78);
}

.info-page .page-title {
  margin-bottom: 28px;
}

.page-copy {
  max-width: 680px;
  margin-bottom: 32px;
}

.page-copy p {
  color: var(--muted);
}

.error-code {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

@media (max-width: 1160px) {
  .section-wrap {
    width: min(calc(100% - 48px), var(--max-width));
  }

  .header-inner {
    gap: 20px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(4rem, 6.5vw, 4.75rem);
  }

  .schematic-field {
    min-height: 430px;
  }

  .zone-label,
  .visual-label,
  .map-label,
  .warning-label {
    font-size: 8px;
  }

  .command-topbar {
    grid-template-columns: minmax(190px, 1fr) minmax(165px, auto) auto auto;
    gap: 14px;
  }

  .command-main {
    grid-template-columns: minmax(0, 1.85fr) minmax(260px, 0.86fr);
  }

  .summary-module {
    padding-inline: 21px;
  }
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-values {
    grid-template-columns: 1fr;
  }

  .hero-values div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 7px;
    padding: 10px 0;
  }

  .hero-values div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-values span {
    margin: 0;
  }

  .schematic-field {
    min-height: 410px;
  }

  .warning-explainer {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .warning-spatial {
    min-height: 480px;
  }

  .warning-timing {
    padding: 24px;
  }

  .command-main {
    grid-template-columns: minmax(0, 1.65fr) minmax(245px, 0.85fr);
  }

  .command-map {
    padding: 18px;
  }

  .map-canvas {
    min-height: 440px;
  }

  .demo-event {
    padding-right: 16px;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 64px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .section-wrap {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .header-inner {
    position: relative;
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: -20px;
    left: -20px;
    min-height: calc(100vh - var(--header-height));
    display: none;
    margin: 0;
    padding: 26px 20px 48px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line-strong);
    background: #050e12;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

  .main-nav a:not(.nav-cta)::after {
    display: none;
  }

  .main-nav .nav-cta {
    min-height: 50px;
    margin-top: 22px;
    justify-content: center;
    border-bottom: 1px solid rgba(87, 215, 223, 0.42);
  }

  .hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
    padding-block: 67px 100px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(3.2rem, 8.7vw, 4.35rem);
  }

  .hero-lead {
    max-width: 720px;
  }

  .hero-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-values div {
    display: block;
    padding: 17px 13px 0 0;
  }

  .hero-values div + div {
    padding-left: 13px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .hero-values span {
    margin-bottom: 6px;
  }

  .hero-schematic {
    width: min(100%, 650px);
    justify-self: center;
  }

  .schematic-field {
    min-height: 500px;
  }

  .section-intro-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 25px;
  }

  .section-intro-split > p {
    max-width: 650px;
  }

  .principle-list {
    grid-template-columns: 1fr;
  }

  .principle-list article,
  .principle-list article + article {
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle-list article:first-child {
    border-top: 0;
  }

  .workflow {
    grid-template-columns: repeat(5, minmax(145px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .workflow li {
    min-height: 215px;
    scroll-snap-align: start;
  }

  .warning-explainer {
    grid-template-columns: 1fr;
  }

  .warning-spatial {
    min-height: 500px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .warning-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .warning-timeline button {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 14px;
    border-bottom: 1px solid var(--line);
  }

  .warning-timeline button + button {
    border-left: 1px solid var(--line);
  }

  .warning-timeline button > span {
    color: var(--soft);
  }

  .command-topbar {
    grid-template-columns: minmax(170px, 1fr) auto auto;
  }

  .demo-only {
    grid-column: 2;
    margin: 0;
  }

  .command-scenario {
    grid-column: 1;
    grid-row: 2;
  }

  .scenario-button {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .command-main {
    grid-template-columns: 1fr;
  }

  .command-map {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .map-canvas {
    min-height: 500px;
  }

  .operational-summary {
    grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(138px, auto);
  }

  .summary-module {
    padding: 22px 18px;
  }

  .summary-module + .summary-module {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .summary-time strong {
    font-size: 3.3rem;
  }

  .demo-event p {
    font-size: 9px;
  }

  .pilot-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .pilot-heading {
    position: static;
    max-width: 700px;
  }

  .release-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-legal {
    grid-column: 1 / 3;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .section-wrap {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .menu-toggle {
    min-width: 72px;
    padding-inline: 10px;
  }

  .main-nav {
    right: -14px;
    left: -14px;
    padding-inline: 14px;
  }

  .hero {
    gap: 45px;
    padding-block: 54px 82px;
  }

  .release-status {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    margin-bottom: 23px;
    font-size: clamp(2.75rem, 12vw, 3.3rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .planning-note {
    font-size: 11px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-values {
    grid-template-columns: 1fr;
  }

  .hero-values div,
  .hero-values div + div {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 8px;
    padding: 11px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-values div:first-child {
    border-top: 0;
  }

  .hero-values span {
    margin: 0;
  }

  .visual-heading {
    min-height: 68px;
    padding: 16px;
  }

  .visual-heading strong {
    max-width: 170px;
    font-size: 10px;
  }

  .schematic-field {
    min-height: 360px;
  }

  .zone-awareness,
  .awareness-label,
  .node-four,
  .node-two-copy,
  .node-one-copy,
  .refinement-path.path-one {
    display: none;
  }

  .zone-perimeter {
    width: 61%;
  }

  .node-one { top: 22%; left: 68%; }
  .node-two { top: 71%; left: 76%; }
  .node-three { top: 77%; left: 25%; }

  .route-line {
    top: 18%;
    width: 62%;
  }

  .route-arrow { top: 37%; left: 35%; }
  .cue-marker { top: 29%; left: 21%; }
  .cue-copy { display: none; }
  .alert-marker { top: 42%; left: 39%; }
  .alert-copy { top: 45%; left: 20%; }
  .asset-copy { top: calc(53% + 31px); left: calc(53% - 28px); }
  .inbound-copy { top: 10%; left: 6%; }

  .hero-sequence {
    grid-template-columns: 1fr;
  }

  .hero-sequence li {
    min-height: 45px;
    padding: 10px 15px;
  }

  .hero-sequence li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-intro h2,
  .warning-heading h2,
  .pilot-heading h2,
  .release-lead h2,
  .next-section h2,
  .page-title {
    font-size: clamp(2.25rem, 10.5vw, 2.85rem);
  }

  .why-section,
  .principles-section,
  .platform-section,
  .warning-section,
  .demo-section,
  .validation-section,
  .pilot-section,
  .release-section {
    padding-block: 78px;
  }

  .threat-comparison {
    grid-template-columns: 1fr;
  }

  .threat-comparison article {
    padding-block: 29px;
  }

  .comparison-shift {
    min-height: 50px;
  }

  .comparison-shift::before {
    width: 100%;
    height: 1px;
  }

  .comparison-shift span {
    width: 34px;
    height: 34px;
    transform: rotate(90deg);
  }

  .why-conclusion {
    font-size: 16px;
  }

  .principle-list,
  .workflow,
  .evidence-matrix {
    margin-top: 45px;
  }

  .workflow {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .workflow li {
    min-height: 126px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    row-gap: 4px;
    align-content: center;
    padding: 18px 18px 18px 70px;
  }

  .workflow li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .workflow li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -5px;
    left: 35px;
    transform: rotate(135deg);
  }

  .workflow-step {
    top: 20px;
    left: 18px;
  }

  .workflow-symbol {
    top: 48px;
    left: 18px;
    width: 38px;
    height: 38px;
  }

  .symbol-detection::after { top: 17px; left: 17px; }
  .symbol-confirmation::before { top: 10px; left: 9px; }
  .symbol-tracking::before { top: 9px; left: 7px; }
  .symbol-alert::before { top: 8px; left: 12px; }

  .warning-heading {
    margin-bottom: 40px;
  }

  .warning-spatial {
    min-height: 370px;
  }

  .warning-perimeter {
    left: 67%;
    width: 51%;
  }

  .warning-route {
    top: 20%;
    width: 69%;
  }

  .warning-route-label { top: 11%; left: 5%; }
  .warning-candidate { top: 22%; left: 10%; }
  .warning-cue { top: 30%; left: 29%; }
  .warning-cue-label { display: none; }
  .warning-alert { top: 44%; left: 49%; }
  .warning-alert-label { top: 47%; left: 25%; }
  .warning-node-one { top: 26%; left: 73%; }
  .warning-node-two { top: 73%; left: 83%; }
  .warning-node-label { display: none; }
  .warning-state-label { bottom: 14px; left: 14px; font-size: 9px; }

  .warning-timing {
    padding: 21px 17px 24px;
  }

  .warning-timeline {
    grid-template-columns: 1fr;
  }

  .warning-timeline button {
    min-height: 78px;
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    padding: 14px 11px 14px 17px;
  }

  .warning-timeline button + button {
    border-left: 0;
  }

  .warning-timeline button > span {
    grid-row: 1 / 3;
  }

  .demo-intro {
    margin-bottom: 40px;
  }

  .command-topbar {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 15px 12px;
    padding: 16px;
  }

  .command-brand {
    grid-column: 1;
    grid-row: 1;
  }

  .demo-only {
    grid-column: 2;
    grid-row: 1;
  }

  .command-scenario {
    grid-column: 1 / 3;
    grid-row: 2;
    padding-top: 13px;
    border-top: 1px solid var(--line);
  }

  .scenario-button {
    grid-column: 1 / 3;
    grid-row: 3;
    min-height: 46px;
    white-space: normal;
  }

  .command-map {
    padding: 15px;
  }

  .command-map figcaption {
    min-height: 0;
    display: grid;
    gap: 5px;
    margin-bottom: 13px;
  }

  .command-map figcaption strong {
    max-width: none;
    font-size: 10px;
    text-align: left;
  }

  .map-canvas {
    min-height: 330px;
  }

  .map-perimeter {
    width: 49%;
  }

  .map-label {
    font-size: 9px;
  }

  .map-asset-label {
    top: calc(55% + 29px);
    left: calc(55% - 30px);
  }

  .active-node-label,
  .corroborating-node-label {
    display: none;
  }

  .demo-node-east {
    display: none;
  }

  .demo-node-north { top: 18%; left: 29%; }
  .demo-node-south { top: 82%; left: 56%; }
  .demo-node-west { top: 55%; left: 13%; }

  .map-canvas[data-scenario="corroboration"] .demo-node-east {
    display: block;
  }

  .map-canvas[data-scenario="corroboration"] .demo-node-south {
    display: none;
  }

  .map-canvas[data-scenario="perimeter"] .alert-point-label,
  .map-canvas[data-scenario="transit"] .alert-point-label,
  .map-canvas[data-scenario="corroboration"] .alert-point-label {
    top: auto;
    right: 5px;
    bottom: 8px;
    left: auto;
  }

  .map-canvas[data-scenario="corroboration"] .candidate-label {
    right: 4%;
  }

  .map-legend {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 11px;
  }

  .operational-summary {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .summary-module {
    min-height: 93px;
    padding: 19px 17px;
  }

  .summary-module + .summary-module {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .summary-time {
    min-height: 145px;
  }

  .summary-time strong {
    font-size: 3.8rem;
  }

  .event-timeline-module {
    padding: 21px 16px 24px;
  }

  .timeline-module-heading {
    display: grid;
    gap: 3px;
  }

  .demo-timeline {
    grid-template-columns: 1fr;
    margin-left: 7px;
  }

  .demo-event {
    min-height: 90px;
    padding: 0 0 19px 25px;
    border-top: 0;
    border-left: 1px solid var(--line-strong);
  }

  .demo-event:last-child {
    min-height: 0;
    border-left-color: transparent;
  }

  .demo-event::before {
    top: 3px;
    left: -4px;
  }

  .demo-event:not(:last-child)::after {
    display: none;
  }

  .demo-event p {
    font-size: 10px;
  }

  .interface-note {
    padding: 17px 16px;
  }

  .evidence-heading {
    display: none;
  }

  .evidence-matrix article {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 8px 18px;
    padding: 18px 4px;
  }

  .evidence-matrix p {
    grid-column: 1;
  }

  .evidence-matrix strong {
    max-width: 310px;
    font-size: 13px;
    text-align: left;
  }

  .pilot-path li {
    grid-template-columns: 44px 1fr;
    gap: 17px;
  }

  .pilot-path > li > span {
    width: 44px;
    height: 44px;
  }

  .pilot-path li:not(:last-child)::after {
    top: 38px;
    left: 21px;
  }

  .release-boundaries article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .release-boundaries p + p {
    grid-column: 1;
    margin-top: 0;
  }

  .next-section {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding-block: 65px 82px;
  }

  .next-section .button {
    width: 100%;
  }

  .next-actions {
    width: 100%;
    justify-content: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-legal,
  .footer-meta {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-meta {
    flex-direction: row;
    align-items: center;
  }

  .page-shell {
    padding-block: 45px;
  }

  .info-page {
    padding: 32px 22px;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 2.85rem);
  }

  .schematic-field {
    min-height: 320px;
  }

  .visual-heading strong {
    max-width: 145px;
  }

  .warning-spatial {
    min-height: 330px;
  }

  .warning-route-label {
    display: none;
  }

  .map-canvas {
    min-height: 300px;
  }

  .map-legend {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
