  @font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('assets/fonts/sora-0.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }
  @font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('assets/fonts/sora-1.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0300-0303, U+0305-0307, U+0309, U+030A-0327, U+032A-0370, U+1E00-1EFF, U+1F00-1FFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  }

  :root {
    --ground: #080D0A;
    --panel: #101812;
    --panel-2: #16281C;
    --raise: #141D16;
    --line: rgba(244,247,243,0.07);
    --line-mid: rgba(244,247,243,0.12);
    --text: #F4F7F3;
    --muted: #7E9287;
    --dim: #5C6E63;
    --emerald: #2FE382;
    --emerald-fill: #2FE382;
    --emerald-soft: rgba(47,227,130,0.14);
    --champagne: #E4CFA0;
    --champagne-soft: rgba(228,207,160,0.14);
    --cta-ink: #06120B;
    --map-grad-a: #101812;
    --map-grad-b: #0B120D;
    --town-fill: #2A3A30;
    --grid-dot: rgba(244,247,243,0.045);
    --glow-primary: 0 0 32px rgba(47,227,130,0.25);
    --glow-primary-hover: 0 0 44px rgba(47,227,130,0.4);
    --topbar-bg: rgba(8,13,10,0.82);
    --chip-bg: rgba(14,24,17,0.82);
    --island-fill: rgba(47,227,130,0.06);
    --island-glow: rgba(47,227,130,0.25);
    --route-quiet: rgba(244,247,243,0.13);
    --route-bridge: rgba(228,207,160,0.35);
    --town-stroke: rgba(244,247,243,0.25);
    --ride-halo: rgba(47,227,130,0.2);
    --emerald-hairline: rgba(47,227,130,0.35);
    --display: "Sora", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
    --mono: "Cascadia Code", "Consolas", ui-monospace, SFMono-Regular, monospace;
  }

  :root[data-theme="light"] {
    --ground: #F4F7F3;
    --panel: #FFFFFF;
    --panel-2: #F7FAF7;
    --raise: #E9EFE9;
    --line: rgba(10,15,12,0.10);
    --line-mid: rgba(10,15,12,0.18);
    --text: #0A0F0C;
    --muted: #48584E;
    --dim: #5E6E63;
    --emerald: #0B7A44;
    --emerald-fill: #2FE382;
    --emerald-soft: rgba(11,122,68,0.10);
    --champagne: #7A5E23;
    --champagne-soft: rgba(122,94,35,0.12);
    --cta-ink: #06120B;
    --map-grad-a: #FFFFFF;
    --map-grad-b: #EDF3ED;
    --town-fill: #C7D6CB;
    --grid-dot: rgba(10,15,12,0.06);
    --glow-primary: 0 6px 18px rgba(11,122,68,0.18);
    --glow-primary-hover: 0 8px 24px rgba(11,122,68,0.28);
    --topbar-bg: rgba(244,247,243,0.86);
    --chip-bg: rgba(255,255,255,0.92);
    --island-fill: rgba(11,122,68,0.07);
    --island-glow: rgba(11,122,68,0.14);
    --route-quiet: rgba(10,15,12,0.16);
    --route-bridge: rgba(122,94,35,0.45);
    --town-stroke: rgba(10,15,12,0.30);
    --ride-halo: rgba(11,122,68,0.18);
    --emerald-hairline: rgba(11,122,68,0.40);
    --display: "Sora", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
    --mono: "Cascadia Code", "Consolas", ui-monospace, SFMono-Regular, monospace;
  }
  :root[data-theme="light"] .draft-banner {
    background: var(--champagne-soft);
    color: var(--champagne);
  }
  :root[data-theme="light"] .theme-toggle-icon::before {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: currentColor;
    top: 3px; left: 3px;
  }
  :root[data-theme="light"] .theme-toggle-icon::after {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: transparent;
    top: 3px; left: 3px;
    box-shadow:
      0 -7px 0 -4px currentColor,
      0 7px 0 -4px currentColor,
      -7px 0 0 -4px currentColor,
      7px 0 0 -4px currentColor,
      -5px -5px 0 -4px currentColor,
      5px -5px 0 -4px currentColor,
      -5px 5px 0 -4px currentColor,
      5px 5px 0 -4px currentColor;
  }

  :root[data-theme="dark"] {
    --ground: #080D0A;
    --panel: #101812;
    --panel-2: #16281C;
    --raise: #141D16;
    --line: rgba(244,247,243,0.07);
    --line-mid: rgba(244,247,243,0.12);
    --text: #F4F7F3;
    --muted: #7E9287;
    --dim: #5C6E63;
    --emerald: #2FE382;
    --emerald-fill: #2FE382;
    --emerald-soft: rgba(47,227,130,0.14);
    --champagne: #E4CFA0;
    --champagne-soft: rgba(228,207,160,0.14);
    --cta-ink: #06120B;
    --map-grad-a: #101812;
    --map-grad-b: #0B120D;
    --town-fill: #2A3A30;
    --grid-dot: rgba(244,247,243,0.045);
    --glow-primary: 0 0 32px rgba(47,227,130,0.25);
    --glow-primary-hover: 0 0 44px rgba(47,227,130,0.4);
    --topbar-bg: rgba(8,13,10,0.82);
    --chip-bg: rgba(14,24,17,0.82);
    --island-fill: rgba(47,227,130,0.06);
    --island-glow: rgba(47,227,130,0.25);
    --route-quiet: rgba(244,247,243,0.13);
    --route-bridge: rgba(228,207,160,0.35);
    --town-stroke: rgba(244,247,243,0.25);
    --ride-halo: rgba(47,227,130,0.2);
    --emerald-hairline: rgba(47,227,130,0.35);
    --display: "Sora", "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
    --mono: "Cascadia Code", "Consolas", ui-monospace, SFMono-Regular, monospace;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--ground);
    color: var(--text);
    font-family: var(--display);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

  /* ---------- top bar ---------- */
  .topbar {
    position: sticky; top: 0; z-index: 20;
    background: var(--topbar-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
  }
  .topbar-inner {
    display: flex; align-items: center; gap: 32px;
    height: 64px;
  }
  .wordmark {
    font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .wordmark em { font-style: normal; color: var(--emerald); }
  .topnav { display: flex; gap: 26px; margin-left: auto; }
  .topnav a {
    font-size: 14px; color: var(--muted); font-weight: 500;
    transition: color 140ms ease;
  }
  .topnav a:hover { color: var(--text); }
  .top-cta {
    margin-left: 8px;
    background: var(--emerald-fill); color: var(--cta-ink);
    font-weight: 700; font-size: 14px;
    padding: 9px 18px; border-radius: 999px;
    white-space: nowrap;
    transition: transform 140ms ease;
  }
  .top-cta:hover { transform: translateY(-1px); }
  .theme-toggle {
    display: none;
    width: 34px; height: 34px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid var(--line-mid);
    color: var(--muted);
    place-items: center;
    cursor: pointer;
    padding: 0;
  }
  html.js .theme-toggle { display: grid; }
  .theme-toggle:hover { border-color: var(--emerald); }
  .theme-toggle:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 3px;
    border-radius: 999px;
  }
  .theme-toggle-icon {
    position: relative;
    width: 16px; height: 16px;
  }
  .theme-toggle-icon::before,
  .theme-toggle-icon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
  }
  /* moon (default/dark) */
  .theme-toggle-icon::before {
    width: 14px; height: 14px;
    background: currentColor;
    top: 1px; left: 1px;
  }
  .theme-toggle-icon::after {
    width: 12px; height: 12px;
    background: var(--ground);
    top: -1px; left: 5px;
  }

  /* ---------- hero ---------- */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 48px;
    align-items: center;
    padding: 88px 0 96px;
  }
  .eyebrow {
    font-family: var(--mono);
    font-size: 12px; letter-spacing: 0.22em;
    color: var(--champagne);
    text-transform: uppercase;
    margin: 0 0 20px;
  }
  h1 {
    font-size: clamp(44px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 0 0 24px;
    text-wrap: balance;
  }
  h1 .stop { color: var(--emerald); }
  .hero-sub {
    color: var(--muted);
    font-size: 17px;
    max-width: 44ch;
    margin: 0 0 32px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    display: inline-block;
    background: var(--emerald-fill); color: var(--cta-ink);
    font-weight: 700; font-size: 15px;
    padding: 14px 28px; border-radius: 999px;
    border: none; cursor: pointer; font-family: inherit;
    box-shadow: var(--glow-primary);
    transition: transform 140ms ease, box-shadow 140ms ease;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-primary-hover); }
  .btn-ghost {
    display: inline-block;
    color: var(--text); font-weight: 600; font-size: 15px;
    padding: 13px 24px; border-radius: 999px;
    border: 1px solid var(--line-mid);
    transition: border-color 140ms ease, background 140ms ease;
  }
  .btn-ghost:hover { border-color: var(--emerald); background: var(--emerald-soft); }
  .hero-ticks {
    font-family: var(--mono);
    font-size: 11px; letter-spacing: 0.14em;
    color: var(--dim);
    margin-top: 30px;
  }
  .hero-ticks b { color: var(--muted); font-weight: 400; }

  /* ---------- living map panel ---------- */
  .map-panel {
    position: relative;
    background:
      radial-gradient(var(--grid-dot) 1px, transparent 1px) 0 0 / 26px 26px,
      linear-gradient(160deg, var(--map-grad-a), var(--map-grad-b));
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 18px;
    min-width: 0;
  }
  .map-panel svg { display: block; width: 100%; height: auto; }
  .map-head {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
    color: var(--dim); text-transform: uppercase;
    padding: 4px 8px 12px;
  }
  .map-head .live { color: var(--emerald); }
  .map-head .live::before {
    content: ""; display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: var(--emerald); margin-right: 7px;
    vertical-align: 1px;
    animation: blink 2.4s ease-in-out infinite;
  }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

  .island { fill: var(--island-fill); stroke: var(--emerald); stroke-width: 1.25; }
  .island-glow { fill: none; stroke: var(--island-glow); stroke-width: 5; filter: url(#glow); }

  .route-line { stroke: var(--route-quiet); stroke-width: 1.5; fill: none; }
  .route-js { stroke: var(--emerald); stroke-width: 2; fill: none; }
  .route-active {
    stroke: var(--emerald); stroke-width: 2; fill: none;
    stroke-dasharray: 6 7;
    animation: flow 1.6s linear infinite;
  }
  @keyframes flow { to { stroke-dashoffset: -13; } }
  .route-bridge { stroke: var(--route-bridge); stroke-width: 1.2; fill: none; stroke-dasharray: 2 6; }
  .town { fill: var(--town-fill); stroke: var(--town-stroke); stroke-width: 1; }
  .town-key { fill: var(--emerald); stroke: none; }
  .town-label {
    font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em;
    fill: var(--muted);
  }
  .town-label.key { fill: var(--text); }
  @media (max-width: 560px) { .town-label.minor { display: none; } }
  .ping { fill: none; stroke: var(--champagne); stroke-width: 1.5; opacity: 0; transform-origin: center; transform-box: fill-box; animation: ping 3s ease-out infinite; }
  .ping.p2 { animation-delay: 1.5s; }
  @keyframes ping {
    0% { transform: scale(0.2); opacity: 0.9; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
  }
  .ping-core { fill: var(--champagne); }
  .ride-dot { fill: var(--emerald-fill); }
  .ride-dot-halo { fill: var(--ride-halo); }
  .ride-group { animation: drive 9s linear infinite; }
  @keyframes drive {
    0%    { transform: translate(242.9px, 380.4px); }
    30%   { transform: translate(287.9px, 450.4px); }
    38%   { transform: translate(287.9px, 450.4px); }
    58%   { transform: translate(270.5px, 497.8px); }
    64%   { transform: translate(270.5px, 497.8px); }
    92%   { transform: translate(264.3px, 570.4px); }
    100%  { transform: translate(264.3px, 570.4px); }
  }

  .map-chip {
    position: absolute; right: 30px; bottom: 90px;
    background: var(--chip-bg);
    border: 1px solid var(--line-mid);
    border-radius: 14px;
    padding: 12px 16px;
    backdrop-filter: blur(8px);
  }
  .map-chip .route {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
    color: var(--text); margin: 0 0 5px;
  }
  .map-chip .route span { color: var(--emerald); }
  .map-chip .meta { font-size: 12px; color: var(--muted); margin: 0; }

  .chip-row {
    display: flex; gap: 8px; margin-top: 14px;
    flex-wrap: wrap;
  }
  .chip-row button {
    background: transparent; border: 1px solid var(--line-mid); color: var(--muted);
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 8px 12px; border-radius: 999px; cursor: pointer; white-space: nowrap;
    transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
  }
  .chip-row button:hover { border-color: var(--emerald); color: var(--text); }
  .chip-row button[aria-pressed="true"] { background: var(--emerald-soft); border-color: var(--emerald); color: var(--emerald); }
  @media (max-width: 560px) {
    .chip-row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
    .chip-row::-webkit-scrollbar { display: none; }
  }

  /* ---------- sections ---------- */
  section { padding: 88px 0; border-top: 1px solid var(--line); }
  h2 {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
    margin: 0 0 18px; text-wrap: balance;
  }
  .section-lead { color: var(--muted); max-width: 56ch; margin: 0 0 48px; }

  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
  }
  .card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    transition: border-color 160ms ease, transform 160ms ease;
  }
  .card:hover { border-color: var(--emerald-hairline); transform: translateY(-3px); }
  .card .tag {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
    color: var(--emerald); text-transform: uppercase;
    display: block; margin-bottom: 14px;
  }
  .card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; }
  .card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

  /* steps — a real sequence, so numbers carry meaning */
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .step {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 26px 26px;
  }
  .step .n {
    font-family: var(--mono); font-size: 12px;
    color: var(--cta-ink); background: var(--emerald-fill);
    width: 26px; height: 26px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; margin-bottom: 18px;
  }
  .step h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
  .step p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

  /* payments */
  .pay-band { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .pay-card {
    background: linear-gradient(150deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px 28px;
  }
  .pay-card .tag {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
    color: var(--champagne); text-transform: uppercase;
    display: block; margin-bottom: 14px;
  }
  .pay-card h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 10px; }
  .pay-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.65; }

  /* drivers band */
  .drivers { background: var(--raise); border-radius: 28px; padding: 64px 56px; border: 1px solid var(--line); }
  .drivers-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: start; }
  .driver-rows { display: flex; flex-direction: column; gap: 0; }
  .driver-row {
    display: grid; grid-template-columns: 150px 1fr; gap: 18px;
    padding: 18px 0; border-bottom: 1px solid var(--line);
    align-items: baseline;
  }
  .driver-row:last-child { border-bottom: none; }
  .driver-row .k {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
    color: var(--emerald); text-transform: uppercase;
  }
  .driver-row .v { font-size: 14px; color: var(--muted); line-height: 1.6; }

  /* get the app band */
  .get-app { background: var(--raise); border-radius: 28px; padding: 64px 56px; border: 1px solid var(--line); text-align: center; }
  .get-app .section-lead { margin-left: auto; margin-right: auto; margin-bottom: 32px; }
  .get-app .eyebrow { margin-bottom: 16px; }
  .get-app h2 { margin-bottom: 16px; }

  /* draft banner (legal pages) */
  .draft-banner {
    background: var(--champagne); color: var(--cta-ink);
    font-family: var(--mono); font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-align: center;
    padding: 12px 24px;
  }

  /* legal document pages */
  .doc { max-width: 70ch; margin: 0 auto; padding: 72px 24px 88px; }
  .doc h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
    margin: 0 0 16px;
  }
  .doc .doc-updated {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
    color: var(--dim); text-transform: uppercase;
    margin: 0 0 48px;
  }
  .doc h2 {
    font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
    margin: 48px 0 14px;
  }
  .doc p, .doc li { color: var(--muted); font-size: 15px; line-height: 1.7; }
  .doc p { margin: 0 0 16px; }
  .doc ul { margin: 0 0 16px; padding-left: 22px; }
  .doc li { margin-bottom: 8px; }
  .doc a { color: var(--emerald); border-bottom: 1px solid var(--emerald-hairline); }
  .doc a:hover { border-bottom-color: var(--emerald); }

  /* footer */
  footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
  .foot-brand p { color: var(--muted); font-size: 14px; margin: 12px 0 0; max-width: 30ch; }
  .foot-col h4 {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
    color: var(--dim); text-transform: uppercase; margin: 0 0 16px; font-weight: 400;
  }
  .foot-col a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color 140ms ease; }
  .foot-col a:hover { color: var(--emerald); }
  .legal-line {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
    color: var(--dim);
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  }

  /* ---------- scroll reveal ---------- */
  html.js:not(.reduced-motion) .card,
  html.js:not(.reduced-motion) .step,
  html.js:not(.reduced-motion) .pay-card,
  html.js:not(.reduced-motion) .tl-item,
  html.js:not(.reduced-motion) .why-item,
  html.js:not(.reduced-motion) .faq-group,
  html.js:not(.reduced-motion) section h2 {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
    transition-delay: var(--reveal-delay, 0ms);
  }
  html.js:not(.reduced-motion) .card.in-view,
  html.js:not(.reduced-motion) .step.in-view,
  html.js:not(.reduced-motion) .pay-card.in-view,
  html.js:not(.reduced-motion) .tl-item.in-view,
  html.js:not(.reduced-motion) .why-item.in-view,
  html.js:not(.reduced-motion) .faq-group.in-view,
  html.js:not(.reduced-motion) section h2.in-view {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- skip link ---------- */
  .skip-link {
    position: absolute; left: 16px; top: -64px;
    z-index: 60;
    background: var(--emerald); color: var(--cta-ink);
    font-weight: 700; font-size: 14px;
    padding: 10px 18px; border-radius: 999px;
    transition: top 140ms ease;
  }
  .skip-link:focus-visible { top: 14px; }

  /* ---------- current nav state ---------- */
  .topnav a[aria-current="page"] {
    color: var(--text);
    padding-bottom: 3px;
    box-shadow: inset 0 -2px 0 var(--emerald);
  }

  /* ---------- section heading with quiet text link ---------- */
  .section-head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 16px 24px; flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .section-head h2 { margin-bottom: 0; }
  .more-link {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
    color: var(--emerald); white-space: nowrap;
    border-bottom: 1px solid var(--emerald-hairline);
    padding-bottom: 2px;
    transition: border-color 140ms ease;
  }
  .more-link:hover { border-bottom-color: var(--emerald); }

  /* ---------- why band ---------- */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 28px 24px;
  }
  .why-item { border-top: 1px solid var(--line-mid); padding-top: 20px; }
  .why-item h3 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; }
  .why-item p { font-size: 13px; color: var(--muted); margin: 0 0 14px; line-height: 1.6; }

  /* ---------- timeline (safety page) ---------- */
  .timeline { position: relative; margin: 0; padding: 0 0 0 44px; }
  .timeline::before {
    content: ""; position: absolute; left: 9px; top: 10px; bottom: 10px;
    width: 2px; background: var(--emerald-hairline);
  }
  .tl-item { position: relative; padding: 0 0 48px; }
  .tl-item:last-child { padding-bottom: 0; }
  .tl-item::before {
    content: ""; position: absolute; left: -43px; top: 4px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--ground); border: 3px solid var(--emerald);
  }
  .tl-item .tag {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
    color: var(--emerald); text-transform: uppercase;
    display: block; margin-bottom: 12px;
  }
  .tl-item h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 10px; }
  .tl-item p { font-size: 14px; color: var(--muted); margin: 0 0 12px; line-height: 1.65; max-width: 62ch; }
  .tl-item ul { margin: 0; padding-left: 20px; max-width: 62ch; }
  .tl-item li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 6px; }
  .tl-item a { color: var(--emerald); border-bottom: 1px solid var(--emerald-hairline); }
  .tl-item a:hover { border-bottom-color: var(--emerald); }

  /* ---------- faq accordions (native details/summary) ---------- */
  .faq-group { margin-bottom: 52px; }
  .faq-group:last-child { margin-bottom: 0; }
  .faq-group > h2 { font-size: 24px; margin: 0 0 20px; }
  details.faq {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 10px;
  }
  details.faq summary {
    list-style: none; cursor: pointer;
    display: flex; align-items: baseline; gap: 14px;
    padding: 18px 22px;
  }
  details.faq summary::-webkit-details-marker { display: none; }
  details.faq summary::before {
    content: "+";
    flex: 0 0 16px;
    font-family: var(--mono); font-size: 16px;
    color: var(--emerald); text-align: center;
  }
  details.faq[open] summary::before { content: "\2013"; }
  details.faq summary:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 3px;
    border-radius: 6px;
  }
  .faq-q { font-size: 15px; font-weight: 600; letter-spacing: 0; margin: 0; }
  .faq-a { padding: 0 22px 20px 52px; }
  .faq-a p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
  .faq-a a { color: var(--emerald); border-bottom: 1px solid var(--emerald-hairline); }
  .faq-a a:hover { border-bottom-color: var(--emerald); }

  /* ---------- 404 ---------- */
  .nf { text-align: center; padding: 56px 0 64px; }
  .nf h1 { font-size: clamp(38px, 6vw, 60px); margin-bottom: 18px; }
  .nf .hero-sub { margin-left: auto; margin-right: auto; }
  .nf-map { display: block; max-width: 440px; width: 100%; margin: 36px auto; }

  /* responsive */
  @media (max-width: 940px) {
    .hero { grid-template-columns: 1fr; padding: 56px 0 64px; }
    .topbar-inner { flex-wrap: wrap; height: auto; gap: 10px 16px; padding-top: 12px; padding-bottom: 10px; }
    .wordmark { margin-right: auto; }
    .top-cta { margin-left: 0; }
    .topnav {
      order: 3; flex-basis: 100%;
      display: flex; gap: 24px;
      margin-left: 0;
      overflow-x: auto;
      padding: 6px 0 4px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .topnav::-webkit-scrollbar { display: none; }
    .topnav a { white-space: nowrap; }
    .drivers { padding: 40px 28px; }
    .drivers-grid { grid-template-columns: 1fr; gap: 32px; }
    .get-app { padding: 40px 28px; }
    .pay-band { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .driver-row { grid-template-columns: 1fr; gap: 6px; }
    section { padding: 64px 0; }
  }

  @media (max-width: 560px) {
    .map-chip { position: static; margin-top: 12px; }
    .doc { padding: 48px 20px 64px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .ride-group, .ping, .route-active, .map-head .live::before { animation: none; }
    .ping { opacity: 0; }
    .ride-group { transform: translate(287.9px, 450.4px); }
    * { transition: none !important; }
  }
