/* ============================================================
   RECON AERIAL — V7
   Retail-modern (Apple / DJI) · tactical HUD accents
   ============================================================ */

:root {
  /* paper (light surface) */
  --paper:     #EEF2F8;
  --paper-2:   #E6EBF2;
  --paper-3:   #DDE3EC;
  --line:      #D5DCE6;
  --line-2:    #BFC7D2;

  /* ink (text on paper) */
  --ink:       #0A0D11;
  --ink-2:     #3D434B;
  --ink-3:     #6B737E;
  --ink-4:     #9CA1A8;

  /* black-out (tactical bands) */
  --bo:        #0A0D11;
  --bo-1:      #0E1217;
  --bo-2:      #131820;
  --bo-line:   #1F252F;
  --bo-line-2: #2A323E;
  --bo-ink:    #E6ECEF;
  --bo-ink-2:  #A6AEB8;
  --bo-ink-3:  #6B737E;

  /* accent */
  --accent:    #6E9AFF;        /* light blue — for dark surfaces */
  --accent-d:  #0048FF;        /* electric blue — for light surfaces */
  --accent-soft: rgba(110,154,255,0.16);

  --display:   'Space Grotesk', system-ui, sans-serif;
  --body:      -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono:      'JetBrains Mono', ui-monospace, monospace;

  --gutter:    32px;
  --max:       1680px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #000; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, select:focus-visible,
.btn:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent-d); outline-offset: 2px;
}
.dark-band a:focus-visible, .dark-band button:focus-visible,
.dark-band .btn:focus-visible, .hero-stage a:focus-visible { outline-color: var(--accent); }
.footer-bar a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bar a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono { font-family: var(--mono); font-feature-settings: 'tnum', 'zero'; }

/* tactical tag — used on both light and dark contexts */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.tag::before { content: '['; color: var(--accent-d); }
.tag::after  { content: ']'; color: var(--accent-d); }
.dark-band .tag { color: var(--bo-ink-2); }
.dark-band .tag::before, .dark-band .tag::after { color: var(--accent); }

.dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(110,154,255,0.6);
}
.dot.pulse { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

/* corner ticks for HUD modules — kept as a tactical accent */
.hud-corners > .ct {
  position: absolute;
  width: 12px; height: 12px;
  border: 1px solid var(--accent-d);
  pointer-events: none;
  z-index: 2;
}
.hud-corners > .ct.tl { top: 0; left: 0;  border-right: 0; border-bottom: 0; }
.hud-corners > .ct.tr { top: 0; right: 0; border-left: 0;  border-bottom: 0; }
.hud-corners > .ct.bl { bottom: 0; left: 0;  border-right: 0; border-top: 0; }
.hud-corners > .ct.br { bottom: 0; right: 0; border-left: 0;  border-top: 0; }
.dark-band .hud-corners > .ct { border-color: var(--accent); }

/* ─── Top nav (Apple-style, slim, sticky, blurred) ─────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 var(--gutter);
  background: rgba(238,242,248,0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav .brand {
  display: flex; align-items: center;
  color: var(--ink);
}
.nav .brand .brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.nav .links {
  display: flex; justify-content: center;
  gap: 4px;
}
.nav .links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  border-radius: 999px;
  transition: color 0.18s, background 0.18s;
}
.nav .links a:hover, .nav .links a.active { color: var(--ink); background: rgba(0,0,0,0.05); }

.nav .right {
  display: flex; align-items: center; gap: 12px;
  justify-self: end;
  grid-column: 3;
}
.nav .menu-btn {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav .menu-btn:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.2); }
.nav .menu-btn .menu-bars {
  display: inline-flex; flex-direction: column; gap: 4px;
  width: 16px;
}
.nav .menu-btn .menu-bars span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.22s ease, opacity 0.18s ease;
  transform-origin: center;
}
.nav .menu-btn[aria-expanded="true"] .menu-bars span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav .menu-btn[aria-expanded="true"] .menu-bars span:nth-child(2) {
  opacity: 0;
}
.nav .menu-btn[aria-expanded="true"] .menu-bars span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(238,242,248,0.96);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 8px var(--gutter) 16px;
  flex-direction: column;
}
.mobile-menu[data-open="true"] { display: flex; }
.mobile-menu a {
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a.active { color: var(--accent-d); }
.nav .right .live {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.nav .right .live .v { color: var(--ink); }
.nav .cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px 9px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform 0.15s, background 0.18s;
}
.nav .cta:hover { background: #000; transform: translateY(-1px); }
.nav .cta .arr { color: var(--accent); transition: transform 0.18s; }
.nav .cta:hover .arr { transform: translateX(3px); }

/* ─── Buttons (retail-ish, but tactical micro) ─────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.18s;
}
.btn .arr { color: var(--accent-d); transition: transform 0.18s; }
.btn:hover { border-color: var(--ink); background: rgba(0,0,0,0.04); }
.btn:hover .arr { transform: translateX(3px); }

/* Dark-context buttons swap the blue accent for the lime */
.dark-band .btn .arr,
.tactical-band .btn .arr,
.hero-stage .btn .arr {
  color: var(--accent);
}
.dark-band .btn:hover,
.tactical-band .btn:hover {
  border-color: var(--accent);
  background: rgba(255,255,255,0.06);
}
.btn.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn.primary .arr { color: var(--accent); }
.btn.primary:hover {
  background: #000; border-color: #000;
}
.btn.accent {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn.accent .arr { color: #000; }
.btn.accent:hover { background: #d8ff3a; border-color: #d8ff3a; }
.btn .idx {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
}
.btn.primary .idx { color: rgba(255,255,255,0.45); }
.btn.accent .idx { color: rgba(0,0,0,0.5); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px var(--gutter) 0;
  overflow: hidden;
}
.hero-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 64px;
}
.hero-meta .left { display: flex; gap: 28px; align-items: center; }
.hero-meta .right { display: flex; gap: 28px; align-items: center; }
.hero-meta .v { color: var(--ink); }
.hero-meta .live { color: var(--accent-d); }

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.hero-eyebrow .acc { color: var(--accent-d); }
.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(56px, 10.5vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.hero-title .acc {
  color: var(--accent-d);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  margin: 28px auto 36px;
  max-width: 56ch;
  font-family: var(--body);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.hero-price {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.hero-price .v {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
}
.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Hero stage — big cinematic frame with placeholder + HUD overlay */
.hero-stage {
  position: relative;
  margin: 0 auto;
  aspect-ratio: 16 / 8.2;
  max-width: 1480px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1f28 0%, #0a0d11 60%, #050709 100%);
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
  isolation: isolate;
}
.hero-stage .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.hero-stage .sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 110%, rgba(110,154,255,0.10), transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(120,150,180,0.18), transparent 70%);
}
.hero-stage .grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 95%);
}
.hero-stage .ridge {
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.7) 100%);
}
.hero-stage .placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(230,236,239,0.32);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero-stage .placeholder .stripes {
  position: absolute; inset: 8%;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 22px,
    rgba(255,255,255,0.02) 22px 44px
  );
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 8px;
}
.hero-stage .placeholder .label {
  position: relative;
  padding: 8px 14px;
  border: 1px solid rgba(110,154,255,0.35);
  background: rgba(10,13,17,0.55);
  color: rgba(110,154,255,0.8);
}

/* HUD overlay on hero-stage */
.hero-stage .hud {
  position: absolute; inset: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230,236,239,0.65);
}
.hero-stage .hud .corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--accent);
}
.hero-stage .hud .corner.tl { top: 18px; left: 18px;  border-right: 0; border-bottom: 0; }
.hero-stage .hud .corner.tr { top: 18px; right: 18px; border-left: 0;  border-bottom: 0; }
.hero-stage .hud .corner.bl { bottom: 18px; left: 18px;  border-right: 0; border-top: 0; }
.hero-stage .hud .corner.br { bottom: 18px; right: 18px; border-left: 0;  border-top: 0; }
.hero-stage .hud .row {
  position: absolute;
  display: flex; gap: 10px; align-items: center;
}
.hero-stage .hud .row.tl { top: 24px;    left: 56px;  }
.hero-stage .hud .row.tr { top: 24px;    right: 56px; }
.hero-stage .hud .row.bl { bottom: 24px; left: 56px;  }
.hero-stage .hud .row.br { bottom: 24px; right: 56px; }
.hero-stage .hud .row .acc { color: var(--accent); }

/* center crosshair */
.hero-stage .crosshair {
  position: absolute;
  left: 50%; top: 50%;
  width: 160px; height: 160px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-stage .crosshair::before,
.hero-stage .crosshair::after {
  content: ''; position: absolute;
  background: rgba(110,154,255,0.5);
}
.hero-stage .crosshair::before {
  top: 50%; left: 0; right: 0; height: 1px;
}
.hero-stage .crosshair::after {
  left: 50%; top: 0; bottom: 0; width: 1px;
}
.hero-stage .crosshair .ring {
  position: absolute; inset: 0;
  border: 1px solid rgba(110,154,255,0.35);
  border-radius: 50%;
}
.hero-stage .crosshair .ring.inner {
  inset: 38%;
  border-color: rgba(110,154,255,0.6);
}

/* hero strip below stage — quick stats */
.hero-strip {
  max-width: 1480px;
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero-strip .cell {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.hero-strip .cell:last-child { border-right: 0; }
.hero-strip .cell:nth-child(3) { border-right: 1px solid var(--line); }
.hero-strip .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.hero-strip .v {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.hero-strip .v { white-space: nowrap; }
.hero-strip .v .unit {
  font-family: var(--mono);
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-left: 6px;
  text-transform: uppercase;
}
.hero-strip .sub {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}

/* ─── Section base ─────────────────────────────────────────── */
.section {
  padding: 140px 0;
  position: relative;
}
.section.tight { padding: 96px 0; }
.section-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.section-meta .acc { color: var(--accent-d); }

.section-head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.032em;
  color: var(--ink);
  max-width: 18ch;
}
.section-head h2 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.section-head .lede {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 36ch;
  padding-bottom: 8px;
}

.dark-band {
  background: var(--bo);
  color: var(--bo-ink);
}
.dark-band .section-meta { border-color: var(--bo-line); color: var(--bo-ink-3); }
.dark-band .section-meta .acc { color: var(--accent); }
.dark-band .section-head h2 { color: var(--bo-ink); }
.dark-band .section-head h2 .acc { color: var(--accent); }
.dark-band .section-head .lede { color: var(--bo-ink-2); }

/* ─── Featured trio (DJI grid feel) ────────────────────────── */
.feat-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feat {
  position: relative;
  background: var(--paper-2);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.18);
}
.feat .stage {
  position: relative;
  height: 60%;
  background: linear-gradient(180deg, #1a1f28 0%, #0a0d11 100%);
  overflow: hidden;
}
.feat .stage .stripes {
  position: absolute; inset: 14%;
  background: repeating-linear-gradient(
    135deg, transparent 0 16px, rgba(255,255,255,0.025) 16px 32px
  );
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 8px;
}
.feat .stage .label {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 5px 10px;
  border: 1px solid rgba(110,154,255,0.4);
  background: rgba(10,13,17,0.6);
  color: rgba(110,154,255,0.8);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.feat .stage .corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--accent);
}
.feat .stage .corner.tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; }
.feat .stage .corner.tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; }
.feat .stage .meta {
  position: absolute;
  bottom: 16px; right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(230,236,239,0.7);
  text-transform: uppercase;
}
.feat .stage .meta .acc { color: var(--accent); }

/* Image fill for feat stage */
.feat .stage.has-image { background: #000; }
picture { display: contents; }
.feat .stage .stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  display: block;
}
.feat .stage.has-image .label {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(110,154,255,0.45);
  color: var(--accent);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.feat .body {
  flex: 1;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
}
.feat .body .tag-line {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.feat .body h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.feat .body h3 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.feat .body p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.feat .body .row {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.feat .body .row .price {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feat .body .row .price .from {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-right: 8px;
}
.feat .body .row .more {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.feat .body .row .more .arr { color: var(--accent-d); }

/* ─── Spotlight feature (alternating, Apple-style) ─────────── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spotlight.flip .copy { order: 2; }
.spotlight.flip .visual { order: 1; }
.dark-band .spotlight .copy { color: var(--bo-ink); }
.spotlight .copy .eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.dark-band .spotlight .copy .eyebrow { color: var(--bo-ink-3); }
.spotlight .copy .eyebrow .acc { color: var(--accent-d); }
.dark-band .spotlight .copy .eyebrow .acc { color: var(--accent); }

.spotlight .copy h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 4.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.spotlight .copy h3 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.dark-band .spotlight .copy h3 .acc { color: var(--accent); }
.spotlight .copy p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 46ch;
}
.dark-band .spotlight .copy p { color: var(--bo-ink-2); }

.spotlight .copy .specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin: 0 0 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dark-band .spotlight .copy .specs { background: var(--bo-line); border-color: var(--bo-line); }
.spotlight .copy .specs .item {
  background: var(--paper);
  padding: 18px 16px 16px;
}
.dark-band .spotlight .copy .specs .item { background: var(--bo); }
.spotlight .copy .specs .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.dark-band .spotlight .copy .specs .k { color: var(--bo-ink-3); }
.spotlight .copy .specs .v {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.015em;
  font-feature-settings: 'tnum';
}
.dark-band .spotlight .copy .specs .v { color: var(--bo-ink); }
.spotlight .copy .specs .v .acc { color: var(--accent-d); }
.dark-band .spotlight .copy .specs .v .acc { color: var(--accent); }

.spotlight .copy .ctas {
  display: flex; gap: 10px; flex-wrap: wrap;
}

.spotlight .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1f28 0%, #0a0d11 100%);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.35);
}
.spotlight .visual .stripes {
  position: absolute; inset: 8%;
  background: repeating-linear-gradient(
    135deg, transparent 0 22px, rgba(255,255,255,0.022) 22px 44px
  );
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 12px;
}
.spotlight .visual .ph-label {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(230,236,239,0.4);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12);
}
.spotlight .visual .corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--accent);
}
.spotlight .visual .corner.tl { top: 16px; left: 16px;  border-right: 0; border-bottom: 0; }
.spotlight .visual .corner.tr { top: 16px; right: 16px; border-left: 0;  border-bottom: 0; }
.spotlight .visual .corner.bl { bottom: 16px; left: 16px;  border-right: 0; border-top: 0; }
.spotlight .visual .corner.br { bottom: 16px; right: 16px; border-left: 0;  border-top: 0; }
.spotlight .visual .hud-tag {
  position: absolute;
  top: 22px; right: 38px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.spotlight .visual .scale {
  position: absolute;
  bottom: 22px; left: 38px; right: 38px;
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230,236,239,0.4);
}
.spotlight .visual .scale .v { color: rgba(110,154,255,0.7); }

/* Spotlight image fill */
.spotlight .visual.has-image { background: #000; }
.spotlight .visual .spot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  display: block;
}
.spotlight .visual.has-image .hud-tag,
.spotlight .visual.has-image .scale {
  z-index: 2;
}
.spotlight .visual.has-image .hud-tag {
  background: rgba(0,0,0,0.45);
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.12);
}
.spotlight .visual.has-image .scale {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  padding: 16px 14px 14px;
  left: 22px; right: 22px; bottom: 16px;
}

/* Spotlight video fill */
.spotlight .visual.has-video { background: #000; }
.spotlight .copy .spot-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-d); text-decoration: none; border-bottom: 1px solid transparent;
}
.spotlight .copy .spot-link:hover { border-bottom-color: currentColor; }
.spotlight .copy .spot-link .arr { transition: transform 0.15s; }
.spotlight .copy .spot-link:hover .arr { transform: translateX(3px); }
.dark-band .spotlight .copy .spot-link { color: var(--accent); }
.spotlight .visual .spot-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spotlight .visual .scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.45) 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 4px);
  mix-blend-mode: overlay;
}
.spotlight .visual.has-video .hud-tag {
  background: rgba(0,0,0,0.45);
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.12);
}
.spotlight .visual.has-video .scale {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 100%);
  padding: 16px 14px 14px;
  left: 22px; right: 22px; bottom: 16px;
}

/* ─── Full lineup ──────────────────────────────────────────── */
.lineup {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.line-card {
  position: relative;
  background: var(--paper-2);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition: background 0.2s, transform 0.2s;
}
.line-card:hover { background: var(--paper-3); transform: translateY(-2px); }
.line-card .head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.line-card .head .num { color: var(--ink-2); }
.line-card .head .status { color: var(--accent-d); }
.line-card h4 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.line-card h4 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.line-card p {
  margin: 0 0 24px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.line-card .foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: baseline;
}
.line-card .foot .price {
  font-family: var(--display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.line-card .foot .price .from {
  font-family: var(--mono); font-size: 9px;
  color: var(--ink-3); letter-spacing: 0.2em;
  text-transform: uppercase; margin-right: 6px;
}
.line-card .foot .more {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2);
}
.line-card .foot .more .arr { color: var(--accent-d); margin-left: 6px; }

/* ─── Tactical specs band (dark) ───────────────────────────── */
.tactical-band {
  background: var(--bo);
  color: var(--bo-ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.tactical-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 70px 70px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 95%);
  pointer-events: none;
}
.tactical-band > .container { position: relative; }
.tactical-band .head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--bo-line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bo-ink-3);
}
.tactical-band .head .acc { color: var(--accent); }
.tactical-band .head .v { color: var(--bo-ink); }
.tactical-band .head h2 {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--bo-ink);
  max-width: 22ch;
  text-transform: none;
}
.tactical-band .head h2 .acc { color: var(--accent); font-style: italic; font-weight: 400; }

.telemetry {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--bo-line);
  border: 1px solid var(--bo-line);
}
.telemetry .tile {
  background: var(--bo);
  padding: 26px 24px;
}
.telemetry .tile .k {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bo-ink-3);
  margin-bottom: 22px;
}
.telemetry .tile .k .stat { color: var(--accent); }
.telemetry .tile .v {
  font-family: var(--display);
  white-space: nowrap;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--bo-ink);
  font-feature-settings: 'tnum';
}
.telemetry .tile .v .unit {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--bo-ink-3);
  margin-left: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.telemetry .tile .sparkline { margin-top: 18px; width: 100%; height: 30px; }
.telemetry .tile .sub {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--bo-ink-3);
}

/* ─── Coverage radar ───────────────────────────────────────── */
.coverage-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}
.radar {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 620px;
  background: linear-gradient(180deg, #0E1217 0%, #06080A 100%);
  padding: 28px;
}
.radar .label {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230,236,239,0.5);
}
.radar .label.tl { top: 24px; left: 24px; }
.radar .label.tr { top: 24px; right: 24px; color: var(--accent); }
.radar .label.bl { bottom: 24px; left: 24px; }
.radar .label.br { bottom: 24px; right: 24px; }

.radar svg.radar-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.radar .sweep {
  position: absolute; inset: 0;
  pointer-events: none;
  animation: sweep 6s linear infinite;
  transform-origin: 50% 50%;
}
.radar .sweep::before {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  width: 1px; height: 50%;
  background: linear-gradient(180deg, rgba(110,154,255,0.5) 0%, rgba(110,154,255,0) 100%);
  transform-origin: top center;
  transform: translate(-50%, 0);
}
.radar .sweep::after {
  content: ''; position: absolute; inset: 0;
  background: conic-gradient(from 0deg, rgba(110,154,255,0.18) 0deg, rgba(110,154,255,0) 22deg, rgba(110,154,255,0) 360deg);
  mask-image: radial-gradient(circle at 50% 50%, black 0%, black 50%, transparent 50%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, black 50%, transparent 50%);
}
@keyframes sweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.radar .blip {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(110,154,255,0.7);
  transform: translate(-50%, -50%);
  animation: blip 6s linear infinite;
}
@keyframes blip {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
.radar .corner {
  position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--accent);
}
.radar .corner.tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; }
.radar .corner.tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; }
.radar .corner.bl { bottom: 14px; left: 14px;  border-right: 0; border-top: 0; }
.radar .corner.br { bottom: 14px; right: 14px; border-left: 0;  border-top: 0; }

/* ─── Coverage · reach diagram (clean, static) ─────────────── */
.radar.reach { min-height: 620px; }
.radar.reach .reach-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.radar.reach .reach-ring {
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
.radar.reach .reach-ring.r-inner {
  width: 320px; height: 320px;
  border: 1px solid rgba(110,154,255,0.30);
}
.radar.reach .reach-ring.r-outer {
  width: 520px; height: 520px;
  border: 1px dashed rgba(110,154,255,0.18);
}
.radar.reach .reach-tag {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  background: #08090C;
  padding: 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(110,154,255,0.78);
  white-space: nowrap;
}
.radar.reach .reach-ring.r-outer .reach-tag { color: rgba(230,236,239,0.55); }

.radar.reach .reach-base {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  max-width: 260px;
}
.radar.reach .reach-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 5px rgba(110,154,255,0.18),
    0 0 0 11px rgba(110,154,255,0.07);
}
.radar.reach .reach-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.30em;
  color: var(--accent);
}
.radar.reach .reach-cities {
  font-family: var(--display);
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(230,236,239,0.7);
}

.range-panel {
  background: var(--paper-2);
  border-radius: 18px;
  padding: 32px;
}
.range-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 18px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.range-head .acc { color: var(--accent-d); }
.range-row {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.range-row:last-of-type { border-bottom: 0; }
.range-row .ring {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.range-row .cities {
  font-family: var(--display);
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.4;
}
.range-row .dist {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-d);
  letter-spacing: 0.18em;
}

/* ─── Sequence (process) ───────────────────────────────────── */
.sequence {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.seq {
  background: var(--paper-2);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.seq .top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.seq .top .when { color: var(--accent-d); }
.seq .num {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 6px;
}
.seq .name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.018em;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.seq .desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.seq .out {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.seq .out .acc { color: var(--accent-d); }

/* ─── Brief / form ─────────────────────────────────────────── */
.brief {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
}
.brief-left {
  background: var(--paper-2);
  border-radius: 18px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.brief-left h3 {
  margin: 24px 0 18px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -0.024em;
  line-height: 1.0;
  color: var(--ink);
  max-width: 14ch;
}
.brief-left h3 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.brief-left p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 40ch;
}
.brief-left .specs {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}
/* Brief-left specs — plain labels */
.brief-left .specs .item .k {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  text-transform: none;
  margin-bottom: 6px;
}
.brief-left .specs .item .v {
  font-family: var(--display); font-size: 22px; color: var(--ink);
  letter-spacing: -0.015em; font-feature-settings: 'tnum';
}
.brief-left .specs .item .v .acc { color: var(--accent-d); }

.brief-form {
  background: var(--paper-2);
  border-radius: 18px;
  padding: 40px;
}

.brief-form .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.brief-form .row:first-child { padding-top: 4px; }
.brief-form .row .lbl {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  text-transform: none;
}
.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%; background: transparent; border: 0; outline: 0;
  font-family: var(--body); font-size: 16px;
  color: var(--ink); padding: 0; letter-spacing: -0.005em;
  font-weight: 400;
}
.brief-form input::placeholder, .brief-form textarea::placeholder {
  color: var(--ink-4);
}
.brief-form textarea {
  resize: vertical; min-height: 70px; line-height: 1.55; padding: 6px 0;
  font-family: var(--display);
}
.brief-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%236B737E'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
  padding-right: 18px;
}
.brief-form select option { background: var(--paper); color: var(--ink); }

.brief-form .pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.brief-form .pill {
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all 0.18s;
  text-transform: none;
}
.brief-form .pill:hover { color: var(--ink); border-color: var(--ink-3); }
.brief-form .pill.active {
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
}

.brief-form .submit-row {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.brief-form .note {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: -0.005em;
  color: var(--ink-3);
  max-width: 42ch;
  line-height: 1.5;
}

/* ─── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.footer-brand {
  display: flex;
  align-items: center;
  color: var(--bo-ink);
}
.footer-brand .footer-logo {
  height: 44px;
  width: auto;
  display: block;
}

.footer-col h6 {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a, .footer-col span {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--ink); }

.footer-bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ─── Promo bar (above nav, tactical strip) ────────────────── */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 110;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 var(--gutter);
  background: var(--bo);
  color: var(--bo-ink-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bo-line);
}
.promo-bar .item { display: flex; align-items: center; gap: 8px; }
.promo-bar .item .acc { color: var(--accent); }
.promo-bar .item .v { color: var(--bo-ink); }
.promo-bar .sep { color: var(--bo-line-2); }

/* Push nav + hero down (no promo bar) */
.hero { padding-top: 120px; }

/* ─── Mission badges on featured cards ──────────────────────── */
.feat .badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px 5px 7px;
  background: var(--accent);
  color: #000;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.3);
}
.feat .badge::before {
  content: '';
  width: 5px; height: 5px;
  background: #000;
  border-radius: 50%;
}
.feat .badge.priority {
  background: var(--ink);
  color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 4px 14px -4px rgba(0,0,0,0.3);
}
.feat .badge.priority::before { background: var(--accent); }
.feat .badge.popular { background: var(--ink); color: var(--accent); }
.feat .badge.popular::before { background: var(--accent); }

/* ─── Trust strip (Why Recon — Apple-style) ─────────────────── */
/* trust-strip top padding tuned to follow hero without double-border */
.trust-strip {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.trust-strip .cell {
  background: var(--paper);
  padding: 28px 32px 32px;
  position: relative;
}
.trust-strip .cell .num {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
}
.trust-strip .cell .num .acc { color: var(--accent-d); }
.trust-strip .cell .glyph {
  width: 36px; height: 36px;
  margin-bottom: 20px;
  color: var(--ink);
}
.trust-strip .cell h4 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.trust-strip .cell h4 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.trust-strip .cell p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ─── Compare table (DJI-style specs grid) ─────────────────── */
.compare-wrap {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper-2);
}
.compare-head {
  display: grid;
  grid-template-columns: 180px repeat(6, 1fr);
  background: var(--bo);
  color: var(--bo-ink);
}
.compare-head .col {
  padding: 22px 18px 20px;
  border-left: 1px solid var(--bo-line);
}
.compare-head .col:first-child { border-left: 0; }
.compare-head .col .tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--bo-ink-3);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.compare-head .col .tag .acc { color: var(--accent); }
.compare-head .col h5 {
  margin: 0 0 4px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--bo-ink);
}
.compare-head .col h5 .acc { color: var(--accent); font-style: italic; font-weight: 400; }
.compare-head .col .price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--accent);
}
.compare-head .col.first {
  background: transparent;
  display: flex;
  align-items: flex-end;
}
.compare-head .col.first .meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bo-ink-3);
}

.compare-row {
  display: grid;
  grid-template-columns: 180px repeat(6, 1fr);
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.compare-row:nth-child(even) { background: var(--paper-2); }
.compare-row .col {
  padding: 16px 18px;
  border-left: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.compare-row .col:first-child {
  border-left: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.compare-row .col .check {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-d);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 16px;
}
.compare-row .col .dash {
  color: var(--ink-4);
}

/* ─── In-the-PDF deliverable (DJI "what's in the box") ────── */
.in-pdf {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-2);
  padding: 36px;
  position: relative;
}
.in-pdf .head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.in-pdf .head .title {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-transform: none;
  font-weight: 500;
}
.in-pdf .head .title .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.in-pdf .head .acc { color: var(--accent-d); }
.in-pdf .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.in-pdf .item {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 14px 16px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}
.in-pdf .item .n {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--ink-4);
  margin-bottom: 10px;
}
.in-pdf .item .n .acc { color: var(--accent-d); }
.in-pdf .item .thumb {
  flex: 1;
  background:
    repeating-linear-gradient(135deg, transparent 0 7px, rgba(10,13,17,0.04) 7px 14px);
  border: 1px dashed var(--line-2);
  border-radius: 6px;
  margin-bottom: 12px;
  min-height: 50px;
}
.in-pdf .item .label {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.in-pdf .item .sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ─── Operator quote card (slot into coverage block) ──────── */
.op-quote {
  background: var(--paper-2);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.op-quote .head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.op-quote .head .acc { color: var(--accent-d); }
.op-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--ink);
  flex: 1;
}
.op-quote blockquote .acc { color: var(--accent-d); font-style: italic; }
.op-quote .attr {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.op-quote .attr .who {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.op-quote .attr .who .role { color: var(--ink-3); }
.op-quote .attr .mission {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-d);
}

/* ─── Intel cards (industry updates placeholder) ──────────── */
.intel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.intel-card {
  position: relative;
  background: var(--paper-2);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  transition: transform 0.2s, background 0.2s;
}
.intel-card:hover {
  transform: translateY(-3px);
  background: var(--paper-3);
}
.intel-card .thumb {
  position: relative;
  height: 200px;
  background: linear-gradient(180deg, #1a1f28 0%, #0a0d11 100%);
  overflow: hidden;
}
.intel-card .thumb .stripes {
  position: absolute; inset: 14%;
  background: repeating-linear-gradient(135deg, transparent 0 16px, rgba(255,255,255,0.025) 16px 32px);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 8px;
}
.intel-card .thumb .corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--accent);
}
.intel-card .thumb .corner.tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; }
.intel-card .thumb .corner.tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; }
.intel-card .thumb .corner.bl { bottom: 14px; left: 14px;  border-right: 0; border-top: 0; }
.intel-card .thumb .corner.br { bottom: 14px; right: 14px; border-left: 0;  border-top: 0; }
.intel-card .thumb .tag {
  position: absolute;
  top: 14px; right: 36px;
  padding: 5px 10px;
  background: rgba(10,13,17,0.6);
  border: 1px solid rgba(110,154,255,0.4);
  color: rgba(110,154,255,0.85);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.intel-card .thumb .ph {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(230,236,239,0.4);
}
.intel-card .body {
  flex: 1;
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
}
.intel-card .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.intel-card .meta > span { white-space: nowrap; }
.intel-card .meta .acc { color: var(--accent-d); }
.intel-card h4 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.intel-card h4 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.intel-card p {
  margin: 0 0 20px;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.intel-card .read {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.intel-card .read .v { color: var(--ink-2); }
.intel-card .read .arr { color: var(--accent-d); }
.intel-cta { margin-top: 36px; display: flex; justify-content: center; }

/* ───────── DARK-BAND COMPONENT OVERRIDES ─────────
   When a section carries .dark-band, every nested
   component is restyled for blackout surfaces.
   ──────────────────────────────────────────────── */

/* General accents inside dark sections */
.dark-band .btn {
  color: var(--bo-ink);
  border-color: var(--bo-line-2);
}
/* The lime "accent" button keeps its black text + arrow on dark too */
.dark-band .btn.accent,
.tactical-band .btn.accent,
.hero-stage .btn.accent {
  color: #000;
  border-color: var(--accent);
  background: var(--accent);
}
.dark-band .btn.accent .arr,
.tactical-band .btn.accent .arr,
.hero-stage .btn.accent .arr { color: #000; }

/* Trust strip on dark */
section.trust-strip.dark-band { border-color: var(--bo); border-bottom-color: var(--bo); }
.dark-band .trust-strip .grid,
section.trust-strip.dark-band .grid { background: var(--bo-line); }
.dark-band .trust-strip .cell,
section.trust-strip.dark-band .cell { background: var(--bo); }
section.trust-strip.dark-band .cell .glyph { color: var(--bo-ink); }
section.trust-strip.dark-band .cell h4 { color: var(--bo-ink); }
section.trust-strip.dark-band .cell h4 .acc { color: var(--accent); }
section.trust-strip.dark-band .cell p { color: var(--bo-ink-2); }

/* Section meta + head on dark */
.dark-band .section-meta {
  color: var(--bo-ink-3);
  border-color: var(--bo-line);
}
.dark-band .section-meta .acc { color: var(--accent); }
.dark-band .section-head h2 { color: var(--bo-ink); }
.dark-band .section-head h2 .acc { color: var(--accent); }
.dark-band .section-head .lede { color: var(--bo-ink-2); }

/* Line cards on dark */
.dark-band .line-card { background: var(--bo-1); }
.dark-band .line-card:hover { background: var(--bo-2); }
.dark-band .line-card .head {
  color: var(--bo-ink-3);
  border-color: var(--bo-line);
}
.dark-band .line-card .head .num { color: var(--bo-ink-2); }
.dark-band .line-card .head .status { color: var(--accent); }
.dark-band .line-card h4 { color: var(--bo-ink); }
.dark-band .line-card h4 .acc { color: var(--accent); }
.dark-band .line-card p { color: var(--bo-ink-2); }
.dark-band .line-card .foot .price { color: var(--bo-ink); }
.dark-band .line-card .foot .price .from { color: var(--bo-ink-3); }
.dark-band .line-card .foot .more { color: var(--bo-ink-2); }
.dark-band .line-card .foot .more .arr { color: var(--accent); }

/* Range panel on dark coverage */
.dark-band .range-panel { background: var(--bo-1); }
.dark-band .range-head {
  color: var(--bo-ink-3);
  border-color: var(--bo-line);
}
.dark-band .range-head .acc { color: var(--accent); }
.dark-band .range-row { border-color: var(--bo-line); }
.dark-band .range-row .ring { color: var(--bo-ink-2); }
.dark-band .range-row .cities { color: var(--bo-ink); }
.dark-band .range-row .dist { color: var(--accent); }

/* Intel cards on dark */
.dark-band .intel-card { background: var(--bo-1); }
.dark-band .intel-card:hover { background: var(--bo-2); }
.dark-band .intel-card .meta { color: var(--bo-ink-3); }
.dark-band .intel-card .meta .acc { color: var(--accent); }
.dark-band .intel-card h4 { color: var(--bo-ink); }
.dark-band .intel-card h4 .acc { color: var(--accent); }
.dark-band .intel-card p { color: var(--bo-ink-2); }
.dark-band .intel-card .read {
  color: var(--bo-ink-3);
  border-color: var(--bo-line);
}
.dark-band .intel-card .read .v { color: var(--bo-ink-2); }
.dark-band .intel-card .read .arr { color: var(--accent); }

/* Featured trio cards on dark (if needed in future) */
.dark-band .feat { background: var(--bo-1); }
.dark-band .feat:hover { background: var(--bo-2); }
.dark-band .feat .body h3 { color: var(--bo-ink); }
.dark-band .feat .body h3 .acc { color: var(--accent); }
.dark-band .feat .body p { color: var(--bo-ink-2); }
.dark-band .feat .body .tag-line { color: var(--bo-ink-3); }
.dark-band .feat .body .row { border-color: var(--bo-line); }
.dark-band .feat .body .row .price { color: var(--bo-ink); }
.dark-band .feat .body .row .price .from { color: var(--bo-ink-3); }
.dark-band .feat .body .row .more {
  color: var(--bo-ink);
  border-bottom-color: var(--bo-ink);
}
.dark-band .feat .body .row .more .arr { color: var(--accent); }

/* Sequence cards on dark (if needed) */
.dark-band .seq { background: var(--bo-1); }
.dark-band .seq .top { color: var(--bo-ink-3); }
.dark-band .seq .top .when { color: var(--accent); }
.dark-band .seq .num { color: var(--bo-ink); }
.dark-band .seq .name { color: var(--bo-ink-2); }
.dark-band .seq .desc { color: var(--bo-ink-2); }
.dark-band .seq .out {
  border-color: var(--bo-line);
  color: var(--bo-ink-2);
}
.dark-band .seq .out .acc { color: var(--accent); }

/* Footer on dark */
footer.dark-band {
  background: var(--bo);
  border-color: var(--bo-line);
  color: var(--bo-ink);
}
footer.dark-band .footer-row { border-color: var(--bo-line); }
footer.dark-band .footer-brand .text { color: var(--bo-ink); }
footer.dark-band .footer-brand .text .acc { color: var(--accent); }
footer.dark-band .footer-brand .text .small { color: var(--bo-ink-3); }
footer.dark-band .footer-brand svg { color: var(--bo-ink); }
footer.dark-band .footer-col h6 { color: var(--bo-ink-3); }
footer.dark-band .footer-col a,
footer.dark-band .footer-col span { color: var(--bo-ink-2); }
footer.dark-band .footer-col a:hover { color: var(--accent); }
footer.dark-band .footer-bar { color: var(--bo-ink-3); }

/* ─── Responsive (graded breakpoints) ─────────────────────────
   xl   > 1280   full layout
   lg   1024–1280   light reductions
   md   768–1024   2-col grids, hide nav links
   sm   520–768    single-col most things
   xs   < 520      tightest mobile
   ──────────────────────────────────────────────────────────── */

/* Fluid gutters override the base 32px */
@media (max-width: 1280px) {
  :root { --gutter: clamp(20px, 2.6vw, 32px); }
  .nav .links a { padding: 8px 10px; font-size: 12.5px; }
  .feat-trio, .lineup, .intel-grid { gap: 14px; }
}
@media (max-width: 1024px) {
  .nav .links { display: none; }
  .nav .menu-btn { display: inline-flex; }
}

/* ─ md: 768–1024 ─ */
@media (max-width: 1024px) {
  :root { --gutter: clamp(20px, 3vw, 28px); }
  .nav { gap: 16px; }

  .hero-title { font-size: clamp(48px, 9vw, 120px); }
  .hero-sub { font-size: clamp(16px, 2.4vw, 19px); margin-bottom: 32px; }

  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip .cell:nth-child(2) { border-right: 0; }
  .hero-strip .cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .section { padding: 96px 0; }
  .section.tight { padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; align-items: start; }
  .section-head h2 { max-width: 22ch; }
  .section-head .lede { padding-bottom: 0; max-width: 56ch; }

  .feat-trio { grid-template-columns: 1fr 1fr; }
  .feat-trio > .feat:last-child { grid-column: 1 / -1; }
  .feat-trio > .feat:last-child .stage { height: 220px; }
  .feat { min-height: 480px; }

  .lineup { grid-template-columns: 1fr 1fr; }

  .trust-strip { padding: 72px 0; }
  .trust-strip .grid { grid-template-columns: 1fr 1fr; }

  .telemetry { grid-template-columns: 1fr 1fr; }
  .telemetry .tile { padding: 22px 20px; }

  .sequence { grid-template-columns: 1fr 1fr; }
  .sequence > .seq:last-child { grid-column: 1 / -1; }

  .coverage-block { grid-template-columns: 1fr; gap: 18px; }
  .radar { min-height: 520px; }

  .in-pdf { padding: 28px; }
  .in-pdf .grid { grid-template-columns: repeat(3, 1fr); }

  .intel-grid { grid-template-columns: 1fr 1fr; }
  .intel-grid > .intel-card:last-child { grid-column: 1 / -1; }
  .intel-grid > .intel-card:last-child .thumb { height: 220px; }

  .spotlight { grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
  .spotlight.flip .copy { order: 1; }
  .spotlight.flip .visual { order: 2; }
  .spotlight .visual { aspect-ratio: 16 / 10; }
  .spotlight .copy h3 { max-width: 18ch; }

  .brief { grid-template-columns: 1fr; gap: 16px; }
  .brief-left { padding: 32px; }
  .brief-form { padding: 32px; }
  .brief-left .specs { grid-template-columns: repeat(4, 1fr); }

  .footer-row { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand .footer-logo { height: 40px; }
}

/* ─ sm: 520–768 ─ */
@media (max-width: 768px) {
  .hero { padding-top: 96px; }
  .hero-title { font-size: clamp(44px, 11vw, 80px); }

  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 12px 18px; font-size: 13px; }

  .hero-stage { border-radius: 14px; }
  .hero-stage .hud .row { font-size: 9px; letter-spacing: 0.16em; }
  .hero-stage .placeholder .label { font-size: 9px; letter-spacing: 0.24em; padding: 6px 10px; }

  .hero-strip { grid-template-columns: 1fr; margin-top: 24px; }
  .hero-strip .cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 16px;
  }
  .hero-strip .cell:last-child { border-bottom: 0; }
  .hero-strip .v { font-size: 32px; }

  .section { padding: 72px 0; }
  .section.tight { padding: 56px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(34px, 8vw, 48px); }

  .feat-trio { grid-template-columns: 1fr; gap: 14px; }
  .feat-trio > .feat:last-child { grid-column: auto; }
  .feat-trio > .feat:last-child .stage { height: auto; }
  .feat { min-height: auto; }
  .feat .stage { height: 220px; }
  .feat .body { padding: 24px; }
  .feat .body h3 { font-size: 26px; }
  .feat .badge { top: 12px; right: 12px; padding: 5px 8px 5px 7px; }

  .lineup { grid-template-columns: 1fr; gap: 12px; }
  .line-card { min-height: auto; padding: 22px; }

  .trust-strip { padding: 56px 0; }
  .trust-strip .grid { grid-template-columns: 1fr; }
  .trust-strip .cell { padding: 26px 24px 28px; }

  .telemetry { grid-template-columns: 1fr; }
  .telemetry .tile { padding: 24px 22px; }
  .telemetry .tile .v { font-size: 40px; }

  .sequence { grid-template-columns: 1fr; gap: 12px; }
  .sequence > .seq:last-child { grid-column: auto; }
  .seq { min-height: auto; padding: 24px; }
  .seq .num { font-size: 56px; }
  .seq .top { margin-bottom: 18px; }

  .tactical-band { padding: 72px 0; }
  .tactical-band .head { grid-template-columns: 1fr; gap: 8px; }
  .tactical-band .head h2 { font-size: clamp(32px, 7vw, 48px); }

  .radar { min-height: 420px; padding: 20px; }
  .range-panel { padding: 24px; }
  .range-row { grid-template-columns: 72px 1fr 70px; gap: 12px; padding: 14px 0; }
  .range-row .cities { font-size: 13px; }
  .range-row .ring { font-size: 10px; letter-spacing: 0.16em; }
  .range-row .dist { font-size: 10px; letter-spacing: 0.14em; }

  .in-pdf { padding: 22px; margin-top: 36px; }
  .in-pdf .head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .in-pdf .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .in-pdf .item { min-height: 130px; }

  .intel-grid { grid-template-columns: 1fr; gap: 14px; }
  .intel-grid > .intel-card:last-child { grid-column: auto; }
  .intel-grid > .intel-card:last-child .thumb { height: 180px; }
  .intel-card { min-height: auto; }
  .intel-card .thumb { height: 180px; }
  .intel-card .body { padding: 24px; }
  .intel-card h4 { font-size: 20px; }

  .spotlight { gap: 32px; }
  .spotlight .copy h3 { font-size: clamp(32px, 7vw, 44px); }
  .spotlight .copy p { font-size: 15.5px; }
  .spotlight .copy .specs { grid-template-columns: 1fr 1fr 1fr; }
  .spotlight .copy .ctas { gap: 8px; }
  .spotlight .visual { aspect-ratio: 4 / 3; }

  .brief-left { padding: 28px; }
  .brief-form { padding: 28px; }
  .brief-left h3 { font-size: clamp(28px, 6.5vw, 40px); }
  .brief-left .specs { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
  .brief-form .row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
    padding: 16px 0;
  }
  .brief-form input,
  .brief-form select,
  .brief-form textarea { font-size: 16px; padding: 4px 0; }

  .footer-row { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-brand { grid-column: auto; justify-content: flex-start; }
  .footer-brand .footer-logo { height: 36px; }
  .footer-bar { font-size: 8.5px; letter-spacing: 0.18em; gap: 12px; }
}

/* ─── Trust ribbon (under trust-strip grid) ────────────────── */
.trust-ribbon {
  list-style: none;
  margin: 36px 0 0;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  border-top: 1px solid var(--bo-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bo-ink-2);
}
.trust-ribbon li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-ribbon .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(110,154,255,0.18);
}

/* ─── Proof / samples ──────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.proof-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border-radius: 18px;
  overflow: hidden;
  color: var(--ink);
  transition: transform 0.18s, box-shadow 0.18s;
}
.proof-card:not(.placeholder):hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -25px rgba(0,0,0,0.22);
}
.proof-card.placeholder { opacity: 0.95; }
.proof-card .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #1a1f28 0%, #0a0d11 100%);
  overflow: hidden;
}
.proof-card .thumb .stripes {
  position: absolute; inset: 10%;
  background: repeating-linear-gradient(
    135deg, transparent 0 22px, rgba(255,255,255,0.025) 22px 44px
  );
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 10px;
}
.proof-card .thumb .corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--accent);
}
.proof-card .thumb .corner.tl { top: 14px; left: 14px;  border-right: 0; border-bottom: 0; }
.proof-card .thumb .corner.tr { top: 14px; right: 14px; border-left: 0;  border-bottom: 0; }
.proof-card .thumb .ph-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid rgba(110,154,255,0.45);
  background: rgba(0,0,0,0.45);
}
.proof-card .body {
  padding: 28px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-card .tag-line {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.proof-card h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.proof-card h4 .acc { color: var(--accent-d); font-style: italic; font-weight: 400; }
.proof-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
}
.proof-card .cta {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent-d);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.proof-card .cta .arr { transition: transform 0.18s; }
.proof-card:hover .cta .arr { transform: translateX(3px); }
.proof-card .cta.muted { color: var(--ink-3); }

/* ─── Limitations / reading the evidence ───────────────────── */
.limits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.limits-grid .limit {
  padding: 32px 30px 30px;
  background: var(--bo-1);
  border-radius: 16px;
  border: 1px solid var(--bo-line);
}
.limits-grid .limit .k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bo-ink-3);
  margin-bottom: 18px;
  display: inline-flex; gap: 8px; align-items: center;
}
.limits-grid .limit .k .acc { color: var(--accent); font-size: 8px; }
.limits-grid .limit h4 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--bo-ink);
}
.limits-grid .limit h4 .acc { color: var(--accent); font-style: italic; font-weight: 400; }
.limits-grid .limit p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--bo-ink-2);
  max-width: 56ch;
}

/* ─── FAQ list ─────────────────────────────────────────────── */
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.35;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--accent-d); }
.faq-item > summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-item > summary .ind {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--accent-d);
  flex: 0 0 auto;
  transition: transform 0.18s;
}
.faq-item[open] > summary .ind { transform: rotate(45deg); }
.faq-item .ans {
  padding: 0 4px 26px;
}
.faq-item .ans p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 78ch;
}

/* ─── Brief — privacy + status ─────────────────────────────── */
.form-privacy {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 62ch;
}
.form-status {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: var(--ink-2);
  min-height: 0;
}
.form-status:empty { display: none; }
.form-status[data-kind="ok"] { color: var(--accent-d); }
.form-status[data-kind="err"] {
  color: #B23A48;
  padding: 12px 14px;
  border-left: 2px solid #B23A48;
  background: rgba(178,58,72,0.06);
}
.form-status[data-kind="info"] { color: var(--ink-2); }

/* ─── Responsive for new sections ──────────────────────────── */
@media (max-width: 900px) {
  .trust-ribbon { gap: 6px 18px; padding: 16px 18px; font-size: 10px; letter-spacing: 0.14em; }
  .proof-grid, .limits-grid { grid-template-columns: 1fr; }
  .proof-card h4 { font-size: 22px; }
  .limits-grid .limit { padding: 24px 22px; }
  .limits-grid .limit h4 { font-size: 19px; }
  .faq-item > summary { font-size: 16.5px; padding: 20px 4px; gap: 16px; }
  .faq-item .ans p { font-size: 14.5px; }
}


/* ─ xs: < 520 ─ */
@media (max-width: 520px) {
  .hero { padding-top: 88px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-price { font-size: 11px; letter-spacing: 0.14em; }
  .hero-price .v { font-size: 15px; }

  .nav { height: 52px; gap: 12px; }
  .nav .brand .name { font-size: 12px; letter-spacing: 0.14em; }
  .nav .right .cta-text { display: none; }
  .nav .cta { padding: 9px 12px; }

  .brief-form .submit-row { flex-direction: column; align-items: stretch; gap: 14px; }
  .brief-form .submit-row .btn { justify-content: center; }
  .brief-form .pills { gap: 6px; }
  .brief-form .pill { padding: 7px 12px; font-size: 12.5px; }

  .footer-brand .footer-logo { height: 30px; }
  .nav .brand .brand-logo { height: 24px; }
}


/* ════════════════════════════════════════════════════════════════
   ▢  RHYTHM PASS — May 2026
   ----------------------------------------------------------------
   Single source of truth for vertical rhythm, container width and
   the major type peaks. Appended at the tail so it overrides the
   historic per-section declarations without rewriting them.

   Tokens:
     --r-section    section vertical padding (fluid)
     --r-tight      .section.tight + secondary bands
     --r-head       margin below .section-head
     --r-card-pad   card interior padding
     --r-gap        grid gap between cards
     --max-prose    cap for any centred prose column
   ════════════════════════════════════════════════════════════════ */

:root {
  --r-section:   clamp(72px, 9vw, 140px);
  --r-tight:     clamp(56px, 6.5vw, 96px);
  --r-head:      clamp(40px, 4vw, 64px);
  --r-card-pad:  clamp(22px, 2vw, 32px);
  --r-gap:       clamp(12px, 1.2vw, 18px);
  --max-prose:   72ch;
  --max:         1480px;                    /* tightened from 1680 */
  --gutter:      clamp(20px, 2.4vw, 32px);  /* unified base */
}

/* ── Vertical rhythm: every section/band binds to the same tokens ── */
.section            { padding: var(--r-section) 0; }
.section.tight      { padding: var(--r-tight) 0; }
.trust-strip        { padding: var(--r-tight) 0; }
.tactical-band      { padding: var(--r-tight) 0; }
.section-head       { margin-bottom: var(--r-head); }

/* ── Section head — 12-col logic for a cleaner h2/lede pair ── */
.section-head {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: baseline;                    /* was: end — caused jitter when lede wraps */
}
.section-head h2 {
  font-size: clamp(36px, 4.8vw, 72px);      /* gentler floor than 40, less heavy peak than 76 */
  line-height: 0.98;
  letter-spacing: -0.028em;
  max-width: 16ch;
  text-wrap: balance;
}
.section-head .lede {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  max-width: 42ch;
  padding-bottom: 0;                        /* was 8px — created false baseline */
  text-wrap: pretty;
}

/* ── Hero — slightly tighter peak, better wrap on wide viewports ── */
.hero { padding-top: clamp(96px, 9.5vw, 140px); }
.hero-title {
  font-size: clamp(56px, 9.6vw, 160px);     /* peak 180 → 160 */
  letter-spacing: -0.042em;
  text-wrap: balance;
}
.hero-sub {
  font-size: clamp(16px, 1.35vw, 21px);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ── Card grids — unified gap ── */
.feat-trio,
.lineup,
.intel-grid,
.proof-grid,
.limits-grid,
.telemetry,
.sequence { gap: var(--r-gap); }

/* ── Card interior padding — unified token ── */
.feat .body,
.line-card,
.intel-card .body,
.proof-card .body,
.limits-grid .limit,
.seq,
.brief-left,
.brief-form,
.range-panel { padding: var(--r-card-pad); }

/* The brief is content-heavy — bump padding back up so labels breathe */
.brief-left,
.brief-form { padding: calc(var(--r-card-pad) * 1.25); }

/* ── In-the-PDF + telemetry inherit the rhythm space ── */
.telemetry,
.in-pdf { margin-top: var(--r-head); }

/* ── FAQ — bind to the prose cap, fix orphan width ── */
.faq-list { max-width: var(--max-prose); }
.faq-item > summary {
  font-size: clamp(17px, 1.35vw, 20px);
  padding: clamp(18px, 1.8vw, 26px) 4px;
}
.faq-item .ans p { font-size: clamp(14.5px, 1vw, 16px); }

/* ── Trust ribbon — sits flush under trust-strip grid ── */
.trust-ribbon {
  margin-top: clamp(28px, 3vw, 40px);
  padding: clamp(14px, 1.4vw, 20px) clamp(16px, 2vw, 28px);
  gap: 8px clamp(18px, 2.4vw, 32px);
  font-size: clamp(10px, 0.8vw, 11px);
}

/* ── Hero strip — equal vertical padding across cells ── */
.hero-strip .cell { padding: clamp(18px, 1.6vw, 26px) clamp(16px, 1.4vw, 22px); }

/* ── Limits + proof type — sized off the same scale ── */
.proof-card h4,
.limits-grid .limit h4 {
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
  text-wrap: balance;
}
.proof-card p,
.limits-grid .limit p {
  font-size: clamp(14.5px, 1.05vw, 16px);
  line-height: 1.6;
  max-width: 52ch;
}

/* ── Brief left h3 — same logic as section-head h2 ── */
.brief-left h3 {
  font-size: clamp(32px, 3.2vw, 56px);
  letter-spacing: -0.024em;
  line-height: 1.02;
  text-wrap: balance;
}

/* ── Spotlight copy — gentler peak so it sits next to imagery cleanly ── */
.spotlight .copy h3 {
  font-size: clamp(34px, 4vw, 60px);
  letter-spacing: -0.026em;
  line-height: 1.02;
  text-wrap: balance;
}
.spotlight .copy p {
  font-size: clamp(15.5px, 1.1vw, 17.5px);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ── Breakpoint reconciliation ────────────────────────────────────
   The orphan @media (max-width: 900px) for proof/limits/faq is
   re-pointed to the main md breakpoint so the visual rhythm breaks
   in sync with the .section-head 2-col collapse.
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .proof-grid,
  .limits-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; align-items: start; gap: clamp(16px, 2vw, 24px); }
  .section-head h2 { max-width: 22ch; }
  .section-head .lede { max-width: 60ch; }
}

@media (max-width: 768px) {
  .trust-ribbon {
    justify-content: flex-start;
    gap: 6px 18px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .faq-item > summary { gap: 14px; }
  .section-head h2 { font-size: clamp(32px, 8vw, 46px); }
  .brief-left h3 { font-size: clamp(28px, 6.5vw, 40px); }
}

@media (max-width: 520px) {
  :root {
    --r-section:  clamp(56px, 14vw, 80px);
    --r-tight:    clamp(44px, 11vw, 64px);
    --r-head:     clamp(28px, 7vw, 40px);
    --r-card-pad: clamp(20px, 5vw, 24px);
  }
  .section-head h2 { font-size: clamp(30px, 9vw, 40px); letter-spacing: -0.022em; }
  .hero-title { font-size: clamp(44px, 11vw, 72px); letter-spacing: -0.035em; }
}

/* ════════════════════════════════════════════════════════════════
   ▢  ADAPTABILITY PASS — May 2026
   ----------------------------------------------------------------
   Closes the remaining edge cases so the site reflows cleanly from
   320 px through ultrawide. Targets:
     · fluid coverage diagram (no hard-coded ring widths)
     · unified card-body type clamps
     · intermediate-step grid progressions (in-pdf 6→4→3→2,
       sequence 5→3→2→1, lineup auto-fit)
     · brief-form label column → fluid clamp
     · 44 px minimum touch target on coarse pointers
     · anchor scroll-padding to clear fixed nav + promo bar
     · prefers-reduced-motion guard
   ════════════════════════════════════════════════════════════════ */

/* ── Anchor scroll offset (fixed promo + nav = ~86 px chrome) ── */
html { scroll-padding-top: 96px; }
@media (max-width: 520px) {
  html { scroll-padding-top: 76px; }
}

/* ── Coverage diagram: fluid rings + safe overflow ── */
.radar.reach {
  min-height: clamp(440px, 60vw, 640px);
}
.radar.reach .reach-stage { padding: clamp(20px, 4vw, 40px); }
.radar.reach .reach-ring.r-inner {
  width:  min(320px, 70vw);
  height: min(320px, 70vw);
}
.radar.reach .reach-ring.r-outer {
  width:  min(520px, 92vw);
  height: min(520px, 92vw);
}
.radar.reach .reach-tag {
  font-size: clamp(9px, 0.85vw, 10.5px);
  letter-spacing: 0.20em;
  max-width: 80vw;
  text-align: center;
}
.radar.reach .reach-cities {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5;
}

/* ── Reach diagram: dampen at micro-narrow so rings + tags don't collide ── */
@media (max-width: 420px) {
  .radar.reach .reach-ring.r-inner { width: 70vw; height: 70vw; }
  .radar.reach .reach-ring.r-outer { width: 94vw; height: 94vw; }
  .radar.reach .reach-tag { font-size: 8.5px; letter-spacing: 0.16em; padding: 0 8px; }
  .radar.reach .reach-base { max-width: 220px; gap: 10px; }
  .radar .label { font-size: 8.5px; letter-spacing: 0.14em; }
  .radar .label.tl, .radar .label.tr { top: 14px; }
  .radar .label.tl, .radar .label.bl { left: 14px; }
  .radar .label.tr, .radar .label.br { right: 14px; }
  .radar .label.bl, .radar .label.br { bottom: 14px; }
}

/* ── Card-body type bound to a single clamp scale ── */
.feat .body h3,
.line-card h4,
.intel-card h4,
.op-quote .body { /* preserve existing — listed only to share token */ }

.feat .body h3        { font-size: clamp(24px, 2.2vw, 32px); line-height: 1.04; }
.feat .body p         { font-size: clamp(14px, 1vw, 15.5px); line-height: 1.55; }
.line-card h4         { font-size: clamp(20px, 1.6vw, 24px); line-height: 1.05; }
.line-card p          { font-size: clamp(13.5px, 0.95vw, 14.5px); line-height: 1.55; }
.intel-card h4        { font-size: clamp(19px, 1.6vw, 24px); line-height: 1.18; }
.in-pdf .head .title  { font-size: clamp(18px, 1.5vw, 22px); }
.seq .num             { font-size: clamp(52px, 5vw, 72px); }
.seq .name            { font-size: clamp(17px, 1.4vw, 20px); }
.seq .desc            { font-size: clamp(12.5px, 1vw, 14px); }
.telemetry .tile .v   { font-size: clamp(34px, 3.4vw, 48px); }
.hero-strip .v        { font-size: clamp(26px, 2.8vw, 38px); }

/* ── Grid progressions: add the missing middle step ── */

/* In-the-PDF — was 6 → 3 → 2, now 6 → 4 → 3 → 2 */
@media (max-width: 1280px) {
  .in-pdf .grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .in-pdf .grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .in-pdf .grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Sequence — was 5 → 2 → 1, now 5 → 3 → 2 → 1 */
@media (max-width: 1200px) {
  .sequence { grid-template-columns: repeat(3, 1fr); }
  .sequence > .seq:nth-child(n+4) { grid-column: span 1; }
  .sequence > .seq:last-child { grid-column: 2 / 4; }
}
@media (max-width: 820px) {
  .sequence { grid-template-columns: repeat(2, 1fr); }
  .sequence > .seq:last-child { grid-column: 1 / -1; }
}

/* Sequence card vertical floor — only useful when laid out wide */
@media (min-width: 1024px) {
  .seq { min-height: clamp(280px, 24vw, 360px); }
}
@media (max-width: 1023px) {
  .seq { min-height: 0; }
}

/* Lineup — auto-fit handles 1280–1480 naturally */
@media (min-width: 1025px) {
  .lineup {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

/* Intel — same auto-fit at large widths so 1280 doesn't squeeze 3 cards */
@media (min-width: 1025px) and (max-width: 1280px) {
  .intel-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

/* Spotlight specs — never let 3 columns squash; collapse to 2 at narrow */
@media (max-width: 480px) {
  .spotlight .copy .specs { grid-template-columns: 1fr 1fr; }
  .spotlight .copy .specs .item:last-child { grid-column: 1 / -1; }
}

/* ── Brief form: fluid label column ── */
.brief-form .row {
  grid-template-columns: clamp(88px, 9vw, 130px) 1fr;
  gap: clamp(16px, 1.8vw, 28px);
}

/* Brief-left specs: kill the 2→4→2 inversion. Always 2-col, becomes 1-col only on phone. */
.brief-left .specs { grid-template-columns: 1fr 1fr; }
@media (max-width: 1024px) {
  .brief-left .specs { grid-template-columns: 1fr 1fr; }   /* override the historic repeat(4,1fr) */
}
@media (max-width: 380px) {
  .brief-left .specs { grid-template-columns: 1fr; gap: 18px; }
}

/* ── Range-row table: fluid column widths so it doesn't crack on narrow ── */
.range-row {
  grid-template-columns: clamp(64px, 8vw, 96px) 1fr clamp(64px, 8vw, 96px);
  gap: clamp(10px, 1.4vw, 18px);
}

/* ── Touch-target floor (coarse pointers only) ── */
@media (pointer: coarse) {
  .nav .links a,
  .mobile-menu a,
  .faq-item > summary,
  .brief-form .pill,
  .pill,
  .btn,
  .nav .cta,
  .nav .menu-btn {
    min-height: 44px;
  }
  .brief-form .pill { padding: 10px 14px; }
}

/* ── Ultrawide breathing room: cap inner content widths against the 1480 outer ── */
@media (min-width: 1920px) {
  :root { --gutter: 48px; }
  .hero-inner { padding: 0 8px; }
}

/* ── Tablet portrait sweet-spot (820–1024): re-jig spotlight + 2-col cards ── */
@media (min-width: 821px) and (max-width: 1024px) {
  .feat-trio { grid-template-columns: repeat(2, 1fr); }
  .feat-trio > .feat:last-child { grid-column: 1 / -1; }
  .feat-trio > .feat:last-child .stage { aspect-ratio: 21/9; height: auto; }
  .lineup { grid-template-columns: repeat(2, 1fr); }
  .intel-grid { grid-template-columns: repeat(2, 1fr); }
  .intel-grid > .intel-card:last-child { grid-column: 1 / -1; }
}

/* ── Sub-360 micro-phone safety ── */
@media (max-width: 360px) {
  :root { --gutter: 16px; }
  .nav { gap: 8px; height: 50px; }
  .nav .brand .brand-logo { height: 22px; }
  .nav .cta { padding: 8px 12px; font-size: 11px; }
  .hero-title { font-size: clamp(38px, 12vw, 56px); letter-spacing: -0.03em; }
  .section-head h2 { font-size: clamp(28px, 10vw, 38px); }
  .hero-strip .v { font-size: 24px; }
  .telemetry .tile .v { font-size: 30px; }
}

/* ── Short-viewport (landscape phone) — keep hero readable ── */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding-top: 76px; }
  .hero-stage { aspect-ratio: 21/9; }
}

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

/* ── High-DPI image hint (for hero/feat/spot images) ── */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-video, .spot-video,
  .spot-img, .stage-img { image-rendering: auto; }
}
