@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-400.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-500.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Semi Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-semicondensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Semi Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-semicondensed-700.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --paper: #f4f7f6;
  --paper: oklch(0.97 0.008 205);
  --paper-clear: #fbfcfb;
  --paper-clear: oklch(0.991 0.004 205);
  --paper-shade: #e9efee;
  --paper-shade: oklch(0.94 0.012 205);
  --blue-wash: #e1edf5;
  --blue-wash: oklch(0.93 0.028 235);
  --teal-wash: #dfeeee;
  --teal-wash: oklch(0.93 0.026 195);
  --ink: #102a3a;
  --ink: oklch(0.27 0.045 235);
  --body: #354f5c;
  --body: oklch(0.43 0.035 225);
  --muted: #5f747d;
  --muted: oklch(0.53 0.026 220);
  --line: #cbd8d8;
  --line: oklch(0.86 0.018 205);
  --line-strong: #82999e;
  --line-strong: oklch(0.66 0.03 210);
  --navy: #0b315b;
  --navy: oklch(0.32 0.09 250);
  --navy-bright: #1558a2;
  --navy-bright: oklch(0.47 0.14 253);
  --blue: #246ccb;
  --blue: oklch(0.54 0.17 255);
  --signal: #1aa8b4;
  --signal: oklch(0.64 0.12 205);
  --deep: #071827;
  --deep: oklch(0.18 0.035 245);
  --deep-2: #0d2235;
  --deep-2: oklch(0.23 0.045 245);
  --deep-3: #132d43;
  --deep-3: oklch(0.28 0.05 243);
  --deep-line: #2b4255;
  --deep-line: oklch(0.38 0.04 235);
  --light-text: #eaf2f4;
  --light-text: oklch(0.95 0.012 215);
  --light-body: #b9c9cf;
  --light-body: oklch(0.82 0.026 220);
  --error: #a62f39;
  --error: oklch(0.48 0.16 20);
  --focus: #075fc7;
  --focus: oklch(0.5 0.2 255);
  --font-body: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Barlow Semi Condensed", "Arial Narrow", "Avenir Next Condensed", system-ui, sans-serif;
  --content: 1280px;
  --wide: 1540px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 160ms;
  --duration-medium: 280ms;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button {
  border: 0;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

::selection {
  background: var(--navy);
  color: var(--light-text);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  background: var(--paper-clear);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform var(--duration-fast) var(--ease-out);
}

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

.section-label {
  margin: 0 0 16px;
  color: var(--navy-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  line-height: 1.25;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.button-primary {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--light-text);
}

.button-primary:hover {
  border-color: var(--navy-bright);
  background: var(--navy-bright);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--navy);
  background: var(--paper-shade);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  transition: color var(--duration-fast) var(--ease-out);
}

.text-link:hover {
  color: var(--blue);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--wide), calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-lockup {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-links a:hover {
  color: var(--navy-bright);
}

.nav-links a[aria-current="location"] {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.nav-links .nav-contact {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-toggle-mark {
  position: relative;
  width: 20px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.nav-toggle-mark::before,
.nav-toggle-mark::after {
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.nav-toggle-mark::before {
  opacity: 0;
}

.site-header[data-menu-open] .nav-toggle-mark {
  border-color: transparent;
}

.site-header[data-menu-open] .nav-toggle-mark::before {
  opacity: 1;
  transform: rotate(45deg);
}

.site-header[data-menu-open] .nav-toggle-mark::after {
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  width: min(var(--wide), calc(100% - 64px));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: clamp(52px, 4.5vw, 82px) 0 clamp(62px, 5.5vw, 96px);
  gap: clamp(56px, 7vw, 124px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 690px;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3.55rem, 5.8vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  overflow-wrap: break-word;
}

.hero-intro {
  max-width: 62ch;
  margin-bottom: 32px;
  color: var(--body);
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
}

.hero-context {
  display: flex;
  flex-wrap: wrap;
  max-width: 60ch;
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.25;
  list-style: none;
  text-transform: uppercase;
  gap: 8px 0;
}

.hero-context li {
  padding-right: 16px;
}

.hero-context li + li {
  padding-left: 16px;
  border-left: 1px solid var(--line-strong);
}

.coverage-figure {
  position: relative;
  min-width: 0;
  width: 100%;
  margin: 0;
}

.coverage-field {
  position: relative;
  aspect-ratio: 11 / 7.2;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #eef2f2;
}

.coverage-map-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-demo-layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hero-focus-zone,
.hero-response-casing,
.hero-response-route {
  fill: none;
  opacity: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}

.hero-focus-zone {
  fill: color-mix(in srgb, var(--signal) 12%, transparent);
  opacity: 0;
  stroke: var(--signal);
  stroke-dasharray: 8 6;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.coverage-field.is-interactive .hero-focus-zone {
  opacity: 0.72;
}

.coverage-field.has-response .hero-focus-zone {
  fill: color-mix(in srgb, var(--signal) 20%, transparent);
  opacity: 1;
}

.hero-response-casing {
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 8;
}

.hero-response-route {
  stroke: currentColor;
  stroke-width: 4;
}

.hero-response-target {
  opacity: 0;
}

.hero-response-target .target-ring {
  fill: rgba(255, 255, 255, 0.82);
  stroke: currentColor;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.hero-response-target .target-core {
  fill: currentColor;
}

.hero-unit .unit-ring {
  fill: var(--paper-clear);
  stroke: currentColor;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.hero-unit text {
  fill: var(--ink);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
}

.hero-unit-a { color: #246ccb; }
.hero-unit-b { color: #159ca9; }
.hero-unit-c { color: #173b63; }
.hero-unit-d { color: #587ca5; }
.hero-unit-e { color: #467d73; }

.hero-map-control {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  max-width: calc(100% - 36px);
  border: 1px solid var(--line-strong);
  background: rgba(253, 253, 252, 0.96);
}

.js-loading .hero-map-control,
.enhanced .hero-map-control {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: transform var(--duration-medium) var(--ease-out);
}

.enhanced .coverage-field.is-interactive .hero-map-control {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-map-control button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  gap: 10px;
  border-right: 1px solid var(--line-strong);
  background: var(--navy);
  color: var(--light-text);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-map-control button:hover {
  background: var(--navy-bright);
}

.hero-map-control button:disabled {
  cursor: default;
  opacity: 1;
}

.hero-map-control > span {
  padding: 0 12px;
  color: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-map-control > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-left: 1px solid var(--line-strong);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  gap: 7px;
}

.static-map-caption {
  display: none;
}

html.no-js .hero-map-control {
  display: none;
}

html.no-js .enhanced-map-caption {
  display: none;
}

html.no-js .static-map-caption {
  display: inline;
}

html.motion-unavailable .static-map-caption {
  display: inline;
}

html.motion-unavailable .enhanced-map-caption {
  display: none;
}

html.motion-unavailable .coverage-demo-layer {
  display: none;
}

.network-note {
  position: absolute;
  z-index: 3;
  display: grid;
  top: 24px;
  right: 24px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  background: rgba(253, 253, 252, 0.94);
  backdrop-filter: blur(6px);
  color: var(--ink);
  line-height: 1.2;
}

.network-note span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-note strong {
  font-size: 0.93rem;
}

.coverage-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
}

.coverage-figure figcaption > span:first-child {
  color: var(--navy);
  font-weight: 700;
}

.coverage-source {
  flex: 1;
  text-align: right;
}

.coverage-source a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--body);
  font-weight: 600;
}


.principles-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.principles-heading h2 {
  font-size: clamp(2.65rem, 4vw, 4.65rem);
  line-height: 1;
}

.product-story {
  --focus: #5bb9ef;
  --focus: oklch(0.76 0.12 235);
  --command-focus: #e99945;
  --command-focus: oklch(0.72 0.14 65);
  --dispatch: #ed6268;
  --dispatch: oklch(0.65 0.19 20);
  padding: clamp(96px, 10vw, 164px) max(32px, calc((100% - var(--wide)) / 2));
  background: var(--deep);
  color: var(--light-text);
}

.product-story .section-label {
  color: var(--focus);
}

.walkthrough-disclosure {
  max-width: var(--wide);
  margin: 0 auto 14px;
  color: var(--light-body);
  font-size: 0.82rem;
}

@keyframes incident-signal {
  0% {
    opacity: 0.95;
    transform: scale(0.55);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

html.no-js .field-count {
  display: none;
}

html.no-js .copy-address {
  display: none;
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr) auto;
  align-items: center;
  max-width: var(--wide);
  margin: 28px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--deep-line);
  border-bottom: 1px solid var(--deep-line);
  gap: 28px;
}

.product-cta > div {
  display: grid;
  gap: 4px;
}

.product-cta span {
  color: var(--focus);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-cta strong {
  color: var(--light-text);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.05;
}

.product-cta p {
  margin: 0;
  color: var(--light-body);
  font-size: 0.88rem;
}

.product-cta-button {
  min-width: 220px;
  border-color: var(--focus);
  background: var(--focus);
  color: var(--deep);
}

.principles {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(560px, 1.26fr);
  width: min(var(--content), calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(96px, 10vw, 150px) 0 clamp(80px, 7vw, 112px);
  gap: clamp(70px, 10vw, 170px);
}

.principles-heading {
  align-self: start;
}

.principles-heading > p:last-child {
  max-width: 50ch;
  margin: 28px 0 0;
  color: var(--body);
  font-size: 1.06rem;
}

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

.charter-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line-strong);
  gap: 18px;
}

.charter-list article > span {
  color: var(--navy-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.charter-list h3 {
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.charter-list p {
  max-width: 62ch;
  margin: 0;
  color: var(--body);
}

.evaluation {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(560px, 1.26fr);
  width: 100%;
  padding: clamp(96px, 9vw, 150px) max(32px, calc((100% - var(--content)) / 2));
  background: var(--blue-wash);
  gap: clamp(70px, 10vw, 170px);
}

.evaluation-heading h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.evaluation-heading > p:last-child {
  max-width: 52ch;
  margin: 28px 0 0;
  color: var(--body);
  font-size: 1.06rem;
}

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

.evaluation-ledger > div {
  display: grid;
  grid-template-columns: 44px minmax(150px, 0.42fr) minmax(0, 1fr);
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
  gap: 14px;
}

.evaluation-ledger span {
  color: var(--navy-bright);
  font-size: 0.72rem;
  font-weight: 700;
}

.evaluation-ledger strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.05;
}

.evaluation-ledger p {
  margin: 0;
  color: var(--body);
  font-size: 0.92rem;
}

.evaluation-note {
  grid-column: 2;
  margin: -28px 0 0;
  color: var(--body);
  font-size: 0.8rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(340px, 0.75fr) minmax(560px, 1.25fr);
  width: 100%;
  margin: 0;
  padding: clamp(80px, 7vw, 112px) max(32px, calc((100% - var(--content)) / 2)) clamp(76px, 6vw, 100px);
  background: var(--teal-wash);
  gap: clamp(64px, 9vw, 148px);
}

.contact-copy > p:not(.section-label) {
  max-width: 51ch;
  margin: 28px 0 0;
  color: var(--body);
  font-size: 1.06rem;
}

.direct-contact {
  display: grid;
  justify-items: start;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
  gap: 6px;
}

.direct-contact > span:first-child {
  color: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--navy);
  font-size: 1.03rem;
  font-weight: 700;
}

.copy-address {
  min-height: 44px;
  padding: 0;
  background: transparent;
  color: var(--navy-bright);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copy-status {
  min-height: 1.3em;
  color: var(--body);
  font-size: 0.78rem;
}

.contact-form {
  border-top: 2px solid var(--navy);
}

.contact-transport-lead {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--body);
  font-size: 0.88rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.field {
  display: grid;
  align-content: start;
  padding: 21px 0 17px;
  border-bottom: 1px solid var(--line-strong);
}

.field label {
  margin-bottom: 9px;
  color: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.field label span {
  color: var(--body);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--paper-clear);
  color: var(--ink);
  font-size: 1rem;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--navy);
}

.field input:focus-visible,
.field textarea:focus-visible {
  border-color: var(--navy-bright);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-hint,
.field-error {
  margin: 7px 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
}

.field-hint {
  color: var(--body);
}

.field-hint-row {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--body);
  font-size: 0.78rem;
  gap: 16px;
}

.field-hint-row .field-hint {
  margin: 0;
}

.field-count {
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}

.field-error {
  min-height: 1.05rem;
  color: var(--error);
  font-weight: 600;
}

.form-handoff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
}

.form-handoff p {
  max-width: 50ch;
  margin: 0;
  color: var(--body);
  font-size: 0.84rem;
}

.form-submit {
  flex: 0 0 auto;
}

.prepared-message {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid var(--navy-bright);
  background: var(--blue-wash);
}

.prepared-message p {
  margin-bottom: 7px;
  color: var(--body);
}

.prepared-message p:first-child {
  color: var(--ink);
}

.prepared-message > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 130px;
  padding: 28px max(32px, calc((100% - var(--wide)) / 2));
  border-top: 1px solid var(--line-strong);
  background: #fff;
  color: var(--body);
  gap: 44px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

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

.site-footer p {
  margin: 0;
}

.footer-copy {
  display: grid;
  gap: 3px;
}

.footer-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-privacy {
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-meta a {
  font-weight: 600;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

@media (min-width: 1720px) {
  .hero {
    grid-template-columns: minmax(590px, 0.9fr) minmax(760px, 1.1fr);
    gap: clamp(64px, 5vw, 92px);
  }

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(340px, 0.9fr) minmax(480px, 1.1fr);
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 6vw, 5rem);
  }

  .coverage-figure figcaption {
    display: grid;
    gap: 3px;
  }

  .coverage-source {
    text-align: left;
  }


  .principles,
  .contact {
    gap: 72px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-nav,
  .hero,
  .principles {
    width: min(100% - 40px, var(--content));
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 74px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 10vw, 6.4rem);
  }

  .product-cta {
    grid-template-columns: 1fr 1fr;
  }

  .product-cta-button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .principles,
  .evaluation,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact {
    gap: 48px;
  }

  .principles-heading,
  .evaluation-heading,
  .contact-copy {
    max-width: 720px;
  }

  .evaluation-note {
    grid-column: auto;
    margin-top: -24px;
  }

  .site-footer {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .footer-top {
    grid-column: 2;
  }
}

@media (max-width: 780px) {
  .site-header {
    background: #fff;
  }

  .site-nav {
    position: relative;
    min-height: 68px;
  }

  .brand-lockup {
    width: 164px;
  }

  .js-loading .nav-toggle,
  .enhanced .nav-toggle {
    display: inline-flex;
  }

  .js-loading .nav-links,
  .enhanced .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: -20px;
    left: -20px;
    display: grid;
    padding: 12px 20px 22px;
    border-bottom: 1px solid var(--line-strong);
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity var(--duration-medium) var(--ease-out),
      transform var(--duration-medium) var(--ease-out);
    visibility: hidden;
  }

  .enhanced .site-header[data-menu-open] .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .nav-contact {
    border-bottom: 0;
  }

  html.no-js .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  html.no-js .nav-links {
    flex: 1 0 100%;
    flex-wrap: wrap;
    gap: 4px 18px;
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 13vw, 5.2rem);
  }

  .product-story {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-cta {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .product-cta-button {
    grid-column: auto;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-handoff {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px 32px 28px;
    gap: 18px;
  }

  .footer-top {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  html {
    scroll-behavior: auto;
    scroll-padding-top: 72px;
  }

  body {
    font-size: 0.98rem;
  }

  .site-nav,
  .hero,
  .principles {
    width: calc(100% - 32px);
  }

  .contact {
    gap: 40px;
  }

  .js-loading .nav-links,
  .enhanced .nav-links {
    right: -16px;
    left: -16px;
  }

  .hero {
    gap: 30px;
    padding: 46px 0 64px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.9rem, 13.5vw, 3.65rem);
    line-height: 0.95;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-context {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-size: clamp(0.58rem, 2.5vw, 0.72rem);
    gap: 0;
  }

  .hero-context li {
    padding: 0 8px;
    text-align: center;
  }

  .hero-context li:first-child {
    padding-left: 0;
    text-align: left;
  }

  .hero-context li + li {
    padding-left: 8px;
  }

  .hero-context li:last-child {
    padding-right: 0;
    text-align: right;
  }

  .coverage-field {
    aspect-ratio: 4 / 3;
  }

  .network-note {
    top: 12px;
    right: 12px;
    padding: 8px 10px;
  }

  .network-note span {
    font-size: 0.56rem;
  }

  .network-note strong {
    font-size: 0.78rem;
  }

  .hero-map-control {
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
  }

  .hero-map-control > span {
    display: none;
  }

  .hero-map-control button {
    border-right: 0;
  }

  .coverage-figure figcaption {
    display: grid;
    gap: 3px;
  }

  .coverage-source {
    text-align: left;
  }


  .principles-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .charter-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .evaluation {
    padding-right: 16px;
    padding-left: 16px;
  }

  .evaluation-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .evaluation-ledger > div {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .evaluation-ledger p {
    grid-column: 2;
  }

  .prepared-message > div {
    align-items: stretch;
    flex-direction: column;
  }

  .prepared-message .button,
  .prepared-message .text-link {
    width: 100%;
  }

  .footer-brand img {
    width: 164px;
  }
}

@media (max-width: 360px) {
  .brand-lockup {
    width: 144px;
  }

  .nav-toggle {
    gap: 6px;
  }

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

}

@media (max-height: 620px) and (orientation: landscape) {
  .site-header {
    position: relative;
  }

  html {
    scroll-padding-top: 16px;
  }
}

@media (hover: none) {
  .button:hover,
  .nav-links a:hover {
    filter: none;
  }
}

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

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

  .hero-response-casing,
  .hero-response-route {
    stroke-dashoffset: 0 !important;
  }

  .coverage-field.has-response .hero-response-target {
    transition-delay: 0ms;
  }
}

@media (prefers-contrast: more) {
  :root {
    --body: #173742;
    --muted: #34505a;
    --line: #778e93;
    --line-strong: #4c666d;
  }
}

@media (forced-colors: active) {
  .coverage-field,
  .contact-form,
  .field input,
  .field textarea,
  .button,
  .charter-list article {
    border-color: CanvasText;
  }
}

.coverage-map-viewport {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  touch-action: none;
}

.coverage-map-viewport .coverage-map-image,
.coverage-map-viewport .coverage-demo-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coverage-field.is-interactive {
  cursor: grab;
}

.coverage-field.is-dragging {
  cursor: grabbing;
}

.coverage-field.is-dragging .coverage-map-viewport {
  will-change: transform;
}

.hero-map-explore {
  position: absolute;
  z-index: 5;
  display: flex;
  top: 14px;
  left: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(253, 253, 252, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.enhanced .coverage-field.is-interactive .hero-map-explore {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-map-explore button {
  min-width: 40px;
  min-height: 40px;
  padding: 0 11px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--paper-clear);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.hero-map-explore button:last-child {
  min-width: 58px;
  border-right: 0;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-experience {
  display: block;
  width: 100%;
  padding: clamp(72px, 7vw, 112px) max(20px, calc((100% - 1500px) / 2)) clamp(80px, 9vw, 132px);
  background: var(--deep);
  color: var(--light-text);
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  align-items: end;
  max-width: 1420px;
  margin: 0 auto 22px;
  gap: 28px 72px;
}

.story-intro h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.1vw, 5.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.story-intro > p {
  max-width: 46ch;
  margin: 0 0 5px;
  color: #a9bcc7;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.55;
}

.story-experience .walkthrough-disclosure {
  max-width: 1420px;
  margin: 0 auto 14px;
  padding: 0;
  color: #7892a2;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.story-shell {
  position: relative;
  width: min(1420px, 100%);
  min-height: min(790px, calc(100svh - 92px));
  margin: 0 auto;
  overflow: hidden;
  overflow-anchor: none;
  border: 1px solid var(--deep-line);
  background: #091b2b;
  isolation: isolate;
}

.story-topbar {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto 44px;
  min-height: 112px;
  align-items: center;
  padding: 16px 18px 16px 22px;
  border-bottom: 1px solid var(--deep-line);
  background: #071827;
  gap: 20px;
}

.story-narration {
  display: grid;
  max-width: 700px;
  gap: 3px;
}

.story-narration span {
  color: #70cad3;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.story-narration strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.story-narration small {
  max-width: 68ch;
  color: #9db1bd;
  font-size: 0.78rem;
  line-height: 1.35;
}

.story-progress {
  display: flex;
  align-items: center;
  gap: 4px;
}

.story-progress span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 10px;
  border-bottom: 2px solid transparent;
  color: #8fa8b6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms var(--ease-out), border-color 180ms var(--ease-out);
  gap: 6px;
}

.story-progress span.is-active {
  border-color: var(--signal);
  color: var(--light-text);
}

.story-progress i {
  color: #5ebbc4;
  font-style: normal;
}

.story-transport {
  width: 42px;
  height: 42px;
  border: 1px solid #395267;
  background: #0d2235;
  color: var(--light-text);
  cursor: pointer;
  font-weight: 700;
}

.story-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #0b1a27;
}

.story-camera {
  position: absolute;
  inset: 0;
  transform-origin: 64% 42%;
}

.story-shell.is-playing .story-camera {
  will-change: transform, opacity;
}

.story-camera > img,
.story-map-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-shell.is-map-fit .story-camera > img {
  object-fit: contain;
}

.story-map-layer {
  overflow: visible;
  pointer-events: none;
}

.story-focus-zone {
  fill: var(--signal);
  stroke: #62cfd8;
  stroke-width: 3;
  stroke-dasharray: 10 8;
  vector-effect: non-scaling-stroke;
}

.story-dwell {
  color: #e1b357;
}

.story-dwell circle {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.story-dwell-track {
  stroke: rgba(225, 179, 87, 0.28);
  stroke-width: 7;
}

.story-dwell-progress {
  stroke: currentColor;
  stroke-width: 7;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-box: fill-box;
  transform-origin: center;
}

.story-dwell .story-dwell-core {
  fill: currentColor;
  stroke: #fff;
  stroke-width: 2;
}

.story-route,
.story-route-casing {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.story-route-casing {
  stroke: #06131f;
  stroke-width: 11;
}

.story-route {
  stroke-width: 5;
}

.story-focus-route {
  stroke: #45c4ce;
}

.story-dispatch-route {
  stroke: #f1786c;
}

.story-resume-route {
  stroke: #75b59d;
}

.story-unit circle {
  fill: #0b1a27;
  stroke: currentColor;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.story-unit text {
  fill: #fff;
  font-size: 12px;
  font-weight: 700;
}

.story-unit-a { color: #246ccb; }
.story-unit-b { color: #45c4ce; }
.story-unit-c { color: #6f94bb; }
.story-unit-d { color: #708dad; }
.story-unit-e { color: #5f9b8e; }

.story-incident {
  color: #ef6e63;
}

.story-incident circle:last-child {
  fill: currentColor;
  stroke: #fff;
  stroke-width: 3;
}

.story-incident-pulse {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  opacity: 0.54;
}

.story-product-bar {
  position: absolute;
  z-index: 3;
  display: flex;
  top: 0;
  right: 0;
  left: 0;
  height: 52px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid rgba(71, 96, 116, 0.72);
  background: rgba(7, 24, 39, 0.91);
  color: #9db0bc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  gap: 24px;
}

.story-product-bar strong {
  margin-right: auto;
  color: var(--light-text);
  font-size: 0.76rem;
}

.story-product-bar span:first-of-type {
  color: #66cad4;
}

.story-card,
.story-officer-card {
  position: absolute;
  z-index: 5;
  border: 1px solid #496276;
  background: rgba(7, 24, 39, 0.94);
  backdrop-filter: blur(8px);
}

.story-focus-card,
.story-selection-card,
.story-coverage-card,
.story-incident-card,
.story-officer-card,
.story-recovery-card,
.story-review {
  visibility: hidden;
  opacity: 0;
}

.story-card {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
}

.story-card > span,
.story-officer-card > div:first-child span,
.story-review-heading span,
.story-outcome > span,
.story-next-shift > span {
  color: #6dced6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-card > strong {
  font-size: 0.98rem;
  line-height: 1.28;
}

.story-card > small {
  color: #98adba;
  font-size: 0.78rem;
  line-height: 1.3;
}

.story-card button {
  min-height: 40px;
  margin: 8px -16px -14px;
  border: 0;
  border-top: 1px solid #3b566c;
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-focus-card {
  bottom: 24px;
  left: 24px;
  width: 320px;
}

.story-hotspot-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-hotspot-heading span {
  color: #6dced6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-hotspot-heading b {
  color: #e1b357;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-hotspot-details {
  display: grid;
  margin: 3px 0 0;
  gap: 4px;
}

.story-hotspot-details div {
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: baseline;
  gap: 8px;
}

.story-hotspot-details dt,
.story-hotspot-details dd {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.28;
}

.story-hotspot-details dt {
  color: #748f9e;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-hotspot-details dd {
  color: #a7bac4;
}

.story-focus-card .story-dwell-meter {
  margin-top: 6px;
}

.story-focus-card > small {
  color: #e1b357;
  font-variant-numeric: tabular-nums;
}

.story-selection-card {
  top: 78px;
  right: 24px;
  width: min(330px, 31vw);
}

.story-selection-card > div {
  display: flex;
  align-items: center;
  margin-top: 6px;
  color: #91a8b6;
  font-size: 0.75rem;
  gap: 8px;
}

.story-selection-card > div + div {
  margin-top: 2px;
  padding-top: 7px;
  border-top: 1px solid rgba(59, 86, 108, 0.72);
}

.story-selection-card > div b {
  color: #72d0d7;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-dwell-meter {
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
  background: #2c4354;
}

.story-dwell-meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: #e1b357;
  transform: scaleX(0);
  transform-origin: left center;
}

.story-coverage-card {
  top: 78px;
  right: 24px;
  width: min(340px, 31vw);
}

.story-coverage-card .story-coverage-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 8px -16px -14px;
  border-top: 1px solid #3b566c;
}

.story-coverage-metrics span {
  display: grid;
  padding: 10px 8px;
  border-right: 1px solid #3b566c;
  gap: 2px;
}

.story-coverage-metrics span:last-child {
  border-right: 0;
}

.story-coverage-metrics b {
  color: #73d0d7;
  font-size: 1.02rem;
}

.story-coverage-metrics small {
  color: #91a7b4;
  font-size: 0.68rem;
  line-height: 1.15;
}

.story-incident-card {
  right: auto;
  bottom: 24px;
  left: 24px;
  width: min(390px, 36vw);
  padding: 0;
  gap: 0;
}

.story-incident-card > div {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #3b5366;
  color: #f4a39b;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-incident-card > strong {
  padding: 12px 14px 6px;
  color: #a8bac5;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.story-incident-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-incident-card li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid rgba(58, 80, 98, 0.72);
  gap: 8px;
}

.story-incident-card li i {
  color: #6ecbd4;
  font-style: normal;
  font-weight: 700;
}

.story-incident-card li span {
  display: grid;
}

.story-incident-card li small {
  color: #8ea4b1;
  font-size: 0.75rem;
}

.story-incident-card li em {
  color: #77d0d7;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-incident-card button {
  margin: 0;
}

.story-officer-card {
  bottom: 24px;
  left: 24px;
  width: min(360px, 34vw);
  overflow: hidden;
}

.story-officer-card > div:first-child,
.story-officer-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid #3b5366;
}

.story-officer-card > div:first-child b {
  color: #f29188;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.story-officer-card section {
  display: flex;
  align-items: center;
  padding: 16px 14px;
  gap: 14px;
}

.story-officer-card section > i {
  width: 44px;
  color: #fff;
  font-size: 2.1rem;
  font-style: normal;
}

.story-officer-card section div {
  display: grid;
  gap: 3px;
}

.story-officer-card section strong {
  font-size: 1.1rem;
}

.story-officer-card section small {
  color: #9cafba;
  font-size: 0.78rem;
}

.story-officer-card footer {
  border-top: 1px solid #3b5366;
  border-bottom: 0;
}

.story-officer-card footer span {
  display: grid;
  gap: 2px;
}

.story-officer-card footer small {
  color: #7f97a6;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-recovery-card {
  top: 78px;
  right: 24px;
  width: min(370px, 35vw);
}

.story-review {
  position: absolute;
  z-index: 6;
  display: flex;
  flex-direction: column;
  top: 72px;
  right: 24px;
  bottom: 24px;
  width: min(680px, 58vw);
  border: 1px solid #4a6477;
  background: rgba(7, 24, 39, 0.97);
  backdrop-filter: blur(10px);
}

.story-review-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #3d566a;
  gap: 3px 20px;
}

.story-review-heading span {
  grid-column: 1;
}

.story-review-heading strong {
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.story-review-heading b {
  grid-column: 2;
  grid-row: 1 / 3;
  color: #73d0d7;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-review-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 0;
}

.story-outcome {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-right: 1px solid #3d566a;
  gap: 10px;
}

.story-outcome > strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.04;
}

.story-outcome > p {
  margin: 0;
  color: #a2b5c0;
  font-size: 0.78rem;
  line-height: 1.42;
}

.story-outcome > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #324b5f;
  gap: 6px 10px;
}

.story-outcome > div b {
  color: #79d0d7;
  font-size: 1.45rem;
}

.story-outcome > div small {
  color: #91a6b2;
  font-size: 0.75rem;
}

.story-evidence {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-evidence li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #324b5f;
  gap: 10px;
}

.story-evidence li > i {
  color: #72cdd5;
  font-size: 0.75rem;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.story-evidence li > span {
  display: grid;
  gap: 3px;
}

.story-evidence small {
  color: #8ea5b2;
  font-size: 0.75rem;
  line-height: 1.3;
}

.story-next-shift {
  grid-column: 1 / -1;
  align-self: end;
  display: grid;
  padding: 14px 16px;
  border-top: 1px solid #3d566a;
  background: #0b2134;
  gap: 5px;
}

.story-next-shift strong {
  font-size: 0.82rem;
  line-height: 1.4;
}

.story-cursor {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 26px;
  height: 30px;
  pointer-events: none;
}

.story-shell.is-playing .story-cursor {
  will-change: transform, opacity;
}

.story-cursor path {
  fill: #f7fbfb;
  stroke: #071827;
  stroke-width: 2.4;
  paint-order: stroke fill;
}

.story-reduced-summary {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  background: #0a1d2e;
  list-style: none;
}

.story-reduced-summary li {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1fr;
  padding: 12px 18px;
  border-top: 1px solid #2d4659;
  gap: 16px;
}

.story-reduced-summary strong {
  color: #e7f0f2;
  font-size: 0.78rem;
}

.story-reduced-summary span {
  color: #93a9b5;
  font-size: 0.74rem;
}

.story-experience .product-cta {
  max-width: 1420px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1050px) {
  .story-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .story-intro > p {
    max-width: 68ch;
  }

  .story-shell {
    min-height: 760px;
  }

  .story-topbar {
    grid-template-columns: 1fr 44px;
  }

  .story-progress {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .story-stage {
    min-height: 620px;
  }

  .story-review {
    width: calc(100% - 48px);
  }
}

@media (max-width: 720px) {
  .network-note {
    top: 52px;
    right: 8px;
    max-width: 235px;
  }

  .hero-map-explore {
    top: 8px;
    left: 8px;
  }

  .hero-map-explore button {
    min-width: 44px;
    min-height: 44px;
  }

  .story-transport {
    width: 44px;
    height: 44px;
  }

  .story-experience {
    padding-right: 12px;
    padding-left: 12px;
  }

  .story-intro h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .story-shell {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: auto;
    min-height: calc(100svh - 77px);
  }

  .story-shell[data-story-beat="review"] {
    grid-template-rows: auto auto;
    height: auto;
  }

  .story-shell[data-story-beat="review"] .story-stage {
    min-height: 0;
  }

  .story-topbar {
    min-height: 154px;
    padding: 14px 12px;
    gap: 10px;
  }

  .story-narration strong {
    font-size: 1.22rem;
  }

  .story-narration small {
    font-size: 0.78rem;
  }

  .story-progress {
    width: 100%;
  }

  .story-progress span {
    flex: 1;
    min-width: 0;
    justify-content: center;
    padding: 0 4px;
    font-size: 0.75rem;
    overflow-wrap: normal;
    white-space: nowrap;
  }

  .story-progress i {
    display: none;
  }

  .story-stage {
    min-height: max(560px, 22rem);
  }

  .story-camera > img {
    object-fit: cover;
  }

  .story-shell[data-story-beat="incident"] .story-camera > img,
  .story-shell[data-story-beat="officer"] .story-camera > img,
  .story-shell[data-story-beat="recover"] .story-camera > img {
    object-position: right center;
  }

  .story-route-casing {
    stroke-width: 13;
  }

  .story-route {
    stroke-width: 7;
  }

  .story-product-bar {
    padding: 0 12px;
  }

  .story-product-bar span {
    display: none;
  }

  .story-card,
  .story-officer-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .story-selection-card,
  .story-coverage-card,
  .story-recovery-card {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .story-selection-card {
    top: 12px;
    bottom: auto;
  }

  .story-incident-card {
    max-height: 276px;
  }

  .story-review {
    top: 64px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .story-shell[data-story-beat="review"] .story-review {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 64px 12px 12px;
  }

  .story-review-heading {
    grid-template-columns: minmax(0, 1fr);
    padding: 11px 12px;
    gap: 2px 12px;
  }

  .story-review-heading span,
  .story-review-heading strong,
  .story-review-heading b {
    min-width: 0;
  }

  .story-review-heading strong {
    font-size: 1.2rem;
  }

  .story-review-heading b {
    grid-column: 1;
    grid-row: auto;
    font-size: 0.75rem;
  }

  .story-review-grid {
    flex: none;
    display: block;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .story-outcome {
    min-width: 0;
    min-height: 0;
    height: auto;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid #3d566a;
    gap: 6px;
  }

  .story-outcome > strong {
    font-size: 1.38rem;
  }

  .story-outcome > p {
    font-size: 0.75rem;
  }

  .story-outcome > div {
    grid-template-columns: auto minmax(0, 1fr);
    margin-top: auto;
    padding-top: 7px;
    gap: 3px 6px;
  }

  .story-outcome > div b {
    font-size: 1.05rem;
  }

  .story-outcome > div small {
    font-size: 0.75rem;
  }

  .story-evidence li {
    grid-template-columns: minmax(3.2rem, auto) minmax(0, 1fr);
    min-width: 0;
    min-height: 52px;
    padding: 8px 12px;
    gap: 6px;
  }

  .story-evidence {
    display: block;
    min-width: 0;
  }

  .story-evidence li > span,
  .story-evidence li b,
  .story-evidence li small,
  .story-review,
  .story-review-grid,
  .story-next-shift {
    min-width: 0;
    overflow-wrap: break-word;
  }

  .story-evidence li > i,
  .story-evidence small {
    font-size: 0.75rem;
  }

  .story-evidence li b {
    font-size: 0.8rem;
  }

  .story-evidence small {
    display: none;
  }

  .story-next-shift {
    padding: 9px 12px;
  }

  .story-next-shift strong {
    font-size: 0.75rem;
  }

  .story-next-shift {
    grid-column: 1;
  }

  .story-reduced-summary li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .story-shell.is-reduced,
  .story-shell.is-static {
    height: auto;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  .story-experience {
    padding-top: 56px;
  }

  .story-shell {
    min-height: 0;
  }

  .story-topbar {
    min-height: 96px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .story-stage {
    min-height: clamp(450px, calc(100svh - 200px), 520px);
  }

  .story-review {
    top: 56px;
    bottom: 12px;
  }

  .story-review-heading {
    height: 64px;
    box-sizing: border-box;
    padding: 9px 14px;
  }

  .story-review-heading strong {
    font-size: 1.2rem;
  }

  .story-review-grid {
    flex: 1 1 auto;
    grid-template-rows: minmax(0, 1fr) auto;
    height: auto;
    min-height: 0;
  }

  .story-outcome {
    min-height: 0;
    padding: 14px;
  }

  .story-outcome > strong {
    font-size: 1.75rem;
  }

  .story-evidence {
    min-height: 0;
  }

  .story-evidence li {
    padding: 9px 14px;
  }

  .story-next-shift {
    padding: 9px 14px;
  }

  .story-next-shift strong {
    font-size: 0.72rem;
  }

  .story-card {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

@media (pointer: coarse) {
  .coverage-map-viewport {
    touch-action: pan-y pinch-zoom;
  }

  .story-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-map-viewport,
  .story-camera,
  .story-cursor {
    will-change: auto;
  }

  .story-shell.is-reduced .story-transport,
  .story-shell.is-reduced .story-cursor {
    display: none;
  }

  .story-shell.is-reduced .story-reduced-summary {
    position: static;
  }
}

html.no-js .story-reduced-summary,
.story-shell.is-static .story-reduced-summary {
  position: static;
}

.story-shell.is-reduced .story-reduced-summary,
html.no-js .story-reduced-summary,
.story-shell.is-static .story-reduced-summary {
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

html.no-js .story-stage,
.story-shell.is-static .story-stage {
  display: none;
}

html.no-js .story-shell,
.story-shell.is-static {
  min-height: 0;
}

html.no-js .story-transport,
html.no-js .story-cursor,
.story-shell.is-static .story-transport,
.story-shell.is-static .story-cursor {
  display: none;
}

/* Publication sections and authored product evidence */

.section-heading h2,
.product-surfaces-heading h2,
.how-heading h2,
.security-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.section-heading > p:last-child {
  max-width: 66ch;
  margin: 26px 0 0;
  color: var(--body);
  font-size: 1.06rem;
}

.product-surfaces {
  padding: clamp(96px, 9vw, 150px) max(32px, calc((100% - var(--wide)) / 2));
  background: var(--paper-shade);
}

.product-surfaces-heading {
  max-width: var(--wide);
  margin: 0 auto clamp(44px, 5vw, 72px);
}

.product-surfaces-heading h2 {
  max-width: 14ch;
}

.product-surfaces-heading .section-label,
.how-heading .section-label {
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.065em;
}

.surface-explorer {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  max-width: var(--wide);
  min-height: 610px;
  margin: 0 auto;
  border: 1px solid var(--deep-line);
  background: var(--deep);
  color: var(--light-text);
}

.surface-tabs {
  display: grid;
  align-content: start;
  border-right: 1px solid var(--deep-line);
  background: var(--deep-2);
}

.surface-tabs button {
  position: relative;
  display: grid;
  min-height: 112px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--deep-line);
  background: transparent;
  color: var(--light-body);
  cursor: pointer;
  text-align: left;
  gap: 2px;
}

.surface-tabs button[aria-selected="true"] {
  background: var(--deep-3);
  color: var(--light-text);
}

.surface-tabs button[aria-selected="true"]::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--signal);
  content: "";
}

.surface-tabs button > span {
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.surface-tabs button strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.surface-tabs button small {
  max-width: 27ch;
  color: #93a9b5;
  font-size: 0.8rem;
  line-height: 1.3;
}

.surface-panels,
.surface-panel {
  min-width: 0;
}

.surface-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(430px, 0.58fr);
  min-height: 608px;
}

.surface-copy {
  align-self: center;
  padding: clamp(28px, 4vw, 60px);
}

.surface-copy > span {
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.surface-copy h3 {
  margin: 10px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  font-weight: 600;
  line-height: 1.02;
}

.surface-copy p {
  margin-bottom: 22px;
  color: var(--light-body);
}

.surface-copy ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--deep-line);
  list-style: none;
}

.surface-copy li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--deep-line);
  color: #c5d2d7;
  font-size: 0.82rem;
}

.surface-copy li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--signal);
  content: "";
}

.authored-stage {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border-left: 1px solid var(--deep-line);
  background: #091c2b;
}

.authored-stage > img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
  object-fit: cover;
}

.authored-stage::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 39, 0.28);
  content: "";
  pointer-events: none;
}

.example-rail,
.example-call,
.review-example-heading,
.review-bars,
.review-example ol {
  position: absolute;
  z-index: 4;
  border: 1px solid #496276;
  background: rgba(7, 24, 39, 0.96);
}

.command-units i {
  position: absolute;
  z-index: 3;
  top: var(--unit-y);
  left: var(--unit-x);
  display: grid;
  width: 25px;
  height: 25px;
  border: 2px solid #d7f5f7;
  border-radius: 50%;
  background: #087d89;
  box-shadow: 0 0 0 4px rgba(74, 205, 214, 0.18), 0 2px 8px rgba(3, 14, 23, 0.8);
  color: #fff;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 700;
  place-items: center;
  transform: translate(-50%, -50%);
}

.command-units i::before {
  position: absolute;
  top: -8px;
  left: 7px;
  width: 7px;
  height: 8px;
  background: #d7f5f7;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  transform: rotate(var(--unit-heading, 0deg));
  transform-origin: 50% 20px;
}

.command-legend {
  position: absolute;
  z-index: 4;
  right: 20px;
  top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  padding: 10px 12px;
  border: 1px solid #496276;
  background: rgba(7, 24, 39, 0.94);
  gap: 5px 12px;
}

.command-legend b {
  color: #6dced6;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.command-legend span {
  display: flex;
  align-items: center;
  color: #b8c9d0;
  font-size: 0.65rem;
  gap: 5px;
}

.command-legend i {
  width: 46px;
  height: 5px;
}

.command-legend .risk-key i {
  background: linear-gradient(90deg, #b99855, #e7782d 58%, #c92d3d);
}

.command-legend .density-key i {
  background: #65d9de;
  box-shadow: 0 0 8px rgba(101, 217, 222, 0.62);
}

.example-rail {
  top: 24px;
  left: 24px;
  display: grid;
  width: min(250px, 38%);
}

.example-rail b,
.example-rail span {
  padding: 11px 13px;
  border-bottom: 1px solid #354f62;
  font-size: 0.78rem;
}

.example-rail b {
  color: #6dced6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.example-rail span:last-child {
  border-bottom: 0;
  color: #e1b357;
}

.example-call {
  right: 24px;
  bottom: 28px;
  display: grid;
  width: min(310px, 48%);
  padding: 15px;
  gap: 3px;
}

.example-call span,
.example-call small {
  color: #f4a39b;
  font-size: 0.72rem;
}

.example-call strong {
  font-size: 1.05rem;
}

.officer-example,
.vehicle-example {
  display: grid;
  min-height: 608px;
  padding: clamp(24px, 4vw, 48px);
  place-items: center;
}

.officer-example {
  min-height: 740px;
}

.phone-device {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(19rem, 100%);
  min-height: 41.15rem;
  padding: 8px;
  border: 4px solid #314859;
  border-radius: 52px;
  background: #01070c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.phone-device::before,
.phone-device::after {
  position: absolute;
  left: -7px;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: #314859;
  content: "";
}

.phone-device::before {
  top: 112px;
  height: 58px;
}

.phone-device::after {
  top: 184px;
  height: 86px;
}

.phone-hardware {
  position: absolute;
  z-index: 6;
  top: 18px;
  left: 50%;
  width: 88px;
  height: 25px;
  border-radius: 18px;
  background: #010509;
  transform: translateX(-50%);
}

.phone-hardware span {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #183449;
  box-shadow: inset 0 0 0 2px #091622;
}

.authored-phone {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(18rem, 1fr) auto auto auto;
  flex: 1;
  overflow: hidden;
  border: 1px solid #496276;
  border-radius: 41px;
  background: #071827;
}

.authored-phone::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 92px;
  height: 4px;
  border-radius: 4px;
  background: rgba(234, 242, 244, 0.78);
  content: "";
  transform: translateX(-50%);
}

.authored-phone header,
.authored-phone footer,
.authored-vehicle header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #3b5366;
}

.authored-phone header {
  padding-top: 34px;
}

.authored-phone header span,
.authored-phone header i,
.authored-vehicle header span {
  color: #9ab0bb;
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.authored-phone header b {
  color: #6dced6;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.phone-route-map,
.vehicle-route-map {
  position: relative;
  overflow: hidden;
  background: #0b2030;
}

.phone-route-map {
  min-height: 18rem;
}

.phone-route-map img,
.vehicle-route-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
}

.phone-route-state {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 10px;
  padding: 6px 8px;
  border: 1px solid #496276;
  background: rgba(7, 24, 39, 0.94);
  color: #b9edf0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-route-state i,
.authored-phone p span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #65d9de;
}

.phone-maneuver {
  display: flex;
  align-items: center;
  padding: 16px 14px;
  gap: 16px;
}

.phone-maneuver > i,
.vehicle-display section > i {
  color: #fff;
  font-size: 2.5rem;
  font-style: normal;
}

.phone-maneuver > i {
  display: grid;
  width: 52px;
  height: 52px;
  border: 1px solid #496276;
  border-radius: 14px;
  background: #0c2435;
  font-size: 2.15rem;
  place-items: center;
}

.phone-maneuver span,
.vehicle-display section span {
  display: grid;
  gap: 3px;
}

.authored-phone small,
.authored-vehicle small,
.authored-phone em,
.authored-vehicle em {
  color: #93a9b5;
  font-size: 0.72rem;
  font-style: normal;
}

.authored-phone footer {
  border-top: 1px solid #3b5366;
  border-bottom: 0;
  color: #93a9b5;
  font-size: 0.72rem;
}

.authored-phone footer span {
  display: grid;
}

.authored-phone footer b {
  color: #eaf2f4;
  font-size: 0.9rem;
}

.authored-phone p,
.authored-vehicle p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 10px 14px;
  border-top: 1px solid #3b5366;
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  flex-wrap: wrap;
  gap: 12px;
}

.authored-phone p b {
  color: #f2d49a;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.authored-phone p {
  padding-bottom: 18px;
}

.vehicle-device {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  width: min(44rem, 100%);
  padding: 10px;
  border: 2px solid #314859;
  border-radius: 24px;
  background: #020b12;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.vehicle-controls {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 30px;
}

.vehicle-controls i {
  width: 10px;
  height: 10px;
  border: 1px solid #516878;
  border-radius: 50%;
  background: #142b3a;
}

.vehicle-controls i:first-child {
  width: 20px;
  height: 20px;
}

.authored-vehicle {
  overflow: hidden;
  border: 1px solid #496276;
  border-radius: 8px;
  background: #071827;
}

.authored-vehicle header b {
  color: #e1b357;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.authored-vehicle header small {
  margin-left: auto;
  padding-right: 16px;
  color: #93a9b5;
}

.vehicle-display {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.85fr);
  min-height: 16rem;
}

.vehicle-route-map {
  position: relative;
  border-right: 1px solid #3b5366;
}

.vehicle-route-map > span {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid #496276;
  background: rgba(7, 24, 39, 0.94);
  color: #b9edf0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vehicle-display section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 18px;
  gap: 8px;
}

.vehicle-display section > small {
  color: #e1b357;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-display section > i {
  display: grid;
  width: 62px;
  height: 62px;
  border: 1px solid #496276;
  border-radius: 14px;
  background: #0c2435;
  font-size: 2.65rem;
  place-items: center;
}

.vehicle-display section strong {
  font-size: 1.18rem;
}

.vehicle-trip {
  display: flex;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #3b5366;
  gap: 10px;
}

.vehicle-trip b {
  color: #eaf2f4;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.vehicle-trip span {
  color: #93a9b5;
  font-size: 0.72rem;
}

.authored-vehicle dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid #3b5366;
}

.authored-vehicle dl div {
  padding: 12px 14px;
  border-right: 1px solid #3b5366;
}

.authored-vehicle dl div:last-child {
  border-right: 0;
}

.authored-vehicle dt,
.authored-vehicle dd {
  margin: 0;
}

.authored-vehicle dt {
  color: #7f97a6;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.authored-vehicle dd {
  font-weight: 700;
}

.review-example {
  padding: 24px;
  background: #091c2b;
}

.review-example-heading,
.review-bars,
.review-example ol {
  position: relative;
  inset: auto;
}

.review-example-heading {
  display: grid;
  padding: 16px;
  gap: 4px;
}

.review-example-heading span {
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.review-example-heading strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.05;
}

.review-bars {
  display: grid;
  margin-top: 14px;
  padding: 18px;
  gap: 15px;
}

.review-bars span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
}

.review-bars i {
  grid-column: 1 / -1;
  width: var(--value);
  height: 7px;
  background: #45c4ce;
}

.review-bars b,
.review-bars em {
  font-size: 0.76rem;
  font-style: normal;
}

.review-example ol {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.review-example li {
  display: grid;
  grid-template-columns: 58px 1fr;
  padding: 11px 14px;
  border-bottom: 1px solid #3b5366;
  color: #b8c8cf;
  font-size: 0.76rem;
}

.review-example time {
  color: #6dced6;
  font-weight: 700;
}

.resilience-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(520px, 1.3fr);
  max-width: var(--wide);
  margin: clamp(56px, 7vw, 96px) auto 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.resilience-copy {
  padding: clamp(32px, 4vw, 54px) clamp(28px, 4vw, 52px) clamp(32px, 4vw, 54px) 0;
  border-right: 1px solid var(--line-strong);
}

.resilience-copy h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 600;
  line-height: 1;
}

.resilience-copy > p:last-child {
  margin: 0;
  color: var(--body);
}

.resilience-instrument {
  padding: clamp(32px, 4vw, 54px);
}

.resilience-tabs,
.record-tabs {
  display: flex;
  border: 1px solid var(--line-strong);
}

.resilience-tabs button,
.record-tabs button {
  flex: 1;
  min-height: 48px;
  padding: 8px 12px;
  border-right: 1px solid var(--line-strong);
  background: transparent;
  color: var(--body);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.resilience-tabs button:last-child,
.record-tabs button:last-child {
  border-right: 0;
}

.resilience-tabs button[aria-selected="true"],
.record-tabs button[aria-selected="true"] {
  background: var(--navy);
  color: var(--light-text);
}

.resilience-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 4px;
  margin: 22px 0;
  gap: 3px;
}

.resilience-track i {
  background: var(--line-strong);
}

.resilience-proof[data-resilience-state="resilience-quality"] .resilience-track i:first-child {
  background: var(--signal);
}

.resilience-panels {
  min-height: 210px;
}

.resilience-panels section {
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: var(--paper-clear);
}

.resilience-proof[data-resilience-state="resilience-buffer"] .resilience-track i:nth-child(2),
.resilience-proof[data-resilience-state="resilience-route"] .resilience-track i:nth-child(3),
.resilience-proof[data-resilience-state="resilience-reconnect"] .resilience-track i:nth-child(4) {
  background: var(--signal);
}

.resilience-panels span {
  color: var(--navy-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.record-dialog-heading span,
.record-facts span,
.activity-ledger span,
.export-proof span {
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.resilience-panels strong {
  display: block;
  margin: 9px 0 12px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.08;
}

.resilience-panels p {
  max-width: 60ch;
  margin: 0;
  color: var(--body);
}

.shift-record-dialog {
  width: min(1120px, calc(100% - 48px));
  max-width: none;
  max-height: min(860px, calc(100svh - 48px));
  padding: 0;
  overflow: hidden;
  border: 1px solid #4a6477;
  border-radius: 0;
  background: var(--deep);
  color: var(--light-text);
}

.shift-record-dialog::backdrop {
  background: rgba(3, 13, 22, 0.82);
}

.record-dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--deep-line);
  gap: 24px;
}

.record-dialog-heading h2 {
  margin: 3px 0 4px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 600;
  line-height: 1;
}

.record-dialog-heading p {
  max-width: 66ch;
  margin: 0;
  color: var(--light-body);
  font-size: 0.82rem;
}

.record-dialog-heading button {
  min-width: 56px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--deep-line);
  background: transparent;
  color: var(--light-text);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.record-dialog-body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  max-height: calc(100svh - 190px);
  padding: 20px 24px 24px;
  overflow: auto;
}

.record-tabs {
  border-color: var(--deep-line);
}

.record-tabs button {
  border-color: var(--deep-line);
  color: var(--light-body);
}

.record-tabs button[aria-selected="true"] {
  background: var(--signal);
  color: var(--deep);
}

.record-panel {
  min-height: 460px;
  border: 1px solid var(--deep-line);
  border-top: 0;
  background: var(--deep-2);
}

#record-coverage {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.record-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-right: 1px solid var(--deep-line);
}

.record-map img {
  width: 100%;
  height: 100%;
  opacity: 0.75;
  object-fit: cover;
}

.record-gap {
  position: absolute;
  padding: 8px 10px;
  border: 1px solid #577288;
  background: rgba(7, 24, 39, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
}

.gap-north {
  top: 22%;
  left: 34%;
  color: #6dced6;
}

.gap-south {
  right: 8%;
  bottom: 18%;
  color: #e1b357;
}

.record-facts {
  display: grid;
  align-content: start;
}

.record-facts div,
.activity-ledger div {
  display: grid;
  padding: 22px;
  border-bottom: 1px solid var(--deep-line);
  gap: 4px;
}

.record-facts strong,
.activity-ledger strong,
.export-proof strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.record-facts small,
.activity-ledger small,
.export-proof small {
  color: var(--light-body);
}

.officer-comparison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 360px;
}

.officer-comparison > div {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 48px);
  border-right: 1px solid var(--deep-line);
  gap: 7px;
}

.officer-comparison > div:last-child {
  border-right: 0;
}

.officer-comparison span {
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.officer-comparison strong {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 600;
}

.officer-comparison small,
.record-note {
  color: var(--light-body);
}

.officer-comparison i {
  display: block;
  width: var(--value);
  height: 7px;
  margin-top: 14px;
  background: #45c4ce;
}

.record-note {
  margin: 0;
  padding: 18px 24px;
  border-top: 1px solid var(--deep-line);
}

#record-activity {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.activity-ledger {
  border-right: 1px solid var(--deep-line);
}

.route-sequence {
  display: grid;
  align-content: start;
  padding: clamp(28px, 4vw, 48px);
  gap: 24px;
}

.route-sequence header {
  display: grid;
  gap: 6px;
}

.route-sequence header > span,
.route-sequence time {
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.route-sequence header > h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  font-weight: 600;
  line-height: 1;
}

.route-sequence header p {
  max-width: 44ch;
  margin: 2px 0 0;
  color: var(--light-body);
}

.route-sequence ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--deep-line);
  border-left: 1px solid var(--deep-line);
  list-style: none;
}

.route-sequence li {
  display: grid;
  align-content: start;
  min-height: 138px;
  padding: 20px;
  border-right: 1px solid var(--deep-line);
  border-bottom: 1px solid var(--deep-line);
  gap: 6px;
}

.route-sequence li strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.08;
}

.route-sequence li small {
  color: var(--light-body);
}

#record-audit {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.record-timeline {
  margin: 0;
  padding: 0;
  border-right: 1px solid var(--deep-line);
  list-style: none;
}

.record-timeline li {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 104px;
  padding: 22px;
  border-bottom: 1px solid var(--deep-line);
  gap: 16px;
}

.record-timeline time {
  color: #6dced6;
  font-weight: 700;
}

.record-timeline span {
  display: grid;
  align-content: start;
}

.record-timeline small {
  color: var(--light-body);
}

.export-proof {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 50px);
  gap: 8px;
}

.record-fallback {
  display: none;
}

.how-it-works {
  padding: clamp(96px, 9vw, 150px) max(32px, calc((100% - var(--content)) / 2));
  background: var(--paper-clear);
}

.how-heading {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(380px, 1.15fr);
  grid-template-areas:
    "label body"
    "title body";
  grid-template-rows: auto auto;
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 84px);
  column-gap: clamp(50px, 9vw, 150px);
  row-gap: 0;
}

.how-heading .section-label {
  grid-area: label;
  margin: 0 0 12px;
}

.how-heading h2 {
  grid-area: title;
}

.how-heading > p:last-child {
  grid-area: body;
  align-self: end;
  margin: 0;
}

.operating-chain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.operating-chain li {
  display: grid;
  grid-template-columns: minmax(126px, 0.35fr) minmax(0, 0.65fr);
  padding: 30px 0;
  border-bottom: 1px solid var(--line-strong);
  gap: 8px 26px;
}

.operating-chain li:nth-child(odd) {
  padding-right: 34px;
  border-right: 1px solid var(--line-strong);
}

.operating-chain li:nth-child(even) {
  padding-left: 34px;
}

.operating-chain span {
  grid-row: 1 / 3;
  color: var(--navy-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.operating-chain h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.08;
}

.operating-chain p {
  margin: 6px 0 0;
  color: var(--body);
  font-size: 0.9rem;
}

.authority-models {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(520px, 1.35fr);
  margin-top: clamp(58px, 7vw, 96px);
  padding-top: clamp(38px, 5vw, 70px);
  border-top: 2px solid var(--ink);
  gap: clamp(50px, 8vw, 130px);
}

.authority-models h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  font-weight: 600;
  line-height: 1;
}

.authority-models > div > p:last-child {
  color: var(--body);
}

.authority-models dl {
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.authority-models dl div {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 0.65fr);
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
  gap: 24px;
}

.authority-models dt {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.authority-models dd {
  margin: 0;
  color: var(--body);
}

.security-operations {
  padding: clamp(96px, 9vw, 150px) max(32px, calc((100% - var(--wide)) / 2));
  background: var(--deep);
  color: var(--light-text);
}

.security-heading {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(380px, 1.15fr);
  grid-template-areas:
    "label body"
    "title body";
  grid-template-rows: auto auto;
  align-items: start;
  max-width: var(--wide);
  margin: 0 auto clamp(48px, 6vw, 84px);
  column-gap: clamp(50px, 9vw, 150px);
  row-gap: 0;
}

.security-heading .section-label {
  grid-area: label;
  margin: 0 0 12px;
  color: #6dced6;
}

.security-heading h2 {
  grid-area: title;
  font-size: clamp(2.75rem, 4.2vw, 4.85rem);
}

.security-heading > p:last-child {
  grid-area: body;
  align-self: end;
  margin: 0;
  color: var(--light-body);
}

.security-ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--wide);
  margin: 0 auto;
  border-top: 1px solid var(--deep-line);
  border-left: 1px solid var(--deep-line);
}

.security-ledger article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--deep-line);
  border-bottom: 1px solid var(--deep-line);
}

.security-ledger span {
  color: #6dced6;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.security-ledger h3 {
  margin: 12px 0 18px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.06;
}

.security-ledger p {
  margin: 0;
  color: var(--light-body);
  font-size: 0.95rem;
}

.security-boundary {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(320px, 0.7fr) auto;
  align-items: center;
  max-width: var(--wide);
  margin: 34px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--deep-line);
  border-bottom: 1px solid var(--deep-line);
  gap: 30px;
}

.security-boundary strong {
  color: #6dced6;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.security-boundary p {
  margin: 0;
  color: var(--light-body);
  font-size: 0.9rem;
}

.security-boundary .text-link {
  color: var(--light-text);
}

/* Phone to vehicle continuity inside the main shift */

.story-officer-card {
  height: 19.375rem;
}

.story-officer-card > .story-phone-frame:first-child,
.story-officer-card > .story-vehicle-frame {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  border: 0;
}

.story-phone-frame > div:first-child,
.story-vehicle-frame header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 13px;
  border-bottom: 1px solid #3b5366;
}

.story-phone-frame > div:first-child span,
.story-vehicle-frame header span {
  color: #6dced6;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-phone-frame > div:first-child b {
  color: #f29188;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.story-phone-receipt {
  display: grid;
  padding: 10px 13px;
  border-bottom: 1px solid #3b5366;
  gap: 2px;
}

.story-phone-receipt > span {
  color: #f4a39b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-phone-receipt strong {
  font-size: 0.82rem;
}

.story-phone-receipt small {
  color: #93a9b5;
  font-size: 0.68rem;
  line-height: 1.25;
}

.story-phone-receipt button {
  min-height: 38px;
  margin: 7px -13px -10px;
  border-top: 1px solid #3b5366;
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-phone-receipt.is-acknowledged small {
  color: #6dced6;
}

.story-phone-frame section {
  padding-top: 12px;
  padding-bottom: 12px;
}

.story-vehicle-frame {
  background: rgba(7, 24, 39, 0.98);
}

.story-vehicle-frame header b {
  color: #e1b357;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-vehicle-frame > section {
  display: flex;
  align-items: center;
  padding: 22px 16px;
  gap: 16px;
}

.story-vehicle-frame > section > i {
  color: #fff;
  font-size: 2.7rem;
  font-style: normal;
}

.story-vehicle-frame section div {
  display: grid;
  gap: 2px;
}

.story-vehicle-frame section small,
.story-vehicle-frame section span {
  color: #93a9b5;
  font-size: 0.72rem;
}

.story-vehicle-frame section strong {
  font-size: 1.16rem;
}

.story-vehicle-frame dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid #3b5366;
  border-bottom: 1px solid #3b5366;
}

.story-vehicle-frame dl div {
  padding: 10px 12px;
  border-right: 1px solid #3b5366;
}

.story-vehicle-frame dl div:last-child {
  border-right: 0;
}

.story-vehicle-frame dt,
.story-vehicle-frame dd {
  margin: 0;
}

.story-vehicle-frame dt {
  color: #7f97a6;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-vehicle-frame dd {
  font-size: 0.82rem;
  font-weight: 700;
}

.story-vehicle-frame p {
  margin: 0;
  padding: 10px 12px;
  color: #6dced6;
  font-size: 0.68rem;
  font-weight: 700;
}

.story-clear-card {
  right: 24px;
  bottom: 24px;
  left: auto;
  width: min(380px, 36vw);
}

.story-clear-card {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1100px) {
  .site-nav {
    width: min(var(--wide), calc(100% - 40px));
  }

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

  .js-loading .nav-links,
  .enhanced .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: calc((100vw - 100%) / -2);
    left: calc((100vw - 100%) / -2);
    display: grid;
    visibility: hidden;
    padding: 12px max(20px, calc((100% - var(--wide)) / 2));
    border-bottom: 1px solid var(--line);
    background: var(--paper-clear);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms var(--ease-out),
      transform 180ms var(--ease-out),
      visibility 0s linear 180ms;
  }

  .enhanced .site-header[data-menu-open] .nav-links {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .nav-links a {
    min-height: 48px;
  }

  html.no-js .site-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  html.no-js .nav-links {
    display: flex;
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .surface-explorer {
    grid-template-columns: minmax(0, 1fr);
  }

  .surface-tabs {
    grid-template-columns: repeat(4, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--deep-line);
  }

  .surface-tabs button {
    min-height: 96px;
    border-right: 1px solid var(--deep-line);
    border-bottom: 0;
  }

  .surface-tabs button[aria-selected="true"] {
    background: var(--deep-3);
  }

  .surface-tabs button[aria-selected="true"]::after {
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    height: 4px;
  }

  .surface-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .surface-copy {
    padding: 32px;
  }

  .authored-stage {
    border-left: 1px solid var(--deep-line);
  }
}

@media (max-width: 900px) {
  .product-surfaces-heading,
  .how-heading,
  .security-heading,
  .resilience-proof,
  .authority-models {
    grid-template-columns: minmax(0, 1fr);
  }

  .how-heading,
  .security-heading {
    grid-template-areas:
      "label"
      "title"
      "body";
  }

  .product-surfaces-heading > *,
  .how-heading > *,
  .security-heading > *,
  .surface-panel > *,
  .resilience-proof > *,
  .resilience-panels section,
  .authority-models > *,
  .authority-models h3,
  .security-ledger article,
  .security-ledger h3,
  .security-boundary > * {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .product-surfaces-heading .section-label,
  .product-surfaces-heading h2,
  .product-surfaces-heading > p:last-child,
  .how-heading .section-label,
  .how-heading h2,
  .how-heading > p:last-child,
  .security-heading .section-label,
  .security-heading h2,
  .security-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .how-heading > p:last-child,
  .security-heading > p:last-child {
    margin-top: 26px;
  }

  .surface-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .authored-stage {
    min-height: 430px;
    border-top: 1px solid var(--deep-line);
    border-left: 0;
  }

  .resilience-copy {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .operating-chain {
    grid-template-columns: minmax(0, 1fr);
  }

  .operating-chain li:nth-child(odd),
  .operating-chain li:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .security-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-boundary {
    grid-template-columns: minmax(0, 1fr);
  }

  #record-coverage,
  #record-activity,
  #record-audit {
    grid-template-columns: minmax(0, 1fr);
  }

  .record-map,
  .activity-ledger,
  .record-timeline {
    border-right: 0;
    border-bottom: 1px solid var(--deep-line);
  }
}

@media (max-width: 720px) {
  .product-surfaces,
  .how-it-works,
  .security-operations {
    padding-right: 16px;
    padding-left: 16px;
  }

  .how-it-works,
  .security-operations {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .how-heading,
  .security-heading {
    margin-bottom: 40px;
  }

  .story-card button {
    min-height: 44px;
  }

  .surface-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--signal) var(--deep-2);
    scrollbar-width: thin;
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 18px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 18px), transparent);
  }

  .surface-tabs button {
    flex: 0 0 68%;
    min-height: 104px;
    scroll-snap-align: start;
  }

  .surface-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .surface-tabs::-webkit-scrollbar-thumb {
    background: var(--signal);
  }

  .surface-tabs::-webkit-scrollbar-track {
    background: var(--deep-2);
  }

  .surface-copy {
    padding: 26px 20px;
  }

  .surface-copy h3 {
    font-size: 2.35rem;
  }

  .authored-stage {
    min-height: 380px;
  }

  .command-example {
    min-height: 30rem;
  }

  .officer-example,
  .vehicle-example {
    padding: 20px 12px;
  }

  .phone-device {
    width: min(19rem, 100%);
  }

  .vehicle-device {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    padding: 7px;
    border-radius: 18px;
  }

  .vehicle-controls {
    gap: 22px;
  }

  .vehicle-controls i:first-child {
    width: 16px;
    height: 16px;
  }

  .vehicle-display {
    grid-template-columns: minmax(0, 1fr);
  }

  .vehicle-route-map {
    min-height: 13rem;
    border-right: 0;
    border-bottom: 1px solid #3b5366;
  }

  .vehicle-display section {
    padding: 18px 14px;
  }

  .command-legend {
    right: 12px;
    top: 12px;
  }

  .example-rail {
    top: 14px;
    left: 14px;
    width: 54%;
  }

  .example-call {
    right: 14px;
    bottom: 14px;
    width: 66%;
  }

  .review-example {
    padding: 14px;
  }

  .resilience-tabs,
  .record-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resilience-tabs button,
  .record-tabs button {
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
  }

  .resilience-instrument {
    padding: 28px 0;
  }

  .resilience-panels {
    min-height: 280px;
  }

  .shift-record-dialog {
    width: 100%;
    height: 100svh;
    max-height: none;
    margin: 0;
    border: 0;
  }

  .shift-record-dialog[open] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    isolation: isolate;
  }

  .record-dialog-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 14px 16px;
    background: var(--deep);
    gap: 12px;
  }

  .record-dialog-body {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 0;
    max-height: none;
    padding: 12px 12px max(16px, env(safe-area-inset-bottom));
    contain: paint;
    overscroll-behavior: contain;
  }

  .record-tabs {
    position: static;
  }

  .record-panel {
    min-height: 0;
  }

  .record-map {
    min-height: clamp(220px, 36svh, 280px);
  }

  .record-facts div,
  .activity-ledger div {
    padding: 18px;
  }

  .officer-comparison {
    grid-template-columns: minmax(0, 1fr);
  }

  .officer-comparison > div {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--deep-line);
  }

  .route-sequence {
    padding: 28px 18px;
  }

  .route-sequence ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .route-sequence li {
    min-height: 0;
  }

  .operating-chain li {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .operating-chain span {
    grid-row: auto;
  }

  .authority-models dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .authority-models {
    margin-top: 46px;
    padding-top: 32px;
  }

  .security-ledger {
    grid-template-columns: minmax(0, 1fr);
  }

  .security-ledger article {
    min-height: 0;
    padding: 22px;
  }

  .security-boundary {
    margin-top: 26px;
  }

  .story-officer-card {
    height: 21rem;
  }

  .story-clear-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }
}

@media (max-width: 440px) {
  .section-heading h2,
  .product-surfaces-heading h2,
  .how-heading h2,
  .security-heading h2 {
    font-size: 2.65rem;
  }

  .authored-stage {
    min-height: max(350px, 18rem);
  }

  .command-example {
    min-height: 30rem;
  }

  .authored-phone footer,
  .authored-vehicle dl {
    grid-template-columns: minmax(0, 1fr);
  }

  .authored-phone footer {
    display: grid;
    gap: 8px;
  }

  .authored-vehicle dl div {
    border-right: 0;
    border-bottom: 1px solid #3b5366;
  }

  .authored-vehicle dl div:last-child {
    border-bottom: 0;
  }

  .command-legend {
    display: none;
  }

  .record-dialog-heading h2 {
    font-size: 1.9rem;
  }

  .record-dialog-heading p {
    display: none;
  }

  .resilience-panels section {
    padding: 18px;
  }

  .resilience-panels strong {
    font-size: 1.45rem;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  .shift-record-dialog {
    max-height: calc(100svh - 20px);
  }

  .record-dialog-heading {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .record-dialog-heading h2 {
    font-size: 2.3rem;
  }

  .record-dialog-body {
    max-height: calc(100svh - 108px);
    padding-top: 12px;
  }

  .record-panel {
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .surface-panel.is-entering,
  .resilience-panels section.is-entering,
  .record-panel.is-entering {
    animation: none;
  }

  .js-loading .nav-links,
  .enhanced .nav-links {
    transition-duration: 0s;
  }
}

html.no-js .surface-tabs,
html.no-js .resilience-tabs,
html.no-js .resilience-track,
html.no-js [data-open-record],
html.no-js .shift-record-dialog {
  display: none;
}

html.no-js .surface-explorer {
  grid-template-columns: minmax(0, 1fr);
}

html.no-js .surface-panels,
html.no-js .resilience-panels {
  display: grid;
  gap: 20px;
}

html.no-js [data-surface-panel][hidden],
html.no-js [data-resilience-panel][hidden] {
  display: grid !important;
}

html.no-js .record-fallback,
html.dialog-unsupported .record-fallback {
  display: block;
  margin: 0;
  padding: 28px max(32px, calc((100% - var(--content)) / 2));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--paper-shade);
}

html.no-js .record-fallback summary,
html.dialog-unsupported .record-fallback summary {
  min-height: 44px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

html.no-js .record-fallback p,
html.dialog-unsupported .record-fallback p {
  max-width: 80ch;
  color: var(--body);
}
