/* ============================================================
   EUROBAHN CAR DETAIL · SITE STYLES
   ------------------------------------------------------------
   One responsive page. Mobile-first. Built on the design-system
   tokens (linked before this file). Authored against CSS
   variables · never raw hex/px where a token exists.

   HOW TO EDIT THIS FILE
   - Copy/prices live in index.html, not here. This file is layout
     + look only.
   - Sections are grouped and labelled in the same order they
     appear on the page.
   - Breakpoints: base = mobile (<768px) · tablet ≥768px ·
     desktop ≥1024px. Search "@media" to find them.
   - The glass material + its tokens are in section 1 below.
   ============================================================ */

/* ============================================================
   1. ADDED TOKENS · glass material + a few site-level vars
   (Codified from the approved "glass HUD" direction. Mirrored
   in DESIGN-NOTES.md so they're reusable.)
   ============================================================ */
:root {
  /* The deep scrim the moving video sits under · keeps text AA */
  --hero-ink: #050607;

  /* GLASS · cool-tinted frosted panel over the dark foundation.
     Thin and precise, not milky iOS frost. */
  --glass-fill:      rgba(12, 15, 20, 0.62);   /* low-opacity charcoal */
  --glass-fill-solid:rgba(12, 15, 20, 0.92);   /* @supports fallback   */
  --glass-border:    rgba(231, 233, 237, 0.16);/* light catching an edge */
  --glass-highlight: rgba(255, 255, 255, 0.10);/* top inner highlight  */
  --glass-blur:      14px;
  --glass-saturate:  140%;
  --glass-glow:      0 8px 40px rgba(0, 0, 0, 0.5);

  /* Site rhythm */
  --gutter-mobile: 18px;
  --gutter-desk:   48px;
}

/* ============================================================
   2. PRIMITIVES · layout + reusable bits
   ============================================================ */
html { scroll-behavior: smooth; }
body { background: var(--ink-950); overflow-x: hidden; }

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

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

.section { padding: 52px 0; }
.section--light {
  background: #fff;
}
.section--dark { background: var(--ink-950); }
.section--hairline-top { border-top: 1px solid var(--border-hairline); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Shown only on the mobile/tablet view (hidden on the desktop skeleton) */
@media (min-width: 1024px) { [data-mobile-only] { display: none !important; } }

/* The glass material · applied to functional surfaces only */
.glass {
  background: var(--glass-fill);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow), inset 0 1px 0 var(--glass-highlight);
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass { background: var(--glass-fill-solid); }
}

/* ============================================================
   3. BUTTONS  (translated from the Button component spec)
   variants: signal (green funnel CTA) · primary · secondary · ghost
   sizes: sm | md | lg ; modifier: --full
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 44px;
  padding: 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--action-text);
  background: var(--action-fill);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;                /* clips the ceramic shine sweep */
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-standard),
              color var(--dur-fast) var(--ease-standard),
              border-color var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
}
.btn--sm { height: 34px; padding: 0 14px; font-size: 12px; gap: 7px; }
.btn--md { height: 44px; }
.btn--lg { height: 54px; padding: 0 28px; font-size: 15px; }
.btn--full { width: 100%; }

.btn--signal { background: var(--signal-fill); color: var(--signal-text); }
.btn--primary { background: var(--action-fill); color: var(--action-text); }
.btn--secondary {
  background: transparent; color: var(--text-primary);
  border-color: var(--action-ghost-border);
}
.btn--ghost { background: transparent; color: var(--text-secondary); }

.btn:hover { background: var(--action-fill-hover); }
.btn--signal:hover { background: var(--signal-fill-hover); }
.btn--secondary:hover { background: var(--surface-hover); border-color: var(--text-muted); }
.btn--ghost:hover { color: var(--text-primary); background: transparent; }
.btn:active { transform: translateY(1px); }

/* "Ceramic shine" · a soft specular highlight sweeping across the
   fill on hover. Ties to the ceramic-coating brand. */
.btn::after {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.btn:hover::after { animation: btn-shine 0.8s var(--ease-out); }
@keyframes btn-shine {
  0%   { left: -60%; opacity: 0; }
  12%  { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

/* ============================================================
   4. NAV · flat, no boxed logo. Wordmark + mono links.
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px var(--gutter-mobile);
  background: var(--ink-950);
  border-bottom: 1px solid var(--border-hairline);
}
.nav__left { display: flex; align-items: center; gap: 40px; }
.nav__wordmark { height: 22px; display: block; }
.nav__links { display: none; gap: 28px; }
.nav__link {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary); text-decoration: none;
  position: relative; padding-bottom: 3px;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--text-primary); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__pillbtn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 34px; padding: 0 13px;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill); cursor: pointer; color: var(--text-primary);
}
.nav__pillbtn span {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.nav__explore { display: inline-flex; }  /* Explore trigger: all breakpoints */
.nav__cta { display: none; }              /* Free Assessment in nav: desktop only
                                             (mobile uses the big CTA + sticky pill) */

/* Explore trigger: a slow, low-intensity COOL pulse that invites the tap
   to open the bento overlay. Cyan/white (never green) so it never competes
   with the green Free Assessment CTA, which stays the dominant action.
   Pauses on hover; disabled under reduced-motion (see bottom of file). */
@keyframes explore-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(51, 214, 236, 0); }
  50%      { box-shadow: 0 0 15px 1px rgba(51, 214, 236, 0.34),
                         0 0 0 1px rgba(51, 214, 236, 0.42); }
}
.nav__explore, .nav__menu-btn {
  animation: explore-pulse 2.6s ease-in-out infinite;
}
.nav__explore:hover, .nav__menu-btn:hover { animation-play-state: paused; }

/* ============================================================
   5. HERO
   ============================================================ */
.hero { position: relative; height: 680px; overflow: hidden; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(5,6,7,0.55) 0%, rgba(5,6,7,0.15) 30%,
    rgba(5,6,7,0.80) 76%, rgba(5,6,7,0.98) 100%);
}
.hero__inner {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 var(--gutter-mobile) 168px;
  max-width: var(--container-max); margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--ink-200);
}
.hero__title {
  margin: 14px 0 0;
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase;
  font-size: clamp(56px, 16vw, 118px);
  line-height: 0.86; letter-spacing: -0.01em; color: #fff;
}
/* Hero accent uses qualify-GREEN (not the maintain-cyan service hue) so the
   headline ties to the green "Free Assessment" entry point · funnel
   continuity in the hero. Deliberate hero-only exception. */
.hero__title-accent { color: var(--qualify-bright); }
.hero__sub {
  margin: 18px 0 0; max-width: 300px;
  font-family: var(--font-body); font-size: 15.5px; line-height: 1.55; color: var(--ink-200);
}
.hero__actions { display: none; }   /* desktop shows inline CTAs; mobile uses block CTAs below hero */

/* Mobile status chip · pulse dot */
.hero__chip {
  position: absolute; top: 14px; right: var(--gutter-mobile);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 10px; border-radius: var(--radius-pill);
}
.hero__chip-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--qualify-bright);
  animation: ebpulse 2.4s ease-in-out infinite;
}
.hero__chip-label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-200);
}
@keyframes ebpulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

/* HERO INSTRUMENT BAR · spans the base of the hero like a dash cluster.
   Mobile: stacked (centered scroll cue above a full-width HUD).
   Desktop: a row, scroll cue anchored left, HUD anchored right. */
.hero__instruments {
  position: absolute; left: var(--gutter-mobile); right: var(--gutter-mobile);
  bottom: 18px; z-index: 2;
  display: flex; flex-direction: column; align-items: stretch; gap: 10px;
}

/* Left end: quiet "scroll to explore" cue, matched glass to the HUD */
.hero__scroll-cue {
  align-self: center;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 14px; border-radius: var(--radius-lg);
  text-decoration: none; border-color: var(--glass-border);
}
.hero__scroll-cue-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-300);
}
.hero__scroll-chevron { color: var(--ink-200); animation: scroll-bob 2.4s ease-in-out infinite; }
@keyframes scroll-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

/* HUD widget (glass) · right end of the instrument bar */
.hud {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px; border-radius: var(--radius-lg);
  /* glass edge tinted qualify-green (assessment) */
  border-color: rgba(31, 224, 140, 0.30);
}
.hud__icon {
  flex: none; width: 38px; height: 38px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--qualify-wash); border: 1px solid var(--qualify-bright);
}
.hud__body { flex: 1; min-width: 0; }
.hud__label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-300);
}
.hud__headline {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 17px; color: #fff; line-height: 1.1; margin-top: 2px;
}
.hud__price { flex: none; text-align: right; }
.hud__price-num {
  font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1;
  color: var(--qualify-bright);
}
.hud__price-cap {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-300); margin-top: 2px;
}

/* Mobile under-hero CTA block */
.hero-cta {
  padding: 20px var(--gutter-mobile) 8px;
  display: flex; flex-direction: column; gap: 10px;
}
.hero-cta__link {
  background: transparent; border: none; cursor: pointer; text-align: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-secondary); padding: 8px; text-decoration: none;
}

/* ============================================================
   6. SECTION HEAD + NUMBERED MARKERS
   ============================================================ */
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.section-title {
  margin: 12px 0 0; font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; font-size: clamp(32px, 7vw, 54px);
  line-height: 1.0; color: var(--text-primary);
}
.section-lead {
  margin: 12px 0 0; font-family: var(--font-body); font-size: 14.5px;
  line-height: 1.6; color: var(--text-secondary);
}

/* "01 ·· LABEL" telemetry-style marker */
.marker { display: flex; align-items: center; gap: 10px; }
.marker__num { font-family: var(--font-mono); font-weight: 600; font-size: 13px; }
.marker__rule { width: 24px; height: 2px; opacity: 0.6; transform-origin: left; }
.marker__label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-secondary);
}
/* service-coded marker variants */
.marker--qualify  .marker__num, .marker--qualify  .marker__label { color: var(--qualify-bright); }
.marker--qualify  .marker__rule  { background: var(--qualify-bright); }
.marker--maintain .marker__num   { color: var(--maintain-bright); }
.marker--maintain .marker__rule  { background: var(--maintain-bright); }
.marker--protect  .marker__num   { color: var(--protect-bright); }
.marker--protect  .marker__rule  { background: var(--protect-bright); }
.marker--qualify .marker__label, .marker--maintain .marker__label, .marker--protect .marker__label {
  color: var(--text-secondary);
}

/* ============================================================
   7. HOW IT WORKS · the four-step funnel (00–03)
   ============================================================ */
.steps { margin-top: 24px; display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 14px; padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
}
.step:first-child { border-top: 1px solid var(--border-strong); }
.step__num {
  font-family: var(--font-mono); font-weight: 600; font-size: 30px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.step__title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 20px; letter-spacing: 0.02em; color: var(--text-primary);
}
.step__desc {
  margin: 5px 0 0; font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--text-secondary);
}
.step__desc em { font-style: normal; font-weight: 600; color: var(--qualify-bright); }
/* step number colors by service */
.step--qualify  .step__num { color: var(--qualify-bright); }
.step--maintain .step__num { color: var(--maintain-bright); }
.step--protect  .step__num { color: var(--protect-bright); }

/* ============================================================
   8. QUALIFY · Reset / Refresh service cards
   ============================================================ */
.qualify-grid { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.svc-card {
  position: relative; display: block; overflow: hidden; height: 380px; text-decoration: none;
  background: var(--ink-950); border: 1px solid var(--border-strong);
  border-top: 3px solid var(--qualify-bright); border-radius: var(--radius-lg);
  transition: border-color var(--dur-base) var(--ease-out);
}
.svc-card:hover { border-color: var(--qualify-bright); }
/* corner cue marking the card as clickable (to the assessment + form) */
.svc-card__corner {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,6,7,0.55); border: 1px solid var(--glass-border); color: #fff; font-size: 15px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.svc-card:hover .svc-card__corner { background: var(--qualify-bright); color: var(--ink-950); transform: translate(2px, -2px); }
.svc-card__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
/* True-black gradient: transparent up top so the whole image/video shows,
   opaque at the base so the title, price, and copy stay legible. */
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.5) 58%, rgba(0,0,0,0.9) 82%, rgba(0,0,0,0.97) 100%);
}
.svc-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 20px; }
.svc-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.svc-card__title {
  margin: 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 23px; line-height: 1; color: #fff;
}
.svc-card__price {
  font-family: var(--font-display); font-weight: 700; font-size: 34px; line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.svc-card__desc {
  margin: 12px 0 0; font-family: var(--font-body); font-size: 13.5px; line-height: 1.5;
  color: var(--ink-200);
}
.note-mono {
  margin: 14px 0 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: var(--text-muted); line-height: 1.6;
}

/* ============================================================
   9. MEMBERSHIPS · plan cards (one standard, three depths)
   ============================================================ */
.plans { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }

/* Full-color plan cards: a solid service-colored header band (carrying the
   plan name + price in white) over a dark body with vivid accent bullets.
   Bold and premium, and they stand out against the white section. */
.plan {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--ink-900); border: 1px solid var(--ink-800);
  box-shadow: var(--shadow-md);
}
.plan--featured { box-shadow: var(--shadow-lg); }

/* colored header band */
.plan__header { padding: 22px 24px 20px; }
.plan--concierge    .plan__header { background: var(--plan-concierge); }
.plan--featured     .plan__header { background: var(--plan-reserve); }
.plan--preservation .plan__header { background: var(--plan-preservation); }
.plan__eyebrow {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.86);
}
.plan__pricerow { margin-top: 10px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.plan__price {
  font-family: var(--font-display); font-weight: 700; font-size: 46px; line-height: 1;
  color: #fff; font-variant-numeric: tabular-nums;
}
.plan__per { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,0.8); }
.plan__per--alt { font-size: 11px; letter-spacing: 0.04em; color: rgba(255,255,255,0.72); }

/* "Most chosen" badge: white pill so it pops on the colored header */
.plan__badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: #fff; color: var(--plan-reserve);
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px;
  border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}

/* dark body */
.plan__body { padding: 20px 24px 24px; }
.plan__desc {
  margin: 0; font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--ink-300);
}
.plan__list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.plan__list li {
  display: flex; gap: 9px; font-family: var(--font-body); font-size: 13.5px; line-height: 1.45;
  color: var(--ink-200);
}
.plan__list li span { font-family: var(--font-mono); }     /* the "+" bullet, bright on the dark body */
.plan--concierge    .plan__list li span { color: #33D6EC; }
.plan--featured     .plan__list li span { color: #4FA3F0; }
.plan--preservation .plan__list li span { color: #9B82FF; }

/* "Show the math" · reusable callout */
.math {
  margin-top: 14px; padding: 12px 13px; border-radius: var(--radius-md);
  background: var(--plan-reserve-wash); border: 1px solid var(--plan-reserve);
}
.math__label {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--plan-reserve);
}
.math__body {
  margin: 6px 0 0; font-family: var(--font-body); font-size: 12.5px; line-height: 1.5;
  color: var(--text-secondary);
}
.math__body strong { color: var(--text-primary); font-weight: 700; }
.math__body .save { color: var(--plan-reserve); }

/* "Show the math" inside a dark plan body */
.plan .math { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }
.plan--featured .math { background: rgba(79,163,240,0.14); border-color: rgba(79,163,240,0.45); }
.plan--featured .math__label, .plan--featured .math .save { color: #6FB4F2; }
.plan--preservation .math { background: rgba(155,130,255,0.14); border-color: rgba(155,130,255,0.45); }
.plan--preservation .math__label, .plan--preservation .math .save { color: #B49BFF; }
.plan .math__body { color: var(--ink-300); }
.plan .math__body strong { color: #fff; }

.section-foot { margin-top: 18px; }
.section-foot .btn { margin-top: 16px; }

/* Centered call-out card (e.g. the memberships footer on the home page) */
.callout {
  margin: 40px auto 0; max-width: 720px; text-align: center;
  background: var(--surface-2); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.callout__text {
  margin: 0 auto; max-width: 560px; font-family: var(--font-body);
  font-size: 15px; line-height: 1.6; color: var(--text-secondary);
}
.callout__actions { margin-top: 22px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   10. PROTECT & ADD-ONS · price lists
   ============================================================ */
.protect-grid { margin-top: 22px; display: flex; flex-direction: column; gap: 24px; }
.cat-label { display: flex; align-items: center; gap: 8px; }
.cat-label__dot { width: 8px; height: 8px; border-radius: 50%; }
.cat-label__text {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cat-label--protect .cat-label__dot { background: var(--protect-bright); }
.cat-label--protect .cat-label__text { color: var(--protect-bright); }
.cat-label--addon   .cat-label__dot { background: var(--addon-bright); }
.cat-label--addon   .cat-label__text { color: var(--addon-bright); }

.price-list { margin-top: 10px; display: flex; flex-direction: column; }
.price-row {
  display: flex; justify-content: space-between; gap: 14px; padding: 13px 0;
  border-bottom: 1px solid var(--border-hairline);
}
.price-row__name { font-family: var(--font-body); font-size: 14px; color: var(--text-primary); }
.price-row__val {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
.price-row__val--from { font-family: var(--font-mono); font-weight: 400; font-size: 12px; color: var(--text-muted); }
.price-row__val--from b { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--text-primary); }

/* ============================================================
   11. PROOF · features + spotlight + lead form
   ============================================================ */
.proof-grid { margin-top: 0; display: flex; flex-direction: column; gap: 40px; }
.features { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.feature { display: flex; gap: 12px; }
.feature svg { flex: none; margin-top: 1px; }
.feature__title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 16px; color: var(--text-primary);
}
.feature__desc {
  margin: 3px 0 0; font-family: var(--font-body); font-size: 13.5px; line-height: 1.45;
  color: var(--text-secondary);
}

.spotlight {
  margin-top: 26px; position: relative; border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--border-strong);
}
.spotlight__media { width: 100%; height: 230px; object-fit: cover; background: var(--ink-850); }
.spotlight__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,7,0.0) 30%, rgba(5,6,7,0.92) 100%);
}
.spotlight__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px;
  border-radius: var(--radius-pill); background: rgba(5,6,7,0.6);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
}
.chip__dot { width: 5px; height: 5px; border-radius: 50%; }
.chip--reserve { border: 1px solid var(--plan-reserve); color: var(--plan-reserve); }
.chip--reserve .chip__dot { background: var(--plan-reserve); }
.spotlight__title {
  margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-style: italic;
  text-transform: uppercase; font-size: 24px; line-height: 0.95; color: #fff;
}
.spotlight__meta {
  margin-top: 4px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-300);
}

/* Lead form */
.lead {
  border-radius: var(--radius-xl); padding: 24px;
  background: var(--surface-1); border: 1px solid var(--border-strong);
  border-top: 3px solid var(--qualify-bright);
}
.lead__title {
  margin: 12px 0 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 32px; line-height: 1; color: var(--text-primary);
}
.lead__desc {
  margin: 10px 0 22px; font-family: var(--font-body); font-size: 14.5px; line-height: 1.55;
  color: var(--text-secondary);
}
.form { display: flex; flex-direction: column; gap: 12px; }
.field { display: flex; flex-direction: column; }
.field__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.field__row { display: flex; gap: 12px; }
.field__row .field { flex: 1; min-width: 0; }
.input {
  width: 100%; box-sizing: border-box; height: 48px; padding: 0 14px;
  background: var(--ink-950); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); color: var(--text-primary);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color var(--dur-fast) var(--ease-standard);
}
.input::placeholder { color: var(--text-muted); }
.input:focus { outline: none; border-color: var(--qualify-bright); }
.form__alt {
  text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary); text-decoration: none; padding: 6px;
}
.form__alt:hover { color: var(--text-primary); }
.form__status {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--qualify-bright); text-align: center; padding: 4px;
}

/* ============================================================
   12. TELEMETRY TICKER · thin scrolling F1 divider
   ============================================================ */
.ticker {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  background: var(--ink-950); padding: 11px 0;
}
.ticker__track {
  display: inline-flex; gap: 0; will-change: transform;
  animation: ticker-scroll 38s linear infinite;
}
.ticker__item {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); padding: 0 14px;
}
.ticker__item b { color: var(--qualify-bright); font-weight: 600; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   13. THE WORK · process photo strip
   ============================================================ */
.work { padding: 36px 0; background: var(--ink-950); overflow: hidden; }
.work__head { padding: 0 var(--gutter-mobile); max-width: var(--container-max); margin: 0 auto; }

/* Continuous looping carousel (marquee). The track holds the 4 cards
   twice over; it slides left by 50% forever, which lands exactly on the
   clone set · seamless. Each card carries its gap as margin-right so the
   -50% boundary stays card-aligned. Hover pauses. */
.work__viewport { margin-top: 22px; overflow: hidden; }
.work__track {
  display: flex; width: max-content;
  animation: work-scroll 45s linear infinite;
}
.work__viewport:hover .work__track { animation-play-state: paused; }
.work__card {
  position: relative; flex: 0 0 auto;
  width: clamp(240px, 72vw, 320px);
  margin-right: 16px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-strong);
}
.work__img { width: 100%; height: 100%; object-fit: cover; }
.work__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,7,0) 40%, rgba(5,6,7,0.88) 100%);
}
.work__cap {
  position: absolute; left: 0; bottom: 0; padding: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-200);
}
@keyframes work-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   14. VIDEO INTERSTITIAL · cinematic band
   ============================================================ */
.interstitial { position: relative; height: 340px; overflow: hidden; background: var(--ink-950); }
.interstitial__video {
  position: absolute; inset: 0; width: 100%; height: 120%; top: -10%;
  object-fit: cover; will-change: transform;
}
.interstitial__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,6,7,0.85) 0%, rgba(5,6,7,0.4) 50%, rgba(5,6,7,0.85) 100%);
}
.interstitial__inner {
  position: relative; height: 100%; max-width: var(--container-max); margin: 0 auto;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter-mobile);
}
.interstitial__line {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: clamp(28px, 8vw, 60px); line-height: 0.95; color: #fff;
}
.interstitial__sub {
  margin-top: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-300);
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer { padding: 40px var(--gutter-mobile) 38px; background: var(--ink-950); border-top: 1px solid var(--border-hairline); }
.footer__inner { max-width: var(--container-max); margin: 0 auto; }
.footer__wordmark { height: 28px; }
.footer__meta {
  margin: 14px 0 0; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.8; color: var(--text-muted);
}
.footer__meta a { color: var(--text-muted); text-decoration: none; }
.footer__meta a:hover { color: var(--text-primary); }

/* ============================================================
   16. STICKY MOBILE CTA PILL (glass)
   ============================================================ */
.sticky-cta {
  position: fixed; bottom: 14px; left: var(--gutter-mobile); right: var(--gutter-mobile);
  z-index: var(--z-raised);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 8px 8px 16px; border-radius: var(--radius-pill);
  border-color: rgba(31, 224, 140, 0.45); text-decoration: none;
  transform: translateY(140%);   /* hidden until past hero (JS toggles) */
  transition: transform var(--dur-slow) var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__label {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 14px; letter-spacing: 0.02em; color: #fff;
}
.sticky-cta__btn {
  flex: none; display: inline-flex; align-items: center; height: 38px; padding: 0 18px;
  border-radius: var(--radius-pill); background: var(--qualify-bright); color: var(--ink-950);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   17. MENU OVERLAY · bento. Full-screen drawer on mobile,
   mega-menu from top on desktop. One responsive structure.
   ============================================================ */
.menu {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(5,6,7,0.86);
  visibility: hidden; opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.menu.is-open { visibility: visible; opacity: 1; }
.menu__panel {
  background: var(--ink-950); border-bottom: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  height: 100%; overflow-y: auto;
}
.menu__bar {
  position: sticky; top: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px var(--gutter-mobile); background: var(--ink-950);
  border-bottom: 1px solid var(--border-hairline);
}
.menu__wordmark { height: 22px; display: block; }
.menu__close {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 34px; padding: 0 16px; line-height: 1; background: transparent;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  cursor: pointer; color: var(--text-primary);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.menu__head { padding: 22px var(--gutter-mobile) 6px; }
.menu__head .menu__close { display: none; }   /* mobile uses the bar's close; desktop re-shows this */
.menu__kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
}
.menu__title {
  margin: 8px 0 0; font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: 40px; line-height: 0.9; color: var(--text-primary);
}
/* Link to the "How it works" section (preserves the old "The System" nav target) */
.menu__syslink {
  display: inline-block; margin-top: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--maintain-bright); text-decoration: none;
}
.menu__syslink:hover { color: var(--text-primary); }
.menu__grid { padding: 18px var(--gutter-mobile); display: flex; flex-direction: column; gap: 12px; }
.menu__foot {
  padding: 0 var(--gutter-mobile) 28px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; line-height: 1.7;
  color: var(--text-muted); text-align: center;
}

/* menu tiles */
.tile {
  position: relative; display: block; text-decoration: none;
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  background: var(--surface-1); overflow: hidden; will-change: transform, opacity;
}
.tile--cta {
  border: 1px solid var(--qualify-bright); background: var(--qualify-wash);
  padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
/* While the Explore overlay is open, the Free Assessment tile pulses GREEN
   to signal "start here." Pauses on hover; disabled under reduced motion. */
@keyframes assess-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(31, 224, 140, 0); }
  50%      { box-shadow: 0 0 26px 2px rgba(31, 224, 140, 0.45),
                         0 0 0 1px rgba(31, 224, 140, 0.60); }
}
.menu.is-open .tile--cta { animation: assess-pulse 2.4s ease-in-out infinite; }
.menu.is-open .tile--cta:hover { animation-play-state: paused; }
.tile__num { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--qualify-bright); line-height: 1; }
.tile__cta-title {
  margin-top: 8px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 22px; line-height: 1; color: var(--text-primary);
}
.tile__cta-meta {
  margin-top: 5px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--qualify-bright);
}
.tile__arrow {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--qualify-bright); color: var(--ink-950); font-size: 18px;
}
/* image tiles */
.tile--media { height: 150px; }
/* Bias the crop toward the lower portion so the car stays in frame on the
   short mobile tiles (the portrait shots have trees/sky up top). */
.tile__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
/* The Reset/Refresh Lexus sits higher in its frame; crop to the car so its
   roof isn't cut and we don't show grass. */
.tile__img--reset { object-position: center 53%; }
.tile__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,7,0.12) 30%, rgba(5,6,7,0.92) 100%);
}
.tile__badge {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px;
  border-radius: var(--radius-pill); background: rgba(5,6,7,0.6);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
}
.tile__badge .chip__dot { width: 5px; height: 5px; border-radius: 50%; }
.tile__badge--qualify  { border: 1px solid var(--qualify-bright); color: var(--qualify-bright); }
.tile__badge--maintain { border: 1px solid var(--maintain-bright); color: var(--maintain-bright); }
.tile__corner { position: absolute; right: 12px; top: 12px; color: #fff; font-size: 15px; }
.tile__label {
  position: absolute; left: 0; bottom: 0; padding: 14px;
}
.tile__label-title {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 22px; line-height: 0.95; color: #fff;
}
.tile__label-meta { margin-top: 4px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-300); }
/* compact link tiles row */
.tile-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tile--mini { padding: 16px; }
.tile--mini.tile--protect { border-top: 2px solid var(--protect-bright); }
.tile--mini.tile--addon   { border-top: 2px solid var(--addon-bright); }
.tile__mini-eyebrow { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.tile--protect .tile__mini-eyebrow { color: var(--protect-bright); }
.tile--addon   .tile__mini-eyebrow { color: var(--addon-bright); }
.tile__mini-title {
  margin-top: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 18px; line-height: 0.95; color: var(--text-primary);
}
.tile__mini-meta { margin-top: 6px; font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }

/* ============================================================
   18. TABLET  ≥768px
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .section { padding: 72px 0; }
  .hero { height: 680px; }
  .hero__inner { padding: 0 32px 120px; }
  .hero__sub { max-width: 460px; font-size: 18px; }

  /* steps become a 2-col grid on tablet */
  .steps { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .step { border-top: 2px solid var(--border-subtle); }
  .step:first-child { border-top: 2px solid var(--border-subtle); }

  .qualify-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .svc-card { height: 420px; }

  .plans { display: grid; grid-template-columns: 1fr 1fr; align-items: start; }
  .plan--preservation { grid-column: span 2; }

  .protect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .work__strip { grid-auto-columns: 42%; }
  .menu__grid { padding: 24px 32px; }
}

/* ============================================================
   19. DESKTOP  ≥1024px · desktop skeleton view
   ============================================================ */
@media (min-width: 1024px) {
  .container { padding: 0 var(--gutter-desk); }
  .section { padding: 96px 0; }

  /* nav: show links, location, explore + CTA; hide mobile menu btn */
  .nav { padding: 18px var(--gutter-desk); }
  .nav__wordmark { height: 34px; }   /* keeps nav height ~71px (hero 100vh math) */
  .nav__links { display: flex; }
  .nav__explore { display: inline-flex; }
  .nav__cta { display: inline-flex; }
  .nav__menu-btn { display: none; }

  /* hero: content centered left, inline CTAs, HUD bottom-right.
     Fill the viewport: nav (71px) + hero + ticker (50px) = 100vh, so the
     ticker sits at the bottom of the first fold. */
  .hero { height: calc(100vh - 71px - 50px); min-height: 560px; }
  .hero__scrim {
    /* Strong left-anchored scrim keeps the white headline AA-legible even
       over the brightest frames of the hero video; a bottom vignette
       grounds the HUD + CTAs. Right side stays clear to show the car. */
    background:
      linear-gradient(95deg,
        rgba(5,6,7,0.95) 0%, rgba(5,6,7,0.88) 30%,
        rgba(5,6,7,0.70) 52%, rgba(5,6,7,0.32) 74%, rgba(5,6,7,0.20) 100%),
      linear-gradient(180deg, rgba(5,6,7,0) 55%, rgba(5,6,7,0.55) 100%);
  }
  .hero__inner {
    inset: 0; bottom: auto; top: 0; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 var(--gutter-desk);
  }
  .hero__eyebrow { font-size: 13px; letter-spacing: 0.3em; }
  .hero__title { margin-top: 22px; line-height: 0.84; }
  .hero__sub { max-width: 520px; font-size: 20px; margin-top: 28px; }
  .hero__actions { display: flex; margin-top: 36px; gap: 14px; align-items: center; }
  .hero__chip { display: none; }
  /* instrument bar becomes a full-width row: cue left, HUD right */
  .hero__instruments {
    left: var(--gutter-desk); right: var(--gutter-desk); bottom: 36px;
    flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px;
  }
  .hero__scroll-cue { align-self: flex-end; padding: 11px 16px; }
  .hud {
    gap: 14px; padding: 15px 18px; border-radius: var(--radius-xl);
  }
  .hud__icon { width: 44px; height: 44px; border-radius: var(--radius-lg); }
  .hud__icon svg { width: 22px; height: 22px; }
  .hud__label { font-size: 10px; }
  .hud__headline { font-size: 21px; }
  .hud__price { padding-left: 12px; border-left: 1px solid var(--border-strong); }
  .hud__price-num { font-size: 30px; }
  .hud__price-cap { font-size: 9px; }
  .hero-cta { display: none; }   /* mobile-only block CTAs */

  /* section heads can sit beside a lead paragraph */
  .section-head--split {
    display: flex; justify-content: space-between; align-items: flex-end; gap: 40px;
  }
  .section-head--split .section-lead { max-width: 360px; margin: 0; font-size: 15px; }
  .section-title { font-size: 54px; line-height: 0.98; }

  /* four-step row */
  .steps { grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; }
  .step {
    display: block; padding: 20px 0 0; border-top: 2px solid var(--qualify-bright);
  }
  /* re-assert over the tablet :first-child rule so step 00 stays green */
  .step:first-child { border-top: 2px solid var(--qualify-bright); }
  .step--maintain { border-top-color: var(--maintain-bright); }
  .step--protect  { border-top-color: var(--protect-bright); }
  .step__num { font-size: 30px; }
  .step__title { margin-top: 14px; font-size: 22px; }
  .step__desc { font-size: 14px; }

  .qualify-grid { gap: 28px; margin-top: 28px; }
  .svc-card { height: 470px; }
  .svc-card__body { padding: 28px; }
  .svc-card__title { font-size: 30px; }
  .svc-card__price { font-size: 44px; }
  .svc-card__desc { font-size: 15px; margin-top: 14px; }

  .plans { grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
  .plan--preservation { grid-column: auto; }
  .plan__header { padding: 26px 28px 22px; }
  .plan__body { padding: 22px 28px 28px; }
  .plan__price { font-size: 54px; }
  .plan__per { font-size: 14px; }
  .plan__desc { font-size: 14.5px; }
  .plan__list li { font-size: 14px; }
  .plan__badge { top: 18px; right: 20px; font-size: 10px; padding: 4px 11px; }
  .math { margin-top: 18px; padding: 14px 15px; }
  .math__body { font-size: 13.5px; }
  .section-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap; margin-top: 36px;
  }
  .section-foot .note-mono { margin: 0; }
  .section-foot .btn { margin-top: 0; }

  .protect-grid { gap: 56px; margin-top: 44px; }
  .price-row { padding: 15px 0; }
  .price-row__name { font-size: 15px; }
  .price-row__val { font-size: 20px; }
  .price-row__val--from b { font-size: 20px; }

  /* proof: two columns, sticky lead form */
  .proof-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
  .features { gap: 22px; margin-top: 32px; }
  .feature__title { font-size: 19px; }
  .feature__desc { font-size: 15px; line-height: 1.5; }
  .spotlight__media { height: 340px; }
  .spotlight__caption { padding: 24px; }
  .spotlight__title { font-size: 32px; }
  .spotlight__meta { font-size: 11px; }
  .lead { position: sticky; top: 96px; padding: 32px; }
  .lead__title { font-size: 32px; }
  .input { height: 50px; padding: 0 16px; background: var(--ink-950); }

  .work { padding: 72px 0; }
  .work__head { padding: 0 var(--gutter-desk); }
  .work__card { width: 360px; margin-right: 20px; }

  .interstitial { height: 420px; }
  .interstitial__inner { padding: 0 var(--gutter-desk); }

  .footer { padding: 48px var(--gutter-desk); }
  .footer__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
  .footer__wordmark { height: 32px; }
  .footer__meta { text-align: right; line-height: 1.9; }

  /* sticky mobile CTA is mobile-only */
  .sticky-cta { display: none; }

  /* menu becomes a mega-menu dropping from the top (not full height) */
  .menu__panel { height: auto; }
  .menu__bar { display: none; }
  .menu__head {
    max-width: var(--container-max); margin: 0 auto;
    padding: 28px var(--gutter-desk) 0;
    display: flex; align-items: flex-start; justify-content: space-between;
  }
  .menu__title { font-size: 28px; font-style: normal; font-weight: 700; }
  .menu__head .menu__close { display: inline-flex; }
  .menu__grid {
    max-width: var(--container-max); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1.4fr; grid-template-rows: auto auto;
    gap: 20px; padding: 28px var(--gutter-desk);
  }
  .menu__foot { max-width: var(--container-max); margin: 0 auto; text-align: left; padding: 0 var(--gutter-desk) 44px; }
  /* Memberships (Maintain) is called out in the wide right-hand column,
     spanning both rows; the funnel tiles fill the left two columns. */
  .tile--feature { grid-column: 3; grid-row: 1 / span 2; min-height: 320px; }
  .tile--feature.tile--media { height: auto; }
  .tile-row { display: contents; }   /* let mini tiles flow into the bento grid */
  .tile--mini { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; }
}

/* ============================================================
   20. REDUCED MOTION · kill all non-essential animation.
   (JS also guards GSAP; this covers CSS-driven motion.)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__chip-dot { animation: none; }
  .ticker__track { animation: none; }
  .btn:hover::after { animation: none; }
  .sticky-cta { transition: none; }
  /* no Explore pulse, no scroll-cue bob, no Free-Assessment pulse when
     reduced motion is requested */
  .nav__explore, .nav__menu-btn { animation: none; }
  .hero__scroll-chevron { animation: none; }
  .menu.is-open .tile--cta { animation: none; }

  /* Work carousel: stop the loop, hide the clones, allow manual scroll. */
  .work__track { animation: none !important; transform: none !important; }
  .work__viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .work__viewport::-webkit-scrollbar { height: 0; }
  .work__card[aria-hidden="true"] { display: none; }
}

/* ============================================================
   21. INNER PAGES (assessment / memberships / protection / add-ons)
   Built from the same tokens + components as the home page. The
   page hero is a compact full-bleed banner; everything below reuses
   existing parts (markers, plans, price-list, cards, the lead form).
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden; background: var(--ink-950);
  min-height: 440px; display: flex; align-items: flex-end;
}
.page-hero__media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 42%;
}
.page-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,7,0.55) 0%, rgba(5,6,7,0.18) 32%, rgba(5,6,7,0.88) 100%);
}
.page-hero__inner {
  position: relative; width: 100%; max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--gutter-mobile) 40px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 7px; text-decoration: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-300);
}
.back-link:hover { color: #fff; }
.page-hero__title {
  margin: 16px 0 0; font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: clamp(42px, 12vw, 86px); line-height: 0.86;
  letter-spacing: -0.01em; color: #fff;
}
.page-hero__title .accent-q { color: var(--qualify-bright); }
.page-hero__title .accent-m { color: var(--maintain-bright); }
.page-hero__title .accent-p { color: var(--protect-bright); }
.page-hero__title .accent-a { color: var(--addon-bright); }
.page-hero__lead {
  margin: 16px 0 0; max-width: 560px; font-family: var(--font-body);
  font-size: 15.5px; line-height: 1.55; color: var(--ink-200);
}
.page-hero__actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* big intro paragraph */
.lede {
  font-family: var(--font-body); font-size: clamp(18px, 2.4vw, 22px); line-height: 1.5;
  color: var(--text-primary); max-width: 760px; margin: 0;
}

/* "what's included" tick list (service-colored "+") */
.ticklist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.ticklist li {
  display: flex; gap: 10px; font-family: var(--font-body); font-size: 15px; line-height: 1.5;
  color: var(--text-secondary);
}
.ticklist li b { color: var(--text-primary); font-weight: 600; }
.ticklist li span { font-family: var(--font-mono); color: var(--maintain-bright); }
.ticklist--qualify li span { color: var(--qualify-bright); }
.ticklist--protect li span { color: var(--protect-bright); }
.ticklist--addon  li span { color: var(--addon-bright); }

/* info cards grid */
.info-grid { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 32px; }
.info-card {
  background: var(--surface-1); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 24px;
}
.info-card--qualify { border-top: 3px solid var(--qualify-bright); }
.info-card--protect { border-top: 3px solid var(--protect-bright); }
.info-card--maintain { border-top: 3px solid var(--maintain-bright); }
.info-card--addon { border-top: 3px solid var(--addon-bright); }
.info-card__k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.info-card__title { margin: 10px 0 0; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 22px; color: var(--text-primary); }
.info-card__price { font-family: var(--font-display); font-weight: 700; font-variant-numeric: tabular-nums; }
.info-card__desc { margin: 8px 0 0; font-family: var(--font-body); font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); }

/* FAQ via native <details> (no JS, accessible) */
.faq { margin-top: 28px; border-top: 1px solid var(--border-hairline); max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--border-hairline); }
.faq__q {
  cursor: pointer; list-style: none; padding: 18px 0; display: flex;
  justify-content: space-between; gap: 16px; align-items: center;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: 18px; color: var(--text-primary);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-family: var(--font-mono); color: var(--text-muted); font-size: 22px; line-height: 1; }
details[open] .faq__q::after { content: "\2013"; }
.faq__a { padding: 0 0 18px; font-family: var(--font-body); font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); max-width: 720px; }

/* gallery */
.gallery { margin-top: 32px; display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.gallery figure {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-strong); aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px;
  background: linear-gradient(180deg, rgba(5,6,7,0) 0%, rgba(5,6,7,0.85) 100%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-200);
}

/* "next step" cards linking between inner pages: icon + stacked label,
   color-coded to the service of the destination. */
.crosslink { margin-top: 36px; display: grid; gap: 12px; grid-template-columns: 1fr; }
.crosslink a {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border-strong); border-top: 3px solid var(--border-strong);
  border-radius: var(--radius-lg); background: var(--surface-1); text-decoration: none;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.crosslink a:hover { background: var(--surface-hover); }
.cl-icon {
  flex: none; width: 40px; height: 40px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--text-secondary);
}
.cl-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.crosslink__t { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 18px; line-height: 1; color: var(--text-primary); }
.crosslink__m { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); line-height: 1.3; }
.crosslink__corner { flex: none; color: var(--text-muted); font-size: 16px; }

/* service-coded variants (class on the <a>) */
.crosslink a.cl--qualify  { border-top-color: var(--qualify-bright); }
.crosslink a.cl--qualify .cl-icon { background: var(--qualify-wash); border-color: var(--qualify-bright); color: var(--qualify-bright); }
.crosslink a.cl--qualify:hover { border-color: var(--qualify-bright); }
.crosslink a.cl--maintain { border-top-color: var(--maintain-bright); }
.crosslink a.cl--maintain .cl-icon { background: var(--maintain-wash); border-color: var(--maintain-bright); color: var(--maintain-bright); }
.crosslink a.cl--maintain:hover { border-color: var(--maintain-bright); }
.crosslink a.cl--protect { border-top-color: var(--protect-bright); }
.crosslink a.cl--protect .cl-icon { background: var(--protect-wash); border-color: var(--protect-bright); color: var(--protect-bright); }
.crosslink a.cl--protect:hover { border-color: var(--protect-bright); }
.crosslink a.cl--addon { border-top-color: var(--addon-bright); }
.crosslink a.cl--addon .cl-icon { background: var(--addon-wash); border-color: var(--addon-bright); color: var(--addon-bright); }
.crosslink a.cl--addon:hover { border-color: var(--addon-bright); }

/* centered lead form on inner pages */
.lead--center { max-width: 620px; margin: 0 auto; }

/* a small "see detail" link used on the home overview sections */
.detail-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 22px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-primary); text-decoration: none; border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px; transition: border-color var(--dur-base) var(--ease-out);
}
.detail-link:hover { border-color: var(--maintain-bright); }
[data-theme="light"] .detail-link { color: var(--text-primary); }

@media (min-width: 768px) {
  .info-grid { grid-template-columns: 1fr 1fr; }
  .crosslink { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .page-hero { min-height: 540px; }
  .page-hero__inner { padding: 0 var(--gutter-desk) 56px; }
  .page-hero__lead { font-size: 19px; max-width: 600px; }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .crosslink { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   22. CONTENT UPDATE · single Reset card + Reset+Protect flagship
   ============================================================ */
/* Single centered Reset card (replaces the old Reset/Refresh 2-up) */
.qualify-solo { margin-top: 22px; }
.svc-card--solo { max-width: 640px; margin-left: auto; margin-right: auto; }
.svc-card__note {
  margin: 8px 0 0; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em; line-height: 1.5; color: var(--ink-300);
}

/* "Reset + Protect" flagship · magenta-coded, emphasized like Reserve.
   Lives in the dark Protect sections. */
.flagship {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--surface-1); border: 1px solid var(--protect-bright);
  border-top: 3px solid var(--protect-bright); box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}
.flagship__badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--protect-bright); color: #fff;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill);
}
.flagship__inner { padding: 26px 24px 24px; }
.flagship__eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--protect-bright);
}
.flagship__title {
  margin: 10px 0 0; font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; font-size: clamp(30px, 6vw, 44px); line-height: 0.92; color: var(--text-primary);
}
.flagship__value {
  margin: 12px 0 0; font-family: var(--font-body); font-size: 15px; line-height: 1.5;
  color: var(--text-secondary); max-width: 640px;
}
.flagship__options { margin-top: 20px; display: grid; gap: 14px; grid-template-columns: 1fr; }
.flagship__opt {
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg);
  padding: 18px; background: var(--ink-950);
}
.flagship__opt-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.flagship__opt-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 20px; color: var(--text-primary); }
.flagship__opt-price { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--protect-bright); font-variant-numeric: tabular-nums; white-space: nowrap; }
.flagship__opt-desc { margin: 8px 0 0; font-family: var(--font-body); font-size: 13.5px; line-height: 1.5; color: var(--text-secondary); }
.flagship__savings { margin: 18px 0 0; font-family: var(--font-body); font-size: 13.5px; line-height: 1.5; color: var(--text-secondary); }
.flagship__savings b { color: var(--text-primary); }
.flagship__cta { margin-top: 18px; }
@media (min-width: 768px) {
  .flagship__inner { padding: 32px; }
  .flagship__options { grid-template-columns: 1fr 1fr; }
}

/* Jobber work-request embed (Free Assessment form) */
.jobber-embed { min-height: 340px; margin-bottom: 8px; }
.jobber-embed iframe { max-width: 100%; width: 100%; border: 0; }
