/* ══════════════════════════════════════════════════════════════════════════
   ROADIE — HALOGEN
   One warm 3200 K light source above the top-left. It never moves.
   Every raised surface has a lit top edge and a cold shadow beneath it.
   Teal goes out, amber comes back. Light is earned. Nothing slides sideways.
   Tokens are verbatim from docs/ART-DIRECTION.md §2.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  /* ground */
  --bgDeep: #09131A;
  --surface: #101E28;
  --surface2: #172C38;

  /* signal */
  --primary: #0FB5A6;
  --primaryInk: #063B37;
  --accent: #FFA51E;
  --beam: #FFF1D6;

  /* ink */
  --textHi: #F1EBE0;
  --textLo: #9FAAA5;

  /* the Seam — the signature */
  --specTop: rgba(255, 241, 214, .26);
  --specUnder: rgba(4, 9, 13, .55);

  /* halation — the only glow mechanism */
  --accentGlow: rgba(255, 165, 30, .30);
  --primaryGlow: rgba(15, 181, 166, .26);

  /* graduation */
  --tick: rgba(241, 235, 224, .22);
  --tickMajor: rgba(241, 235, 224, .46);

  /* material */
  --glassFill: rgba(9, 19, 26, .44);
  --shadowInk: #04090D;

  --hairline: rgba(241, 235, 224, .07);
  --hairlineStrong: rgba(241, 235, 224, .16);
  --primarySoft: rgba(15, 181, 166, .13);
  --primaryEdge: rgba(15, 181, 166, .34);
  --accentSoft: rgba(255, 165, 30, .13);
  --accentEdge: rgba(255, 165, 30, .32);
  --scrim: rgba(4, 9, 13, .68);
  --pressed: rgba(241, 235, 224, .06);

  --serif: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --gut: clamp(20px, 5vw, 72px);
  --band: clamp(72px, 11vw, 168px);
  --r: 16px;
  --r-lg: 22px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

/* The UA's display:none for [hidden] loses to any author display rule —
   and .ctl sets display:grid. Without this the tow and fuel rows show for
   every fault. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bgDeep);
  color: var(--textHi);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* Safari sticky judder */
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #1A1206; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #1A1206; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ── shared type ───────────────────────────────────────────────────────── */

.wrap { width: min(1240px, 100% - var(--gut) * 2); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - var(--gut) * 2); }

.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -.022em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.h2-xl { font-size: clamp(36px, 6.4vw, 82px); }

.kicker {
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}

.lead { color: var(--textLo); font-size: clamp(16px, 1.35vw, 19px); margin: 0 0 16px; max-width: 62ch; }
.lead-dim { color: rgba(159, 170, 165, .74); }
.lead em, .hero-h1 em { font-style: normal; color: var(--accent); }

.note {
  color: rgba(159, 170, 165, .72); font-size: 14.5px; margin: 40px 0 0;
  max-width: 74ch; padding-left: 16px; border-left: 1px solid var(--hairlineStrong);
}

/* ── the Seam: a lit top edge and a cold shadow below ──────────────────── */

.seam {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow:
    inset 0 1px 0 var(--specTop),
    inset 1px 0 0 rgba(255, 241, 214, .10),
    inset 0 -1px 0 var(--specUnder);
}

/* ── the Graduation: a rule made of ticks ──────────────────────────────── */

.graduation {
  height: 9px; width: 100%;
  background-image:
    repeating-linear-gradient(to right, var(--tick) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(to right, var(--tickMajor) 0 1px, transparent 1px 60px);
  background-position: 0 bottom;
  background-repeat: repeat-x;
  background-size: 100% 5px, 100% 9px;
  opacity: .8;
}

/* ── lamps: light is earned ────────────────────────────────────────────── */

.lamp {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none;
}
.lamp-live { background: var(--primary); box-shadow: 0 0 0 3px var(--primarySoft), 0 0 14px var(--primaryGlow); }
.lamp-teal { background: var(--primary); box-shadow: 0 0 12px var(--primaryGlow); }
.lamp-amber { background: var(--accent); box-shadow: 0 0 0 3px var(--accentSoft), 0 0 18px var(--accentGlow); }

/* ── buttons: the paddle, a machined key with a lit top edge ───────────── */

.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; min-height: 52px; padding: 0 26px;
  border-radius: 13px; border: 0;
  font-family: var(--serif); font-weight: 600; font-size: 16px; letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .22s var(--ease), background-color .18s var(--ease);
}
.btn-sm { min-height: 42px; padding: 0 18px; font-size: 14.5px; border-radius: 11px; }
.paddle-seam {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 1.5px 0 rgba(255, 255, 255, .34), inset 0 -2px 0 rgba(4, 9, 13, .30);
}
.btn-primary {
  background: var(--primary); color: var(--primaryInk);
  box-shadow: 0 8px 22px -10px var(--primaryGlow), 0 1px 0 var(--specTop) inset;
}
.btn-primary:hover { background: #12C6B6; transform: translateY(-1px); box-shadow: 0 14px 30px -12px var(--primaryGlow); }
.btn-primary:active { background: #0C9C90; transform: translateY(0); }
.btn-accent {
  background: var(--accent); color: #1A1206;
  box-shadow: 0 8px 24px -10px var(--accentGlow);
}
.btn-accent:hover { background: #FFB443; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--textHi);
  box-shadow: inset 0 0 0 1px var(--hairlineStrong), inset 0 1px 0 var(--specTop);
}
.btn-ghost:hover { background: var(--pressed); }

/* ══ NAV ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav-in {
  width: min(1240px, 100% - var(--gut) * 2); margin-inline: auto;
  display: flex; align-items: center; gap: 28px; height: 74px;
}
.nav-seam {
  position: absolute; inset: auto 0 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--specTop) 18%, var(--specTop) 82%, transparent);
  opacity: 0; transition: opacity .3s var(--ease);
}
.nav.is-stuck { background: rgba(9, 19, 26, .78); backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2); }
.nav.is-stuck .nav-seam { opacity: 1; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-lamp {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accentSoft), 0 0 20px var(--accentGlow);
}
.brand-word {
  font-family: var(--serif); font-weight: 800; font-size: 22px; letter-spacing: -.03em;
}
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; color: var(--textLo); position: relative; padding: 6px 0;
  transition: color .18s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-links a:hover { color: var(--textHi); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-burger {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; margin-left: auto;
}
.nav-burger span { display: block; height: 1.5px; background: var(--textHi); transition: transform .3s var(--ease), opacity .2s; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ══ HERO ══════════════════════════════════════════════════════════════ */

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 140px 0 clamp(56px, 8vw, 104px); overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  will-change: transform;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    /* the lamp, above the top-left, never moves */
    radial-gradient(120% 90% at 12% -12%, rgba(255, 241, 214, .16), transparent 52%),
    /* the copy side is held down so the headline never fights the photograph,
       whatever lands in the frame */
    linear-gradient(to right, rgba(4, 9, 13, .74) 0%, rgba(4, 9, 13, .46) 38%, transparent 72%),
    linear-gradient(to bottom, rgba(9, 19, 26, .52) 0%, rgba(9, 19, 26, .30) 34%, rgba(9, 19, 26, .88) 74%, var(--bgDeep) 100%);
}
.hero-in { position: relative; z-index: 2; width: min(1240px, 100% - var(--gut) * 2); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--textLo); margin: 0 0 24px;
  padding: 8px 16px 8px 12px; border-radius: 99px;
  background: var(--glassFill); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder);
}

.hero-h1 {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(44px, 8.4vw, 118px);
  line-height: .95; letter-spacing: -.038em;
  margin: 0 0 26px; max-width: 15ch;
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line > span { display: block; }

.hero-sub { color: var(--textLo); font-size: clamp(16px, 1.5vw, 20px); max-width: 56ch; margin: 0 0 34px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px);
  list-style: none; margin: 0; padding: 26px 0 0;
  border-top: 1px solid var(--hairline);
}
.hero-facts li { display: flex; flex-direction: column; gap: 2px; }
.hero-facts strong {
  font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.03em; line-height: 1;
}
.hero-facts span { font-size: 13.5px; color: var(--textLo); }

.hero-scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3;
  width: 1px; height: 46px; background: var(--hairlineStrong); overflow: hidden;
}
.hero-scroll span {
  position: absolute; inset: 0; background: var(--accent);
  animation: drop 2.4s var(--ease) infinite;
}
@keyframes drop { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ══ BANDS ═════════════════════════════════════════════════════════════ */

.band { padding: var(--band) 0; position: relative; }
.band-quiet { background: linear-gradient(to bottom, var(--bgDeep), #0B1720 40%, var(--bgDeep)); }
.band-lit { background: var(--surface); position: relative; }
.band-lit::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(to right, transparent, var(--specTop) 20%, var(--specTop) 80%, transparent);
}
.band-lit::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(80% 60% at 8% 0%, rgba(255, 241, 214, .05), transparent 60%);
}
.band-lit > * { position: relative; z-index: 1; }

.band-head { max-width: 78ch; margin-bottom: clamp(40px, 5vw, 72px); }

.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 5vw, 84px); align-items: start; }

/* ══ QUOTE ENGINE ══════════════════════════════════════════════════════ */

.quote {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
.quote-faults { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.fault {
  position: relative; text-align: left; cursor: pointer;
  background: var(--surface); border: 0; border-radius: var(--r);
  padding: 22px 20px 20px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder), 0 12px 26px -18px var(--shadowInk);
  transition: transform .2s var(--ease), background-color .2s var(--ease), box-shadow .25s var(--ease);
}
.fault:hover { transform: translateY(-2px); background: var(--surface2); }
.fault.is-on {
  background: var(--surface2);
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 0 0 1px var(--accentEdge), 0 16px 34px -20px var(--accentGlow);
}
.fault-ico {
  width: 30px; height: 30px; margin-bottom: 8px;
  fill: none; stroke: var(--textLo); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .22s var(--ease), filter .22s var(--ease);
}
.fault.is-on .fault-ico { stroke: var(--accent); filter: drop-shadow(0 0 10px var(--accentGlow)); }
.fault-name { font-family: var(--serif); font-weight: 600; font-size: 17px; letter-spacing: -.015em; }
.fault-help { font-size: 13.5px; color: var(--textLo); line-height: 1.45; }

.quote-panel {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0;
  background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder), 0 24px 60px -32px var(--shadowInk);
}
.quote-controls { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 30px; }

.ctl { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; align-items: baseline; }
.ctl label { font-size: 14.5px; color: var(--textLo); }
.ctl-val { font-family: var(--serif); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: var(--textHi); }
.ctl input[type=range] { grid-column: 1 / -1; width: 100%; margin: 6px 0 0; -webkit-appearance: none; appearance: none; background: none; height: 22px; cursor: pointer; }
.ctl input[type=range]::-webkit-slider-runnable-track {
  height: 3px; border-radius: 2px;
  background: linear-gradient(to right, var(--accent) var(--fill, 20%), rgba(241, 235, 224, .14) var(--fill, 20%));
}
.ctl input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; margin-top: -8.5px;
  background: var(--beam); box-shadow: 0 0 0 4px rgba(255, 165, 30, .18), 0 3px 8px rgba(4, 9, 13, .6);
}
.ctl input[type=range]::-moz-range-track { height: 3px; border-radius: 2px; background: rgba(241, 235, 224, .14); }
.ctl input[type=range]::-moz-range-progress { height: 3px; border-radius: 2px; background: var(--accent); }
.ctl input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border: 0; border-radius: 50%; background: var(--beam); }
.ctl .graduation { grid-column: 1 / -1; margin-top: -4px; opacity: .5; }

/* The night switch sits at the foot of the column, so the panel stays
   balanced whether or not the tow and fuel rows are in play. */
.ctl-switch {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: auto; padding-top: 8px;
}
.ctl-switch-label { font-size: 14.5px; color: var(--textLo); }
.sw {
  width: 54px; height: 30px; border-radius: 99px; border: 0; cursor: pointer; padding: 3px;
  background: var(--surface2); box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder);
  transition: background-color .18s var(--ease);
}
.sw-knob {
  display: block; width: 24px; height: 24px; border-radius: 50%; background: var(--textLo);
  transition: transform .09s var(--ease), background-color .09s var(--ease);
}
.sw[aria-checked="true"] { background: rgba(255, 165, 30, .22); }
.sw[aria-checked="true"] .sw-knob { transform: translateX(24px); background: var(--accent); box-shadow: 0 0 14px var(--accentGlow); }
/* asymmetric filament timings: 90ms on, 220ms off */
.sw[aria-checked="false"] .sw-knob { transition-duration: .22s; }

.seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 12px; background: rgba(4, 9, 13, .34); }
.seg button {
  border: 0; background: none; padding: 9px 16px; border-radius: 9px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--textLo);
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.seg button.is-on { background: var(--surface2); color: var(--textHi); box-shadow: inset 0 1px 0 var(--specTop); }

.quote-out {
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(to bottom, var(--surface2), #14252F);
  box-shadow: inset 1px 0 0 var(--hairline);
  display: flex; flex-direction: column;
}
.quote-label { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--textLo); margin: 0 0 12px; }
.quote-range {
  font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -.035em; line-height: 1; margin: 0 0 26px; color: var(--beam);
  text-wrap: nowrap;
}
.quote-range .km { font-size: .42em; color: var(--textLo); letter-spacing: 0; margin-left: 4px; }
.quote-lines { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.quote-lines li { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; color: var(--textLo); }
.quote-lines li span:last-child { color: var(--textHi); font-variant-numeric: tabular-nums; }
.quote-foot { font-size: 13.5px; color: var(--textLo); margin: 18px 0 0; }
.quote-foot strong { color: var(--accent); font-weight: 600; }

/* ══ STEPS ═════════════════════════════════════════════════════════════ */

.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  position: relative; padding: 30px 26px 34px; border-radius: var(--r);
  background: rgba(9, 19, 26, .5);
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder);
}
.step-n {
  font-family: var(--serif); font-weight: 700; font-size: 13px; letter-spacing: .1em;
  color: var(--textLo); display: block; margin-bottom: 20px;
}
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: -.02em; margin: 0 0 10px; }
.step p { color: var(--textLo); font-size: 15px; margin: 0; }
.step-lamp { position: absolute; top: 30px; right: 26px; width: 8px; height: 8px; border-radius: 50%; }

/* ══ FEATURE ═══════════════════════════════════════════════════════════ */

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.feature-flip .feature-media { order: -1; }
.feature-media { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.feature-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.safety-card {
  margin-top: 26px; padding: 24px 26px; border-radius: var(--r);
  background: var(--surface); position: relative;
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder);
}
.safety-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -.02em; margin: 0 0 4px;
}
.safety-card-quiet { background: rgba(16, 30, 40, .5); }
.safety-sub { font-size: 13px; color: var(--textLo); margin: 0 0 14px; }
.safety-body { font-size: 15px; color: var(--textLo); margin: 0; }

.ticks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ticks li { position: relative; padding-left: 26px; font-size: 15px; color: var(--textLo); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .55em; width: 11px; height: 1.5px;
  background: var(--accent); box-shadow: 0 0 8px var(--accentGlow);
}
.ticks-lg li { font-size: 16px; margin-bottom: 2px; }
.ticks-lg strong { color: var(--textHi); font-weight: 600; }
.ticks-lg { margin: 26px 0 34px; }

/* ══ INSIGHT ═══════════════════════════════════════════════════════════ */

.insight { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.insight-quote {
  position: relative; margin: 0; padding: 34px 34px 28px; border-radius: var(--r-lg);
  background: var(--surface2);
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder), 0 30px 70px -40px var(--accentGlow);
}
.insight-quote .lamp { position: absolute; top: 34px; left: 34px; }
.insight-quote blockquote {
  margin: 30px 0 16px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(19px, 2vw, 25px); line-height: 1.38; letter-spacing: -.02em; color: var(--textHi);
}
.insight-quote figcaption { font-size: 13px; color: var(--textLo); }

/* ══ CARDS ═════════════════════════════════════════════════════════════ */

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  position: relative; border-radius: var(--r); overflow: hidden; background: var(--surface);
  box-shadow: 0 20px 44px -30px var(--shadowInk);
  transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-4px); }
.card-media { overflow: hidden; }
.card-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .7s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -.02em; margin: 0 0 6px; }
.card-body p { font-size: 14.5px; color: var(--textLo); margin: 0; }

/* ══ COVERAGE ══════════════════════════════════════════════════════════ */

.coverage {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: clamp(360px, 46vw, 560px); display: flex; align-items: flex-end;
}
.coverage-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.coverage-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 70% at 10% -10%, rgba(255, 241, 214, .14), transparent 55%),
    linear-gradient(to top, rgba(4, 9, 13, .92) 8%, rgba(4, 9, 13, .28) 62%, transparent);
}
.coverage-list {
  position: relative; list-style: none; margin: 0; padding: clamp(26px, 3.4vw, 44px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px 30px; width: 100%;
}
.coverage-list li { display: flex; align-items: center; gap: 11px; font-size: 15.5px; color: var(--textHi); }

.langs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 32px;
  font-family: var(--serif); font-weight: 500; font-size: clamp(16px, 1.8vw, 22px); color: var(--textLo);
  letter-spacing: -.01em;
}
.langs .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--hairlineStrong); }

/* ══ FAQ ═══════════════════════════════════════════════════════════════ */

.faq { display: flex; flex-direction: column; }
.faq details { border-top: 1px solid var(--hairline); }
.faq details:last-child { border-bottom: 1px solid var(--hairline); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0; position: relative;
  font-family: var(--serif); font-weight: 600; font-size: clamp(17px, 1.8vw, 21px); letter-spacing: -.02em;
  transition: color .18s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary::after {
  content: ''; position: absolute; right: 6px; top: 50%; width: 13px; height: 1.5px;
  background: var(--accent); transform: translateY(-50%);
}
.faq summary::before {
  content: ''; position: absolute; right: 11.75px; top: 50%; width: 1.5px; height: 13px;
  background: var(--accent); transform: translateY(-50%);
  transition: transform .28s var(--ease), opacity .2s;
}
.faq details[open] summary::before { transform: translateY(-50%) rotate(90deg); opacity: 0; }
.faq details p { margin: 0 0 26px; color: var(--textLo); font-size: 16px; max-width: 70ch; }

/* ══ CTA ═══════════════════════════════════════════════════════════════ */

.cta { position: relative; padding: clamp(96px, 13vw, 190px) 0; overflow: hidden; text-align: center; }
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 80% at 12% -10%, rgba(255, 241, 214, .16), transparent 55%),
    linear-gradient(to bottom, var(--bgDeep), rgba(9, 19, 26, .74) 40%, rgba(9, 19, 26, .92));
}
.cta-in { position: relative; }
.cta .kicker, .cta .lead { margin-inline: auto; }
.cta .lead { max-width: 52ch; }
.cta .h2-xl { margin-bottom: 22px; }

.stores { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 38px 0 20px; }
.store {
  display: inline-flex; align-items: center; gap: 14px; padding: 13px 26px 13px 22px;
  border-radius: 14px; background: var(--surface2); position: relative;
  box-shadow: inset 0 1px 0 var(--specTop), inset 0 -1px 0 var(--specUnder);
  transition: transform .18s var(--ease), background-color .18s var(--ease);
}
.store:hover { transform: translateY(-2px); background: #1D3543; }
.store svg { width: 28px; height: 28px; fill: var(--textHi); }
.store span { display: flex; flex-direction: column; text-align: left; font-family: var(--serif); font-weight: 600; font-size: 18px; letter-spacing: -.02em; }
.store small { font-family: var(--sans); font-weight: 400; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--textLo); }
.store-soon { opacity: .5; }
.store-soon:hover { transform: none; background: var(--surface2); }
.cta-note { font-size: 14px; color: var(--textLo); }

/* ══ FOOTER ════════════════════════════════════════════════════════════ */

.foot { padding: clamp(56px, 7vw, 90px) 0 44px; background: var(--surface); position: relative; }
.foot::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(to right, transparent, var(--specTop) 20%, var(--specTop) 80%, transparent);
}
.foot-top { display: flex; flex-wrap: wrap; gap: 46px; justify-content: space-between; margin-bottom: 46px; }
.foot-tag { color: var(--textLo); font-size: 15px; margin: 14px 0 0; }
.foot-cols { display: flex; flex-wrap: wrap; gap: clamp(32px, 6vw, 88px); }
.foot-cols div { display: flex; flex-direction: column; gap: 11px; }
.foot-cols h4 {
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--textHi); margin: 0 0 4px;
}
.foot-cols a { font-size: 14.5px; color: var(--textLo); transition: color .16s var(--ease); }
.foot-cols a:hover { color: var(--accent); }
.foot-bot { display: flex; flex-wrap: wrap; gap: 12px 32px; justify-content: space-between; margin-top: 28px; }
.foot-bot p { margin: 0; font-size: 13px; color: var(--textLo); }
.foot-legal { opacity: .7; }

/* ══ REVEALS — approach is depth, never lateral travel ═════════════════ */

.reveal { opacity: 0; transform: translateY(20px) scale(.995); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .75s var(--ease), transform .85s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.no-js .reveal, .reveal.is-failsafe { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-scroll span { animation: none; }
  .hero-media img { transform: none !important; }
  * { transition-duration: .01ms !important; }
}

/* ══ RESPONSIVE ════════════════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .quote-faults { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav .btn-primary { display: none; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; inset: 74px 0 auto; padding: 18px var(--gut) 30px;
    background: rgba(9, 19, 26, .96); backdrop-filter: blur(20px);
  }
  .nav.is-open .nav-links a { padding: 13px 0; font-size: 17px; border-bottom: 1px solid var(--hairline); }

  .split, .feature, .insight { grid-template-columns: 1fr; }
  .feature-flip .feature-media { order: 0; }
  .feature-media img { aspect-ratio: 16 / 11; }
  .quote-panel { grid-template-columns: 1fr; }
  .quote-out { box-shadow: inset 0 1px 0 var(--hairline); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { min-height: 92svh; padding-top: 120px; }
  .hero-facts { gap: 20px 34px; }
  .quote-faults { grid-template-columns: 1fr; }
  .fault { flex-direction: row; align-items: center; gap: 14px; padding: 16px 18px; }
  .fault-ico { margin-bottom: 0; width: 26px; height: 26px; }
  .fault-help { display: none; }
  .steps, .cards { grid-template-columns: 1fr; }
  .stores { flex-direction: column; align-items: stretch; }
  .store { justify-content: center; }
}

/* ── missing imagery: the light still comes from the top-left ─────────── */

img.is-missing { opacity: 0; }
.has-plate {
  background-image:
    radial-gradient(100% 90% at 8% -10%, rgba(255, 241, 214, .10), transparent 58%),
    linear-gradient(160deg, var(--surface2), var(--bgDeep) 72%);
  background-color: var(--surface);
}
.hero-media.has-plate, .cta-media.has-plate { background-color: var(--bgDeep); }
