:root {
  --bg: #060606;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.1);
  --stroke: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: #a1a1a1;
  --accent: #ffffff;
  --accent-2: #8a8a8a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  --radius: 22px;
  font-family: -apple-system, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.05), transparent 36%),
    linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

.background { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particles span {
  position: absolute;
  top: -10%;
  left: var(--x);
  width: 2px;
  height: 140px;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.14));
  filter: blur(0.5px);
  animation: rain var(--d) linear infinite;
  opacity: 0.45;
}
@keyframes rain { to { transform: translateY(120vh); opacity: 0; } }
.orb {
  position: absolute; width: 460px; height: 460px; filter: blur(120px);
  opacity: 0.28; mix-blend-mode: screen;
  animation: drift 18s ease-in-out infinite alternate;
}
.orb-a { background: rgba(255, 255, 255, 0.45); top: -120px; left: -60px; }
.orb-b { background: rgba(255, 255, 255, 0.18); bottom: -140px; right: -80px; animation-delay: 4s; }

@keyframes drift { to { transform: translate(40px, 40px) scale(1.05); } }

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 36px;
  pointer-events: none;
}
.nav-menu {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  justify-self: stretch;
  pointer-events: auto;
}
.nav nav { display: flex; gap: 18px; justify-content: center; pointer-events: auto; }
.nav a {
  color: var(--muted); text-decoration: none; font-weight: 500;
  padding: 8px 12px; border-radius: 12px; transition: color 200ms, background 200ms;
}
.nav a:hover { color: var(--text); background: var(--panel); }
.logo { display: flex; align-items: center; pointer-events: auto; }
.logo-img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.28));
}
.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  pointer-events: auto;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav-toggle span + span {
  margin-top: 4px;
}
.nav-actions {
  justify-self: end;
  display: flex;
  gap: 10px;
  pointer-events: auto;
}
.nav .ghost { pointer-events: auto; }

button, .primary, .secondary, .ghost {
  cursor: pointer;
  border: none;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.primary {
  padding: 14px 18px; color: #050505; background: linear-gradient(120deg, var(--accent), var(--accent-2));
  background-size: 180% 180%;
  animation: gradientShift 6s ease infinite;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}
.secondary {
  padding: 14px 18px; color: var(--text); background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.ghost {
  padding: 10px 14px; color: var(--text); background: rgba(255,255,255,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 118px 36px 40px;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 10% 5% auto 5%;
  height: 30%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.08), rgba(255,255,255,0));
  filter: blur(60px);
  opacity: 0.45;
  animation: sweepLight 9s ease-in-out infinite;
  z-index: -1;
}
@keyframes sweepLight {
  0% { transform: translateX(-30%); opacity: 0.2; }
  50% { transform: translateX(20%); opacity: 0.55; }
  100% { transform: translateX(40%); opacity: 0.2; }
}
.hero-copy h1 { font-size: clamp(38px, 6vw, 64px); margin: 12px 0; line-height: 1.05; }
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-title__intro {
  display: block;
}
.hero-title__dynamic {
  display: inline-flex;
  align-items: center;
  min-height: 1.15em;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(255, 255, 255, 0.08);
  will-change: transform, opacity, filter;
}
.hero-title__dynamic.is-changing {
  animation: roleSwap 520ms ease;
}
@keyframes roleSwap {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    filter: blur(10px);
  }
  55% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
.hero .lede { color: var(--muted); max-width: 600px; }
.eyebrow { color: var(--accent); letter-spacing: 0.12em; font-size: 12px; text-transform: uppercase; }
.lede { font-size: 18px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 18px; }
.badge { color: var(--muted); font-size: 14px; padding: 8px 12px; border: 1px solid var(--stroke); border-radius: 12px; }

.hero-visual { display: flex; justify-content: center; }
.mini-map {
  position: relative;
  width: 420px;
  height: 320px;
  max-width: 94vw;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.05), transparent 45%),
    #111111;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.08);
}
.mini-map::before {
  content: "";
  position: absolute; inset: 10%;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  filter: blur(12px);
  opacity: 0.7;
}
.mini-map__canvas {
  position: absolute;
  inset: 16px;
}
.mini-map__canvas path {
  fill: none;
  stroke: url(#roadGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
  stroke-dasharray: 14 16;
  animation: dash 10s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -600; } }
.mini-map {
  --path: path("M20 210 C80 180 100 120 160 120 S260 60 300 80");
}
@keyframes spin { to { transform: rotate(360deg); } }
.navigator {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #cfcfcf);
  box-shadow:
    0 0 0 0 rgba(255,255,255,0.12),
    0 12px 24px rgba(0,0,0,0.26);
  offset-path: var(--path);
  offset-distance: 0%;
  animation: drive 12s ease-in-out infinite alternate;
}
.navigator::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  animation: spin 4s linear infinite;
}
@keyframes drive {
  0% { offset-distance: 0%; }
  50% { offset-distance: 55%; }
  100% { offset-distance: 100%; }
}
.ping {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.08);
  animation: ping 2.8s ease-out infinite;
}
.ping-a { top: 68%; left: 10%; animation-delay: 0.2s; }
.ping-b { top: 32%; right: 12%; animation-delay: 1.2s; background: var(--accent-2); box-shadow: 0 0 0 0 rgba(255,255,255,0.06); }
@keyframes ping { to { box-shadow: 0 0 0 26px rgba(255,255,255,0); transform: scale(1.6); opacity: 0; } }

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
.modal-backdrop.open { display: flex; }
.modal {
  width: min(460px, 90vw);
  background: rgba(18, 18, 18, 0.94);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.modal-title h3 { margin: 4px 0 0; }
.modal-title p { margin: 0; }
.close-modal { width: 42px; height: 42px; }
.modal form { display: grid; gap: 12px; }
.modal label { display: grid; gap: 6px; font-weight: 600; color: var(--text); }
.modal input,
.modal textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
}
.modal input:focus,
.modal textarea:focus { outline: 1px solid var(--accent-2); border-color: var(--accent-2); }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }
.modal-hint { color: var(--muted); margin: 0; font-size: 13px; text-align: right; }

.nav-page {
  position: relative;
  pointer-events: auto;
}
.nav-page .logo a,
.nav-page .ghost,
.nav-page nav,
.nav-page nav a {
  pointer-events: auto;
}
.nav-page > .ghost {
  justify-self: end;
  width: auto;
}

.page-shell {
  position: relative;
  z-index: 1;
  padding: 36px;
}
.page-hero {
  padding: 56px 0 28px;
  max-width: 760px;
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: start;
}
.support-panel,
.support-card,
.legal-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.support-panel {
  padding: 24px;
}
.support-panel h2,
.support-card h3,
.legal-card h2 {
  margin-top: 0;
}
.support-form {
  display: grid;
  gap: 14px;
}
.support-form label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
}
.support-form input,
.support-form textarea,
.support-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font: inherit;
}
.support-form select {
  appearance: none;
}
.support-form input:focus,
.support-form textarea:focus,
.support-form select:focus {
  outline: 1px solid rgba(255,255,255,0.4);
  border-color: rgba(255,255,255,0.4);
}
.support-sidebar {
  display: grid;
  gap: 18px;
}
.support-card {
  padding: 20px;
}
.support-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.legal {
  display: grid;
  gap: 18px;
}
.legal-card {
  padding: 22px 24px;
}
.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}
.legal-card a {
  color: var(--text);
}

.feature-grid {
  padding: 40px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
.card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}
.card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05), transparent 45%); opacity: 0; transition: opacity 220ms; }
.card:hover { transform: translateY(-6px); }
.card:hover::after { opacity: 1; }
.card h3 { margin: 8px 0; font-size: 22px; }
.tag { display: inline-flex; padding: 8px 10px; border-radius: 12px; background: rgba(255,255,255,0.08); margin-right: 8px; font-size: 13px; }
.pill { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,0.08); font-size: 13px; }
.sparkline { display: flex; gap: 6px; margin-top: 12px; }
.sparkline span { width: 10px; background: linear-gradient(180deg, var(--accent), var(--accent-2)); border-radius: 6px; animation: spark 1.6s ease-in-out infinite; }
.sparkline span:nth-child(odd) { animation-delay: 0.3s; }
@keyframes spark { 0%, 100% { height: 10px; opacity: 0.6; } 50% { height: 28px; opacity: 1; } }
.avatars { display: flex; gap: 10px; margin-top: 12px; }
.dot { width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); animation: float 3s ease-in-out infinite; animation-delay: calc(var(--d) * 0.2s); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.split {
  padding: 70px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.phone-showcase {
  padding: 44px 36px 70px;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.phone-showcase__copy {
  display: grid;
  gap: 18px;
}
.phone-showcase__copy h2,
.feature-matrix__intro h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}
.phone-showcase__stats {
  display: grid;
  gap: 12px;
}
.mini-stat {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: var(--panel);
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}
.mini-stat p {
  margin: 0;
  color: var(--muted);
}
.mini-stat__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.phone-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
  align-items: start;
  justify-items: center;
}
.phone {
  margin: 0;
  width: min(210px, 100%);
}
.phone-left {
  grid-column: 1;
  grid-row: 1;
  transform: rotate(-6deg);
}
.phone-center {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(0deg);
}
.phone-right {
  grid-column: 1 / span 2;
  grid-row: 2;
  justify-self: center;
  transform: rotate(6deg);
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 36px rgba(0,0,0,0.38));
}

.insight-rows {
  padding: 0 36px 70px;
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.insight-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
}
.insight-row h3 {
  margin: 4px 0 0;
}
.insight-row p:last-child {
  margin: 0;
  color: var(--muted);
}

.feature-matrix {
  padding: 0 36px 70px;
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.feature-matrix__intro {
  display: grid;
  gap: 8px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.feature-pill {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.speed-story {
  padding: 0 36px 70px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.speed-story__copy {
  display: grid;
  gap: 18px;
}
.speed-story__copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 54px);
  line-height: 1.02;
}
.speed-story__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.speed-visual__card {
  height: 100%;
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.24);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}
.speed-visual__labels,
.speed-visual__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.speed-visual__labels {
  color: var(--muted);
  font-size: 14px;
}
.speed-visual__footer strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}
.speed-lane {
  position: relative;
  height: 100%;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    #0b0b0b;
}
.speed-lane__track {
  position: absolute;
  inset: 18px 34px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.18) 48%, rgba(255,255,255,0.18) 52%, transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}
.speed-lane__track::before,
.speed-lane__track::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 18px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  animation: laneDash 1.3s linear infinite;
}
.speed-lane__track::before { top: 20px; }
.speed-lane__track::after { bottom: 20px; animation-delay: 0.65s; }
@keyframes laneDash {
  0% { opacity: 0.15; transform: translateX(-50%) translateY(-8px); }
  50% { opacity: 1; }
  100% { opacity: 0.15; transform: translateX(-50%) translateY(8px); }
}
.speed-lane__car {
  position: absolute;
  width: 74px;
  height: 34px;
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(180,180,180,0.95));
  box-shadow: 0 12px 24px rgba(0,0,0,0.28);
}
.speed-lane__car::before,
.speed-lane__car::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #050505;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.16);
}
.speed-lane__car::before { left: 10px; }
.speed-lane__car::after { right: 10px; }
.speed-lane__car--base {
  left: 24%;
  top: 132px;
  animation: cruiseCar 4.8s ease-in-out infinite;
}
.speed-lane__car--fast {
  right: 20%;
  top: 68px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(220,220,220,0.96));
  animation: fastCar 4.8s ease-in-out infinite;
}
@keyframes cruiseCar {
  0%, 100% { transform: translateX(-10px); }
  50% { transform: translateX(10px); }
}
@keyframes fastCar {
  0%, 100% { transform: translateX(-18px); }
  50% { transform: translateX(18px); }
}

.timeline { border-left: 1px solid var(--stroke); padding-left: 18px; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.step .dot { width: 12px; height: 12px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,255,255,0.04); }

.footer {
  padding: 24px 36px 40px;
  border-top: 1px solid var(--stroke);
  color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 480ms ease, transform 520ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  .background .orb,
  .background .particles,
  .hero::after {
    display: none;
  }
  .mini-map__canvas path,
  .navigator,
  .navigator::after,
  .ping,
  .dot,
  .sparkline span,
  .primary {
    animation: none !important;
  }
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 16px;
    align-items: center;
    gap: 0;
    pointer-events: auto;
  }
  .logo-img { height: 30px; max-width: 120px; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(18,18,18,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 44px rgba(0,0,0,0.32);
    backdrop-filter: blur(14px);
  }
  .nav.is-open .nav-menu {
    display: grid;
  }
  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav nav,
  .nav-actions {
    display: grid;
    gap: 8px;
    justify-self: stretch;
  }
  .nav nav a,
  .nav-actions a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
  }
  .hero { padding: 96px 18px 32px; }
  .page-shell { padding: 18px; }
  .page-hero { padding: 72px 0 22px; }
  .page-hero h1 { font-size: clamp(34px, 10vw, 52px); }
  .support-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: clamp(32px, 9vw, 46px); }
  .hero-title { gap: 6px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .mini-map { width: 100%; height: 260px; }
  .feature-grid { padding: 28px 18px; }
  .speed-story {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }
  .speed-story__stats {
    grid-template-columns: 1fr;
  }
  .phone-showcase,
  .insight-rows,
  .feature-matrix { padding-left: 18px; padding-right: 18px; }
  .phone-showcase {
    grid-template-columns: 1fr;
    padding-top: 28px;
    gap: 24px;
  }
  .phone-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    justify-items: center;
    max-width: 320px;
    margin: 0 auto;
  }
  .phone {
    width: min(132px, 100%);
    transform: none;
  }
  .phone-left,
  .phone-center,
  .phone-right {
    justify-self: center;
  }
  .phone-left {
    grid-column: 1;
    grid-row: 1;
  }
  .phone-center {
    grid-column: 2;
    grid-row: 1;
  }
  .phone-right {
    grid-column: 1 / span 2;
    grid-row: 2;
  }
  .insight-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }
  .split { padding: 50px 18px; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
