:root {
  --bg: #050505;
  --panel: #0d0d0f;
  --panel-2: #151518;
  --text: #f7f7f8;
  --muted: #9a9aa3;
  --line: rgba(255,255,255,.11);
  --violet: #8d55ff;
  --violet-bright: #ae83ff;
  --cyan: #50e8dc;
  --orange: #ff7948;
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
a { color: inherit; text-decoration: none; }
img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}
button { font: inherit; }

.ambient {
  position: fixed;
  pointer-events: none;
  filter: blur(100px);
  opacity: .18;
  z-index: -1;
  border-radius: 50%;
}
.ambient-one { width: 420px; height: 420px; background: var(--violet); top: 18vh; right: -220px; }
.ambient-two { width: 300px; height: 300px; background: #294dff; top: 160vh; left: -230px; }

.site-header {
  width: min(calc(100% - 48px), var(--max));
  height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-weight: 700; font-size: 22px; letter-spacing: -.04em; }
.brand-mark { width: 35px; height: 35px; overflow: visible; }
.brand-mark path { fill: none; stroke: currentColor; stroke-width: 5; stroke-linecap: round; }
.brand-mark circle { fill: currentColor; }
.nav-links { display: flex; gap: 34px; font-size: 14px; color: #b6b6bd; }
.nav-links a, .footer-links a { transition: color .2s ease; }
.nav-links a:hover, .footer-links a:hover { color: white; }
.site-header > .button { justify-self: end; }
.menu-button { display: none; background: none; border: 0; color: white; padding: 10px; }
.menu-button span { display: block; width: 22px; height: 1px; margin: 6px 0; background: currentColor; }

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #fff;
  color: #050505;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 35px rgba(255,255,255,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(255,255,255,.14); }
.button svg { width: 19px; height: 19px; fill: currentColor; }
.button-small { min-height: 42px; padding: 0 19px; font-size: 13px; }
.button-light { min-width: 260px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #bdbdc5; font-size: 14px; font-weight: 600; }
.text-link span { font-size: 17px; }

.hero {
  width: min(calc(100% - 48px), var(--max));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  padding: 68px 0 96px;
}
.hero-copy { position: relative; z-index: 3; padding-bottom: 30px; }
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 6vw, 94px);
  line-height: .96;
  letter-spacing: -.075em;
  font-weight: 700;
}
.hero h1 span { color: #85858d; }
.hero-copy > p {
  max-width: 530px;
  margin: 32px 0 0;
  color: #aaaab2;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.hero-copy .beta-note { display: flex; align-items: center; gap: 9px; margin-top: 26px; font-size: 12px; color: #717178; }
.beta-note span { width: 7px; height: 7px; background: #71e397; border-radius: 50%; box-shadow: 0 0 14px #71e397; }

.hero-product { min-height: 600px; position: relative; perspective: 1500px; }
.hero-product::before {
  content: "";
  position: absolute;
  inset: 7% -18% 0 5%;
  background: radial-gradient(circle at center, rgba(115,67,255,.2), transparent 63%);
  filter: blur(10px);
}
.phone {
  position: absolute;
  background: #0d0d0f;
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px;
  border-radius: 48px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,.7), inset 0 0 0 2px rgba(255,255,255,.03);
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 39px; }
.phone-front { width: 270px; height: auto; aspect-ratio: 854 / 2156; right: 7%; top: 0; transform: rotateY(-8deg) rotateZ(2deg); }
.phone-front img { object-position: center; }
.phone-back { width: 270px; height: auto; aspect-ratio: 853 / 1844; left: 3%; top: 50px; transform: rotateY(12deg) rotateZ(-5deg); opacity: .72; }
.phone-back img { object-fit: cover; object-position: top; }
.route { position: absolute; border: solid var(--violet); border-width: 0 0 4px 4px; filter: drop-shadow(0 0 8px var(--violet)); opacity: .8; }
.route-one { width: 150px; height: 170px; right: 37%; top: 110px; transform: skewY(-25deg) rotate(-10deg); }
.route-two { width: 140px; height: 130px; right: -5%; bottom: 80px; transform: skewY(28deg); opacity: .4; }
.map-pulse { position: absolute; width: 12px; height: 12px; background: #fff; border: 4px solid var(--violet); border-radius: 50%; box-shadow: 0 0 0 15px rgba(141,85,255,.16), 0 0 25px var(--violet); }
.pulse-one { top: 95px; right: 35%; }
.pulse-two { bottom: 72px; right: 3%; }

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: #85858e;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .17em;
}
.signal-strip i { width: 3px; height: 3px; background: #3d3d43; border-radius: 50%; }

.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 150px 0; }
.section-copy { max-width: 510px; }
.section-number { margin: 0 0 24px; color: #777781; font-size: 11px; letter-spacing: .18em; font-weight: 700; }
.section h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 650;
}
.section-copy > p:not(.section-number), .carplay-heading > p {
  margin: 28px 0 0;
  color: #9999a2;
  line-height: 1.75;
  font-size: 17px;
}

.product { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: center; }
.radar-stage {
  height: auto;
  aspect-ratio: 1706 / 1532;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #09090b;
  box-shadow: 0 45px 100px rgba(0,0,0,.48);
}
.radar-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.35), transparent 35%), linear-gradient(0deg, rgba(5,5,5,.5), transparent 45%); pointer-events: none; }
.radar-stage img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.floating-label { position: absolute; z-index: 2; padding: 12px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(7,7,9,.76); backdrop-filter: blur(12px); font-size: 12px; font-weight: 700; box-shadow: 0 15px 40px #000; }
.label-live { top: 24px; left: 24px; text-transform: uppercase; letter-spacing: .11em; }
.label-live span { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.label-event { right: 22px; bottom: 22px; color: #ff9b71; }

.privacy { display: grid; grid-template-columns: 1.05fr .95fr; gap: 120px; align-items: center; border-top: 1px solid var(--line); }
.privacy-media { position: relative; min-height: 680px; display: grid; place-items: center; }
.privacy-phone { width: 340px; height: 650px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 48px; padding: 8px; background: #0b0b0d; box-shadow: 0 45px 100px #000; position: relative; z-index: 2; }
.privacy-phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 39px; }
.privacy-orbit { position: absolute; border: 1px solid rgba(141,85,255,.18); border-radius: 50%; }
.orbit-a { width: 540px; height: 540px; }
.orbit-b { width: 700px; height: 700px; }
.mode-list { list-style: none; padding: 0; margin: 44px 0 0; border-top: 1px solid var(--line); }
.mode-list li { display: grid; grid-template-columns: 36px 1fr auto; gap: 14px; align-items: center; min-height: 66px; border-bottom: 1px solid var(--line); }
.mode-list strong { font-size: 14px; }
.mode-list small { color: #6f6f77; }
.mode-icon { width: 22px; height: 22px; border: 2px solid #888894; border-radius: 50%; position: relative; }
.mode-icon.live { border-color: var(--cyan); box-shadow: 0 0 15px rgba(80,232,220,.3); }
.mode-icon.blurred { border-style: dotted; }
.mode-icon.frozen::before { content: "✣"; position: absolute; inset: -2px; display: grid; place-items: center; font-size: 13px; color: #9a9aa3; }
.mode-icon.invisible { opacity: .4; border-radius: 50% 5px; transform: rotate(45deg) scale(.75); }

.vibe { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 110px; border-top: 1px solid var(--line); }
.vibe-phone { justify-self: center; width: 370px; height: 650px; border-radius: 50px; overflow: hidden; padding: 8px; background: #0a0a0c; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 45px 100px #000; }
.vibe-phone img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 41px; }
.vibe-scale { margin-top: 45px; display: grid; grid-template-columns: 66px 1fr; align-items: center; gap: 20px; }
.vibe-emoji { font-size: 48px; filter: drop-shadow(0 0 14px rgba(255,92,31,.35)); }
.vibe-scale strong { font-size: 18px; }
.scale-track { height: 4px; margin-top: 16px; background: #27272c; position: relative; }
.scale-track span { position: absolute; inset: 0 18% 0 0; background: linear-gradient(90deg, #45454c, #fff); }
.scale-track b { position: absolute; width: 13px; height: 13px; right: 16%; top: -5px; border-radius: 50%; background: #fff; box-shadow: 0 0 15px #fff; }
.scale-labels { display: flex; justify-content: space-between; margin-top: 10px; color: #595960; text-transform: uppercase; }

.carplay { border-top: 1px solid var(--line); }
.carplay-heading { display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 80px; }
.carplay-heading > p { margin-bottom: 8px; }
.carplay-frame { margin-top: 70px; padding: 10px; background: #111114; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; box-shadow: 0 45px 120px #000; }
.carplay-frame img { width: 100%; border-radius: 17px; }

.beta { width: min(calc(100% - 48px), 1320px); }
.beta-card {
  padding: 85px;
  background: radial-gradient(circle at 80% 20%, rgba(141,85,255,.24), transparent 35%), #121214;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 40px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 120px;
  overflow: hidden;
  position: relative;
}
.beta-copy { position: relative; z-index: 2; }
.beta-copy > p:not(.section-number) { max-width: 520px; color: #9e9ea7; line-height: 1.75; font-size: 17px; }
.beta-copy .button { margin-top: 28px; }
.beta-copy .testflight-help { font-size: 11px !important; color: #626269 !important; margin: 14px 0 0 20px; }
.beta-privacy-link {
  display: inline-block;
  margin: 16px 0 0 20px;
  color: #aaaab2;
  font-size: 12px;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.22);
  text-underline-offset: 4px;
}
.beta-privacy-link:hover { color: white; }
.beta-steps { list-style: none; padding: 0; margin: 0; align-self: center; }
.beta-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.beta-steps li:last-child { border: 0; }
.beta-steps li > span { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: var(--violet-bright); font-weight: 700; }
.beta-steps div { display: flex; flex-direction: column; gap: 7px; }
.beta-steps strong { font-size: 15px; }
.beta-steps small { color: #777780; line-height: 1.5; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 120px; border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; min-height: 86px; display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary span { color: #777780; font-size: 25px; font-weight: 300; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -8px 60px 28px 0; color: #85858e; line-height: 1.7; font-size: 14px; }

footer {
  width: min(calc(100% - 48px), var(--max));
  min-height: 150px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #74747c;
  font-size: 12px;
}
footer > p { justify-self: center; }
.footer-links { justify-self: end; display: flex; gap: 24px; }

.legal-page { background: #070708; }
.legal-header { grid-template-columns: 1fr auto; }
.legal-back {
  justify-self: end;
  color: #bdbdc5;
  font-size: 13px;
  font-weight: 600;
}
.legal-back span { margin-left: 7px; color: var(--violet-bright); }
.legal-main {
  width: min(calc(100% - 48px), 1120px);
  margin: 0 auto;
  padding-bottom: 130px;
}
.legal-hero {
  max-width: 820px;
  padding: 110px 0 100px;
}
.legal-hero h1 {
  margin: 0;
  font-size: clamp(68px, 9vw, 122px);
  line-height: .86;
  letter-spacing: -.075em;
  font-weight: 700;
}
.legal-hero h1 span { color: #777780; }
.legal-intro {
  max-width: 700px;
  margin: 40px 0 0;
  color: #aaaab2;
  font-size: 19px;
  line-height: 1.7;
}
.legal-date {
  margin: 28px 0 0;
  color: #626269;
  font-size: 12px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 100px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 70px;
}
.legal-toc {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #777780;
  font-size: 12px;
}
.legal-toc strong {
  margin-bottom: 8px;
  color: #f0f0f2;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.legal-toc a { transition: color .2s ease; }
.legal-toc a:hover { color: white; }
.legal-content { min-width: 0; }
.legal-content > section {
  padding: 0 0 68px;
  margin: 0 0 68px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.legal-content h2 {
  margin: 0 0 24px;
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.legal-content p,
.legal-content li {
  color: #a0a0a9;
  font-size: 15px;
  line-height: 1.8;
}
.legal-content p { margin: 0 0 20px; }
.legal-content ul {
  margin: 24px 0;
  padding-left: 22px;
}
.legal-content li { padding: 5px 0 5px 8px; }
.legal-content strong { color: #ededf0; font-weight: 600; }
.legal-content a {
  color: #c6adff;
  text-decoration: underline;
  text-decoration-color: rgba(198,173,255,.35);
  text-underline-offset: 4px;
}
.legal-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.legal-modes > div {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0d0d0f;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
}
.legal-modes .mode-icon { width: 20px; height: 20px; }
.legal-modes p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}
.legal-contact {
  padding: 48px !important;
  border: 1px solid rgba(141,85,255,.24) !important;
  border-radius: 26px;
  background: radial-gradient(circle at 90% 20%, rgba(141,85,255,.18), transparent 40%), #101012;
}
.legal-contact .section-number { margin-bottom: 17px; }
.legal-contact p:last-child { margin-bottom: 0; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 30px);
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(22,22,25,.96);
  box-shadow: 0 16px 50px #000;
  color: #d4d4d8;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 50;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast code { color: var(--violet-bright); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > .button { display: none; }
  .menu-button { display: block; justify-self: end; }
  .nav-links { position: absolute; left: 0; right: 0; top: 75px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: rgba(10,10,12,.96); backdrop-filter: blur(20px); flex-direction: column; gap: 0; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .2s; }
  .nav-links a { padding: 14px; }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-product { margin-top: 50px; min-height: 680px; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-copy .beta-note { justify-content: center; }
  .phone-front { right: 18%; }
  .phone-back { left: 15%; }
  .product, .privacy, .vibe, .faq { grid-template-columns: 1fr; }
  .product, .privacy, .vibe, .faq { gap: 70px; }
  .privacy .section-copy { order: -1; }
  .carplay-heading { grid-template-columns: 1fr; gap: 20px; }
  .carplay-heading > p { max-width: 600px; }
  .beta-card { padding: 60px; grid-template-columns: 1fr; gap: 50px; }
  footer { grid-template-columns: 1fr 1fr; gap: 16px; padding: 40px 0; }
  footer > p { display: none; }
  .legal-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 50px; }
}

@media (max-width: 640px) {
  :root { --radius: 22px; }

  .site-header, .hero, .section, footer {
    width: calc(100% - 32px);
    max-width: 100%;
  }

  .site-header {
    height: 68px;
    position: sticky;
    top: 0;
    background: rgba(5,5,5,.86);
    backdrop-filter: blur(18px);
  }

  .brand { font-size: 19px; gap: 8px; }
  .brand-mark { width: 30px; height: 30px; }
  .menu-button { min-width: 44px; min-height: 44px; padding: 10px 8px; }
  .nav-links { top: 62px; padding: 10px; border-radius: 16px; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; }

  .hero {
    min-height: auto;
    padding: 54px 0 56px;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .hero h1 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(45px, 13vw, 58px);
    line-height: .98;
    letter-spacing: -.065em;
  }

  .hero h1 span { display: block; }

  .hero-copy > p {
    width: 100%;
    min-width: 0;
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 17px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 56px;
  }

  .hero-copy .beta-note {
    justify-content: center;
    margin-top: 23px;
    font-size: 10px;
    line-height: 1.4;
  }

  .hero-product {
    width: 100%;
    min-height: 560px;
    margin-top: 38px;
  }

  .hero-product::before { inset: 8% -8% 4%; opacity: .75; }
  .phone { border-radius: 32px; padding: 6px; }
  .phone img { border-radius: 26px; }
  .phone-front { width: 224px; right: -2px; top: 0; }
  .phone-back { width: 196px; left: -4px; top: 104px; opacity: .76; }
  .route-one { width: 92px; height: 120px; right: 28%; top: 86px; }
  .route-two { display: none; }
  .pulse-one { top: 73px; right: 27%; }
  .pulse-two { display: none; }

  .signal-strip {
    min-height: 112px;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 18px 12px;
    overflow: visible;
    white-space: normal;
    text-align: center;
    font-size: 9px;
    line-height: 1.35;
  }

  .signal-strip i { display: none; }
  .section { padding: 78px 0; }
  .section-number { margin-bottom: 17px; font-size: 10px; }

  .section h2 {
    font-size: clamp(38px, 11.5vw, 46px);
    line-height: 1.03;
    letter-spacing: -.055em;
  }

  .section-copy > p:not(.section-number), .carplay-heading > p {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.65;
  }

  .product, .privacy, .vibe, .faq { gap: 42px; }

  .radar-stage {
    width: 100%;
    height: auto;
    aspect-ratio: 1706 / 1532;
    border-radius: 22px;
  }

  .radar-stage img {
    object-fit: cover;
    transform: none;
  }

  .floating-label { padding: 10px 12px; font-size: 10px; border-radius: 11px; }
  .label-live { top: 12px; left: 12px; }
  .label-event { right: 12px; bottom: 12px; }

  .privacy { gap: 42px; }
  .privacy-media { min-height: 0; width: 100%; }

  .privacy-phone {
    width: min(100%, 310px);
    height: auto;
    aspect-ratio: 709 / 1536;
    border-radius: 38px;
    padding: 6px;
  }

  .privacy-phone img {
    object-fit: contain;
    border-radius: 31px;
  }

  .privacy-orbit { display: none; }
  .mode-list { margin-top: 34px; }

  .mode-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 70px;
  }

  .mode-list small {
    grid-column: 2;
    margin-top: -22px;
    font-size: 11px;
  }

  .vibe-phone {
    width: min(100%, 310px);
    height: auto;
    aspect-ratio: 709 / 1536;
    border-radius: 38px;
    padding: 6px;
  }

  .vibe-phone img {
    object-fit: contain;
    border-radius: 31px;
  }

  .vibe-scale {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    margin-top: 34px;
  }

  .vibe-emoji { font-size: 38px; }
  .vibe-scale strong { font-size: 16px; }

  .carplay-frame {
    width: 100%;
    margin-top: 38px;
    overflow: hidden;
    padding: 5px;
    border-radius: 16px;
  }

  .carplay-frame img {
    width: 100%;
    max-width: 100%;
    transform: none;
    border-radius: 11px;
  }

  .beta {
    width: calc(100% - 20px);
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .beta-card {
    padding: 42px 22px;
    border-radius: 26px;
    gap: 38px;
  }

  .beta-copy > p:not(.section-number) { font-size: 15px; line-height: 1.65; }
  .beta-copy .button { width: 100%; min-width: 0; min-height: 56px; padding-inline: 15px; font-size: 12px; }
  .beta-copy .testflight-help { margin-left: 0; text-align: center; }
  .beta-privacy-link { display: block; margin-left: 0; text-align: center; }
  .beta-steps li { grid-template-columns: 40px minmax(0, 1fr); gap: 14px; }

  .faq { gap: 38px; }
  summary { min-height: 76px; gap: 16px; font-size: 14px; line-height: 1.35; }
  details p { margin-right: 18px; }

  footer {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 42px 0;
    text-align: center;
  }

  footer .brand, .footer-links { justify-self: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 18px; }
  .toast { width: calc(100% - 32px); text-align: center; }

  .legal-header { position: relative; }
  .legal-back { font-size: 12px; }
  .legal-main {
    width: calc(100% - 32px);
    padding-bottom: 72px;
  }
  .legal-hero { padding: 68px 0 62px; }
  .legal-hero h1 { font-size: clamp(62px, 20vw, 82px); }
  .legal-intro {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.65;
  }
  .legal-date { line-height: 1.6; }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
  }
  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0c0c0e;
  }
  .legal-toc strong { grid-column: 1 / -1; }
  .legal-toc a { font-size: 11px; line-height: 1.4; }
  .legal-content > section {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
  .legal-content h2 { margin-bottom: 20px; font-size: 32px; }
  .legal-content p,
  .legal-content li { font-size: 14px; line-height: 1.72; }
  .legal-modes { grid-template-columns: 1fr; }
  .legal-contact { padding: 30px 24px !important; }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 43px; }
  .hero-product { min-height: 515px; }
  .phone-front { width: 205px; }
  .phone-back { width: 177px; top: 96px; }
  .section h2 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
