@import url("/assets/fonts/fonts.css");

:root {
  --void: #07080a;
  --asphalt: #121518;
  --surface: #1a1e23;
  --elevated: #23282e;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --red: #e30a17;
  --red-deep: #a8060f;
  --red-soft: rgba(227, 10, 23, 0.14);
  --ivory: #ffffff;
  --muted: #8c949e;
  --steel: #6b7a8c;
  --blue: #5a9eff;
  --orange: #ff9f0a;
  --green: #30d158;
  --radius: 22px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

.container { width: min(1180px, 100% - 40px); margin: 0 auto; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 30px; height: auto; }
.brand-word {
  font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: .04em; line-height: 1;
}
.brand-word span { color: var(--red); }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14px; font-weight: 500; color: var(--muted); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--ivory); }
.nav-cta { margin-left: 8px; }
.menu-btn { display: none; margin-left: auto; background: none; border: 0; color: #fff; padding: 8px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 24px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 15px; border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:active { transform: scale(.97); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -8px rgba(227, 10, 23, .6); }
.btn-red:hover { background: #f5121f; box-shadow: 0 14px 40px -8px rgba(227, 10, 23, .75); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }
.store-btn { height: 58px; padding: 0 22px 0 18px; gap: 12px; background: #fff; color: #000; }
.store-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 40px -12px rgba(255,255,255,.35); }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn small { font-size: 11px; font-weight: 500; opacity: .7; }
.store-btn strong { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 12px/1 ui-monospace, "SF Mono", Menlo, monospace; letter-spacing: .18em; text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: currentColor; border-radius: 2px; }
.display {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  line-height: .92; letter-spacing: -.005em; margin: 0;
}
.h-xl { font-size: clamp(56px, 9vw, 124px); }
.h-lg { font-size: clamp(42px, 6vw, 76px); }
.h-md { font-size: clamp(30px, 3.6vw, 44px); }
.red { color: var(--red); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 580px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 40px; min-height: 100vh; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto auto; width: 900px; height: 900px; pointer-events: none;
  background: radial-gradient(closest-side, rgba(227,10,23,.28), transparent 70%);
  filter: blur(20px);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; position: relative; }
.hero h1 { margin: 22px 0 22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--steel); }
.road {
  position: absolute; left: 0; right: 0; bottom: 0; height: 180px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(18,21,24,.9) 60%);
}
.road::after {
  content: ""; position: absolute; left: 0; right: 0; top: 110px; height: 4px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.28) 0 60px, transparent 60px 120px);
  animation: road 1.4s linear infinite;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
@keyframes road { to { background-position: -120px 0; } }

/* ---------- Phone mockup ---------- */
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: 320px; height: 660px; border-radius: 54px; padding: 12px;
  background: linear-gradient(145deg, #2b3036, #0d0f12);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 120px -20px rgba(227,10,23,.35), 0 30px 80px rgba(0,0,0,.6);
  transform: rotate(-3deg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 50% { transform: rotate(-3deg) translateY(-12px); } }
.screen { position: relative; height: 100%; border-radius: 43px; overflow: hidden; background: var(--void); }
.island { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 104px; height: 30px; border-radius: 20px; background: #000; z-index: 3; }
.app { padding: 52px 14px 0; font-size: 11px; }
.app-top { display: flex; align-items: center; gap: 6px; }
.app-top img { width: 18px; }
.app-top b { font-family: var(--display); font-size: 15px; letter-spacing: .04em; }
.app-top b span { color: var(--red); }
.app-icons { margin-left: auto; display: flex; gap: 6px; }
.app-icons i { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid var(--border); display: grid; place-items: center; font-style: normal; font-size: 11px; position: relative; }
.app-icons i.badge::after { content: "2"; position: absolute; top: -4px; right: -4px; width: 13px; height: 13px; border-radius: 50%; background: var(--red); font-size: 8px; font-weight: 700; display: grid; place-items: center; }
.app-hello { margin: 14px 0 10px; font-weight: 700; font-size: 15px; }
.app-tabs { display: flex; gap: 3px; padding: 3px; background: var(--surface); border-radius: 99px; border: 1px solid var(--border); margin-bottom: 10px; }
.app-tabs span { flex: 1; text-align: center; padding: 6px 0; border-radius: 99px; color: var(--muted); font-weight: 600; font-size: 10px; }
.app-tabs span.on { background: #fff; color: #000; }
.app-card { background: rgba(26,30,35,.8); border: 1px solid var(--border); border-radius: 16px; padding: 10px; margin-bottom: 9px; }
.app-next { display: flex; gap: 10px; align-items: center; background: var(--red-soft); border-color: rgba(227,10,23,.4); }
.app-date { width: 40px; height: 44px; border-radius: 10px; background: var(--red); display: grid; place-items: center; text-align: center; line-height: 1; font-weight: 800; font-size: 17px; }
.app-date small { display: block; font-size: 8px; font-weight: 600; letter-spacing: .08em; }
.app-k { font: 600 8px ui-monospace, monospace; letter-spacing: .12em; color: var(--red); }
.app-t { font-weight: 700; font-size: 12px; }
.app-s { color: var(--muted); font-size: 10px; }
.app-media { height: 150px; border-radius: 12px; margin: 8px 0; background: radial-gradient(120% 90% at 70% 20%, rgba(227,10,23,.55), transparent 60%), linear-gradient(160deg, #1c232c, #0b0d10); position: relative; overflow: hidden; }
.app-media img { position: absolute; left: -6%; bottom: 10px; width: 112%; filter: drop-shadow(0 10px 14px rgba(0,0,0,.6)); }
.app-row { display: flex; align-items: center; gap: 8px; }
.app-av { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, #e30a17, #5a0a10); }
.app-actions { display: flex; gap: 14px; color: var(--muted); font-size: 10px; font-weight: 600; }
.app-actions .liked { color: var(--red); }
.app-help { border-color: rgba(255,159,10,.3); }
.app-pill { margin-left: auto; background: var(--orange); color: #000; font-weight: 700; font-size: 9px; padding: 4px 9px; border-radius: 99px; }
.floating-card {
  position: absolute; z-index: 2; background: rgba(26,30,35,.82); border: 1px solid var(--border-strong);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 18px; padding: 12px 14px; display: flex; gap: 10px; align-items: center; font-size: 13px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  animation: float2 6s ease-in-out infinite;
}
.floating-card .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 16px; }
.floating-card b { display: block; font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 11px; }
.fc-1 { top: -18px; left: -60px; }
.fc-2 { bottom: 120px; right: -40px; animation-delay: -3s; }
@keyframes float2 { 50% { transform: translateY(-10px); } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--border); background: var(--asphalt); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--display); font-weight: 700; font-size: 26px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.3); white-space: nowrap; display: flex; align-items: center; gap: 48px; }
.marquee span::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 130px 0; }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head h2 { margin: 18px 0 18px; }

.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 30px;
  background: linear-gradient(180deg, rgba(35,40,46,.7), rgba(18,21,24,.9));
  border: 1px solid var(--border); min-height: 300px;
  transition: border-color .3s, transform .3s;
}
.tile:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.tile h3 { font-family: var(--display); font-weight: 700; font-size: 32px; text-transform: uppercase; line-height: 1; margin: 18px 0 10px; letter-spacing: .01em; }
.tile p { color: var(--muted); margin: 0; max-width: 420px; }
.tile-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.tile-icon svg { width: 24px; height: 24px; }
.span-7 { grid-column: span 7; } .span-5 { grid-column: span 5; } .span-4 { grid-column: span 4; } .span-6 { grid-column: span 6; } .span-8 { grid-column: span 8; }
.tint-red .tile-icon { background: var(--red-soft); color: var(--red); }
.tint-blue .tile-icon { background: rgba(90,158,255,.14); color: var(--blue); }
.tint-orange .tile-icon { background: rgba(255,159,10,.14); color: var(--orange); }
.tint-green .tile-icon { background: rgba(48,209,88,.14); color: var(--green); }
.tint-ivory .tile-icon { background: rgba(255,255,255,.08); color: #fff; }

/* Route map visual */
.route-visual { position: absolute; right: 14px; bottom: 10px; width: 55%; opacity: .95; }
.route-path { stroke-dasharray: 8 10; animation: dash 18s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -400; } }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip { font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 99px; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: #d8dde3; }
.chip.red { background: var(--red-soft); border-color: rgba(227,10,23,.35); color: #ff6b73; }
.chip.green { background: rgba(48,209,88,.12); border-color: rgba(48,209,88,.3); color: var(--green); }

/* Q&A mini list */
.qa { margin-top: 24px; display: grid; gap: 10px; }
.qa-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: rgba(7,8,10,.5); border: 1px solid rgba(255,159,10,.18); font-size: 14px; }
.qa-item b { display: block; font-size: 14px; }
.qa-item small { color: var(--muted); font-size: 12px; }
.qa-item .tag { margin-left: auto; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 99px; background: var(--orange); color: #000; white-space: nowrap; }
.qa-item .tag.done { background: rgba(48,209,88,.16); color: var(--green); }

/* Deal ticket */
.ticket { margin-top: 26px; display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 18px; background: rgba(7,8,10,.55); border: 1px dashed rgba(48,209,88,.35); }
.qr { width: 64px; height: 64px; border-radius: 10px; background: #fff; padding: 6px; }
.qr i { display: block; width: 100%; height: 100%; background:
  conic-gradient(#000 25%, #fff 0 50%, #000 0 75%, #fff 0) 0 0/12px 12px; border-radius: 3px; }
.code { font: 700 20px ui-monospace, monospace; letter-spacing: .06em; }

/* Garage */
.garage { background: radial-gradient(90% 70% at 50% 0%, rgba(227,10,23,.12), transparent 60%), var(--asphalt); border-block: 1px solid var(--border); }
.garage-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.car-stage { position: relative; padding: 40px 0 30px; }
.car-stage::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: 26px; height: 40px; background: radial-gradient(closest-side, rgba(0,0,0,.8), transparent); z-index: 0; }
.car { position: relative; z-index: 1; width: 100%; aspect-ratio: 1029 / 309; transition: opacity .35s; }
.car img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.car .paint {
  position: absolute; inset: 0; background: var(--paint, #f7f7f7); mix-blend-mode: multiply;
  -webkit-mask: var(--mask) center/contain no-repeat; mask: var(--mask) center/contain no-repeat;
  transition: background .5s;
}
.swatches { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.swatch { width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); cursor: pointer; padding: 0; position: relative; transition: transform .2s; }
.swatch:hover { transform: scale(1.1); }
.swatch.on { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.paint-name { margin-top: 14px; font-size: 14px; color: var(--muted); }
.paint-name b { color: #fff; }
.body-styles { display: flex; gap: 6px; padding: 4px; margin-top: 26px; border-radius: 99px; background: var(--surface); border: 1px solid var(--border); width: max-content; max-width: 100%; overflow-x: auto; }
.body-styles button { background: none; border: 0; color: var(--muted); font: 600 13px var(--body); padding: 9px 16px; border-radius: 99px; cursor: pointer; white-space: nowrap; }
.body-styles button.on { background: #fff; color: #000; }
.garage-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.stat { padding: 16px; border-radius: 16px; background: rgba(7,8,10,.5); border: 1px solid var(--border); }
.stat b { display: block; font-family: var(--display); font-size: 30px; line-height: 1; }
.stat small { color: var(--muted); font-size: 12px; }

/* Safety */
.safety { text-align: center; }
.safety .display { max-width: 980px; margin: 18px auto 20px; }
.safety .lead { margin: 0 auto; }
.pledges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 60px; text-align: left; }
.pledge { padding: 24px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); }
.pledge b { display: block; font-size: 16px; margin: 12px 0 6px; }
.pledge p { margin: 0; color: var(--muted); font-size: 14px; }
.pledge .n { font: 700 12px ui-monospace, monospace; color: var(--red); letter-spacing: .1em; }

/* Business */
.biz { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.plans { display: grid; gap: 14px; }
.plan { display: flex; align-items: center; gap: 18px; padding: 22px 24px; border-radius: 20px; background: var(--surface); border: 1px solid var(--border); }
.plan.featured { background: linear-gradient(135deg, rgba(227,10,23,.22), rgba(26,30,35,.9) 60%); border-color: rgba(227,10,23,.45); }
.plan h4 { margin: 0; font-size: 18px; }
.plan p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }
.price { margin-left: auto; text-align: right; font-family: var(--display); font-weight: 800; font-size: 34px; line-height: 1; white-space: nowrap; }
.price small { display: block; font-family: var(--body); font-weight: 500; font-size: 12px; color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #d8dde3; }
.check-list li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px; border-radius: 50%; background: var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.5 2.5L14 7.5' fill='none' stroke='%23e30a17' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/20px no-repeat; }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; font-size: 18px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; line-height: 1; color: var(--red); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); margin: 14px 0 0; }

/* CTA */
.cta-box {
  position: relative; overflow: hidden; border-radius: 34px; padding: 80px 60px; text-align: center;
  background: radial-gradient(80% 120% at 50% 0%, rgba(227,10,23,.45), transparent 60%), linear-gradient(180deg, #181c21, #0d0f12);
  border: 1px solid rgba(227,10,23,.3);
}
.cta-box .brand-d-bg { position: absolute; right: -60px; bottom: -80px; width: 380px; opacity: .08; pointer-events: none; user-select: none; }
.cta-box > :not(.brand-d-bg) { position: relative; z-index: 1; }
.cta-box .display { margin: 18px 0 16px; }
.cta-box .lead { margin: 0 auto 34px; }
.waitlist { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; }
.waitlist input {
  flex: 1; height: 56px; border-radius: 999px; padding: 0 22px; font: 500 15px var(--body);
  background: rgba(7,8,10,.7); border: 1px solid var(--border-strong); color: #fff; outline: none;
}
.waitlist input:focus { border-color: var(--red); box-shadow: 0 0 0 4px var(--red-soft); }
.waitlist .btn { height: 56px; }
.form-msg { margin-top: 14px; font-size: 14px; min-height: 22px; color: var(--muted); }
.form-msg.ok { color: var(--green); }
.form-msg.err { color: #ff6b73; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 60px 0 40px; margin-top: 120px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot h5 { margin: 0 0 14px; font: 600 12px ui-monospace, monospace; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.foot a { display: block; color: var(--muted); font-size: 14px; padding: 4px 0; transition: color .2s; }
.foot a:hover { color: #fff; }
.foot p { color: var(--muted); font-size: 14px; max-width: 300px; }
.copy { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border); color: var(--steel); font-size: 13px; }

/* Legal pages */
.legal-hero { padding: 150px 0 40px; background: radial-gradient(60% 100% at 80% 0%, rgba(227,10,23,.18), transparent 60%); }
.legal-hero .display { margin: 18px 0 16px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: start; }
.legal-toc { position: sticky; top: 100px; display: grid; gap: 2px; }
.legal-toc a { color: var(--muted); font-size: 14px; padding: 7px 12px; border-radius: 10px; border-left: 2px solid transparent; }
.legal-toc a:hover { color: #fff; background: rgba(255,255,255,.04); }
.legal-toc a.on { color: #fff; border-left-color: var(--red); background: rgba(255,255,255,.04); }
.legal-body section { padding: 28px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 100px; }
.legal-body h2 { font-size: 22px; margin: 0 0 12px; }
.legal-body p { color: #c9ced4; white-space: pre-line; margin: 0; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 10px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-grid, .garage-grid, .biz { grid-template-columns: minmax(0, 1fr); }
  .hero { padding-top: 120px; }
  .phone-wrap { margin-top: 30px; }
  .span-7, .span-5, .span-4, .span-6, .span-8 { grid-column: span 12; }
  .pledges { grid-template-columns: repeat(2, 1fr); }
  .foot { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .support-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .nav.open { background: rgba(7,8,10,.96); }
  .nav.open .nav-links { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; padding: 10px 20px 24px; background: rgba(7,8,10,.96); border-bottom: 1px solid var(--border); }
  .nav.open .nav-links a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--border); }
  .section { padding: 90px 0; }
  .tile { padding: 24px; min-height: 0; }
  .route-visual { position: relative; width: 100%; right: 0; bottom: 0; margin-top: 20px; }
  .pledges { grid-template-columns: 1fr; }
  .cta-box { padding: 56px 22px; border-radius: 26px; }
  .waitlist { flex-direction: column; }
  .waitlist input { flex: none; width: 100%; }
  .foot { grid-template-columns: 1fr; }
  .copy { flex-direction: column; }
  .floating-card { display: none; }
  .phone { transform: none; animation: none; width: 290px; height: 600px; }
  .garage-stats { grid-template-columns: repeat(3, 1fr); }
  .plan { flex-wrap: wrap; }
}
