:root {
  color-scheme: light;
  --paper: #f6f8fc;
  --paper-2: #edf3fb;
  --ink: #081326;
  --navy: #0b1730;
  --navy-2: #132342;
  --muted: #516178;
  --soft: #8291a8;
  --red: #ff4057;
  --red-soft: rgba(255, 64, 87, 0.12);
  --cyan: #00a98f;
  --cyan-soft: rgba(0, 169, 143, 0.12);
  --gold: #f2a93b;
  --line: rgba(8, 19, 38, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: rgba(24, 44, 79, 0.16);
  --display: "Chakra Petch", Inter, ui-sans-serif, system-ui, sans-serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--paper); scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 64, 87, 0.12), transparent 25rem),
    radial-gradient(circle at 88% 4%, rgba(0, 169, 143, 0.12), transparent 25rem),
    linear-gradient(180deg, #fbfcff 0%, #f1f5fb 42%, #eaf1fa 100%);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: absolute;
  left: 18px;
  top: -120px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  text-decoration: none;
  font-weight: 900;
}
.skip-link:focus { top: 18px; }

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    linear-gradient(rgba(12, 32, 66, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 32, 66, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(#000 0%, rgba(0,0,0,.65) 42%, transparent 100%);
}

.ambient-road {
  position: absolute;
  inset: 70px -120px auto;
  height: 620px;
  opacity: 0.52;
  background: url("data:image/svg+xml,%3Csvg width='1200' height='620' viewBox='0 0 1200 620' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230b1730' stroke-opacity='.13'%3E%3Cpath d='M-60 494C135 350 174 204 356 186c142-14 222 56 360-15C816 119 881 42 1260 66' stroke-width='4'/%3E%3Cpath d='M20 654C186 518 238 392 424 358c132-24 202 41 322-24 110-59 174-168 346-190' stroke-width='2'/%3E%3Cpath d='M-70 174C122 133 206 52 382 72c140 16 176 91 336 71 130-17 222-94 430-98' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E") center top / cover no-repeat;
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(68px);
}
.ambient-orb.red { width: 420px; height: 420px; left: -130px; top: 150px; background: rgba(255,64,87,.16); }
.ambient-orb.blue { width: 380px; height: 380px; right: -90px; top: 300px; background: rgba(0,169,143,.13); }

.site-shell { width: min(1220px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(8,19,38,.09);
  background: rgba(246, 248, 252, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-emblem,
.brand-mark {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 18px;
}

.brand-emblem img,
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-emblem {
  background: url("/favicon-v9.svg") center / contain no-repeat;
  border: 0;
  box-shadow: 0 18px 38px rgba(24, 44, 79, 0.16);
}
.brand-emblem svg { width: 46px; height: 46px; display: none; }
.brand-mark {
  border: 0;
  background: url("/favicon-v9.svg") center / contain no-repeat;
  box-shadow: 0 18px 38px rgba(24, 44, 79, 0.16);
}
.brand-emblem path,
.brand-emblem circle {
  transform-box: fill-box;
  transform-origin: center;
}
.brand-mark::before,
.brand-mark::after { content: none; }
.brand-copy { display: grid; line-height: 1.02; }
.brand-name { color: var(--ink); font-family: var(--display); font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.brand-name span,
.site-footer strong span { color: var(--red); }
.brand-kicker { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; font-weight: 800; }
.nav-links a { padding: 10px 11px; border-radius: 999px; text-decoration: none; transition: .18s ease; }
.nav-links a:hover { color: var(--ink); background: rgba(8,19,38,.06); }
.nav-links .nav-cta { color: #fff; background: linear-gradient(145deg, #ff6677, var(--red)); box-shadow: 0 14px 30px rgba(255,64,87,.22); }

.hero {
  display: grid;
  grid-template-columns: minmax(390px, .72fr) minmax(560px, 1.28fr);
  gap: clamp(36px, 5.5vw, 76px);
  align-items: center;
  min-height: auto;
  padding: 58px 0 56px;
}
.hero-copy { min-width: 0; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-family: var(--display);
  color: #b51932;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { padding: 9px 14px; border: 1px solid rgba(255,64,87,.24); border-radius: 999px; background: rgba(255,64,87,.08); }
.eyebrow::before,
.section-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--red); box-shadow: 0 0 14px var(--red); }

h1,
h2,
h3 { margin: 0; font-family: var(--display); letter-spacing: -.045em; color: var(--ink); }
h1 { width: 100%; max-width: 500px; font-size: clamp(42px, 5vw, 68px); line-height: .98; }
h1 span { color: transparent; background: linear-gradient(105deg, var(--ink) 0%, var(--red) 54%, var(--gold) 100%); -webkit-background-clip: text; background-clip: text; }
h2 { font-size: clamp(32px, 4.8vw, 58px); line-height: 1; }
h3 { font-size: 22px; line-height: 1.15; }
p { color: var(--muted); line-height: 1.72; }
.lead { max-width: 720px; margin: 24px 0 0; color: #263750; font-size: clamp(18px, 2.1vw, 22px); }
.brand-slogan {
  margin: 16px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 900;
  letter-spacing: .02em;
}
.brand-slogan span { color: var(--red); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.brand-slogan + .hero-actions { margin-top: 24px; }
.button,
.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(8,19,38,.12);
  border-radius: 15px;
  color: var(--ink);
  background: rgba(255,255,255,.74);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 16px 36px var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover,
.plan-button:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(24,44,79,.20); }
.button.primary,
.plan-button { border: 0; color: #fff; background: linear-gradient(145deg, #ff6677, var(--red) 50%, #b8142e); }

.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.hero-stats div { min-width: 0; padding: 14px 14px; border: 1px solid rgba(8,19,38,.10); border-radius: 18px; background: rgba(255,255,255,.64); box-shadow: 0 14px 34px rgba(24,44,79,.10); }
.hero-stats strong { display: block; font-family: var(--display); color: var(--ink); font-size: 28px; }
.hero-stats span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; font-weight: 900; }

.drive-scene {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(450px, 48vw, 580px);
  perspective: 1000px;
}
.windshield-scene {
  position: relative;
  isolation: isolate;
  width: min(680px, 100%);
  height: clamp(430px, 46vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(8,19,38,.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 72% 14%, rgba(255,64,87,.16), transparent 14rem),
    linear-gradient(180deg, #dbe7f4 0%, #b9cadb 34%, #9fb4c7 48%, #15213a 49%, #081326 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    inset 0 -28px 70px rgba(2,7,20,.34),
    0 34px 82px rgba(24,44,79,.18);
  transform: rotateX(1.5deg) rotateY(-2deg);
}
.windshield-scene::before,
.windshield-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.windshield-scene::before {
  z-index: 8;
  background:
    linear-gradient(112deg, rgba(255,255,255,.46) 0%, rgba(255,255,255,.15) 11%, transparent 31%),
    linear-gradient(180deg, rgba(255,255,255,.20), transparent 36%, rgba(2,7,20,.14));
  mix-blend-mode: screen;
  opacity: .74;
}
.windshield-scene::after {
  z-index: 9;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24), inset 0 -56px 110px rgba(2,7,20,.52);
  border-radius: inherit;
}
.sun-glow {
  position: absolute;
  right: 14%;
  top: 12%;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,220,158,.52), rgba(255,64,87,.10) 38%, transparent 70%);
  filter: blur(2px);
  opacity: .75;
}
.road-horizon {
  position: absolute;
  left: -6%;
  right: -6%;
  top: 34%;
  height: 82px;
  opacity: .52;
  filter: blur(.25px);
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(63,84,105,.38) 8% 18%, transparent 18% 24%, rgba(63,84,105,.28) 24% 31%, transparent 31% 42%, rgba(63,84,105,.32) 42% 52%, transparent 52% 100%);
}
.road-horizon span {
  position: absolute;
  bottom: 0;
  border-radius: 10px 10px 0 0;
  background: rgba(60,82,103,.28);
}
.road-horizon span:nth-child(1) { left: 13%; width: 58px; height: 30px; }
.road-horizon span:nth-child(2) { left: 76%; width: 82px; height: 42px; }
.road-horizon span:nth-child(3) { left: 89%; width: 38px; height: 25px; }
.road-plane {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -20%;
  z-index: 1;
  height: 73%;
  overflow: hidden;
  clip-path: polygon(39% 0, 61% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.16), transparent 8rem),
    linear-gradient(180deg, #314058 0%, #121d31 60%, #07101f 100%);
}
.road-plane::before,
.road-plane::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.road-plane::before {
  opacity: .26;
  background:
    linear-gradient(90deg, transparent 0 49.5%, rgba(255,255,255,.18) 49.5% 50.5%, transparent 50.5% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 34px);
}
.road-plane::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.22) 54%, rgba(0,0,0,.58) 100%);
}
.road-edge,
.lane-flow {
  position: absolute;
  bottom: -18%;
  height: 124%;
  transform-origin: bottom center;
}
.road-edge {
  z-index: 2;
  width: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  opacity: .48;
}
.road-edge.left { left: 32%; transform: rotate(12deg); }
.road-edge.right { right: 32%; transform: rotate(-12deg); }
.lane-flow {
  z-index: 3;
  width: 5px;
  border-radius: 999px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.86) 0 34px, transparent 34px 72px);
  animation: laneFlow 1.15s linear infinite;
  opacity: .86;
}
.lane-flow.center { left: calc(50% - 2.5px); }
.lane-flow.side-left { left: 42%; width: 3px; opacity: .28; transform: rotate(6deg); }
.lane-flow.side-right { right: 42%; width: 3px; opacity: .28; transform: rotate(-6deg); }
.traffic-car {
  position: absolute;
  z-index: 4;
  width: 42px;
  height: 18px;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, #25344a, #0d1728);
  box-shadow: 0 10px 18px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.2);
  animation: trafficDrift 5.8s ease-in-out infinite;
}
.traffic-car i {
  position: absolute;
  bottom: 2px;
  width: 6px;
  height: 3px;
  border-radius: 999px;
  background: #ff4057;
  box-shadow: 0 0 8px rgba(255,64,87,.72);
}
.traffic-car i:first-child { left: 8px; }
.traffic-car i:last-child { right: 8px; }
.car-one { left: 49%; top: 22%; transform: translateX(-50%) scale(.62); }
.car-two { left: 37%; top: 35%; transform: translateX(-50%) scale(.86); animation-delay: .8s; opacity: .86; }
.car-three { left: 62%; top: 31%; transform: translateX(-50%) scale(.74); animation-delay: 1.4s; opacity: .72; }
.road-sign {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0,0,0,.24);
}
.speed-90 {
  right: 31%;
  top: 26%;
  width: 38px;
  height: 38px;
  border: 5px solid var(--red);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}
.school-zone {
  left: 29%;
  top: 30%;
  padding: 7px 9px;
  border: 2px solid #f4c04f;
  border-radius: 10px;
  color: #4d3200;
  background: #ffd667;
  font-size: 10px;
  letter-spacing: .05em;
}
.hud-speed {
  position: absolute;
  z-index: 6;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 7px solid var(--red);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  box-shadow: 0 20px 42px rgba(24,44,79,.18), 0 0 0 8px rgba(255,64,87,.07);
  backdrop-filter: blur(14px);
  animation: speedPulse 5.4s ease-in-out infinite;
}
.hud-speed strong { font-family: var(--display); font-size: 30px; line-height: .8; }
.hud-speed span { margin-top: -18px; color: var(--muted); font-size: 10px; font-weight: 900; }
.hud-stack {
  position: absolute;
  z-index: 7;
  top: 24px;
  right: 24px;
  display: grid;
  gap: 10px;
  width: min(318px, 48%);
}
.hud-card {
  --accent: var(--red);
  position: relative;
  overflow: hidden;
  padding: 14px 16px 14px 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 42px rgba(7,19,38,.16);
  backdrop-filter: blur(18px);
  animation: hudFloat 6.5s ease-in-out infinite;
}
.hud-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.55) 46%, transparent 66%);
  opacity: .0;
  transform: translateX(-60%);
  animation: hudSheen 7s ease-in-out infinite;
}
.hud-card.radar { --accent: var(--red); }
.hud-card.caution { --accent: var(--gold); animation-delay: .45s; }
.hud-card.school { --accent: var(--cyan); animation-delay: .9s; }
.hud-card span,
.hud-card strong,
.hud-card small { position: relative; z-index: 1; display: block; }
.hud-card span { color: #7d1d2c; font-family: var(--display); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.hud-card.caution span { color: #80550d; }
.hud-card.school span { color: #006d60; }
.hud-card strong { margin-top: 4px; color: var(--ink); font-family: var(--display); font-size: 18px; }
.hud-card small { margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 800; }
.traffic-status {
  position: absolute;
  z-index: 6;
  left: 24px;
  bottom: 128px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(8,19,38,.44);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}
.traffic-status i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0,169,143,.9);
}
.dashboard-view {
  position: absolute;
  z-index: 5;
  left: 5%;
  right: 5%;
  bottom: -32px;
  height: 138px;
  border-radius: 44px 44px 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.10), transparent 16rem),
    linear-gradient(180deg, rgba(18,31,52,.92), #050a13 78%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 -24px 54px rgba(2,7,20,.30);
}
.steering-arc {
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 220px;
  height: 120px;
  border: 18px solid rgba(2,7,20,.92);
  border-top-color: rgba(24,38,62,.95);
  border-radius: 160px 160px 0 0;
  transform: translateX(-50%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 -10px 22px rgba(0,0,0,.24);
}
.dash-light {
  position: absolute;
  bottom: 46px;
  width: 54px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,64,87,.68);
  box-shadow: 0 0 18px rgba(255,64,87,.42);
}
.dash-light.one { left: 20%; }
.dash-light.two { right: 20%; background: rgba(0,169,143,.68); box-shadow: 0 0 18px rgba(0,169,143,.42); }

.real-drive {
  min-height: clamp(560px, 52vw, 700px);
  display: grid;
  align-items: center;
}
.video-reel {
  position: relative;
  isolation: isolate;
  width: min(960px, 100%);
  min-height: clamp(540px, 49vw, 660px);
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 42px);
  background: #050a13;
  box-shadow: 0 34px 90px rgba(7,19,38,.24);
}
.video-reel::before,
.video-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.video-reel::before {
  z-index: 0;
  inset: -18%;
  background:
    radial-gradient(circle at 72% 14%, rgba(255,64,87,.28), transparent 18rem),
    radial-gradient(circle at 22% 88%, rgba(0,169,143,.22), transparent 19rem);
  filter: blur(8px);
}
.video-reel::after {
  z-index: 5;
  background:
    linear-gradient(180deg, rgba(3,7,19,.14), transparent 36%, rgba(3,7,19,.70)),
    radial-gradient(circle at 50% 42%, transparent 0 17rem, rgba(2,7,20,.34) 100%);
}
.reel-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #050a13;
}
.reel-video {
  position: absolute;
  inset: -1%;
  width: 102%;
  height: 102%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.05);
  transition: opacity .65s ease, transform 6.5s ease, filter .65s ease;
  will-change: opacity, transform;
}
.reel-video.is-active { z-index: 1; opacity: 1; transform: scale(1.035); }
.scooter-shot { object-position: center center; filter: brightness(.92) saturate(1.12) contrast(1.08); }
.car-shot { object-position: center 55%; }
.tunnel-shot { object-position: center center; filter: brightness(.88) saturate(1.08) contrast(1.12); }
.speed-shot { object-position: center 54%; filter: saturate(1.06) contrast(1.12); }
.night-shot { object-position: center center; filter: brightness(.82) saturate(1.18) contrast(1.12); }
.video-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,7,20,.60), transparent 38%, rgba(2,7,20,.18)),
    linear-gradient(0deg, rgba(2,7,20,.52), transparent 42%),
    radial-gradient(circle at 50% 40%, transparent 0 16rem, rgba(2,7,20,.20) 100%);
}
.ride-hud {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}
.ride-status {
  position: absolute;
  top: 28px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,10,19,.48);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
}
.ride-status i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0,169,143,.9);
  animation: reelPulse 1.5s ease-in-out infinite;
}
.ride-speed {
  position: absolute;
  left: 30px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 7px solid var(--red);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.90);
  box-shadow: 0 22px 42px rgba(0,0,0,.26), 0 0 0 10px rgba(255,64,87,.12);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.ride-speed strong {
  grid-area: 1 / 1;
  font-family: var(--display);
  font-size: 30px;
  line-height: .8;
}
.speed-number {
  opacity: 0;
  transform: translateY(9px) scale(.92);
  transition: opacity .28s ease, transform .28s ease;
}
.speed-number.is-active { opacity: 1; transform: translateY(0) scale(1); }
.ride-speed span {
  margin-top: -17px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
}
.reel-alert {
  --accent: var(--red);
  position: absolute;
  right: 30px;
  bottom: 34px;
  width: min(380px, 46%);
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(255,255,255,.24);
  border-left: 4px solid var(--accent);
  border-radius: 22px;
  color: #fff;
  background: rgba(5,10,19,.58);
  box-shadow: 0 24px 54px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .35s ease, transform .35s ease;
}
.reel-alert.is-active { opacity: 1; transform: translateY(0) scale(1); }
.reel-alert.scooter { --accent: var(--cyan); right: 30px; bottom: 34px; }
.reel-alert.car { --accent: var(--red); right: 30px; top: 92px; bottom: auto; }
.reel-alert.tunnel { --accent: var(--gold); left: 30px; right: auto; top: 96px; bottom: auto; }
.reel-alert.speed { --accent: #ffffff; right: 30px; bottom: 126px; }
.reel-alert.night { --accent: #6aa8ff; left: 132px; right: auto; bottom: 34px; }
.reel-alert span {
  display: block;
  color: var(--accent);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.reel-alert strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 19px;
}
.reel-alert small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 800;
}
.scene-caption {
  position: absolute;
  left: 138px;
  bottom: 62px;
  z-index: 9;
  min-width: 232px;
  pointer-events: none;
}
.caption-shot {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,10,19,.46);
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.caption-shot.is-active { opacity: 1; transform: translateY(0); }

@keyframes reelScene {
  0%, 13.2% { opacity: 1; transform: scale(1.035); }
  16.7%, 100% { opacity: 0; transform: scale(1.085); }
}
@keyframes reelAlertCycle {
  0%, 12.6% { opacity: 1; transform: translateY(0) scale(1); }
  16.7%, 100% { opacity: 0; transform: translateY(-10px) scale(.98); }
}
@keyframes reelSpeedCycle {
  0%, 12.6% { opacity: 1; transform: translateY(0) scale(1); }
  16.7%, 100% { opacity: 0; transform: translateY(-10px) scale(.92); }
}
@keyframes reelCaptionCycle {
  0%, 12.6% { opacity: 1; transform: translateY(0); }
  16.7%, 100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes reelPulse {
  0%, 100% { opacity: .58; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.08); }
}

.hero-visual { position: relative; display: grid; place-items: center; min-height: 680px; perspective: 1200px; }
.visual-ring,
.radar-sweep { position: absolute; border-radius: 999px; }
.visual-ring { border: 1px solid rgba(255,64,87,.18); animation: pulseRing 4.8s ease-in-out infinite; }
.ring-one { width: 600px; height: 600px; }
.ring-two { width: 455px; height: 455px; animation-delay: .45s; }
.radar-sweep { width: 600px; height: 600px; background: conic-gradient(from 0deg, transparent 0deg, rgba(255,64,87,.17) 36deg, transparent 37deg); mask-image: radial-gradient(circle, #000 0%, #000 61%, transparent 62%); animation: spin 7s linear infinite; }

.phone-frame {
  position: relative;
  z-index: 5;
  width: min(360px, 76vw);
  padding: 13px;
  border: 1px solid rgba(8,19,38,.18);
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.95) 0%, rgba(170,184,202,.92) 15%, #1b273a 48%, rgba(244,248,253,.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -10px 22px rgba(8,19,38,.18),
    0 38px 90px rgba(17,38,72,.24),
    0 0 54px rgba(255,64,87,.13);
  transform: rotateX(2.5deg) rotateY(-10deg) rotateZ(1.2deg);
  transform-style: preserve-3d;
  animation: phoneTiltFloat 6s ease-in-out infinite;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .7s ease;
}
.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f8fbff, #748196 45%, #111827);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.75), 0 8px 16px rgba(17,38,72,.18);
}
.phone-frame::before {
  left: -4px;
  top: 132px;
  height: 58px;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.75),
    0 82px 0 #9aa8bb,
    0 8px 16px rgba(17,38,72,.18);
}
.phone-frame::after {
  right: -4px;
  top: 174px;
  height: 92px;
}
.hero-visual:hover .phone-frame {
  transform: translateY(-18px) rotateX(4.5deg) rotateY(-16deg) rotateZ(1.4deg) scale(1.01);
}
.phone-shell {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 36px;
  color: #fff;
  background: linear-gradient(180deg, #0c1528 0%, #101e38 100%);
  box-shadow:
    inset 0 0 0 7px rgba(2,7,20,.86),
    inset 12px 0 22px rgba(255,255,255,.055),
    inset -16px 0 26px rgba(0,0,0,.28),
    inset 0 18px 42px rgba(255,255,255,.045),
    inset 0 -24px 44px rgba(0,0,0,.38);
}
.phone-shell::before { content: ""; position: absolute; inset: 0; opacity: .34; background: linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.065) 1px, transparent 1px); background-size: 28px 28px; }
.phone-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(118deg, rgba(255,255,255,.52) 0%, rgba(255,255,255,.22) 11%, transparent 28%),
    linear-gradient(104deg, transparent 38%, rgba(255,255,255,.18) 46%, rgba(255,255,255,.05) 52%, transparent 62%),
    radial-gradient(circle at 76% 8%, rgba(255,255,255,.26), transparent 9rem),
    radial-gradient(circle at 18% 88%, rgba(255,255,255,.10), transparent 8rem);
  mix-blend-mode: screen;
  opacity: .72;
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.28),
    inset -1px -1px 0 rgba(255,255,255,.10);
}
.phone-notch {
  position: relative;
  z-index: 9;
  width: 122px;
  height: 28px;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background: #020714;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08), 0 8px 16px rgba(0,0,0,.22);
}
.phone-notch::before,
.phone-notch::after {
  content: "";
  position: absolute;
  top: 8px;
  border-radius: 999px;
}
.phone-notch::before {
  left: 23px;
  width: 45px;
  height: 5px;
  background: linear-gradient(90deg, #151c2b, #2a3448, #111827);
}
.phone-notch::after {
  right: 25px;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 35% 35%, #445b84, #05070d 68%);
  box-shadow: 0 0 0 2px #0b1020;
}
.phone-topbar { position: relative; z-index: 4; display: flex; justify-content: space-between; padding: 13px 18px 8px; color: #aebbd0; font-family: var(--display); font-size: 12px; font-weight: 900; }
.phone-topbar strong { color: #fff; }
.phone-screen-carousel {
  position: relative;
  z-index: 4;
  height: 585px;
  overflow: hidden;
}
.phone-app-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px) scale(.985);
  animation: phoneScreenCycle 28s ease-in-out infinite;
}
.phone-app-screen:nth-child(1) { opacity: 1; animation-delay: 0s; }
.phone-app-screen:nth-child(2) { animation-delay: 7s; }
.phone-app-screen:nth-child(3) { animation-delay: 14s; }
.phone-app-screen:nth-child(4) { animation-delay: 21s; }
.phone-app-screen .phone-route-head { margin-top: 4px; }
.phone-app-screen .phone-map { height: 246px; }
.phone-app-screen .phone-summary div { padding: 10px 8px; }
.phone-app-screen .phone-summary strong { font-size: 20px; }
.phone-app-screen .phone-alert-card { padding: 11px 13px; }
.drive-screen-hero,
.park-card,
.premium-screen-head,
.premium-layer-list div,
.drive-alert-card,
.drive-wave-row,
.park-steps div,
.park-actions span,
.premium-poi-grid span {
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}
.drive-screen-hero {
  position: relative;
  min-height: 216px;
  margin: 4px 16px 12px;
  overflow: hidden;
  padding: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,64,87,.24), transparent 7rem),
    linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
}
.drive-screen-hero::before {
  content: "";
  position: absolute;
  inset: 52% -28% -34%;
  border-radius: 50% 50% 0 0;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255,255,255,.42) 49%, transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  transform: perspective(240px) rotateX(58deg);
  transform-origin: top;
  animation: laneFlow 1.9s linear infinite;
}
.drive-screen-hero > span,
.premium-screen-head span,
.park-card > span { display: block; color: #9eabc0; font-size: 11px; font-weight: 900; }
.drive-screen-hero > strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
}
.drive-screen-hero small,
.park-card small,
.park-steps small { position: relative; z-index: 2; display: block; color: #aebbd0; font-size: 12px; font-weight: 800; }
.drive-speed-ring {
  position: absolute;
  right: 18px;
  top: 22px;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 7px solid var(--red);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 32px rgba(0,0,0,.28), 0 0 34px rgba(255,64,87,.28);
  animation: speedPulse 1.9s ease-in-out infinite;
}
.drive-speed-ring span { display: block; font-family: var(--display); font-size: 31px; line-height: .86; }
.drive-speed-ring em { display: block; margin-top: -18px; font-size: 10px; font-style: normal; font-weight: 900; }
.drive-alert-stack { display: grid; gap: 9px; margin: 0 16px 12px; }
.drive-alert-card {
  position: relative;
  overflow: hidden;
  padding: 13px 13px 13px 42px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
}
.drive-alert-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 20px currentColor;
}
.drive-alert-card.red { color: var(--red); }
.drive-alert-card.cyan { color: var(--cyan); }
.drive-alert-card.gold { color: var(--gold); }
.drive-alert-card span,
.premium-layer-list span { display: block; color: #9eabc0; font-size: 10px; font-weight: 900; }
.drive-alert-card strong,
.premium-layer-list strong { display: block; margin-top: 3px; color: #fff; font-size: 13px; }
.drive-wave-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 16px 12px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(0,169,143,.13);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.drive-wave-row .voice-wave { position: static; height: 25px; padding: 4px 0; background: transparent; }
.park-card {
  position: relative;
  min-height: 252px;
  margin: 4px 16px 12px;
  overflow: hidden;
  padding: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 58%, rgba(0,169,143,.26), transparent 8rem),
    radial-gradient(circle at 82% 20%, rgba(242,169,59,.18), transparent 8rem),
    linear-gradient(155deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
}
.park-card strong { position: relative; z-index: 2; display: block; margin-top: 8px; font-family: var(--display); font-size: 42px; }
.park-radar {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  transform: translateX(-50%);
}
.park-radar::before,
.park-radar::after {
  content: "";
  position: absolute;
  inset: 27px;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: inherit;
}
.park-radar::after { inset: 56px; border-style: solid; opacity: .7; }
.park-radar i,
.park-radar b,
.park-radar em { position: absolute; display: block; }
.park-radar i {
  inset: 16px 78px 78px 78px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(0,169,143,.64), transparent);
  transform-origin: 50% 66px;
  animation: parkSweep 3.8s linear infinite;
}
.park-radar b {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(0,169,143,.9);
  transform: translate(-50%, -50%);
}
.park-radar em {
  right: 31px;
  top: 43px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(242,169,59,.85);
}
.park-steps { display: grid; gap: 10px; margin: 0 16px 12px; }
.park-steps div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 3px 10px;
  padding: 12px 13px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
}
.park-steps span {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0,169,143,.18);
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 900;
}
.park-steps strong { font-size: 13px; }
.park-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 0 16px 12px; }
.park-actions span { padding: 12px 10px; border-radius: 16px; background: rgba(255,255,255,.09); text-align: center; font-size: 12px; font-weight: 900; }
.park-actions span:first-child { background: var(--cyan); color: #fff; }
.premium-screen-head {
  margin: 4px 16px 12px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255,64,87,.22), transparent 7rem),
    linear-gradient(155deg, rgba(255,255,255,.11), rgba(255,255,255,.025));
}
.premium-screen-head strong { display: block; margin-top: 8px; font-family: var(--display); font-size: 22px; }
.premium-layer-list { display: grid; gap: 10px; margin: 0 16px 12px; }
.premium-layer-list div {
  position: relative;
  overflow: hidden;
  padding: 15px 15px 15px 46px;
  border-radius: 19px;
  background: rgba(255,255,255,.075);
}
.premium-layer-list div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255,64,87,.42);
}
.premium-layer-list div:nth-child(2)::before { background: var(--gold); box-shadow: 0 0 22px rgba(242,169,59,.42); }
.premium-layer-list div:nth-child(3)::before { background: var(--cyan); box-shadow: 0 0 22px rgba(0,169,143,.42); }
.premium-poi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 0 16px 12px; }
.premium-poi-grid span { padding: 14px 6px; border-radius: 16px; background: rgba(255,255,255,.085); color: #fff; text-align: center; font-size: 11px; font-weight: 900; }
.phone-route-head { position: relative; z-index: 4; display: flex; justify-content: space-between; gap: 12px; align-items: center; margin: 8px 16px 12px; padding: 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.07); backdrop-filter: blur(12px); box-shadow: 0 14px 28px rgba(0,0,0,.16); }
.phone-route-head span { display: block; color: #9eabc0; font-size: 11px; font-weight: 900; }
.phone-route-head strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 17px; }
.phone-route-head button { border: 0; border-radius: 999px; padding: 9px 11px; color: #fff; background: var(--red); font-weight: 900; }
.phone-map { position: relative; z-index: 3; height: 292px; margin: 0 16px 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: radial-gradient(circle at 58% 36%, rgba(0,212,180,.16), transparent 8rem), linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); box-shadow: inset 0 0 32px rgba(0,0,0,.22), 0 18px 34px rgba(0,0,0,.18); }
.phone-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 24%, rgba(255,255,255,.11), transparent 6rem),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 28%, rgba(0,0,0,.12));
}
.phone-map-lines,
.phone-route { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; }
.phone-map-lines path { stroke: rgba(255,255,255,.24); stroke-width: 1.4; }
.phone-route path { stroke: var(--red); stroke-width: 8; stroke-linecap: round; filter: drop-shadow(0 0 10px rgba(255,64,87,.85)); stroke-dasharray: 450; animation: drawRoute 3s ease-in-out infinite alternate; }
.map-pin { position: absolute; width: 18px; height: 18px; border: 4px solid #fff; border-radius: 999px; box-shadow: 0 0 22px currentColor; }
.map-pin span { position: absolute; inset: -16px; border: 1px solid currentColor; border-radius: inherit; opacity: .0; animation: pinPulse 2.8s ease-out infinite; }
.map-pin.start { left: 40px; bottom: 28px; color: var(--cyan); background: var(--cyan); }
.map-pin.radar { left: 138px; top: 106px; color: var(--red); background: var(--red); }
.map-pin.community { right: 72px; top: 70px; color: var(--gold); background: var(--gold); }
.map-pin.end { right: 34px; top: 22px; color: var(--red); background: var(--red); }
.speed-sign { position: absolute; left: 18px; top: 18px; width: 58px; height: 58px; display: grid; place-items: center; border: 5px solid var(--red); border-radius: 999px; color: var(--ink); background: #fff; box-shadow: 0 14px 26px rgba(0,0,0,.22); }
.speed-sign strong { display: block; font-family: var(--display); font-size: 21px; line-height: .8; }
.speed-sign span { display: block; margin-top: -10px; font-size: 9px; font-weight: 900; }
.map-alert { position: absolute; right: 16px; bottom: 18px; padding: 8px 11px; border-radius: 999px; color: #fff; background: rgba(255,64,87,.88); font-family: var(--display); font-size: 11px; font-weight: 900; }
.voice-wave { position: absolute; left: 92px; bottom: 20px; display: flex; align-items: end; gap: 4px; height: 28px; padding: 6px 9px; border-radius: 999px; background: rgba(0,0,0,.32); }
.voice-wave i { width: 4px; border-radius: 999px; background: var(--cyan); animation: wave 1s ease-in-out infinite; }
.voice-wave i:nth-child(1) { height: 10px; }
.voice-wave i:nth-child(2) { height: 19px; animation-delay: .1s; }
.voice-wave i:nth-child(3) { height: 14px; animation-delay: .2s; }
.voice-wave i:nth-child(4) { height: 22px; animation-delay: .3s; }
.phone-summary { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 0 16px 10px; }
.phone-summary div { padding: 12px 10px; border: 1px solid rgba(255,255,255,.10); border-radius: 16px; background: rgba(255,255,255,.07); text-align: center; box-shadow: 0 12px 22px rgba(0,0,0,.12); }
.phone-summary span { display: block; color: #9eabc0; font-size: 10px; font-weight: 900; }
.phone-summary strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 22px; }
.phone-alert-card { position: relative; z-index: 4; margin: 0 16px 9px; padding: 12px 14px; border-radius: 16px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.075); }
.phone-alert-card span { display: block; color: #9eabc0; font-size: 10px; font-weight: 900; }
.phone-alert-card strong { display: block; margin-top: 4px; font-size: 13px; }
.phone-alert-card.official { border-color: rgba(255,64,87,.26); }
.phone-alert-card.community-card { border-color: rgba(0,169,143,.28); }
.phone-bottom-nav { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(4,1fr); margin: 12px 16px 0; padding: 11px 9px; border-radius: 18px; color: #aebbd0; background: rgba(2,7,20,.62); font-size: 10px; font-weight: 900; text-align: center; }
.trust-rail { overflow: hidden; border-top: 1px solid rgba(8,19,38,.08); border-bottom: 1px solid rgba(8,19,38,.08); background: rgba(255,255,255,.62); backdrop-filter: blur(16px); }
.trust-track { overflow: hidden; }
.trust-strip { display: flex; gap: 10px; width: max-content; padding: 18px 0; animation: marquee 28s linear infinite; }
.trust-strip span { padding: 10px 14px; border: 1px solid rgba(8,19,38,.10); border-radius: 999px; color: var(--ink); background: #fff; font-size: 13px; font-weight: 900; box-shadow: 0 10px 24px rgba(24,44,79,.08); }

.answer-section { padding: 78px 0; }
.answer-grid,
.route-content-grid,
.route-hub-grid,
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 16px; }
.answer-card,
.answer-box,
.route-link-card { position: relative; overflow: hidden; padding: clamp(20px,3.4vw,34px); border: 1px solid rgba(8,19,38,.10); border-radius: 28px; background: rgba(255,255,255,.78); box-shadow: 0 22px 60px rgba(24,44,79,.11); }
.answer-card-main { background: linear-gradient(145deg, #fff, #f4f9ff); }
.answer-card h2 { max-width: 860px; }
.answer-card .lead { max-width: 900px; margin-top: 18px; }
.answer-card h3,
.answer-box h2,
.route-link-card h2,
.route-link-card h3 { font-size: 22px; }
.answer-links,
.related-routes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.answer-links a,
.related-routes a,
.breadcrumb a,
.breadcrumb span { display: inline-flex; align-items: center; min-height: 40px; padding: 0 13px; border: 1px solid rgba(8,19,38,.10); border-radius: 999px; color: var(--muted); background: #fff; text-decoration: none; font-size: 13px; font-weight: 900; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.breadcrumb span { color: var(--ink); background: rgba(255,64,87,.08); }
.route-page { max-width: 1080px; padding: 72px 0; }
.route-page h1 { max-width: 960px; }
.route-page .lead { max-width: 880px; }
.route-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.route-meta span { padding: 8px 11px; border: 1px solid rgba(8,19,38,.10); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.72); font-size: 12px; font-weight: 900; }
.answer-box h2 { margin-top: 0; }
.answer-box ul,
.answer-box ol { padding-left: 22px; color: var(--muted); line-height: 1.72; }
.answer-box li + li { margin-top: 8px; }
.route-fact-list { display: grid; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.route-fact-list li { padding: 13px 14px; border: 1px solid rgba(8,19,38,.09); border-radius: 16px; color: var(--muted); background: rgba(255,255,255,.68); }
.route-fact-list strong { display: block; color: var(--ink); font-family: var(--display); }
.route-faq details { margin-top: 10px; padding: 15px 17px; border: 1px solid rgba(8,19,38,.10); border-radius: 18px; background: rgba(255,255,255,.74); }
.route-faq summary { cursor: pointer; color: var(--ink); font-family: var(--display); font-weight: 900; }
.source-note { margin-top: 18px; padding: 14px 16px; border-left: 4px solid var(--red); border-radius: 14px; color: var(--muted); background: rgba(255,64,87,.08); }
.route-link-card { text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease; }
.route-link-card:hover { transform: translateY(-2px); box-shadow: 0 28px 70px rgba(24,44,79,.16); }
.route-link-card span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }

.virtual-mechanic-page { max-width: 1120px; }
.virtual-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr); gap: clamp(24px, 5vw, 56px); align-items: center; margin-bottom: 24px; }
.virtual-hero h1 { max-width: 860px; }
.virtual-scan-card { position: relative; overflow: hidden; padding: clamp(22px, 4vw, 34px); border: 1px solid rgba(8,19,38,.10); border-radius: 30px; color: #fff; background: radial-gradient(circle at 90% 0, rgba(255,64,87,.26), transparent 16rem), linear-gradient(145deg, #10213b, #081326); box-shadow: 0 28px 74px rgba(24,44,79,.18); }
.virtual-scan-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, rgba(255,255,255,.12), transparent 38%); pointer-events: none; }
.virtual-scan-card > * { position: relative; z-index: 1; }
.virtual-scan-status { display: inline-flex; min-height: 30px; align-items: center; padding: 0 11px; border-radius: 999px; color: #ffd4da; background: rgba(255,255,255,.09); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.virtual-scan-card strong { display: block; margin-top: 14px; font-family: var(--display); font-size: clamp(26px, 4vw, 38px); letter-spacing: -.04em; }
.scan-meter { position: relative; height: 12px; margin: 22px 0; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.13); }
.scan-meter i { display: block; width: 84%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--gold), var(--red)); box-shadow: 0 0 24px rgba(255,64,87,.34); }
.virtual-scan-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.virtual-scan-card li { display: grid; gap: 3px; padding: 12px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(255,255,255,.07); }
.virtual-scan-card span { color: #99a9c1; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.virtual-scan-card b { font-family: var(--display); font-size: 15px; }
.virtual-feature-board { margin-top: 22px; margin-bottom: 26px; }
.virtual-flow { margin-top: 28px; }
.virtual-flow-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.virtual-flow-grid article { min-width: 0; padding: 20px; border: 1px solid rgba(8,19,38,.10); border-radius: 24px; background: rgba(255,255,255,.76); box-shadow: 0 18px 44px rgba(24,44,79,.10); }
.virtual-flow-grid span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; color: #fff; background: linear-gradient(145deg, #ff6677, var(--red)); font-family: var(--display); font-weight: 900; }
.virtual-flow-grid h3 { margin-top: 14px; font-size: 19px; }
.virtual-flow-grid p { margin-bottom: 0; font-size: 14px; line-height: 1.58; }

.route-demo-section { padding: 92px 0; background: radial-gradient(circle at 14% 0, rgba(255,64,87,.12), transparent 20rem), linear-gradient(180deg, rgba(255,255,255,.78), rgba(235,242,250,.86)); }
.route-demo-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(360px,1.14fr); gap: clamp(28px,5vw,68px); align-items: center; }
.route-demo-copy h2 { max-width: 760px; }
.route-demo-copy p { max-width: 720px; font-size: 18px; }
.route-demo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.route-demo-card { position: relative; overflow: hidden; padding: clamp(22px,4vw,38px); border: 1px solid rgba(8,19,38,.1); border-radius: 32px; background: linear-gradient(145deg,#fff,#f4f9ff); box-shadow: 0 28px 74px rgba(24,44,79,.16); }
.route-demo-card::before { content: ""; position: absolute; right: -90px; top: -90px; width: 260px; height: 260px; border-radius: 999px; background: radial-gradient(circle, rgba(255,64,87,.18), transparent 68%); }
.demo-route-head { position: relative; z-index: 1; display: grid; gap: 5px; }
.demo-route-head span,.demo-route-head small,.demo-command span { color: var(--muted); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.demo-route-head strong { font-family: var(--display); font-size: clamp(28px,4vw,44px); letter-spacing: -.05em; }
.demo-route-line { position: relative; height: 96px; margin: 24px 0; border-radius: 24px; background: rgba(8,19,38,.045); overflow: hidden; }
.demo-route-line::before { content: ""; position: absolute; left: 34px; right: 34px; top: 46px; height: 7px; border-radius: 999px; background: linear-gradient(90deg,var(--cyan),var(--gold),var(--red)); box-shadow: 0 0 28px rgba(255,64,87,.28); }
.demo-route-line i,.demo-route-line b,.demo-route-line em { position: absolute; top: 34px; width: 31px; height: 31px; border: 6px solid #fff; border-radius: 999px; box-shadow: 0 10px 20px rgba(24,44,79,.16); }
.demo-route-line i { left: 30px; background: var(--cyan); }
.demo-route-line b { left: 50%; transform: translateX(-50%); background: var(--gold); }
.demo-route-line em { right: 30px; background: var(--red); }
.demo-layer-grid,.difference-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.demo-layer-grid div,.difference-card { position: relative; overflow: hidden; padding: 17px; border: 1px solid rgba(8,19,38,.09); border-radius: 20px; background: rgba(255,255,255,.78); box-shadow: 0 14px 34px rgba(24,44,79,.09); }
.demo-layer-grid span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; }
.demo-layer-grid strong { display: block; margin-top: 5px; font-family: var(--display); }
.demo-command { margin-top: 14px; padding: 17px; border-radius: 20px; color: #fff; background: linear-gradient(135deg,var(--navy),#172d52); box-shadow: 0 18px 42px rgba(8,19,38,.18); }
.demo-command span { color: #aebbd0; }
.demo-command strong { display: block; margin-top: 6px; }

.section { padding: 92px 0; }
.section[id] { scroll-margin-top: 98px; }
.section-heading { max-width: 880px; margin-bottom: 34px; }
.section-heading p,
.data-inner > div > p,
.cta-inner p,
.scene-copy p,
.app-preview-copy > p { max-width: 760px; font-size: 18px; }

.feature-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(8,19,38,.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0 0, rgba(255,64,87,.10), transparent 18rem),
    radial-gradient(circle at 100% 20%, rgba(0,169,143,.10), transparent 18rem),
    rgba(255,255,255,.58);
  box-shadow: 0 24px 70px rgba(24,44,79,.11);
}
.feature-card {
  --feature-accent: var(--red);
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(8,19,38,.07);
  border-left: 4px solid var(--feature-accent);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(248,251,255,.62));
  box-shadow: 0 12px 30px rgba(24,44,79,.07);
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:nth-child(3n+2) { --feature-accent: var(--cyan); }
.feature-card:nth-child(3n) { --feature-accent: #28466f; }
.feature-card::before,
.alert-card::before,
.segment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .86;
  pointer-events: none;
}
.feature-card:nth-child(3n+1)::before,
.alert-card:nth-child(3n+1)::before,
.segment-card:nth-child(3n+1)::before {
  background: radial-gradient(circle at 96% 12%, rgba(255,64,87,.13), transparent 8rem);
}
.feature-card:nth-child(3n+2)::before,
.alert-card:nth-child(3n+2)::before,
.segment-card:nth-child(3n+2)::before {
  background: radial-gradient(circle at 96% 12%, rgba(0,169,143,.13), transparent 8rem);
}
.feature-card:nth-child(3n)::before,
.alert-card:nth-child(3n)::before,
.segment-card:nth-child(3n)::before {
  background: radial-gradient(circle at 96% 12%, rgba(19,53,96,.12), transparent 8rem);
}
.feature-card > *,
.alert-card > *,
.segment-card > * {
  position: relative;
  z-index: 1;
}
.feature-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--feature-accent), transparent);
  opacity: .35;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, #fff, #f2f7fd);
  border-color: rgba(8,19,38,.10);
  border-left-color: var(--feature-accent);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 18px 42px rgba(24,44,79,.12);
}
.feature-card:hover::after {
  opacity: .9;
  transform: translateX(8px);
}
.feature-card.span-two { grid-column: span 1; }
.feature-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
.feature-card h3 { display: flex; align-items: center; gap: 10px; font-size: 18px; line-height: 1.18; letter-spacing: -.03em; }
.feature-card h3::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--feature-accent);
  box-shadow: 0 0 0 5px rgba(255,64,87,.10), 0 0 18px rgba(255,64,87,.28);
}
.feature-card:nth-child(3n+2) h3::before { box-shadow: 0 0 0 5px rgba(0,169,143,.10), 0 0 18px rgba(0,169,143,.28); }
.feature-card:nth-child(3n) h3::before { box-shadow: 0 0 0 5px rgba(19,53,96,.09), 0 0 18px rgba(19,53,96,.22); }
.feature-card p { margin: 8px 0 0 20px; font-size: 14px; line-height: 1.55; }

.app-preview-section {
  padding: 94px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(255,64,87,.10), transparent 22rem),
    radial-gradient(circle at 88% 62%, rgba(0,169,143,.10), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,.56), rgba(235,242,250,.78));
}
.app-preview-inner {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}
.app-preview-copy h2 { max-width: 720px; }
.app-preview-copy > p { margin: 18px 0 0; }
.app-preview-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.app-preview-points div {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 18px 52px;
  border: 1px solid rgba(8,19,38,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 42px rgba(24,44,79,.10);
}
.app-preview-points div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 16px;
  height: 16px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255,64,87,.10), 0 0 18px rgba(255,64,87,.38);
}
.app-preview-points div:nth-child(2)::before { background: var(--cyan); box-shadow: 0 0 0 5px rgba(0,169,143,.10), 0 0 18px rgba(0,169,143,.38); }
.app-preview-points div:nth-child(3)::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(242,169,59,.12), 0 0 18px rgba(242,169,59,.38); }
.app-preview-points strong { display: block; color: var(--ink); font-family: var(--display); font-size: 18px; }
.app-preview-points span { display: block; margin-top: 4px; color: var(--muted); line-height: 1.5; }
.new-feature-points {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0, rgba(255,64,87,.22), transparent 16rem),
    radial-gradient(circle at 92% 20%, rgba(0,169,143,.18), transparent 14rem),
    linear-gradient(145deg, #122846, #0b1730);
  box-shadow: 0 24px 70px rgba(24,44,79,.16);
}
.new-feature-points div {
  padding: 14px 14px 14px 42px;
  border-color: rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  box-shadow: none;
}
.new-feature-points div::before {
  left: 16px;
  top: 18px;
  width: 11px;
  height: 11px;
  border-width: 3px;
}
.new-feature-points strong { color: #fff; font-size: 15px; }
.new-feature-points span { color: #c8d5e7; font-size: 12px; line-height: 1.45; }
.new-feature-points div:nth-child(4)::before { background: var(--red); box-shadow: 0 0 0 5px rgba(255,64,87,.10), 0 0 18px rgba(255,64,87,.38); }
.phone-showcase {
  min-height: 720px;
}
.phone-showcase::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,64,87,.14), transparent 64%);
  filter: blur(6px);
}

.watch-connector {
  position: absolute;
  right: 12%;
  bottom: 250px;
  z-index: 4;
  width: 210px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0,169,143,.58), transparent);
  box-shadow: 0 0 28px rgba(0,169,143,.38);
  transform: rotate(-18deg);
}
.watch-showcase {
  position: absolute;
  right: max(4px, 5%);
  bottom: 70px;
  z-index: 9;
  display: grid;
  justify-items: center;
  filter: drop-shadow(0 32px 46px rgba(8,19,38,.22));
  animation: watchFloat 5.8s ease-in-out infinite;
}
.watch-strap {
  width: 82px;
  height: 76px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(90deg, #07111f, #17243a 48%, #07111f);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.watch-strap-top { border-radius: 24px 24px 12px 12px; transform: perspective(120px) rotateX(12deg); }
.watch-strap-bottom { height: 92px; border-radius: 12px 12px 28px 28px; transform: perspective(120px) rotateX(-10deg); }
.watch-body {
  position: relative;
  width: 188px;
  height: 204px;
  display: grid;
  place-items: center;
  border-radius: 62px;
  background:
    linear-gradient(145deg, #eef5ff 0%, #79879c 18%, #111827 49%, #f6f9fd 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    inset 0 -12px 24px rgba(8,19,38,.22),
    0 24px 52px rgba(24,44,79,.20);
}
.watch-crown {
  position: absolute;
  right: -10px;
  top: 78px;
  width: 15px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7fbff, #5b6677 54%, #111827);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.watch-bezel {
  width: 158px;
  height: 170px;
  padding: 9px;
  border-radius: 50px;
  background: #020714;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), inset 0 12px 32px rgba(255,255,255,.05);
}
.watch-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 41px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 52%, rgba(0,169,143,.18), transparent 4.8rem),
    radial-gradient(circle at 78% 18%, rgba(255,64,87,.23), transparent 4.6rem),
    linear-gradient(180deg, #101d35 0%, #07111f 100%);
}
.watch-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(124deg, rgba(255,255,255,.32), transparent 24%, rgba(255,255,255,.09) 52%, transparent 68%);
  mix-blend-mode: screen;
}
.watch-status {
  position: relative;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  padding: 14px 16px 0;
  color: #aebbd0;
  font-size: 10px;
  font-weight: 900;
}
.watch-status strong { color: #fff; }
.watch-orbit {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 52%;
  width: 98px;
  height: 98px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: watchOrbit 4.8s linear infinite;
}
.watch-orbit::before,
.watch-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: inherit;
}
.watch-orbit::after { inset: 38px; border-style: solid; }
.watch-orbit i,
.watch-orbit b,
.watch-orbit em {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 0 18px currentColor;
}
.watch-orbit i { left: 7px; top: 43px; color: var(--cyan); background: var(--cyan); }
.watch-orbit b { right: 12px; top: 18px; color: var(--red); background: var(--red); }
.watch-orbit em { left: 52px; bottom: 8px; color: var(--gold); background: var(--gold); }
.watch-alert {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  z-index: 30;
  padding: 12px 12px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(255,255,255,.085);
  box-shadow: 0 14px 26px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(10px) scale(.96);
  animation: watchAlertCycle 9s ease-in-out infinite;
}
.watch-alert-drive { animation-delay: 3s; }
.watch-alert-speed { animation-delay: 6s; }
.watch-alert span,
.watch-alert small { display: block; color: #9eabc0; font-size: 10px; font-weight: 900; }
.watch-alert strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 15px; line-height: 1.08; }
.watch-alert small { margin-top: 5px; color: #d4e1f3; font-size: 9px; }

.car-display-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0, rgba(255,64,87,.18), transparent 24rem),
    radial-gradient(circle at 92% 52%, rgba(0,169,143,.18), transparent 22rem),
    linear-gradient(180deg, #07111f 0%, #0d1a32 52%, #111d33 100%);
}
.car-display-section h2,
.car-display-section h3 { color: #fff; }
.car-display-section p { color: #c8d5e7; }
.car-display-section .section-kicker { color: #ffd0d7; }
.car-display-inner {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(420px,1.12fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}
.car-display-copy h2 { max-width: 760px; }
.car-display-copy h2 span { color: var(--red); }
.car-display-copy > p { max-width: 760px; margin-top: 18px; font-size: 18px; }
.car-display-points { display: grid; gap: 12px; margin-top: 28px; }
.car-display-points div {
  position: relative;
  overflow: hidden;
  padding: 18px 18px 18px 54px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 21px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 44px rgba(0,0,0,.17);
}
.car-display-points div::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 23px;
  width: 16px;
  height: 16px;
  border: 4px solid rgba(255,255,255,.9);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255,64,87,.14), 0 0 20px rgba(255,64,87,.45);
}
.car-display-points div:nth-child(2)::before { background: var(--cyan); box-shadow: 0 0 0 5px rgba(0,169,143,.14), 0 0 20px rgba(0,169,143,.45); }
.car-display-points div:nth-child(3)::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(242,169,59,.16), 0 0 20px rgba(242,169,59,.45); }
.car-display-points strong { display: block; color: #fff; font-family: var(--display); font-size: 18px; }
.car-display-points span { display: block; margin-top: 5px; color: #c8d5e7; line-height: 1.5; }
.road-awareness-visual {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(680px, 100%);
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 38px 32px;
}
.awareness-orb {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .76;
}
.orb-red { width: 260px; height: 260px; right: 4%; top: 2%; background: rgba(255,64,87,.30); }
.orb-cyan { width: 240px; height: 240px; left: 4%; bottom: 0; background: rgba(0,169,143,.24); }
.awareness-photo {
  position: relative;
  z-index: 2;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(5,10,19,.02), rgba(5,10,19,.62)),
    url("/assets/awareness-preview.svg") center / cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.24),
    0 34px 84px rgba(0,0,0,.32),
    0 0 50px rgba(255,64,87,.10);
  transform: rotateX(2deg) rotateY(-2.8deg);
  animation: carDisplayFloat 9s ease-in-out infinite;
}
.awareness-photo::before,
.awareness-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.awareness-photo::before {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,64,87,.18), transparent 15rem),
    linear-gradient(112deg, rgba(255,255,255,.28), rgba(255,255,255,.08) 14%, transparent 36%);
  mix-blend-mode: screen;
}
.awareness-photo::after {
  background: linear-gradient(180deg, transparent 40%, rgba(2,7,20,.58));
}
.awareness-photo figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,10,19,.58);
  box-shadow: 0 14px 28px rgba(0,0,0,.20);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}
.awareness-card,
.awareness-status {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  background: rgba(5,10,19,.70);
  box-shadow: 0 22px 48px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.awareness-card {
  display: grid;
  min-width: min(272px, 72%);
  padding: 16px 18px 16px 58px;
  border-radius: 20px;
}
.awareness-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 4px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255,64,87,.58);
  transform: translateY(-50%);
}
.awareness-card span { display: block; color: #aebbd0; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.awareness-card strong { display: block; margin-top: 5px; font-family: var(--display); font-size: 18px; line-height: 1.1; }
.voice-card { left: 0; bottom: 54px; }
.source-card { right: 0; top: 70px; }
.source-card::before { background: var(--cyan); box-shadow: 0 0 22px rgba(0,169,143,.58); }
.awareness-status {
  right: 58px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.awareness-status i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0,169,143,.9);
  animation: reelPulse 1.6s ease-in-out infinite;
}
.car-cockpit-showcase {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(900px, 112%);
  min-height: 560px;
  padding: 76px 18px 42px;
  perspective: 1000px;
}
.windshield-glow {
  position: absolute;
  inset: 0 0 42%;
  z-index: -1;
  border-radius: 56px 56px 28px 28px;
  background:
    linear-gradient(180deg, rgba(172,204,238,.20), rgba(255,255,255,.045) 52%, transparent),
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.24), transparent 18rem),
    radial-gradient(circle at 20% 22%, rgba(255,64,87,.14), transparent 12rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.20);
}
.dash-top {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  height: 204px;
  z-index: -1;
  border-radius: 54px 54px 38px 38px;
  background:
    radial-gradient(circle at 50% 0, rgba(255,255,255,.10), transparent 18rem),
    linear-gradient(180deg, rgba(25,39,62,.98), #050a13 72%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 -26px 74px rgba(0,0,0,.30);
}
.car-screen-frame {
  position: relative;
  z-index: 4;
  overflow: hidden;
  width: min(880px, 100%);
  min-height: 404px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.04) 18%, rgba(1,6,18,.88) 100%);
  box-shadow:
    inset 0 0 0 8px rgba(2,7,20,.94),
    inset 0 1px 0 rgba(255,255,255,.22),
    0 34px 86px rgba(0,0,0,.34),
    0 0 42px rgba(0,169,143,.08);
  transform: rotateX(2deg) rotateY(-2.8deg);
  animation: carDisplayFloat 9s ease-in-out infinite;
}
.car-screen-frame::before,
.car-screen-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.car-screen-frame::before {
  inset: 8px;
  z-index: 8;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
}
.car-screen-frame::after {
  inset: 0;
  z-index: 9;
  background:
    linear-gradient(116deg, rgba(255,255,255,.40), rgba(255,255,255,.10) 12%, transparent 32%),
    linear-gradient(102deg, transparent 38%, rgba(255,255,255,.12) 48%, transparent 62%);
  mix-blend-mode: screen;
  opacity: .44;
}
.car-screen-topbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 24px 12px;
  color: #aebbd0;
  font-size: 12px;
  font-weight: 900;
}
.car-screen-topbar strong { color: #fff; font-family: var(--display); font-size: 18px; }
.car-command-stage {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(150px,.62fr) minmax(360px,1.55fr) minmax(170px,.78fr);
  gap: 12px;
  min-height: 278px;
  margin: 0 20px 12px;
}
.car-guidance-panel,
.assist-card,
.voice-strip,
.dock-app {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.055);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}
.car-guidance-panel {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  border-radius: 22px;
}
.car-guidance-panel::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 130px;
  height: 130px;
  border: 18px solid rgba(255,64,87,.11);
  border-radius: 999px;
}
.car-guidance-panel span,
.assist-card span { display: block; color: #9eabc0; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.car-guidance-panel strong { position: relative; display: block; margin-top: 10px; color: #fff; font-family: var(--display); font-size: 22px; line-height: 1.04; }
.car-guidance-panel small { position: relative; display: block; margin-top: 10px; color: #d4e1f3; font-size: 12px; font-weight: 800; }
.carplay-road-view {
  position: relative;
  overflow: hidden;
  min-height: 278px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(255,255,255,.16), transparent 12rem),
    radial-gradient(ellipse at 50% 70%, rgba(0,169,143,.11), transparent 15rem),
    linear-gradient(180deg, #14263d 0%, #0a1728 48%, #030711 100%);
  box-shadow: inset 0 0 44px rgba(0,0,0,.30), 0 16px 38px rgba(0,0,0,.18);
}
.road-horizon {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 28%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  box-shadow: 0 0 28px rgba(255,255,255,.36);
}
.road-aura {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 310px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,169,143,.24), rgba(0,169,143,.08) 42%, transparent 72%);
  filter: blur(1px);
  opacity: .42;
  transform: translate(-50%, -50%);
  animation: carRoadGlow 8s ease-in-out infinite;
}
.lane-plane {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 27%;
  bottom: -10%;
  overflow: hidden;
  transform: perspective(540px) rotateX(66deg);
  transform-origin: 50% 100%;
}
.lane-plane::before {
  content: "";
  position: absolute;
  inset: 0 13%;
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255,255,255,.16) 49% 51%, transparent 53% 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.015));
  box-shadow: inset 0 0 26px rgba(0,169,143,.08);
}
.lane-edge,
.lane-center,
.scan-gate,
.alert-beacon { position: absolute; z-index: 2; }
.lane-edge {
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.55));
  box-shadow: 0 0 10px rgba(255,255,255,.18);
}
.lane-edge.left { left: 28%; transform: rotate(-10deg); transform-origin: 50% 100%; }
.lane-edge.right { right: 28%; transform: rotate(10deg); transform-origin: 50% 100%; }
.lane-center {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 5px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(180deg, transparent 0 24px, rgba(255,255,255,.50) 24px 42px, transparent 42px 74px);
  filter: drop-shadow(0 0 6px rgba(255,255,255,.25));
  animation: carLaneDash 2.2s linear infinite;
}
.scan-gate {
  left: 28%;
  right: 28%;
  bottom: -6%;
  height: 22%;
  border: 1px solid rgba(0,169,143,.30);
  border-bottom: 0;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(180deg, rgba(0,169,143,.08), transparent);
  box-shadow: 0 0 18px rgba(0,169,143,.18);
  transform: translateY(102%) scaleX(1.18);
  animation: carScanGate 7.2s ease-in-out infinite;
}
.scan-two { animation-delay: 3.6s; }
.alert-beacon {
  width: 15px;
  height: 15px;
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 999px;
  background: var(--red);
  color: var(--red);
  box-shadow: 0 0 14px currentColor;
}
.alert-beacon i {
  position: absolute;
  inset: -14px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0;
  animation: carBeaconPulse 3.6s ease-out infinite;
}
.alert-beacon.radar { left: 38%; top: 30%; }
.alert-beacon.control { right: 34%; top: 48%; background: var(--gold); color: var(--gold); }
.alert-beacon.control i { animation-delay: .8s; }
.speed-command {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 5px solid var(--red);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 16px 28px rgba(0,0,0,.20), 0 0 0 6px rgba(255,64,87,.09);
}
.speed-command strong { display: block; font-family: var(--display); font-size: 24px; line-height: .8; }
.speed-command span { display: block; margin-top: -13px; color: var(--muted); font-size: 9px; font-weight: 900; }
.assist-stack { display: grid; gap: 8px; }
.assist-card {
  padding: 13px 14px;
  border-radius: 17px;
  opacity: .68;
  animation: carAssistPulse 12s ease-in-out infinite;
}
.assist-card strong { display: block; margin-top: 5px; color: #fff; font-family: var(--display); font-size: 15px; line-height: 1.08; }
.assist-card small { display: block; margin-top: 5px; color: #d4e1f3; font-size: 11px; font-weight: 800; }
.assist-card.active { border-left: 3px solid var(--red); }
.assist-card.community { border-left: 3px solid var(--cyan); animation-delay: 4s; }
.assist-card.route { border-left: 3px solid var(--gold); animation-delay: 8s; }
.voice-strip {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 16px;
}
.voice-strip span {
  width: 3px;
  height: 13px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0,169,143,.38);
  animation: carVoiceWave 1.7s ease-in-out infinite;
}
.voice-strip span:nth-child(2) { animation-delay: .12s; }
.voice-strip span:nth-child(3) { animation-delay: .24s; }
.voice-strip span:nth-child(4) { animation-delay: .36s; }
.voice-strip span:nth-child(5) { animation-delay: .48s; }
.voice-strip strong { margin-left: 8px; color: #fff; font-family: var(--display); font-size: 13px; }
.carplay-dock {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 9px;
  margin: 0 20px 18px;
}
.dock-app {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
  padding: 8px 9px;
  border-radius: 16px;
}
.dock-app span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, rgba(255,64,87,.95), rgba(242,169,59,.88));
  font-size: 11px;
  font-weight: 900;
}
.dock-app strong { color: #fff; font-family: var(--display); font-size: 13px; }
.dock-app.active { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), 0 18px 36px rgba(255,64,87,.10); }
.dock-app:not(.active) span { background: rgba(255,255,255,.12); }
.dashboard-console { display: grid; grid-template-columns: 1fr 40px 40px 40px; gap: 12px; align-items: center; width: min(680px, 84%); margin: 22px auto 0; padding: 13px; border-radius: 26px; background: rgba(2,7,20,.88); box-shadow: inset 0 1px 0 rgba(255,255,255,.10); }
.console-vent { height: 28px; border-radius: 999px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 3px, transparent 3px 14px), rgba(255,255,255,.06); }
.console-button { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: radial-gradient(circle, rgba(255,255,255,.16), rgba(255,255,255,.04)); }
.console-button.active { background: radial-gradient(circle, rgba(255,64,87,.78), rgba(255,64,87,.18)); box-shadow: 0 0 24px rgba(255,64,87,.28); }
.car-device-link { position: absolute; right: 42px; bottom: 38px; z-index: 6; display: grid; grid-template-columns: 12px 1fr; gap: 2px 9px; align-items: center; max-width: 260px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; color: #fff; background: rgba(5,10,19,.62); box-shadow: 0 18px 42px rgba(0,0,0,.24); backdrop-filter: blur(14px); }
.car-device-link span { grid-row: span 2; width: 10px; height: 10px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 18px rgba(0,169,143,.85); animation: reelPulse 1.7s ease-in-out infinite; }
.car-device-link strong { font-family: var(--display); font-size: 14px; }
.car-device-link small { color: #c8d5e7; font-size: 11px; font-weight: 800; }

.real-carplay-frame {
  width: min(940px, 100%);
  min-height: 438px;
  border-radius: 30px;
  transform: rotateX(2deg) rotateY(-2.4deg);
}
.real-carplay-frame::before {
  z-index: 28;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), transparent 20%, transparent 78%, rgba(255,255,255,.045)),
    radial-gradient(ellipse at 18% 0, rgba(255,255,255,.16), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), inset 0 -18px 32px rgba(255,255,255,.025);
  opacity: .74;
  mix-blend-mode: screen;
}
.real-carplay-frame::after {
  z-index: 29;
  background:
    linear-gradient(112deg, rgba(255,255,255,.30), rgba(255,255,255,.10) 11%, transparent 30%),
    linear-gradient(100deg, transparent 54%, rgba(255,255,255,.10) 61%, transparent 70%),
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.18) 0 1px, transparent 1.6px),
    radial-gradient(circle at 64% 70%, rgba(255,255,255,.12) 0 .8px, transparent 1.4px),
    repeating-linear-gradient(103deg, transparent 0 28px, rgba(255,255,255,.018) 28px 29px, transparent 29px 56px);
  background-size: auto, auto, 38px 38px, 52px 52px, auto;
  opacity: .58;
  mix-blend-mode: screen;
  animation: carplayGlassSheen 7s ease-in-out infinite;
}
.carplay-statusbar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px 12px;
  color: #aebbd0;
  font-size: 12px;
  font-weight: 900;
}
.carplay-statusbar strong { color: #fff; font-family: var(--display); font-size: 18px; }
.carplay-statusbar span:last-child {
  position: relative;
  padding-left: 14px;
}
.carplay-statusbar span:last-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,169,143,.72);
  transform: translateY(-50%);
  animation: carplayConnectionPulse 2.8s ease-in-out infinite;
}
.real-carplay-interface {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(200px, .36fr);
  grid-template-rows: minmax(0, 1fr) 58px;
  gap: 12px;
  min-height: 338px;
  margin: 0 18px 18px;
}
.carplay-sidebar,
.carplay-map-panel,
.carplay-info-panel,
.carplay-bottom-controls {
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.055);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.carplay-sidebar {
  grid-row: 1 / 3;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  padding: 14px 9px;
  border-radius: 22px;
  background: rgba(2,7,20,.74);
}
.sidebar-home {
  width: 27px;
  height: 27px;
  margin-bottom: 3px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.86), rgba(255,255,255,.18) 58%, transparent 60%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.sidebar-app {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: #d7e3f3;
  background: rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 900;
}
.sidebar-app.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255,64,87,.96), rgba(242,169,59,.86));
  box-shadow: 0 10px 24px rgba(255,64,87,.20);
  animation: carplayDockGlow 4.8s ease-in-out infinite;
}
.carplay-map-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 22%, rgba(0,169,143,.10), transparent 12rem),
    linear-gradient(145deg, #10243e, #07111f 58%, #030711);
}
.carplay-map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 34%, rgba(0,0,0,.12));
}
.carplay-streets,
.carplay-route-path { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; }
.carplay-streets path { stroke: rgba(214,226,242,.18); stroke-width: 1.7; }
.carplay-route-path path {
  stroke: var(--red);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 26 18;
  filter: drop-shadow(0 0 10px rgba(255,64,87,.42));
  animation: carplayRouteFlow 8s linear infinite;
}
.carplay-route-glow {
  position: absolute;
  left: 22%;
  right: 10%;
  top: 17%;
  height: 56%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255,64,87,.12), transparent 66%);
  animation: carplaySoftGlow 7s ease-in-out infinite;
}
.carplay-radar-sweep {
  position: absolute;
  right: 16%;
  top: 18%;
  z-index: 3;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(0,169,143,.28);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0,169,143,.16), transparent 55%),
    conic-gradient(from -30deg, rgba(0,169,143,.44), transparent 24%, transparent 100%);
  box-shadow: 0 0 28px rgba(0,169,143,.18), inset 0 0 22px rgba(0,169,143,.10);
  animation: carplayRadarSweep 5.4s linear infinite;
}
.carplay-radar-sweep span {
  position: absolute;
  inset: 33px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: inherit;
}
.carplay-traffic-dot {
  position: absolute;
  z-index: 3;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0,169,143,.48), 0 8px 16px rgba(0,0,0,.18);
}
.traffic-one { left: 22%; top: 62%; animation: carplayTrafficOne 9s ease-in-out infinite; }
.traffic-two { right: 20%; top: 42%; background: var(--gold); box-shadow: 0 0 12px rgba(242,169,59,.45), 0 8px 16px rgba(0,0,0,.18); animation: carplayTrafficTwo 11s ease-in-out infinite; }
.traffic-three { left: 58%; top: 76%; background: var(--red); box-shadow: 0 0 12px rgba(255,64,87,.45), 0 8px 16px rgba(0,0,0,.18); animation: carplayTrafficThree 10s ease-in-out infinite; }
.carplay-vehicle-dot {
  position: absolute;
  z-index: 4;
  left: 44%;
  top: 42%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255,64,87,.54), 0 12px 22px rgba(0,0,0,.24);
  animation: carplayVehicleMove 8s ease-in-out infinite;
}
.carplay-vehicle-dot span {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255,64,87,.54);
  border-radius: inherit;
  animation: carplayVehiclePulse 2.8s ease-out infinite;
}
.carplay-alert-marker {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,10,19,.68);
  box-shadow: 0 12px 26px rgba(0,0,0,.20);
}
.carplay-alert-marker i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: carplayMarkerPulse 3.2s ease-in-out infinite;
}
.carplay-alert-marker strong { font-size: 10px; font-weight: 900; }
.carplay-alert-marker.radar { left: 48%; top: 34%; color: var(--red); }
.carplay-alert-marker.control { right: 12%; top: 20%; color: var(--gold); animation-delay: 1.4s; }
.map-location-card {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 5;
  min-width: 176px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 17px;
  color: #fff;
  background: rgba(5,10,19,.62);
  box-shadow: 0 16px 32px rgba(0,0,0,.20);
}
.carplay-turn-banner {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 6;
  min-width: 190px;
  padding: 11px 13px 11px 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  color: #fff;
  background: rgba(5,10,19,.66);
  box-shadow: 0 16px 34px rgba(0,0,0,.22);
  animation: carplayTurnCue 8s ease-in-out infinite;
}
.carplay-turn-banner::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 4px solid var(--cyan);
  border-right: 4px solid var(--cyan);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 8px rgba(0,169,143,.42));
}
.carplay-turn-banner span { display: block; color: #9eabc0; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.carplay-turn-banner strong { display: block; margin-top: 4px; color: #fff; font-family: var(--display); }
.map-location-card span,
.carplay-next-alert span,
.route-step span,
.eta-card span { display: block; color: #9eabc0; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.map-location-card strong,
.route-step strong,
.eta-card strong { display: block; margin-top: 4px; color: #fff; font-family: var(--display); }
.carplay-info-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(2,7,20,.58);
}
.carplay-alert-carousel {
  position: relative;
  min-height: 108px;
  overflow: hidden;
  border-radius: 18px;
}
.carplay-next-alert {
  position: absolute;
  inset: 0;
  padding: 14px;
  border: 1px solid rgba(255,64,87,.24);
  border-left: 3px solid var(--red);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  animation: carplayAlertCarousel 10.5s ease-in-out infinite;
}
.carplay-next-alert.alert-two { border-color: rgba(242,169,59,.24); border-left-color: var(--gold); animation-delay: 3.5s; }
.carplay-next-alert.alert-three { border-color: rgba(0,169,143,.24); border-left-color: var(--cyan); animation-delay: 7s; }
.carplay-next-alert strong { display: block; margin-top: 6px; color: #fff; font-family: var(--display); font-size: 18px; line-height: 1.05; }
.carplay-next-alert small { display: block; margin-top: 6px; color: #d4e1f3; font-size: 11px; font-weight: 800; }
.carplay-speed-card {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  min-height: 98px;
  padding: 13px 8px 12px;
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 7px rgba(255,64,87,.90), 0 14px 28px rgba(0,0,0,.20);
}
.carplay-speed-card::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: conic-gradient(from -80deg, transparent 0 70%, rgba(255,64,87,.18), transparent 84% 100%);
  opacity: .55;
  animation: carplaySpeedSweep 6s ease-in-out infinite;
}
.carplay-speed-card strong,
.carplay-speed-card span,
.carplay-speed-card small { position: relative; z-index: 1; }
.carplay-speed-card strong { font-family: var(--display); font-size: 34px; line-height: 1; }
.carplay-speed-card span { margin-top: 0; color: var(--muted); font-size: 10px; font-weight: 900; line-height: 1; }
.carplay-speed-card small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 900; }
.carplay-layer-list { display: grid; gap: 7px; }
.carplay-layer-list div { display: flex; align-items: center; gap: 8px; color: #d4e1f3; font-size: 11px; font-weight: 900; }
.carplay-layer-list span { width: 8px; height: 8px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 10px rgba(0,169,143,.48); }
.carplay-layer-list div:nth-child(2) span { background: var(--gold); box-shadow: 0 0 10px rgba(242,169,59,.48); }
.carplay-layer-list div:nth-child(3) span { background: var(--red); box-shadow: 0 0 10px rgba(255,64,87,.48); }
.carplay-bottom-controls {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 1fr 126px 120px;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 20px;
  background: rgba(2,7,20,.68);
}
.route-step { position: relative; overflow: hidden; padding-bottom: 6px; }
.route-step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 18%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  box-shadow: 0 0 12px rgba(0,169,143,.38);
  transform-origin: left;
  animation: carplayStepProgress 7s ease-in-out infinite;
}
.voice-meter { display: flex; align-items: center; justify-content: center; gap: 5px; height: 38px; border-radius: 14px; background: rgba(255,255,255,.06); }
.voice-meter i { width: 4px; height: 13px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 10px rgba(0,169,143,.38); animation: carplayVoiceMeter 1.6s ease-in-out infinite; }
.voice-meter i:nth-child(2) { animation-delay: .12s; }
.voice-meter i:nth-child(3) { animation-delay: .24s; }
.voice-meter i:nth-child(4) { animation-delay: .36s; }
.voice-meter i:nth-child(5) { animation-delay: .48s; }
.eta-card { justify-self: stretch; padding: 8px 10px; border-radius: 14px; background: rgba(255,255,255,.06); }

.scene-section { padding: 92px 0; background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(235,242,250,.72)); }
.scene-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.scene-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.road-photo { min-height: 260px; margin: 0; overflow: hidden; position: relative; border-radius: 28px; box-shadow: 0 24px 60px rgba(24,44,79,.16); background-size: cover; background-position: center; }
.road-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8,19,38,.72)); }
.road-one { background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=900&q=80"); }
.road-two { background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=900&q=80"); }
.road-photo figcaption { position: absolute; left: 18px; right: 18px; bottom: 18px; color: #fff; font-family: var(--display); font-weight: 900; }

.managed-media-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.managed-media-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #0b1730;
  box-shadow: 0 24px 60px rgba(24,44,79,.16);
}
.managed-media-card img,
.managed-media-card video {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.managed-media-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(8,19,38,.74);
  font-size: 12px;
  font-weight: 900;
}
.sign-card { grid-column: span 2; display: grid; grid-template-columns: 112px 1fr; gap: 18px; align-items: center; padding: 24px; border-radius: 28px; background: #fff; box-shadow: 0 22px 60px rgba(24,44,79,.12); }
.sign-card span { display: grid; place-items: center; width: 98px; height: 98px; border: 8px solid var(--red); border-radius: 999px; color: var(--ink); font-family: var(--display); font-size: 34px; font-weight: 900; }
.sign-card strong { display: block; font-family: var(--display); font-size: 24px; }
.sign-card p { margin: 8px 0 0; }

.alert-carousel { overflow: hidden; border-radius: 30px; }
.alert-track { display: flex; gap: 16px; width: max-content; animation: marquee 36s linear infinite; }
.alert-card { position: relative; overflow: hidden; width: 260px; min-height: 220px; padding: 24px; border: 1px solid rgba(8,19,38,.10); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,250,255,.78)); box-shadow: 0 20px 46px rgba(24,44,79,.10); }
.alert-card.compact { width: 330px; min-height: 190px; padding: 22px; }
.alert-card h3 { margin-top: 0; }
.alert-card p { margin: 12px 0 0; font-size: 14px; line-height: 1.55; }

.data-section { padding: 92px 0; background: linear-gradient(135deg, #0e1c35 0%, #132849 100%); color: #fff; }
.data-section h2,
.data-section h3 { color: #fff; }
.data-section p { color: #c8d5e7; }
.data-section .section-kicker { color: #ffd0d7; }
.data-inner { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(34px, 6vw, 72px); align-items: center; }
.layer-list { display: grid; gap: 13px; margin-top: 28px; }
.layer-list div,
.route-card { border: 1px solid var(--line-dark); border-radius: 22px; background: rgba(255,255,255,.07); backdrop-filter: blur(16px); }
.layer-list div { padding: 18px; }
.layer-list strong { color: #fff; font-family: var(--display); }
.layer-list p { margin: 5px 0 0; font-size: 14px; }
.route-card { padding: clamp(24px,4vw,38px); box-shadow: 0 28px 74px rgba(0,0,0,.24); }
.route-card-head { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line-dark); color: #aebbd0; font-size: 13px; font-weight: 900; }
.route-card-head strong { color: #fff; }
.route-progress { position: relative; height: 90px; margin: 24px 0; border-radius: 22px; background: rgba(255,255,255,.07); overflow: hidden; }
.route-progress::before { content: ""; position: absolute; left: 30px; right: 30px; top: 44px; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--cyan), var(--gold), var(--red)); box-shadow: 0 0 24px rgba(255,64,87,.35); }
.route-progress i { position: absolute; top: 34px; width: 26px; height: 26px; border: 5px solid #fff; border-radius: 999px; background: var(--red); }
.route-progress i:nth-child(1) { left: 28px; background: var(--cyan); }
.route-progress i:nth-child(2) { left: 50%; transform: translateX(-50%); background: var(--gold); }
.route-progress i:nth-child(3) { right: 28px; }
.route-row { display: flex; justify-content: space-between; gap: 16px; margin-top: 10px; padding: 15px 16px; border: 1px solid var(--line-dark); border-radius: 16px; background: rgba(255,255,255,.06); }
.route-row span { color: #c8d5e7; }
.route-row strong { color: #ffd0d7; font-family: var(--display); }
.route-row.cyan strong { color: #88fff0; }
.route-note { margin-top: 16px; color: #f7dfad; font-size: 13px; }

.difference-section { position: relative; }
.difference-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.difference-card { min-height: 230px; padding: 24px; background: linear-gradient(145deg,#fff,#f6faff); }
.difference-card::before { content: ""; position: absolute; right: -44px; top: -44px; width: 130px; height: 130px; border-radius: 999px; background: radial-gradient(circle, rgba(0,169,143,.14), transparent 68%); }
.difference-card span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 16px; color: #fff; background: linear-gradient(135deg,var(--red),#ff7586); font-family: var(--display); font-weight: 900; box-shadow: 0 14px 26px rgba(255,64,87,.24); }
.difference-card:nth-child(2) span { background: linear-gradient(135deg,var(--cyan),#22d3bd); box-shadow: 0 14px 26px rgba(0,169,143,.2); }
.difference-card:nth-child(3) span { background: linear-gradient(135deg,var(--gold),#ffc76f); box-shadow: 0 14px 26px rgba(242,169,59,.2); }
.difference-card:nth-child(4) span { background: linear-gradient(135deg,var(--navy),#24466f); box-shadow: 0 14px 26px rgba(8,19,38,.18); }
.difference-card h3 { margin-top: 18px; }
.difference-card p { margin-bottom: 0; }

.segment-grid,
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.segment-card { position: relative; overflow: hidden; padding: 26px; border: 1px solid rgba(8,19,38,.10); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(246,250,255,.78)); box-shadow: 0 18px 44px rgba(24,44,79,.10); }
.segment-card span { font-size: 34px; }
.segment-card h3 { margin-top: 18px; }
.segment-card p { margin-bottom: 0; }

.pricing-grid { grid-template-columns: repeat(3,1fr); }
.pricing-explainer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: -8px 0 24px;
}
.pricing-explainer div {
  padding: 20px 22px;
  border: 1px solid rgba(8,19,38,.10);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(246,250,255,.78));
  box-shadow: 0 18px 44px rgba(24,44,79,.09);
}
.pricing-explainer strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
}
.pricing-explainer span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.price-card { position: relative; display: flex; flex-direction: column; min-height: 548px; padding: 28px; border: 1px solid rgba(8,19,38,.10); border-radius: 28px; background: linear-gradient(145deg, #fff, #f5f9fe); box-shadow: 0 22px 58px rgba(24,44,79,.12); }
.price-card.featured { border-color: rgba(255,64,87,.28); background: linear-gradient(160deg, rgba(255,64,87,.08), #fff 34%); transform: translateY(-10px); }
.price-card.founder { border-color: rgba(0,169,143,.24); }
.popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 6px 13px; border-radius: 999px; color: #fff; background: var(--red); font-family: var(--display); font-size: 12px; font-weight: 900; }
.plan-label { color: var(--muted); font-family: var(--display); font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.plan-price { margin-top: 14px; font-family: var(--display); font-size: 58px; font-weight: 900; letter-spacing: -.06em; }
.plan-price.planned { font-size: 42px; letter-spacing: -.04em; }
.cyan-text { color: var(--cyan); }
.price-card p { margin: 12px 0 20px; }
.price-card ul { display: grid; gap: 11px; margin: 0 0 26px; padding: 22px 0 0; border-top: 1px solid rgba(8,19,38,.10); color: var(--muted); list-style: none; }
.price-card li { position: relative; padding-left: 24px; font-size: 14px; line-height: 1.5; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 12px rgba(0,169,143,.5); }
.plan-button { width: 100%; margin-top: auto; }
.plan-button.ghost { border: 1px solid rgba(8,19,38,.10); color: var(--ink); background: #f4f7fb; }
.plan-button.cyan { background: linear-gradient(145deg, #08c7ab, #007c6d); }

.cta-section { padding: 28px 0 96px; }
.cta-inner { position: relative; overflow: hidden; padding: clamp(36px,7vw,78px); border-radius: 34px; text-align: center; color: #fff; background: radial-gradient(circle at 50% -20%, rgba(255,64,87,.24), transparent 24rem), linear-gradient(145deg, #122846, #0d1a32); box-shadow: 0 30px 80px rgba(24,44,79,.18); }
.cta-inner h2 { color: #fff; max-width: 820px; margin: 0 auto; }
.cta-inner p { margin: 18px auto 0; color: #c8d5e7; }
.cta-inner .section-kicker { justify-content: center; color: #ffd0d7; }
.store-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.store-button { display: inline-flex; align-items: center; gap: 12px; min-width: 210px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; background: rgba(255,255,255,.08); text-align: left; text-decoration: none; transition: transform .18s ease; }
.store-button:hover { transform: translateY(-2px); }
.store-button span { font-size: 24px; }
.store-button small { display: block; color: #9eabc0; font-size: 11px; font-weight: 900; }
.store-button strong { display: block; color: #fff; font-family: var(--display); font-size: 18px; }
.store-button.muted { opacity: .64; }
.waitlist-form { display: grid; grid-template-columns: minmax(220px,1fr) minmax(180px,.55fr) auto; gap: 12px; align-items: end; max-width: 920px; margin: 30px auto 0; }
.waitlist-field { display: grid; gap: 8px; text-align: left; color: #fff; font-weight: 800; }
.waitlist-field span { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: #ffd0d7; }
.waitlist-field input,
.waitlist-field select { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 15px 16px; background: rgba(255,255,255,.10); color: #fff; font: inherit; outline: none; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.waitlist-field select { cursor: pointer; }
.waitlist-field option { color: #081326; }
.waitlist-field input::placeholder { color: rgba(255,255,255,.52); }
.waitlist-field input:focus,
.waitlist-field select:focus { border-color: rgba(0,230,199,.75); box-shadow: 0 0 0 4px rgba(0,230,199,.12); }
.waitlist-submit { min-height: 54px; justify-content: center; border: 0; cursor: pointer; }
.waitlist-submit:disabled { opacity: .62; cursor: wait; transform: none; }
.waitlist-status { min-height: 24px; margin-top: 14px !important; font-size: 15px !important; }
.waitlist-status.ok { color: #9ff4df; }
.waitlist-status.error { color: #ffd0d7; }
.waitlist-store-links { margin-top: 22px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid rgba(8,19,38,.10); border-radius: 22px; background: #fff; box-shadow: 0 18px 44px rgba(24,44,79,.10); }
.faq-list summary { cursor: pointer; padding: 20px 22px; font-family: var(--display); font-weight: 900; }
.faq-list p { margin: 0; padding: 0 22px 22px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 58px; }
.legal-links a { padding: 13px 16px; border: 1px solid rgba(8,19,38,.10); border-radius: 15px; color: var(--muted); background: #fff; text-decoration: none; font-weight: 900; }

.page-main { max-width: 900px; padding: 74px 0; }
.page-main .lead { max-width: 760px; margin-top: 20px; color: #263750; font-size: 19px; }
.policy-card { margin-top: 26px; padding: clamp(22px,4vw,38px); border: 1px solid rgba(8,19,38,.10); border-radius: 28px; background: #fff; box-shadow: 0 24px 70px rgba(24,44,79,.12); }
.policy-card h2 { margin-top: 34px; font-size: 25px; }
.policy-card h2:first-child { margin-top: 0; }
.policy-card ul,
.policy-card ol { padding-left: 22px; color: var(--muted); line-height: 1.75; }
.policy-card li + li { margin-top: 8px; }
.meta { color: var(--soft); font-size: 14px; font-weight: 800; }
.link-list { display: grid; gap: 10px; margin-top: 22px; }
.link-list a { display: flex; justify-content: space-between; gap: 18px; padding: 17px 19px; border: 1px solid rgba(8,19,38,.10); border-radius: 18px; background: #f8fbff; text-decoration: none; font-weight: 900; }
.notice { margin-top: 24px; padding: 18px 20px; border: 1px solid rgba(242,169,59,.28); border-radius: 20px; color: #7a4e07; background: rgba(242,169,59,.10); }

.site-footer { border-top: 1px solid rgba(8,19,38,.09); color: var(--muted); background: rgba(255,255,255,.56); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; padding: 28px 0; }
.footer-inner strong { color: var(--ink); font-family: var(--display); }
.footer-inner strong span { color: var(--red); }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: 14px; }
.social-links { display: inline-flex; align-items: center; gap: 9px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8,19,38,.12);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social-icon:hover { transform: translateY(-2px); border-color: rgba(255,64,87,.28); box-shadow: 0 14px 30px rgba(24,44,79,.14); }
.social-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes phoneTiltFloat {
  0%,100% { transform: translateY(0) rotateX(2.5deg) rotateY(-10deg) rotateZ(1.2deg); }
  50% { transform: translateY(-12px) rotateX(3.2deg) rotateY(-13deg) rotateZ(1.2deg); }
}
@keyframes phoneScreenCycle {
  0%,18% { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
  22% { opacity: 0; transform: translateX(-28px) scale(.985); filter: blur(1px); }
  23%,96% { opacity: 0; transform: translateX(34px) scale(.985); filter: blur(1px); }
  100% { opacity: 0; transform: translateX(34px) scale(.985); filter: blur(1px); }
}
@keyframes watchFloat {
  0%,100% { transform: translateY(0) rotate(-2deg) scale(var(--watch-scale, 1)); }
  50% { transform: translateY(-10px) rotate(1deg) scale(var(--watch-scale, 1)); }
}
@keyframes watchAlertCycle {
  0%,26% { opacity: 1; transform: translateY(0) scale(1); }
  31%,100% { opacity: 0; transform: translateY(-9px) scale(.96); }
}
@keyframes watchOrbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes carDisplayFloat {
  0%,100% { transform: translateY(0) rotateX(2deg) rotateY(-2.8deg); }
  50% { transform: translateY(-3px) rotateX(2.2deg) rotateY(-3.2deg); }
}
@keyframes carRoadGlow {
  0%,100% { opacity: .34; transform: translate(-50%, -50%) scale(.98); }
  50% { opacity: .48; transform: translate(-50%, -50%) scale(1.03); }
}
@keyframes carLaneDash { to { background-position-y: 74px; } }
@keyframes carScanGate {
  0% { opacity: 0; transform: translateY(100%) scaleX(1.14); }
  22%,54% { opacity: .32; }
  100% { opacity: 0; transform: translateY(-42%) scaleX(.72); }
}
@keyframes carAssistPulse {
  0%,28% { opacity: 1; }
  38%,100% { opacity: .68; }
}
@keyframes carBeaconPulse {
  0% { transform: scale(.32); opacity: .34; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes carVoiceWave {
  0%,100% { transform: scaleY(.55); opacity: .55; }
  50% { transform: scaleY(1.05); opacity: .9; }
}
@keyframes carplayRouteFlow { to { stroke-dashoffset: -88; } }
@keyframes carplaySoftGlow {
  0%,100% { opacity: .46; transform: scale(.98); }
  50% { opacity: .70; transform: scale(1.02); }
}
@keyframes carplayVehicleMove {
  0%,100% { left: 42%; top: 45%; transform: rotate(-18deg); }
  42% { left: 55%; top: 33%; transform: rotate(-22deg); }
  72% { left: 64%; top: 25%; transform: rotate(-19deg); }
}
@keyframes carplayVehiclePulse {
  0% { opacity: .42; transform: scale(.55); }
  100% { opacity: 0; transform: scale(1.6); }
}
@keyframes carplayRadarSweep { to { transform: rotate(360deg); } }
@keyframes carplayMarkerPulse {
  0%,100% { transform: scale(.9); opacity: .76; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes carplayAlertCarousel {
  0%,28% { opacity: 1; transform: translateY(0) scale(1); box-shadow: 0 0 24px rgba(255,64,87,.12); }
  34%,100% { opacity: 0; transform: translateY(-12px) scale(.98); box-shadow: 0 0 0 rgba(255,64,87,0); }
}
@keyframes carplayVoiceMeter {
  0%,100% { transform: scaleY(.48); opacity: .55; }
  50% { transform: scaleY(1.08); opacity: .95; }
}
@keyframes carplayGlassSheen {
  0%,100% { opacity: .38; transform: translateX(0); }
  46%,58% { opacity: .58; transform: translateX(1.5%); }
}
@keyframes carplayTrafficOne {
  0%,100% { left: 20%; top: 64%; opacity: .68; }
  45% { left: 34%; top: 51%; opacity: .95; }
  78% { left: 46%; top: 41%; opacity: .78; }
}
@keyframes carplayTrafficTwo {
  0%,100% { right: 19%; top: 42%; opacity: .72; }
  48% { right: 28%; top: 50%; opacity: .95; }
  82% { right: 38%; top: 60%; opacity: .76; }
}
@keyframes carplayTrafficThree {
  0%,100% { left: 56%; top: 78%; opacity: .62; }
  38% { left: 66%; top: 66%; opacity: .92; }
  78% { left: 74%; top: 54%; opacity: .74; }
}
@keyframes carplayTurnCue {
  0%,18%,100% { opacity: .78; transform: translateY(0); }
  32%,54% { opacity: 1; transform: translateY(-3px); }
}
@keyframes carplayConnectionPulse {
  0%,100% { opacity: .58; transform: translateY(-50%) scale(.92); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.22); }
}
@keyframes carplayDockGlow {
  0%,100% { box-shadow: 0 10px 24px rgba(255,64,87,.20); }
  50% { box-shadow: 0 12px 28px rgba(255,64,87,.34); }
}
@keyframes carplaySpeedSweep {
  0%,100% { opacity: .20; transform: rotate(-18deg); }
  50% { opacity: .56; transform: rotate(18deg); }
}
@keyframes carplayStepProgress {
  0%,100% { transform: scaleX(.28); }
  50% { transform: scaleX(.82); }
}
@keyframes pulseRing { 0%,100% { opacity: .42; transform: scale(1); } 50% { opacity: .9; transform: scale(1.025); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drawRoute { from { stroke-dashoffset: 450; } to { stroke-dashoffset: 0; } }
@keyframes pinPulse { 0% { transform: scale(.2); opacity: .75; } 100% { transform: scale(1.8); opacity: 0; } }
@keyframes wave { 0%,100% { transform: scaleY(.55); } 50% { transform: scaleY(1.15); } }
@keyframes parkSweep { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes laneFlow { from { background-position-y: 0; } to { background-position-y: 72px; } }
@keyframes trafficDrift { 0%,100% { translate: 0 0; } 50% { translate: 0 7px; } }
@keyframes hudFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes hudSheen {
  0%,42% { opacity: 0; transform: translateX(-60%); }
  52% { opacity: .78; }
  68%,100% { opacity: 0; transform: translateX(74%); }
}
@keyframes speedPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.025); } }
@keyframes cameraCruise {
  0%,100% { transform: scale(1.035) translate3d(0, 0, 0); }
  25% { transform: scale(1.055) translate3d(-7px, 5px, 0); }
  50% { transform: scale(1.045) translate3d(8px, -4px, 0); }
  75% { transform: scale(1.065) translate3d(-5px, 8px, 0); }
}
@keyframes roadShotCycle {
  0%,20% { opacity: 1; transform: scale(1.06) translate3d(0, 0, 0); filter: blur(0); }
  24%,100% { opacity: 0; transform: scale(1.13) translate3d(-10px, -6px, 0); filter: blur(2px); }
}
@keyframes tunnelLightCycle {
  0%,23%,100% { opacity: 0; background-position-x: 0; }
  27%,43% { opacity: .72; background-position-x: 220px; }
  47% { opacity: 0; background-position-x: 360px; }
}
@keyframes nightGlareCycle {
  0%,48%,76%,100% { opacity: 0; transform: scale(1); }
  53%,68% { opacity: .82; transform: scale(1.04) translateY(6px); }
}
@keyframes rainCycle {
  0%,72%,100% { opacity: 0; transform: translate3d(-42px,-100px,0); }
  78%,93% { opacity: .38; transform: translate3d(28px,80px,0); }
}
@keyframes cutFlash {
  0%,24%,25%,49%,50%,74%,75%,100% { opacity: 0; }
  23.6%,48.6%,73.6%,98.6% { opacity: .34; }
}
@keyframes railGlide { from { background-position-x: 0; } to { background-position-x: 120px; } }
@keyframes carPerspective {
  0%,100% { translate: 0 0; filter: blur(.08px); }
  50% { translate: 0 9px; filter: blur(.2px); }
}
@keyframes sceneObjectCycle {
  0%,20% { opacity: 1; transform: translateY(0) scale(.88); }
  24%,100% { opacity: 0; transform: translateY(88px) scale(1.18); }
}
@keyframes steeringMotion {
  0%,100% { transform: translateX(-50%) rotate(-2.5deg); }
  48% { transform: translateX(-50%) rotate(2.8deg); }
  72% { transform: translateX(-50%) rotate(-.8deg); }
}
@keyframes handFollow {
  0%,100% { translate: 0 0; }
  48% { translate: 5px 2px; }
  72% { translate: -2px 1px; }
}
@keyframes alertCycle {
  0%,20% { opacity: 1; transform: translateY(0) scale(1); }
  24%,100% { opacity: 0; transform: translateY(-10px) scale(.98); }
}
@keyframes speedScene {
  0%,20% { opacity: 1; transform: translateY(0) scale(1); }
  23%,100% { opacity: 0; transform: translateY(-10px) scale(.92); }
}
@keyframes captionCycle {
  0%,20% { opacity: 1; transform: translateY(0); }
  24%,100% { opacity: 0; transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .reel-video,
  .ride-status i,
  .speed-number,
  .caption-shot,
  .reel-alert,
  .traffic-video,
  .road-shot,
  .tunnel-lights,
  .night-glare,
  .rain-streaks,
  .cinema-cut,
  .phone-app-screen,
  .watch-showcase,
  .watch-orbit,
  .watch-alert,
  .awareness-photo,
  .awareness-status i,
  .car-screen-frame,
  .road-aura,
  .lane-center,
  .scan-gate,
  .alert-beacon i,
  .assist-card,
  .voice-strip span,
  .carplay-route-path path,
  .carplay-route-glow,
  .carplay-radar-sweep,
  .carplay-vehicle-dot,
  .carplay-vehicle-dot span,
  .carplay-alert-marker i,
  .carplay-traffic-dot,
  .carplay-turn-banner,
  .carplay-statusbar span:last-child::before,
  .sidebar-app.active,
  .carplay-speed-card::after,
  .route-step::after,
  .carplay-next-alert,
  .voice-meter i,
  .car-device-link span,
  .park-radar i,
  .road-rush,
  .guardrail,
  .pov-car,
  .scene-object,
  .steering-wheel,
  .driver-hand,
  .speed-number,
  .caption-shot,
  .driver-alert { animation: none !important; }
  .reel-video { opacity: 0; transform: scale(1.035); }
  .reel-video:not(.is-active) { display: none; }
  .reel-video.is-active,
  .speed-number.is-active,
  .caption-shot.is-active,
  .reel-alert.is-active { opacity: 1; transform: translateY(0) scale(1); }
  .traffic-video { transform: scale(1.055); }
  .road-shot,
  .tunnel-lights,
  .night-glare,
  .rain-streaks,
  .cinema-cut,
  .speed-number,
  .caption-shot { opacity: 0; }
  .day-scene { opacity: 1; transform: scale(1.06); filter: none; }
  .pov-car,
  .driver-hand { translate: 0 0; }
  .steering-wheel { transform: translateX(-50%) rotate(-1deg); }
  .scene-object,
  .driver-alert { opacity: 0; transform: translateY(0) scale(1); }
  .phone-app-screen { opacity: 0; transform: none; filter: none; }
  .phone-app-screen:first-child { opacity: 1; }
  .watch-showcase { transform: none; }
  .watch-orbit { transform: translate(-50%, -50%); }
  .watch-alert { opacity: 0; transform: none; }
  .watch-alert-route { opacity: 1; }
  .car-screen-frame { transform: none; }
  .road-aura { transform: translate(-50%, -50%); }
  .scan-gate { opacity: .35; transform: translateY(0) scaleX(.9); }
  .assist-card { opacity: .64; transform: none; }
  .assist-card.active { opacity: 1; }
  .carplay-route-path path { stroke-dashoffset: 0; }
  .carplay-route-glow { opacity: .52; transform: none; }
  .carplay-radar-sweep { transform: none; }
  .carplay-vehicle-dot { left: 56%; top: 33%; transform: rotate(-20deg); }
  .carplay-traffic-dot { opacity: .72; }
  .carplay-turn-banner { opacity: .9; transform: none; }
  .carplay-next-alert { opacity: 0; transform: none; box-shadow: none; }
  .carplay-next-alert.alert-one { opacity: 1; }
  .radar-object { opacity: 1; transform: translateY(0) scale(.86); }
  .speed-number.s112 { opacity: 1; transform: translateY(0) scale(1); }
  .caption-shot.highway { opacity: 1; transform: translateY(0); }
  .driver-alert.radar { opacity: 1; }
  .reel-video.is-active,
  .speed-number.is-active,
  .caption-shot.is-active,
  .reel-alert.is-active { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1080px) {
  .hero,
  .route-demo-grid,
  .scene-inner,
  .data-inner,
  .car-display-inner,
  .app-preview-inner { grid-template-columns: 1fr; }
  .hero { text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-stats { justify-content: center; }
  .drive-scene { min-height: 520px; }
  .windshield-scene { width: min(760px, 100%); }
  .real-drive { min-height: 610px; }
  .video-reel { width: min(860px, 100%); min-height: 590px; }
  .reel-alert { width: min(360px, 44%); text-align: left; }
  .pov-drive { min-height: 610px; }
  .pov-frame { width: min(860px, 100%); height: 590px; transform: none; }
  .driver-alert { width: min(340px, 42%); text-align: left; }
  .app-preview-copy { text-align: center; }
  .app-preview-copy h2,
  .app-preview-copy > p { margin-left: auto; margin-right: auto; }
  .app-preview-points { max-width: 720px; margin-left: auto; margin-right: auto; text-align: left; }
  .car-display-copy { text-align: center; }
  .car-display-copy h2,
  .car-display-copy > p { margin-left: auto; margin-right: auto; }
  .car-display-points { max-width: 760px; margin-left: auto; margin-right: auto; text-align: left; }
  .road-awareness-visual { justify-self: center; width: min(760px, 100%); }
  .car-cockpit-showcase { justify-self: center; width: min(900px, 100%); min-height: 540px; padding-top: 52px; }
  .car-screen-frame { transform: none; }
  .segment-grid,
  .difference-grid,
  .pricing-explainer,
  .pricing-grid,
  .managed-media-gallery { grid-template-columns: 1fr; }
  .virtual-hero { grid-template-columns: 1fr; }
  .virtual-flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-board { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .new-feature-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .difference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card.span-two { grid-column: span 1; }
  .price-card.featured { transform: none; }
}

@media (max-width: 820px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { flex-wrap: wrap; }
  .hero { min-height: auto; padding-top: 48px; }
  .drive-scene { min-height: 470px; }
  .windshield-scene { height: 450px; border-radius: 30px; transform: none; }
  .real-drive { min-height: 540px; }
  .video-reel { min-height: 520px; border-radius: 32px; }
  .ride-status { left: 20px; top: 20px; }
  .ride-speed { left: 20px; bottom: 24px; width: 72px; height: 72px; border-width: 5px; }
  .ride-speed strong { font-size: 24px; }
  .ride-speed span { margin-top: -14px; font-size: 9px; }
  .reel-alert { right: 22px; bottom: 24px; width: min(316px, 50%); padding: 13px 14px 13px 16px; border-radius: 17px; text-align: left; }
  .reel-alert strong { font-size: 16px; }
  .scene-caption { left: 106px; bottom: 42px; }
  .pov-drive { min-height: 540px; }
  .pov-frame { height: 520px; border-radius: 32px; }
  .rearview-mirror { top: 22px; width: 118px; height: 38px; }
  .a-pillar { width: 66px; bottom: 108px; }
  .side-window { width: 88px; bottom: 150px; }
  .speed-hud { left: 20px; top: 84px; width: 68px; height: 68px; border-width: 5px; }
  .speed-hud strong { font-size: 23px; }
  .speed-hud span { margin-top: -14px; font-size: 9px; }
  .driver-alert { right: 22px; top: 86px; width: min(310px, 48%); padding: 13px 14px 13px 16px; border-radius: 17px; text-align: left; }
  .driver-alert strong { font-size: 16px; }
  .pov-frame .scene-caption { left: 20px; bottom: 126px; }
  .car-display-section { padding: 74px 0; }
  .road-awareness-visual { min-height: 500px; padding: 28px 20px; }
  .awareness-photo { min-height: 390px; border-radius: 28px; transform: none; }
  .voice-card { left: 0; bottom: 44px; }
  .source-card { right: 0; top: 54px; }
  .awareness-status { right: 34px; bottom: 12px; }
  .car-cockpit-showcase { min-height: 512px; padding: 38px 8px 24px; }
  .car-screen-frame { min-height: 386px; border-radius: 28px; }
  .car-screen-topbar { padding: 16px 20px 10px; }
  .car-command-stage { grid-template-columns: minmax(120px,.58fr) minmax(280px,1.42fr) minmax(132px,.72fr); gap: 9px; min-height: 258px; margin: 0 14px 10px; }
  .car-guidance-panel { padding: 15px 13px; border-radius: 19px; }
  .car-guidance-panel strong { font-size: 18px; }
  .carplay-road-view { min-height: 258px; border-radius: 21px; }
  .assist-stack { gap: 8px; }
  .assist-card { padding: 11px 11px 10px; border-radius: 15px; }
  .assist-card strong { font-size: 14px; }
  .carplay-dock { margin: 0 14px 16px; }
  .dock-app { grid-template-columns: 30px 1fr; gap: 8px; padding: 7px; border-radius: 14px; }
  .dock-app span { width: 30px; height: 30px; border-radius: 10px; }
  .real-carplay-frame { min-height: 410px; border-radius: 28px; }
  .carplay-statusbar { padding: 15px 20px 10px; }
  .real-carplay-interface { grid-template-columns: 54px minmax(0, 1fr) 180px; grid-template-rows: minmax(0, 1fr) 54px; gap: 9px; min-height: 304px; margin: 0 14px 14px; }
  .carplay-sidebar { gap: 9px; padding: 12px 7px; border-radius: 18px; }
  .sidebar-app { width: 34px; height: 34px; border-radius: 12px; font-size: 9px; }
  .sidebar-home { width: 23px; height: 23px; }
  .carplay-map-panel,
  .carplay-info-panel { border-radius: 20px; }
  .carplay-info-panel { gap: 8px; padding: 10px; }
  .carplay-next-alert { padding: 12px; border-radius: 16px; }
  .carplay-next-alert strong { font-size: 16px; }
  .carplay-alert-carousel { min-height: 98px; border-radius: 16px; }
  .carplay-radar-sweep { width: 118px; height: 118px; right: 14%; top: 20%; }
  .carplay-speed-card { min-height: 84px; border-radius: 18px; }
  .carplay-speed-card strong { font-size: 29px; }
  .carplay-bottom-controls { grid-template-columns: 1fr 104px 94px; gap: 8px; padding: 8px 10px; border-radius: 17px; }
  .map-location-card { min-width: 152px; padding: 9px 11px; border-radius: 15px; }
  .carplay-turn-banner { right: 12px; bottom: 12px; min-width: 164px; padding: 9px 11px 9px 36px; border-radius: 15px; }
  .carplay-traffic-dot { width: 10px; height: 10px; border-width: 2px; }
  .dashboard-console { width: min(560px, 92%); }
  .car-device-link { right: 20px; bottom: 26px; }
  .steering-wheel { width: 220px; height: 220px; bottom: -20px; }
  .driver-hand { bottom: 60px; }
  .driver-hand.left { left: calc(50% - 112px); }
  .driver-hand.right { right: calc(50% - 112px); }
  .hud-speed { left: 16px; top: 16px; width: 74px; height: 74px; border-width: 6px; }
  .hud-speed strong { font-size: 24px; }
  .hud-speed span { margin-top: -15px; font-size: 9px; }
  .hud-stack { top: 16px; right: 16px; width: min(292px, 58%); }
  .hud-card { padding: 12px 13px 12px 15px; border-radius: 16px; }
  .hud-card strong { font-size: 16px; }
  .traffic-status { left: 16px; bottom: 108px; }
  .hero-visual { min-height: 620px; }
  .ring-one,
  .radar-sweep { width: 440px; height: 440px; }
  .ring-two { width: 330px; height: 330px; }
  .watch-showcase { --watch-scale: .88; right: 0; bottom: 18px; }
  .watch-connector { right: 8%; bottom: 205px; width: 160px; }
  .footer-inner { flex-direction: column; }
  .managed-media-card,
  .managed-media-card img,
  .managed-media-card video { min-height: 190px; height: 190px; }
}

@media (max-width: 560px) {
  .site-shell { width: min(1220px, calc(100% - 24px)); }
  .brand-name { font-size: 17px; }
  .brand-kicker { font-size: 10px; }
  .nav { align-items: center; }
  .nav-links { display: grid; grid-template-columns: repeat(3, max-content); width: 100%; justify-content: center; gap: 6px; font-size: 12px; }
  .nav-links a { padding: 8px 9px; }
  .hero-copy { width: 100%; max-width: calc(100vw - 32px); margin-inline: auto; }
  .eyebrow { max-width: 100%; justify-content: center; white-space: normal; font-size: 10px; }
  h1 { width: 100%; max-width: min(330px, calc(100vw - 32px)); margin-inline: auto; font-size: clamp(30px, 8.8vw, 34px); line-height: 1.06; white-space: normal; overflow-wrap: break-word; }
  .lead { max-width: calc(100vw - 32px); margin-top: 18px; font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-stats { display: none; }
  .drive-scene { min-height: 430px; }
  .feature-board { grid-template-columns: 1fr; }
  .virtual-flow-grid { grid-template-columns: 1fr; }
  .virtual-scan-card { border-radius: 24px; }
  .route-demo-section { padding: 64px 0; }
  .route-demo-actions,
  .demo-layer-grid,
  .difference-grid { grid-template-columns: 1fr; display: grid; }
  .route-demo-card { border-radius: 24px; }
  .demo-route-line { height: 78px; }
  .demo-route-line::before { left: 24px; right: 24px; top: 37px; }
  .demo-route-line i,.demo-route-line b,.demo-route-line em { top: 27px; width: 27px; height: 27px; border-width: 5px; }
  .demo-route-line i { left: 20px; }
  .demo-route-line em { right: 20px; }
  .feature-card { min-height: auto; padding: 17px; border-radius: 20px; }
  .feature-card h3 { font-size: 17px; }
  .feature-card h3::before { width: 9px; height: 9px; border-width: 3px; }
  .feature-card p { font-size: 13px; }
  .new-feature-points { grid-template-columns: 1fr; padding: 10px; border-radius: 22px; }
  .new-feature-points div { padding: 13px 13px 13px 40px; }
  .windshield-scene { height: 410px; border-radius: 26px; }
  .real-drive { min-height: 410px; }
  .video-reel { min-height: 390px; border-radius: 26px; }
  .ride-status { left: 14px; right: 14px; top: 14px; justify-content: center; }
  .ride-speed { left: 16px; bottom: 18px; width: 60px; height: 60px; border-width: 4px; }
  .ride-speed strong { font-size: 20px; }
  .ride-speed span { display: none; }
  .reel-alert { left: 14px; right: 14px; bottom: 86px; width: auto; }
  .reel-alert.scooter { left: 14px; right: 14px; top: auto; bottom: 86px; width: auto; }
  .reel-alert.car { left: 14px; right: 14px; top: 72px; bottom: auto; width: auto; }
  .reel-alert.tunnel { left: 14px; right: 14px; top: 128px; bottom: auto; width: auto; }
  .reel-alert.speed { left: 14px; right: 14px; top: auto; bottom: 126px; width: auto; }
  .reel-alert.night { left: 14px; right: 14px; top: 184px; bottom: auto; width: auto; }
  .reel-alert strong { font-size: 15px; }
  .reel-alert small { font-size: 11px; }
  .scene-caption { left: 88px; bottom: 31px; min-width: 190px; }
  .caption-shot { min-height: 30px; padding: 0 10px; font-size: 10px; }
  .pov-drive { min-height: 456px; }
  .pov-frame { height: 430px; border-radius: 26px; }
  .traffic-video { background-position: center center; }
  .rearview-mirror { width: 96px; height: 32px; border-width: 5px; }
  .side-window { display: none; }
  .a-pillar { width: 48px; bottom: 96px; }
  .dashboard-cockpit { height: 138px; bottom: -36px; }
  .instrument-cluster,
  .center-console { display: none; }
  .steering-wheel { width: 184px; height: 184px; bottom: -24px; }
  .wheel-rim { border-width: 18px; }
  .wheel-spoke { width: 17px; height: 82px; }
  .driver-hand { width: 42px; height: 26px; bottom: 45px; }
  .driver-hand.left { left: calc(50% - 94px); }
  .driver-hand.right { right: calc(50% - 94px); }
  .speed-hud { left: 16px; top: 78px; width: 58px; height: 58px; border-width: 4px; }
  .speed-hud strong { font-size: 20px; }
  .speed-hud span { display: none; }
  .driver-alert { left: 14px; right: 14px; top: 150px; width: auto; }
  .driver-alert strong { font-size: 15px; }
  .driver-alert small { font-size: 11px; }
  .pov-frame .scene-caption { left: 14px; bottom: 100px; }
  .caption-shot { min-height: 30px; padding: 0 10px; font-size: 10px; }
  .scene-object span { min-width: 44px; min-height: 28px; font-size: 9px; }
  .passing-car { display: none; }
  .road-plane { left: -32%; right: -32%; height: 70%; }
  .hud-speed { width: 62px; height: 62px; border-width: 5px; }
  .hud-speed strong { font-size: 20px; }
  .hud-speed span { display: none; }
  .hud-stack { left: 14px; right: 14px; top: 90px; width: auto; }
  .hud-card { padding: 11px 12px 11px 14px; }
  .hud-card span { font-size: 10px; }
  .hud-card strong { font-size: 15px; }
  .hud-card small { font-size: 11px; }
  .hud-card.school { display: none; }
  .traffic-status,
  .road-sign { display: none; }
  .dashboard-view { left: -8%; right: -8%; height: 120px; }
  .steering-arc { width: 176px; }
  .hero-visual { min-height: 570px; }
  .phone-frame { width: min(326px, 88vw); }
  .phone-shell { min-height: 615px; }
  .phone-screen-carousel { height: 540px; }
  .phone-app-screen .phone-route-head { margin: 4px 12px 10px; padding: 12px; }
  .phone-app-screen .phone-map { height: 218px; margin: 0 12px 10px; border-radius: 20px; }
  .phone-app-screen .phone-summary { margin: 0 12px 8px; }
  .phone-app-screen .phone-summary div { padding: 9px 6px; }
  .phone-app-screen .phone-alert-card { margin: 0 12px 8px; padding: 10px 11px; }
  .phone-app-screen .phone-bottom-nav { margin: 10px 12px 0; padding: 10px 6px; }
  .drive-screen-hero,
  .park-card,
  .premium-screen-head { margin: 4px 12px 10px; }
  .drive-screen-hero { min-height: 188px; padding: 17px; }
  .drive-screen-hero > strong { font-size: 38px; }
  .drive-speed-ring { width: 76px; height: 76px; border-width: 6px; }
  .drive-speed-ring span { font-size: 25px; }
  .drive-speed-ring em { margin-top: -15px; font-size: 9px; }
  .drive-alert-stack,
  .park-steps,
  .park-actions,
  .premium-layer-list,
  .premium-poi-grid,
  .drive-wave-row { margin-left: 12px; margin-right: 12px; }
  .drive-alert-card { padding: 11px 11px 11px 39px; }
  .park-card { min-height: 218px; padding: 17px; }
  .park-radar { width: 136px; height: 136px; }
  .park-card strong { font-size: 36px; }
  .premium-screen-head { padding: 16px; }
  .premium-layer-list div { padding: 13px 13px 13px 42px; }
  .premium-poi-grid { gap: 6px; }
  .premium-poi-grid span { padding: 12px 4px; font-size: 10px; }
  .watch-connector { display: none; }
  .watch-showcase { --watch-scale: .72; right: -18px; bottom: -34px; }
  .watch-strap { width: 70px; height: 54px; }
  .watch-strap-bottom { height: 60px; }
  .watch-body { width: 164px; height: 176px; border-radius: 52px; }
  .watch-bezel { width: 138px; height: 148px; border-radius: 43px; }
  .watch-screen { border-radius: 34px; }
  .watch-alert { left: 11px; right: 11px; bottom: 13px; padding: 10px; border-radius: 18px; }
  .watch-alert strong { font-size: 13px; }
  .watch-orbit { width: 82px; height: 82px; }
  .section,
  .scene-section,
  .data-section,
  .car-display-section,
  .app-preview-section { padding: 64px 0; }
  .car-display-points div { padding: 15px 15px 15px 46px; }
  .car-display-points div::before { left: 16px; top: 19px; width: 13px; height: 13px; border-width: 3px; }
  .road-awareness-visual { min-height: auto; padding: 0; gap: 12px; }
  .awareness-orb { display: none; }
  .awareness-photo { min-height: 320px; border-radius: 24px; animation: none; }
  .awareness-photo figcaption { left: 14px; right: 14px; bottom: 14px; text-align: center; }
  .awareness-card,
  .awareness-status { position: relative; inset: auto; width: 100%; }
  .awareness-card { min-width: 0; padding: 14px 15px 14px 50px; border-radius: 18px; }
  .awareness-card::before { left: 16px; width: 18px; height: 18px; border-width: 3px; }
  .awareness-card strong { font-size: 16px; }
  .awareness-status { justify-content: center; min-height: 40px; }
  .car-cockpit-showcase { min-height: 560px; padding: 26px 0 16px; }
  .windshield-glow { border-radius: 28px; }
  .dash-top { height: 166px; bottom: 16px; border-radius: 30px; }
  .car-screen-frame { min-height: 486px; border-radius: 22px; }
  .car-screen-frame::after { opacity: .48; }
  .car-screen-topbar { padding: 13px 16px 9px; font-size: 10px; }
  .car-screen-topbar strong { font-size: 15px; }
  .car-command-stage { grid-template-columns: 1fr; gap: 8px; margin: 0 11px 10px; }
  .car-guidance-panel { padding: 12px; border-radius: 16px; }
  .car-guidance-panel strong { font-size: 18px; }
  .carplay-road-view { min-height: 188px; border-radius: 18px; }
  .road-aura { width: 220px; height: 108px; }
  .lane-plane { left: 1%; right: 1%; top: 24%; }
  .speed-command { left: 11px; bottom: 11px; width: 52px; height: 52px; border-width: 4px; }
  .speed-command strong { font-size: 19px; }
  .speed-command span { display: none; }
  .assist-stack { grid-template-columns: 1fr; gap: 7px; }
  .assist-card { padding: 10px 11px; border-radius: 15px; }
  .assist-card strong { font-size: 14px; }
  .voice-strip { min-height: 36px; padding: 7px 11px; border-radius: 14px; }
  .carplay-dock { grid-template-columns: repeat(2,1fr); gap: 7px; margin: 0 12px 14px; }
  .dock-app { grid-template-columns: 30px 1fr; padding: 7px; border-radius: 14px; }
  .dock-app span { width: 30px; height: 30px; border-radius: 10px; }
  .real-carplay-frame { min-height: 632px; border-radius: 22px; }
  .carplay-statusbar { padding: 12px 15px 8px; font-size: 10px; }
  .carplay-statusbar span:last-child { display: none; }
  .real-carplay-interface { grid-template-columns: 44px minmax(0, 1fr); grid-template-rows: 220px auto auto; gap: 8px; min-height: auto; margin: 0 10px 12px; }
  .carplay-sidebar { grid-row: 1 / 3; gap: 8px; padding: 10px 6px; border-radius: 16px; }
  .sidebar-app { width: 31px; height: 31px; border-radius: 10px; font-size: 8px; }
  .sidebar-home { width: 21px; height: 21px; }
  .carplay-map-panel { grid-column: 2; min-height: 220px; border-radius: 17px; }
  .carplay-info-panel { grid-column: 2; grid-template-rows: auto auto auto; border-radius: 17px; padding: 9px; }
  .carplay-bottom-controls { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 7px; padding: 8px; border-radius: 16px; }
  .voice-meter { height: 30px; }
  .carplay-next-alert { padding: 10px 11px; border-radius: 15px; }
  .carplay-next-alert strong { font-size: 15px; }
  .carplay-alert-carousel { min-height: 90px; border-radius: 15px; }
  .carplay-radar-sweep { width: 82px; height: 82px; right: 10%; top: 22%; }
  .carplay-radar-sweep span { inset: 22px; }
  .carplay-speed-card { min-height: 74px; border-radius: 17px; }
  .carplay-speed-card strong { font-size: 26px; }
  .carplay-layer-list { gap: 5px; }
  .map-location-card { left: 10px; top: 10px; min-width: 134px; padding: 8px 9px; border-radius: 14px; }
  .map-location-card strong { font-size: 13px; }
  .carplay-turn-banner { right: 10px; bottom: 10px; min-width: 132px; padding: 8px 9px 8px 31px; border-radius: 13px; }
  .carplay-turn-banner::before { left: 11px; width: 11px; height: 11px; border-width: 3px; }
  .carplay-turn-banner strong { font-size: 13px; }
  .carplay-traffic-dot { width: 9px; height: 9px; border-width: 2px; }
  .carplay-alert-marker { padding: 6px 8px; }
  .carplay-alert-marker strong { display: none; }
  .carplay-vehicle-dot { width: 25px; height: 25px; margin: -12px 0 0 -12px; }
  .dashboard-console { grid-template-columns: 1fr repeat(3, 34px); gap: 8px; width: 92%; padding: 10px; border-radius: 20px; }
  .console-button { width: 34px; height: 34px; }
  .car-device-link { position: relative; right: auto; bottom: auto; max-width: none; margin: 12px auto 0; width: min(100%, 310px); }
  .scene-grid { grid-template-columns: 1fr; }
  .sign-card { grid-column: span 1; grid-template-columns: 1fr; }
  .price-card { padding: 22px; }
  .route-row { align-items: flex-start; flex-direction: column; gap: 4px; }
}

@media (max-width: 420px) {
  .brand,
  .brand-copy { min-width: 0; max-width: 100%; }
  .brand-name,
  .brand-kicker { overflow-wrap: anywhere; }
  .nav-links { grid-template-columns: repeat(2, minmax(0, max-content)); }
  .waitlist-form { grid-template-columns: 1fr; }
  .store-actions { display: grid; grid-template-columns: 1fr; }
  .store-button { width: 100%; min-width: 0; }
}

.road-awareness-visual {
  width: min(760px, 100%);
  min-height: 560px;
  padding: 0;
  align-items: stretch;
}
.real-cabin-preview {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 36px;
  background: #050a13;
  box-shadow: 0 34px 84px rgba(0,0,0,.32), 0 0 46px rgba(255,64,87,.10);
}
.real-cabin-preview::before,
.real-cabin-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.real-cabin-preview::before {
  z-index: 1;
  background:
    radial-gradient(circle at 77% 52%, rgba(255,64,87,.22), transparent 11rem),
    linear-gradient(90deg, rgba(5,10,19,.20), rgba(5,10,19,.08) 44%, rgba(5,10,19,.52)),
    linear-gradient(180deg, rgba(5,10,19,.08), rgba(5,10,19,.66));
}
.real-cabin-preview::after {
  z-index: 4;
  background: linear-gradient(118deg, rgba(255,255,255,.22), rgba(255,255,255,.04) 17%, transparent 38%);
  mix-blend-mode: screen;
  opacity: .38;
}
.real-cabin-photo {
  position: absolute;
  inset: -7% -10%;
  width: 120%;
  height: 116%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(.92) contrast(1.07) brightness(.72);
  transform: scale(1.06);
}
.real-cabin-screen {
  position: absolute;
  right: 3.2%;
  top: 38%;
  z-index: 3;
  width: min(420px, 54%);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 9px solid rgba(2,7,20,.92);
  border-radius: 20px;
  background: #020714;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 18px 44px rgba(0,0,0,.50),
    0 0 0 1px rgba(255,255,255,.16);
  transform: perspective(700px) rotateY(-7deg) rotateX(1.5deg) rotateZ(.4deg);
  transform-origin: center;
}
.rr-original-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  opacity: 0;
  transform: scale(1.02);
  animation: rrOriginalScreen 15s ease-in-out infinite;
}
.rr-original-screen:nth-child(2) { animation-delay: 5s; }
.rr-original-screen:nth-child(3) { animation-delay: 10s; }
.screen-glare {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(118deg, rgba(255,255,255,.30), rgba(255,255,255,.06) 19%, transparent 45%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.real-cabin-preview figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 5;
  width: max-content;
  max-width: calc(100% - 44px);
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  background: rgba(5,10,19,.64);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 900;
}
@keyframes rrOriginalScreen {
  0%, 27% { opacity: 1; transform: scale(1.02); }
  33%, 100% { opacity: 0; transform: scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .rr-original-screen { animation: none; opacity: 0; transform: none; }
  .rr-original-screen:first-child { opacity: 1; }
}

@media (max-width: 1040px) {
  .road-awareness-visual { justify-self: center; }
}

@media (max-width: 760px) {
  .road-awareness-visual { min-height: 500px; }
  .real-cabin-preview { min-height: 500px; border-radius: 30px; }
  .real-cabin-screen { right: 3%; width: min(360px, 58%); }
}

@media (max-width: 560px) {
  .road-awareness-visual { min-height: auto; }
  .real-cabin-preview { min-height: 520px; border-radius: 26px; }
  .real-cabin-photo { inset: -4% -34%; width: 168%; height: 112%; object-position: 54% 50%; }
  .real-cabin-screen {
    left: 50%;
    right: auto;
    top: 47%;
    width: min(318px, 84%);
    transform: translate(-50%, -50%) perspective(700px) rotateY(-4deg) rotateX(1deg);
  }
  .real-cabin-preview figcaption { left: 14px; right: 14px; bottom: 14px; max-width: calc(100% - 28px); white-space: normal; text-align: center; }
}

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

.site-assistant {
  position: fixed;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  justify-items: end;
  gap: 14px;
  color: #fff;
  font-family: var(--body);
}

.assistant-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 11px 16px 11px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(255,64,87,.95), rgba(117,22,37,.96) 46%, rgba(6,14,31,.96)),
    #081326;
  box-shadow: 0 28px 70px rgba(8,19,38,.30), 0 0 0 1px rgba(255,64,87,.10);
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.assistant-launcher:hover,
.assistant-launcher:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 34px 86px rgba(8,19,38,.36), 0 0 0 4px rgba(255,64,87,.13);
  outline: none;
}

.assistant-pulse {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, #fff, rgba(255,255,255,.84) 18%, transparent 19%),
    conic-gradient(from 210deg, #00e6c7, #fff, #ff4057, #00e6c7);
  box-shadow: inset 0 0 0 6px rgba(8,19,38,.72), 0 0 28px rgba(0,230,199,.28);
}

.assistant-pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(0,230,199,.48);
  border-radius: inherit;
  animation: assistantPulse 1.9s ease-out infinite;
}

.assistant-launcher-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.assistant-launcher-copy strong {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.assistant-launcher-copy small {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 800;
}

.assistant-panel {
  width: min(430px, calc(100vw - 28px));
  max-height: min(700px, calc(100vh - 110px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0,230,199,.22), transparent 24%),
    radial-gradient(circle at 94% 10%, rgba(255,64,87,.30), transparent 28%),
    linear-gradient(180deg, rgba(10,22,45,.96), rgba(5,10,19,.98));
  box-shadow: 0 38px 100px rgba(2,7,20,.44), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(22px);
}

.assistant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.assistant-kicker {
  color: #91fff0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.assistant-head h2 {
  max-width: 290px;
  margin: 7px 0 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.assistant-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.assistant-body {
  display: grid;
  gap: 10px;
  max-height: 310px;
  overflow: auto;
  padding: 18px 18px 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.24) transparent;
}

.assistant-message {
  max-width: 92%;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.48;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.assistant-message span { white-space: pre-wrap; }

.assistant-message-bot {
  justify-self: start;
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.08);
}

.assistant-message-user {
  justify-self: end;
  color: #081326;
  background: linear-gradient(135deg, #fff, #e8fff9);
}

.assistant-message-loading {
  min-width: 86px;
  color: #cfe9ff;
}

.assistant-message-loading span::after {
  content: "";
  display: inline-block;
  width: 24px;
  text-align: left;
  animation: assistantDots 1.1s steps(4, end) infinite;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 18px 18px;
}

.assistant-form textarea {
  resize: none;
  min-height: 52px;
  max-height: 120px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: inherit;
  outline: none;
}

.assistant-form textarea::placeholder { color: rgba(255,255,255,.48); }

.assistant-form textarea:focus {
  border-color: rgba(0,230,199,.64);
  box-shadow: 0 0 0 4px rgba(0,230,199,.10);
}

.assistant-form button {
  align-self: stretch;
  min-width: 72px;
  border: 0;
  border-radius: 18px;
  color: #081326;
  background: linear-gradient(135deg, #00e6c7, #fff);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0,230,199,.16);
}

.assistant-form button:disabled {
  opacity: .65;
  cursor: wait;
}

@keyframes assistantPulse {
  from { opacity: .78; transform: scale(.78); }
  to { opacity: 0; transform: scale(1.55); }
}

@keyframes assistantDots {
  0% { content: ""; }
  25% { content: "."; }
  50% { content: ".."; }
  75%, 100% { content: "..."; }
}

@media (max-width: 640px) {
  .site-assistant {
    right: 12px;
    left: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    justify-items: stretch;
  }
  .assistant-launcher { justify-content: center; width: 100%; }
  .assistant-panel { width: 100%; max-height: min(650px, calc(100vh - 96px)); border-radius: 24px; }
  .assistant-body { max-height: 250px; }
  .assistant-form { grid-template-columns: 1fr; }
  .assistant-form button { min-height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-pulse::after,
  .assistant-message-loading span::after {
    animation: none;
  }
}
