:root {
  color-scheme: light;
  --black: #0b0b0e;
  --black-soft: #17171d;
  --ink: #141419;
  --ink-soft: #494950;
  --muted: #74747d;
  --line: #dedee5;
  --line-dark: rgba(255, 255, 255, 0.16);
  --paper: #ffffff;
  --paper-soft: #f4f4f7;
  --violet: #8658f5;
  --violet-dark: #7042e2;
  --pink: #ff4c98;
  --gold: #f3bf43;
  --max: 1240px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
dl,
figure,
ol,
ul {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  min-height: 74px;
  padding: 12px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line-dark);
  background: rgba(11, 11, 14, 0.94);
  color: #fff;
  backdrop-filter: blur(18px);
}

.site-header[data-compact="true"] {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.brand span {
  font-size: 1.02rem;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links {
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
}

.nav-links a,
.footer-links a,
.text-link,
.contact-table a,
.legal-nav a,
.back-link,
.doc-contact-links a {
  transition: color 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.contact-table a:hover,
.legal-nav a:hover,
.back-link:hover,
.doc-contact-links a:hover {
  color: var(--pink);
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
}

.language-control select {
  min-height: 40px;
  max-width: 172px;
  padding: 0 34px 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: #1c1c22;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 17px;
  border-radius: 6px;
  background: #fff;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 820;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, 0.96fr);
  gap: 48px;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  min-height: max(540px, calc(100svh - 190px));
  margin: 0 auto;
  padding: 30px 0 28px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero h1 {
  margin: 0;
  font-size: 7.8rem;
  font-weight: 900;
  line-height: 0.82;
}

.hero-statement {
  max-width: 650px;
  margin: 28px 0 0;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 720;
  line-height: 1.16;
  text-wrap: balance;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 820;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--violet);
  color: #fff;
}

.button-primary:hover {
  background: var(--violet-dark);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.button-ghost:hover {
  background: #fff;
  color: var(--black);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 760;
  list-style: none;
  text-transform: uppercase;
}

.hero-meta li {
  position: relative;
}

.hero-meta li + li::before {
  position: absolute;
  left: -13px;
  color: var(--pink);
  content: "/";
}

.hero-stage {
  position: relative;
  min-height: 490px;
}

.stage-grid {
  position: absolute;
  top: 30px;
  right: -52px;
  width: 510px;
  height: 442px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(-4deg);
}

.device {
  overflow: hidden;
  margin: 0;
  border: 7px solid #f6f6f8;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage .device {
  position: absolute;
  aspect-ratio: 9 / 16;
}

.device-back {
  top: 74px;
  left: 18px;
  z-index: 1;
  width: 212px;
  transform: rotate(-6deg);
}

.device-main {
  top: 4px;
  right: 72px;
  z-index: 2;
  width: 270px;
}

.device-front {
  right: -12px;
  bottom: 16px;
  z-index: 3;
  width: 180px;
  transform: rotate(5deg);
}

.hero-rail {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  overflow: hidden;
  padding: 0 24px;
  border-top: 1px solid var(--line-dark);
  background: #121217;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-rail span::before {
  margin-right: 24px;
  color: var(--gold);
  content: "✦";
}

.feature-index,
.story,
.safety-section,
.legal-section,
.contact-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.feature-index {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 96px;
  padding: 122px 0 130px;
}

.section-number {
  margin: 0 0 24px;
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.section-intro h2,
.screens-heading h2,
.safety-heading h2,
.legal-heading h2,
.contact-heading h2 {
  margin: 0;
  font-size: 3.65rem;
  line-height: 1.02;
  text-wrap: balance;
}

.section-intro > p:last-child,
.screens-heading > p:last-child,
.safety-heading > p:last-child,
.legal-heading > p:last-child,
.contact-heading > p:last-child {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.feature-lines {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.feature-lines li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.feature-lines span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.feature-lines strong {
  font-size: 1.08rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 90px;
  align-items: center;
  min-height: 760px;
  padding: 112px 0;
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.story-copy h2 {
  margin: 0;
  font-size: 4.25rem;
  line-height: 1;
  text-wrap: balance;
}

.story-copy > p:not(.section-number) {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  margin-top: 34px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 820;
}

.text-link:hover {
  color: var(--violet-dark);
  border-color: var(--violet-dark);
}

.story-visual,
.premium-visual {
  position: relative;
  min-height: 590px;
}

.story-visual .device,
.premium-visual .device,
.voice-visual .device {
  position: absolute;
  aspect-ratio: 9 / 16;
}

.discovery-visual::before {
  position: absolute;
  inset: 54px 28px 32px 0;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  content: "";
}

.device-discovery-primary {
  top: 0;
  right: 60px;
  z-index: 2;
  width: 298px;
}

.device-discovery-secondary {
  bottom: 0;
  left: 22px;
  z-index: 1;
  width: 232px;
  transform: rotate(-4deg);
}

.story-voice {
  position: relative;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(320px, 0.78fr) minmax(430px, 1.22fr);
  gap: 80px;
  min-height: 820px;
  padding: 110px max(22px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: var(--black);
  color: #fff;
}

.voice-backdrop {
  position: absolute;
  inset: 0 0 0 42%;
  background-image: linear-gradient(90deg, var(--black), transparent 40%), url("./assets/screenshots/03-voice-room.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.22;
}

.story-voice .section-number {
  color: var(--pink);
}

.story-voice .story-copy > p:not(.section-number) {
  color: rgba(255, 255, 255, 0.62);
}

.voice-visual {
  position: relative;
  z-index: 2;
  min-height: 590px;
}

.voice-visual::after {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: 58%;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
  content: "";
}

.device-voice {
  top: 0;
  left: 22%;
  z-index: 2;
  width: 310px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.56);
}

.story-premium {
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
}

.premium-visual::before {
  position: absolute;
  inset: 50px 0 36px 46px;
  background: #f5f0ff;
  content: "";
}

.premium-visual::after {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: 34%;
  height: 12px;
  background: var(--gold);
  content: "";
}

.device-store {
  top: 56px;
  left: 18px;
  z-index: 1;
  width: 250px;
  transform: rotate(-4deg);
}

.device-vip {
  top: 0;
  right: 58px;
  z-index: 2;
  width: 292px;
  border-color: #242127;
}

.screens-section {
  padding: 118px max(22px, calc((100vw - var(--max)) / 2)) 128px;
  overflow: hidden;
  background: #151519;
  color: #fff;
}

.screens-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 780px);
  gap: 26px;
  align-items: start;
  margin-bottom: 72px;
}

.screens-heading .section-number {
  color: var(--gold);
}

.screens-heading h2 {
  font-size: 3.8rem;
}

.screen-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(210px, 1fr));
  gap: 24px;
  align-items: end;
}

.screen-shot {
  margin: 0;
}

.screen-shot:nth-child(even) {
  transform: translateY(34px);
}

.screen-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 5px solid #2c2c33;
  border-radius: 26px;
  object-fit: cover;
}

.screen-shot figcaption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 760;
}

.safety-section {
  padding: 130px 0 140px;
}

.safety-heading {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
}

.safety-heading .section-number {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.safety-heading h2 {
  font-size: 4.35rem;
}

.safety-heading > p:last-child {
  align-self: end;
  margin: 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 96px;
  border-top: 1px solid var(--ink);
}

.trust-list article {
  min-height: 310px;
  padding: 28px 32px 12px 0;
  border-right: 1px solid var(--line);
}

.trust-list article + article {
  padding-left: 32px;
}

.trust-list article:last-child {
  border-right: 0;
}

.trust-list span {
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 820;
}

.trust-list h3 {
  margin: 88px 0 0;
  font-size: 1.5rem;
}

.trust-list p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
  width: 100%;
  max-width: none;
  padding: 126px max(22px, calc((100vw - var(--max)) / 2)) 134px;
  background: var(--paper-soft);
}

.legal-heading {
  max-width: 500px;
}

.legal-heading h2 {
  font-size: 3.85rem;
}

.legal-list {
  border-top: 1px solid var(--ink);
}

.legal-list a {
  display: grid;
  grid-template-columns: 42px minmax(180px, 0.82fr) minmax(220px, 1.18fr) 22px;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.legal-list a:hover {
  padding: 0 8px;
  color: var(--violet-dark);
}

.legal-list span {
  color: var(--muted);
  font-size: 0.72rem;
}

.legal-list strong {
  font-size: 1rem;
}

.legal-list small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.legal-list b {
  font-size: 1.1rem;
  font-weight: 500;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 70px;
  align-items: center;
  padding: 76px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--violet);
  color: #fff;
}

.download-brand {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.download-brand img {
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
}

.download-brand h2 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.05;
}

.download-brand p {
  max-width: 600px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.store-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: var(--black);
}

.store-item svg {
  width: 26px;
}

.store-item span {
  display: grid;
  gap: 2px;
}

.store-item small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.58rem;
  font-weight: 700;
}

.store-item strong {
  font-size: 0.95rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 96px;
  padding: 126px 0 136px;
}

.contact-heading h2 {
  font-size: 3.75rem;
}

.contact-table {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.contact-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.contact-table dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 720;
}

.contact-table dd {
  margin: 0;
  font-weight: 780;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 46px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--black);
  color: #fff;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand div {
  display: grid;
  gap: 5px;
}

.footer-brand span,
.copyright {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.footer-links {
  justify-content: flex-end;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.62);
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

noscript {
  display: block;
  padding: 12px 20px;
  background: #fff4c8;
  color: var(--ink);
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal document page */

.legal-page {
  background: var(--paper-soft);
}

.legal-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 54px 0 90px;
}

.legal-sidebar {
  position: sticky;
  top: 102px;
  align-self: start;
}

.legal-sidebar .section-number,
.legal-sidebar .eyebrow {
  margin-bottom: 18px;
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.legal-nav {
  display: grid;
  border-top: 1px solid var(--ink);
}

.legal-nav a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 720;
}

.legal-nav a[aria-current="page"] {
  color: var(--violet-dark);
}

.legal-reader {
  padding: 46px 54px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-reader-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.back-link {
  color: var(--violet-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.doc-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-reader h1 {
  margin: 0 0 34px;
  font-size: 3.25rem;
  line-height: 1.04;
}

.doc-body {
  display: grid;
  gap: 26px;
}

.doc-body h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.doc-body p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.86;
  white-space: pre-line;
}

.doc-contact {
  margin-top: 42px;
  padding: 26px;
  border-radius: 6px;
  background: var(--paper-soft);
}

.doc-contact h2 {
  margin: 0 0 12px;
}

.doc-contact p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.doc-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.doc-contact-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font-size: 0.84rem;
  font-weight: 780;
}

:dir(rtl) .hero-copy,
:dir(rtl) .section-intro,
:dir(rtl) .story-copy,
:dir(rtl) .screens-heading,
:dir(rtl) .safety-heading,
:dir(rtl) .legal-heading,
:dir(rtl) .contact-heading,
:dir(rtl) .legal-reader {
  text-align: right;
}

:dir(rtl) .hero-meta li + li::before {
  right: -13px;
  left: auto;
}

:dir(rtl) .trust-list article {
  padding-right: 32px;
  padding-left: 0;
  border-right: 0;
  border-left: 1px solid var(--line);
}

:dir(rtl) .trust-list article:first-child {
  padding-right: 0;
}

:dir(rtl) .trust-list article:last-child {
  border-left: 0;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: 6.4rem;
  }

  .hero-statement {
    font-size: 1.72rem;
  }

  .device-main {
    right: 52px;
    width: 260px;
  }

  .device-back {
    left: 0;
    width: 205px;
  }

  .device-front {
    right: -6px;
    width: 174px;
  }

  .feature-index,
  .story,
  .safety-heading,
  .legal-section,
  .contact-section {
    gap: 58px;
  }

  .screen-track {
    grid-template-columns: repeat(5, 220px);
    overflow-x: auto;
    padding-bottom: 24px;
    scrollbar-width: thin;
  }

  .story-copy h2,
  .safety-heading h2 {
    font-size: 3.6rem;
  }

  .legal-list a {
    grid-template-columns: 34px minmax(160px, 0.9fr) minmax(180px, 1.1fr) 20px;
    gap: 12px;
  }
}

@media (max-width: 860px) {
  .site-header {
    gap: 18px;
  }

  .nav-links {
    display: none;
  }

  .header-tools {
    grid-column: 3;
  }

  .hero-inner,
  .feature-index,
  .story,
  .safety-heading,
  .legal-section,
  .download-section,
  .contact-section,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 12px;
    min-height: auto;
    padding: 58px 0 36px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .device-main {
    right: 20%;
  }

  .device-back {
    left: 12%;
  }

  .device-front {
    right: 10%;
  }

  .feature-index {
    gap: 64px;
  }

  .story {
    min-height: auto;
  }

  .story-discover,
  .story-premium {
    padding: 90px 0;
  }

  .story-discover .story-copy,
  .story-premium .story-copy {
    order: -1;
  }

  .story-voice {
    padding-top: 90px;
    padding-bottom: 80px;
  }

  .voice-backdrop {
    inset: 36% 0 0;
  }

  .voice-visual {
    min-height: 560px;
  }

  .device-voice {
    left: 30%;
  }

  .screens-heading {
    grid-template-columns: 1fr;
  }

  .screens-heading h2 {
    font-size: 3.2rem;
  }

  .safety-heading .section-number {
    margin-bottom: -22px;
  }

  .trust-list {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .trust-list article,
  .trust-list article + article,
  :dir(rtl) .trust-list article,
  :dir(rtl) .trust-list article:first-child {
    min-height: auto;
    padding: 24px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .trust-list h3 {
    margin-top: 42px;
  }

  .legal-heading {
    max-width: 680px;
  }

  .download-section {
    gap: 34px;
  }

  .legal-shell {
    gap: 28px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand img,
  .footer-brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .header-tools {
    gap: 7px;
  }

  .language-control > span {
    display: none;
  }

  .language-control select {
    width: 116px;
    min-height: 38px;
    padding-left: 10px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero-inner,
  .feature-index,
  .story-discover,
  .story-premium,
  .safety-section,
  .contact-section,
  .legal-shell {
    width: calc(100% - 32px);
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .hero-statement {
    margin-top: 20px;
    font-size: 1.5rem;
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-meta {
    display: none;
  }

  .hero-stage {
    min-height: 352px;
  }

  .stage-grid {
    top: 32px;
    right: -60px;
    width: 350px;
    height: 290px;
  }

  .device-main {
    top: 0;
    right: 20%;
    width: 184px;
    border-width: 5px;
    border-radius: 22px;
  }

  .device-back {
    top: 64px;
    left: 2%;
    width: 140px;
    border-width: 5px;
    border-radius: 22px;
  }

  .device-front {
    right: 0;
    bottom: 0;
    width: 124px;
    border-width: 5px;
    border-radius: 20px;
  }

  .hero-rail {
    justify-content: flex-start;
    min-height: 48px;
    white-space: nowrap;
  }

  .feature-index {
    gap: 52px;
    padding: 84px 0 92px;
  }

  .section-intro h2,
  .screens-heading h2,
  .safety-heading h2,
  .legal-heading h2,
  .contact-heading h2,
  .story-copy h2 {
    font-size: 2.65rem;
  }

  .section-intro > p:last-child,
  .safety-heading > p:last-child,
  .legal-heading > p:last-child,
  .contact-heading > p:last-child,
  .story-copy > p:not(.section-number) {
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .feature-lines li {
    min-height: 72px;
  }

  .story-discover,
  .story-premium {
    gap: 46px;
    padding: 78px 0;
  }

  .story-visual,
  .premium-visual {
    min-height: 420px;
  }

  .discovery-visual::before,
  .premium-visual::before {
    inset: 32px 0 20px;
  }

  .device-discovery-primary,
  .device-vip {
    right: 6%;
    width: 206px;
    border-width: 5px;
    border-radius: 23px;
  }

  .device-discovery-secondary,
  .device-store {
    left: 0;
    width: 164px;
    border-width: 5px;
    border-radius: 22px;
  }

  .device-store {
    top: 48px;
  }

  .story-voice {
    gap: 42px;
    min-height: auto;
    padding: 78px 16px 64px;
  }

  .voice-visual {
    min-height: 430px;
  }

  .device-voice {
    left: 16%;
    width: 224px;
    border-width: 5px;
    border-radius: 24px;
  }

  .voice-visual::after {
    display: none;
  }

  .screens-section {
    padding: 82px 16px 90px;
  }

  .screens-heading {
    gap: 0;
    margin-bottom: 48px;
  }

  .screen-track {
    grid-template-columns: repeat(5, 190px);
    gap: 16px;
    margin-right: -16px;
  }

  .screen-shot:nth-child(even) {
    transform: none;
  }

  .safety-section {
    padding: 86px 0 94px;
  }

  .legal-section {
    gap: 52px;
    padding: 84px 16px 90px;
  }

  .legal-list a {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 10px;
    min-height: 78px;
  }

  .legal-list small {
    display: none;
  }

  .legal-list b {
    grid-column: 3;
  }

  .download-section {
    padding: 64px 16px;
  }

  .download-brand {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 18px;
  }

  .download-brand img {
    width: 68px;
    height: 68px;
  }

  .download-brand h2 {
    font-size: 2rem;
  }

  .store-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    gap: 54px;
    padding: 84px 0 94px;
  }

  .contact-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    min-height: auto;
    padding: 18px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 40px 16px;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 16px 20px;
  }

  .copyright {
    grid-column: 1;
  }

  .legal-shell {
    padding: 32px 0 60px;
  }

  .legal-reader {
    padding: 28px 20px 34px;
  }

  .legal-reader-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-reader h1 {
    font-size: 2.25rem;
  }

  .doc-contact {
    padding: 20px;
  }

  .doc-contact-links {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
