/* ==========================================================================
   Carprix — site stylesheet (carprixapp.com)
   choose. sign. drive.
   Mobile-first · no framework · BEM per block on top of :root tokens.
   Contrast (on #050604): text 18.7:1 · lime 17.3:1 · muted ≈7:1 · muted-2 5.5:1
   ========================================================================== */

:root {
  --lime: #CFFE25;
  --lime-soft: #B7D332;
  --navy: #0E284B;
  --bg: #050604;
  --bg-2: #0A0C07;
  --panel: rgba(255, 255, 255, .05);
  --panel-2: rgba(255, 255, 255, .08);
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);
  --text: #F4F6EF;
  --muted: rgba(244, 246, 239, .62);
  --muted-2: #7E8577;
  --on-lime: #0B0D06;
  --danger: #FF9D8F;
  --ok: var(--lime);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --header-h: 76px;
  --focus: 2px solid var(--lime);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-height: 100svh;
}
h1, h2, h3, h4 { text-wrap: balance; font-family: var(--font-display); letter-spacing: -.015em; line-height: 1.1; }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p a, li a, .fine a, .legal a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
p a:hover, li a:hover, .fine a:hover, .legal a:hover { text-decoration-thickness: 2px; }
button { font: inherit; color: inherit; }
ul[role="list"], ol[role="list"] { list-style: none; }
[hidden] { display: none !important; }
:focus-visible { outline: var(--focus); outline-offset: 3px; border-radius: 4px; }
.btn-lime:focus-visible, .plan__cta:focus-visible { outline-color: var(--text); }
::selection { background: var(--lime); color: var(--on-lime); }

.container { width: min(1180px, 92%); margin-inline: auto; }
.container--narrow { width: min(720px, 92%); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 1000;
  background: var(--lime); color: var(--on-lime); font-weight: 600;
  padding: 12px 18px; border-radius: 999px; transition: top .15s;
}
.skip-link:focus { top: 16px; outline-color: var(--text); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.header.scrolled, .header--solid {
  background: rgba(5, 6, 4, .78);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img, .brand picture img { height: 34px; width: auto; }
.nav-links {
  display: flex; gap: 6px; align-items: center;
  font-size: 14.5px; font-weight: 500; color: var(--muted);
}
.nav-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; border-radius: 999px; transition: color .2s; }
.nav-links a:hover { color: var(--lime); }
.nav-links a[aria-current="page"] { color: var(--text); }
.menu-toggle {
  display: none; width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line); border-radius: 12px; color: var(--text); cursor: pointer;
}
.menu-toggle svg { width: 22px; height: 22px; }
.menu-toggle .ico-close { display: none; }
.menu-toggle[aria-expanded="true"] .ico-open { display: none; }
.menu-toggle[aria-expanded="true"] .ico-close { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 26px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .02em;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-lime { background: var(--lime); color: var(--on-lime); }
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(207, 254, 37, .35); }
.btn-ghost { border-color: var(--line-2); color: var(--text); background: rgba(255, 255, 255, .03); }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-dark { background: var(--on-lime); color: var(--lime); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(11, 13, 6, .35); }
.btn-block { width: 100%; }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }
.btn:disabled, .btn[aria-disabled="true"], .btn[aria-busy="true"] { opacity: .65; cursor: progress; transform: none; box-shadow: none; }
.btn .spinner { display: none; }
.btn[aria-busy="true"] .spinner { display: inline-block; }
.spinner {
  width: 16px; height: 16px; border-radius: 50%; flex: none;
  border: 2px solid currentColor; border-right-color: transparent;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; align-items: center; overflow: clip;
  padding: calc(var(--header-h) + 64px) 0 72px;
  background:
    radial-gradient(1000px 620px at 82% 30%, rgba(207, 254, 37, .13), transparent 60%),
    radial-gradient(760px 500px at 8% 82%, rgba(14, 40, 75, .55), transparent 65%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: flex-start; gap: 10px; text-align: left; line-height: 1.5;
  font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--lime);
  border: 1px solid rgba(207, 254, 37, .3); border-radius: 999px; padding: 9px 18px;
  background: rgba(207, 254, 37, .06);
}
.eyebrow::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: .45em; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
h1 { font-size: clamp(40px, 5.4vw, 72px); line-height: 1.04; letter-spacing: -.02em; font-weight: 700; margin: 26px 0 22px; }
h1 em, h2 em { font-style: normal; color: var(--lime); }
.hero-sub { font-size: clamp(16px, 1.4vw, 18.5px); color: var(--muted); max-width: 56ch; }
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-note { margin-top: 26px; font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--lime); flex: none; margin-top: 4px; }

/* Pre-launch notice (D12 GO 4) — discreet status line above the hero eyebrow; removed at the payments GO */
.prelaunch {
  display: flex; width: max-content; max-width: 100%; align-items: center; gap: 10px; margin-bottom: 22px;
  font-family: var(--font-display); font-size: 12.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.prelaunch__dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: .45; } 50% { opacity: 1; } }

/* Photo placeholder (no vehicle photography yet) */
.ph {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(207, 254, 37, .18), transparent 60%),
    radial-gradient(60% 50% at 85% 90%, rgba(14, 40, 75, .9), transparent 70%),
    linear-gradient(160deg, #0F120A, #070806);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
}
.ph::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 4, .75));
}
.hero-visual { position: relative; }
.hero-card { min-height: 380px; padding: clamp(24px, 4vw, 40px); display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.hero-card__words { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 5vw, 62px); line-height: 1.02; letter-spacing: -.02em; }
.hero-card__words span { display: block; color: var(--muted); }
.hero-card__words span:first-child { color: var(--text); }
.hero-card__words span:last-child { color: var(--lime); }
.hero-card__meta { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; }
.chip {
  display: inline-flex; flex-direction: column; gap: 2px;
  background: rgba(10, 12, 7, .82); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
}
.chip .l { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.chip .v { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--lime); line-height: 1.25; }
.chip .s { font-size: 12px; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 17px 0; }
.marquee-track { display: flex; width: max-content; animation: scroll 32s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); padding: 0 24px; white-space: nowrap;
}
.marquee span b { color: var(--lime); font-weight: 600; padding-right: 48px; }
.marquee span i { font-style: normal; text-transform: none; letter-spacing: .16em; color: var(--text); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 9vw, 110px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line); }
.sec-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.kicker { font-size: 12.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
h2 { font-size: clamp(30px, 3.6vw, 48px); font-weight: 700; }
.sec-head p { margin-top: 18px; color: var(--muted); font-size: 17px; }

/* How it works */
.how__grid { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
.step {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px 30px;
  background: linear-gradient(160deg, var(--panel), transparent 70%); overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.step:hover { border-color: rgba(207, 254, 37, .45); transform: translateY(-4px); }
.step__num { font-family: var(--font-display); font-size: 13px; letter-spacing: .2em; color: var(--muted); margin-bottom: 26px; }
.step h3 { font-size: clamp(30px, 3vw, 40px); font-weight: 500; letter-spacing: -.02em; color: var(--lime); margin-bottom: 14px; }
.step p { color: var(--muted); font-size: 15.5px; }
.step__watermark {
  position: absolute; right: -6px; bottom: -34px; font-family: var(--font-display); font-weight: 700;
  font-size: 150px; line-height: 1; color: rgba(255, 255, 255, .03); pointer-events: none; user-select: none;
}

/* Membership (tier cards) */
.pricing__grid { display: grid; gap: 20px; grid-template-columns: 1fr; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 0;
  padding: 32px 28px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line);
  transition: border-color .3s, transform .3s;
}
.plan:hover { border-color: rgba(207, 254, 37, .4); }
.plan--highlight { border-color: rgba(207, 254, 37, .6); box-shadow: 0 30px 80px -40px rgba(207, 254, 37, .35); }
.plan__name { font-size: 26px; font-weight: 700; letter-spacing: .06em; margin-bottom: 6px; }
.plan__vehicles { font-size: 15px; color: var(--text); margin-bottom: 22px; }
.plan__vehicles small { display: block; color: var(--muted); font-size: 13px; margin-top: 2px; }
.plan__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.plan__amount { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 3.4vw, 44px); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.plan__period { font-weight: 500; font-size: 15px; color: var(--muted); }
.plan__note { font-size: 13.5px; line-height: 1.5; color: var(--text); margin: 0 0 22px; padding: 10px 12px; border-left: 2px solid var(--lime); background: rgba(207, 254, 37, .05); }
.plan__features { list-style: none; margin: 0 0 28px; display: grid; gap: 10px; font-size: 14.5px; color: var(--text); }
.plan__features li { padding-left: 26px; position: relative; }
.plan__features li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 14px; border-radius: 50%; background: rgba(207, 254, 37, .14); border: 1px solid rgba(207, 254, 37, .6); }
.plan__features li::after { content: ""; position: absolute; left: 4px; top: calc(.45em + 3px); width: 5px; height: 7px; border: solid var(--lime); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.plan__cta { margin-top: auto; }
.plan--highlight .plan__cta { background: var(--lime); color: var(--on-lime); border-color: var(--lime); }
.pricing__foot { margin-top: 28px; font-size: 13.5px; line-height: 1.65; color: var(--muted); max-width: 90ch; }
.pricing__foot strong { color: var(--text); font-weight: 600; }

/* Fleet */
.fleet__grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.car { min-height: 220px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; }
.car__tier { position: relative; z-index: 1; font-family: var(--font-display); font-size: 12px; letter-spacing: .22em; color: var(--lime); }
.car__name { position: relative; z-index: 1; font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-top: 6px; }
.fleet__note { margin-top: 20px; font-size: 13.5px; color: var(--muted); }

/* Co-responsible party (co-signer) */
.cosign__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.cosign__grid > div > h2 { margin-bottom: 18px; }
.cosign p { color: var(--muted); font-size: 16.5px; }
.checklist { display: grid; gap: 14px; margin-top: 8px; }
.checklist li { list-style: none; display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; }
.checklist svg { width: 22px; height: 22px; color: var(--lime); flex: none; margin-top: 2px; }
.panel { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 34px); background: linear-gradient(180deg, var(--panel), transparent); }
.panel h3 { font-size: 20px; font-weight: 600; margin-bottom: 18px; }
.panel .fine { margin-top: 18px; }

/* Guardian Monitoring (D16) — optional feature card inside the co-responsible section */
.guardian {
  margin-top: 30px; padding: 22px 24px;
  border: 1px solid var(--line); border-left: 3px solid var(--lime); border-radius: var(--radius-sm);
  background: linear-gradient(160deg, rgba(207, 254, 37, .06), transparent 70%);
}
.guardian__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.guardian__head svg { flex: none; width: 34px; height: 34px; color: var(--lime); }
.guardian__label { font-family: var(--font-display); font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.guardian h3 { font-size: 20px; font-weight: 600; margin-top: 2px; }
.cosign .guardian p { font-size: 15px; color: var(--muted); }
.cosign .guardian p.fine { font-size: 13.5px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.cosign .guardian p.fine strong { color: var(--text); font-weight: 600; }

/* One-line status note (billing pages): "Guardian Monitoring requested — …" */
.gm-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-size: 14px; line-height: 1.55; color: var(--muted); }
.gm-note svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--lime); }
.gm-note strong { color: var(--text); font-weight: 600; }

/* FAQ */
.faq__list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-2); }
.faq details[open] { border-color: rgba(207, 254, 37, .4); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; min-height: 56px; font-family: var(--font-display); font-weight: 600; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px; margin-right: 4px;
  border: solid var(--lime); border-width: 0 2px 2px 0; transform: rotate(45deg) translateY(-3px); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq summary:focus-visible { outline-offset: -4px; border-radius: var(--radius-sm); }
.faq .faq__a { padding: 0 20px 20px; color: var(--muted); font-size: 15.5px; }
.faq .faq__a p + p { margin-top: 10px; }

/* Contact / CTA */
.cta { padding: 0 0 clamp(72px, 9vw, 120px); }
.cta-box {
  border-radius: 28px; padding: clamp(40px, 7vw, 88px) clamp(24px, 6vw, 80px);
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(255, 255, 255, .25), transparent 60%),
    linear-gradient(120deg, var(--lime), var(--lime-soft));
  color: var(--on-lime); position: relative; overflow: hidden;
}
.cta-box::after { content: ""; position: absolute; right: -90px; bottom: -130px; width: 460px; height: 460px; border-radius: 50%; border: 2px dashed rgba(11, 13, 6, .25); }
.cta-box .kicker { color: var(--on-lime); opacity: .72; }
.cta-box h2 { max-width: 16ch; }
.cta-box p { margin: 20px 0 36px; max-width: 52ch; font-size: 17px; color: rgba(11, 13, 6, .82); }
.cta-box p a { color: var(--on-lime); }
.cta-box .btn-dark:focus-visible { outline-color: var(--on-lime); }
.cta-box .contact-lines { position: relative; display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; font-size: 15px; font-weight: 500; color: rgba(11, 13, 6, .82); }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--bg-2); }
.foot-grid { display: flex; justify-content: space-between; gap: 36px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand img, .foot-brand picture img { height: 40px; width: auto; margin-bottom: 16px; }
.foot-brand p { font-size: 13.5px; color: var(--muted); max-width: 36ch; }
.foot-links { display: flex; gap: 48px; flex-wrap: wrap; }
.foot-links .col .t { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.foot-links .col a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14.5px; color: var(--text); opacity: .85; transition: color .2s; }
.foot-links .col a:hover { color: var(--lime); opacity: 1; }
.foot-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.foot-bottom b { color: var(--lime); font-weight: 600; }
.foot-bottom a { display: inline-block; padding: 12px 4px; margin: -12px -4px; color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.foot-bottom a:hover { color: var(--lime); }
.foot-bottom .tag { font-family: var(--font-display); letter-spacing: .12em; }

/* ---------- Billing pages (join / continue / success / manage) ---------- */
.page { padding: calc(var(--header-h) + 40px) 0 80px; }
.page-head { margin-bottom: 32px; }
.page-head h1 { font-size: clamp(30px, 4.2vw, 46px); margin: 14px 0 12px; }
.page-head p { color: var(--muted); font-size: 17px; max-width: 60ch; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2);
  padding: clamp(22px, 3.5vw, 36px);
}
.card + .card { margin-top: 20px; }
.card h2 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.card h2 + p { color: var(--muted); margin-bottom: 22px; }
.card__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.fine { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .95em; letter-spacing: .02em; }

/* Stepper: choose ✓ · sign · drive */
.stepper { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0 0 28px; flex-wrap: wrap; }
.stepper li { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--muted); }
.stepper li + li::before { content: ""; width: 28px; height: 1px; background: var(--line-2); margin-inline: 4px; }
.stepper .dot {
  width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); font-size: 12px; font-weight: 700; color: var(--muted); background: var(--bg-2);
}
.stepper .dot svg { width: 14px; height: 14px; }
.stepper li.is-done { color: var(--text); }
.stepper li.is-done .dot { background: var(--lime); border-color: var(--lime); color: var(--on-lime); }
.stepper li[aria-current="step"] { color: var(--lime); }
.stepper li[aria-current="step"] .dot { border-color: var(--lime); color: var(--lime); box-shadow: 0 0 0 4px rgba(207, 254, 37, .12); }

/* Notices */
.notice { display: flex; gap: 12px; align-items: flex-start; border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14.5px; line-height: 1.55; border: 1px solid var(--line); background: var(--panel); }
.notice svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.notice--error { border-color: rgba(255, 157, 143, .5); background: rgba(255, 157, 143, .08); color: var(--text); }
.notice--error svg { color: var(--danger); }
.notice--ok { border-color: rgba(207, 254, 37, .45); background: rgba(207, 254, 37, .07); }
.notice--ok svg { color: var(--lime); }
.notice--info svg { color: var(--lime); }
.notice a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.notice a.btn { text-decoration: none; }
.notice a.btn-lime { color: var(--on-lime); }
.notice strong { font-weight: 600; }

/* Disclosure (conspicuous terms next to CTAs) */
.disclosure {
  border: 1px solid rgba(207, 254, 37, .35); border-left-width: 3px; border-radius: var(--radius-sm);
  background: rgba(207, 254, 37, .05); padding: 14px 16px; font-size: 14px; line-height: 1.6; color: var(--text);
}
.disclosure strong { font-weight: 600; }
.disclosure ul { margin: 8px 0 0 18px; }
.disclosure li + li { margin-top: 4px; }

/* Forms */
.form { display: grid; gap: 28px; }
fieldset { border: 0; min-width: 0; display: grid; gap: 16px; }
legend { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 14px; color: var(--text); }
legend small { display: block; font-family: var(--font-text); font-weight: 400; font-size: 14px; color: var(--muted); margin-top: 4px; }
.fields { display: grid; gap: 16px; grid-template-columns: 1fr; }
.field { display: grid; gap: 6px; }
.field__label { font-weight: 500; font-size: 14.5px; }
.field__label .opt { color: var(--muted); font-weight: 400; }
.field__hint { font-size: 13px; color: var(--muted); }
.field__error { font-size: 13.5px; color: var(--danger); display: none; align-items: flex-start; gap: 6px; }
.field__error::before { content: "!"; flex: none; width: 16px; height: 16px; border-radius: 50%; border: 1px solid currentColor; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; margin-top: 3px; }
.field.is-invalid .field__error { display: flex; }
.input, textarea.input, select.input {
  width: 100%; min-height: 48px; padding: 12px 14px; font: inherit; color: var(--text);
  background: rgba(255, 255, 255, .04); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s;
}
.input::placeholder { color: var(--muted); }
.input:hover { border-color: rgba(255, 255, 255, .3); }
.input:focus { outline: var(--focus); outline-offset: 2px; border-color: var(--lime); background: rgba(255, 255, 255, .06); }
.field.is-invalid .input, .input[aria-invalid="true"] { border-color: var(--danger); }
textarea.input { min-height: 96px; resize: vertical; }

.check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 14.5px; line-height: 1.55; padding: 4px 0; }
.check input {
  appearance: none; flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 6px; cursor: pointer;
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, .04); display: inline-grid; place-content: center;
}
.check input::before { content: ""; width: 6px; height: 11px; border: solid var(--on-lime); border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); opacity: 0; }
.check input:checked { background: var(--lime); border-color: var(--lime); }
.check input:checked::before { opacity: 1; }
.check input:focus-visible { outline: var(--focus); outline-offset: 2px; }
.check strong { font-weight: 600; }
.check .opt { color: var(--muted); }
.field.is-invalid .check input { border-color: var(--danger); }

/* Tier picker (radio cards) */
.tier-picker { display: grid; gap: 12px; grid-template-columns: 1fr; }
.tier-option { position: relative; }
.tier-option input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.tier-option .tier-option__box {
  display: grid; gap: 4px; padding: 16px 18px; min-height: 72px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: rgba(255, 255, 255, .03);
  transition: border-color .2s, background .2s;
}
.tier-option:hover .tier-option__box { border-color: rgba(207, 254, 37, .5); }
.tier-option input:checked + .tier-option__box { border-color: var(--lime); background: rgba(207, 254, 37, .07); box-shadow: inset 0 0 0 1px var(--lime); }
.tier-option input:focus-visible + .tier-option__box { outline: var(--focus); outline-offset: 3px; }
.tier-option__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: .06em; display: flex; justify-content: space-between; gap: 12px; }
.tier-option__price { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--lime); font-variant-numeric: tabular-nums; white-space: nowrap; }
.tier-option__vehicles { font-size: 13.5px; color: var(--muted); }

/* Status list (signers, payment) */
.status-list { list-style: none; display: grid; gap: 10px; margin: 18px 0 0; }
.status-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); }
.status-list .st { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-grid; place-content: center; }
.status-list .st svg { width: 12px; height: 12px; }
.status-list li.is-done .st { background: var(--lime); border-color: var(--lime); color: var(--on-lime); }
.status-list li.is-wait .st { border-color: rgba(207, 254, 37, .5); }
.status-list .who { flex: 1; }
.status-list .lbl { color: var(--muted); font-size: 13px; }

.poll-note { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); margin-top: 18px; }
.poll-note .spinner { width: 12px; height: 12px; border-width: 1.5px; color: var(--lime); }

.state-icon { width: 56px; height: 56px; border-radius: 16px; display: grid; place-content: center; margin-bottom: 18px; background: rgba(207, 254, 37, .1); border: 1px solid rgba(207, 254, 37, .3); color: var(--lime); }
.state-icon svg { width: 28px; height: 28px; }
.state-icon--warn { background: rgba(255, 157, 143, .1); border-color: rgba(255, 157, 143, .4); color: var(--danger); }

.kv { display: grid; gap: 8px; margin-top: 18px; font-size: 14.5px; }
.kv div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.kv dt { color: var(--muted); }
.kv dd { text-align: right; }

/* ---------- Legal pages (terms · refund-policy · privacy) ---------- */
.legal { padding: calc(var(--header-h) + 40px) 0 80px; }
.legal__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.legal__toc { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; display: none; }
.legal__toc .t { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.legal__toc ol { list-style: none; display: grid; gap: 2px; }
.legal__toc a { display: inline-flex; min-height: 36px; align-items: center; padding: 0 10px; border-radius: 8px; font-size: 14px; color: var(--muted); text-decoration: none; }
.legal__toc a:hover { color: var(--lime); background: var(--panel); }
.legal__body { max-width: 74ch; }
.legal__body h1 { font-size: clamp(32px, 4.5vw, 48px); margin: 14px 0 10px; }
.legal__meta { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.legal__body section { padding-top: 36px; }
.legal__body h2 { font-size: 24px; font-weight: 600; margin-bottom: 14px; scroll-margin-top: calc(var(--header-h) + 20px); }
.legal__body h3 { font-size: 18px; font-weight: 600; margin: 22px 0 8px; }
.legal__body p, .legal__body li { font-size: 16px; line-height: 1.7; color: rgba(244, 246, 239, .86); }
.legal__body p + p { margin-top: 12px; }
.legal__body ul, .legal__body ol { margin: 12px 0 0 22px; }
.legal__body li + li { margin-top: 6px; }
.legal__body strong { color: var(--text); font-weight: 600; }
.legal__intro { padding: 16px 18px; border: 1px solid rgba(207, 254, 37, .3); border-left-width: 3px; border-radius: var(--radius-sm); background: rgba(207, 254, 37, .05); margin-bottom: 8px; }
.legal__intro p { color: var(--text); }
.legal__summary li { padding-left: 4px; }
.legal__related { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; color: var(--muted); }

/* ---------- Utilities ---------- */
.mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; } .mt-18 { margin-top: 18px; } .mt-20 { margin-top: 20px; }
.mt-22 { margin-top: 22px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mb-20 { margin-bottom: 20px; }
.card__sub { font-size: 18px; font-weight: 600; margin: 24px 0 8px; }
.foot-bottom--solo { margin-top: 0; padding-top: 0; border-top: 0; }

/* Membership overview (manage.html?app=) and prelaunch card */
.overview { display: grid; gap: 10px; margin-top: 18px; font-size: 14.5px; }
.overview div { display: grid; grid-template-columns: minmax(120px, 38%) 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.overview dt { color: var(--muted); }
.overview dd { color: var(--text); overflow-wrap: anywhere; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 4px 12px; border-radius: 999px; border: 1px solid var(--line-2); font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text); background: var(--panel); }
.badge--ok { border-color: rgba(207, 254, 37, .5); color: var(--lime); }
.badge--warn { border-color: rgba(255, 157, 143, .5); color: var(--danger); }

/* ---------- Motion / reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
  .prelaunch__dot { animation: none; opacity: 1; }
  .btn, .step, .plan { transition: none; }
  .btn:hover, .step:hover { transform: none; }
  .spinner { animation-duration: 1.6s; }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .fields { grid-template-columns: 1fr 1fr; }
  .fields .field--full { grid-column: 1 / -1; }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .tier-picker { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 760px) {
  .how__grid { grid-template-columns: repeat(3, 1fr); }
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .brand img, .brand picture img { height: 40px; }
  .fleet__grid { grid-template-columns: repeat(3, 1fr); }
  .cosign__grid { grid-template-columns: 1.1fr .9fr; gap: 64px; }
  .legal__grid { grid-template-columns: 220px 1fr; gap: 56px; }
  .legal__toc { display: block; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-card { aspect-ratio: 5 / 4; min-height: 0; }
}
@media (max-width: 899px) {
  .pricing__grid { grid-template-columns: 1fr; }
}
@media (max-width: 759px) {
  .pricing__grid, .how__grid { grid-template-columns: 1fr; }
  .cta-box::after { display: none; }
  .step__watermark { font-size: 110px; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: var(--header-h); right: 0; left: 0;
    background: rgba(5, 6, 4, .97); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 20px 6% 28px; gap: 4px; align-items: stretch;
    transform: translateY(-130%); transition: transform .3s; z-index: 99; visibility: hidden;
  }
  .nav-links.open { transform: none; visibility: visible; }
  .nav-links a { min-height: 48px; font-size: 17px; }
  .nav-links .btn { margin-top: 12px; }
  .menu-toggle { display: inline-flex; }
  .nav > .btn { display: none; }
  .nav-links .nav-cta { display: inline-flex; }
}
@media (min-width: 861px) {
  .nav-links .nav-cta { display: none; }
}
@media (max-width: 420px) {
  .btn { padding-inline: 20px; }
  .hero-ctas .btn { width: 100%; }
  .stepper li { font-size: 14px; }
  .stepper li + li::before { width: 14px; }
}
