:root {
  --bg: #030305;
  --bg-raised: #08080b;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.085);
  --text: #f4f4f5;
  --text-soft: rgba(244, 244, 245, 0.68);
  --text-muted: rgba(244, 244, 245, 0.5);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --gold: #d6b35a;
  --gold-strong: #e3c374;
  --gold-pressed: #c9a54d;
  --gold-soft: rgba(214, 179, 90, 0.14);
  --gold-border: rgba(214, 179, 90, 0.28);
  --gold-ink: #171003;
  --radius: 18px;
  --radius-small: 12px;
  --shadow: 0 36px 90px rgba(0, 0, 0, 0.55);
  --shell: min(1280px, calc(100vw - 64px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(88px + env(safe-area-inset-top, 0px));
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: #ffffff;
  background: rgba(214, 179, 90, 0.34);
}

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

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  color: var(--gold-ink);
  background: var(--gold);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 5, 0.72);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: fit-content;
  color: var(--text);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.brand img {
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand span span {
  color: var(--gold);
}

.nav-side {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.locale-picker {
  position: relative;
  display: inline-grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  width: 184px;
  min-width: 0;
  min-height: 44px;
  padding-inline: 10px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.035);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.locale-picker:hover,
.locale-picker:focus-within {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.locale-picker svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.locale-picker select {
  min-width: 0;
  height: 42px;
  margin: -1px 0;
  padding: 0 14px 0 0;
  overflow: hidden;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
}

.locale-picker::after {
  position: absolute;
  inset-inline-end: 8px;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  pointer-events: none;
  transform: translateY(-2px) rotate(45deg);
}

.nav-link {
  min-height: 44px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  line-height: 44px;
}

.nav-link:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-link,
.footer-links a {
  transition: color 180ms ease;
}

.nav-action {
  padding: 9px 16px;
  border-radius: var(--radius-small);
  color: var(--gold-ink);
  background: var(--gold);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 180ms ease, transform 180ms var(--ease);
}

.nav-action:hover {
  background: var(--gold-strong);
}

.nav-action:active,
.button:active {
  transform: scale(0.98);
}

/* ---------- Shared bits ---------- */

.eyebrow {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  overflow: hidden;
  padding: 0 22px;
  border-radius: var(--radius-small);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 180ms var(--ease), background-color 180ms ease, box-shadow 180ms ease;
}

.button-gold {
  color: var(--gold-ink);
  background: linear-gradient(180deg, var(--gold-strong), var(--gold));
  box-shadow: 0 14px 40px rgba(214, 179, 90, 0.22);
}

.button-gold::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.42) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 640ms var(--ease);
}

.button-gold:hover {
  background: var(--gold-strong);
  box-shadow: 0 18px 48px rgba(214, 179, 90, 0.3);
}

.button-gold:hover::after {
  transform: translateX(130%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 620;
  transition: color 180ms ease;
}

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

.text-link span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

/* Device frames */

.phone {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  background: #020304;
  box-shadow:
    inset 0 0 0 5px rgba(6, 7, 8, 0.96),
    0 28px 68px rgba(0, 0, 0, 0.55);
}

.phone::before {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 29%;
  height: 22px;
  border-radius: 999px;
  content: "";
  background: #010203;
  transform: translateX(-50%);
}

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

.watch-img {
  display: block;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.58));
}

.watch-device {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  aspect-ratio: 416 / 496;
  border: clamp(5px, 0.7vw, 9px) solid #27292e;
  border-radius: 27% / 23%;
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 26px 42px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(0, 0, 0, 0.8);
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 65% 55% at 80% 24%, rgba(214, 179, 90, 0.07), transparent 62%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  min-height: 100dvh;
  padding-top: calc(72px + 32px);
  padding-bottom: 72px;
}

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

.hero h1 {
  color: var(--text);
  font-size: clamp(54px, 6.6vw, 92px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.gold-accent {
  background: linear-gradient(100deg, #a8842f 0%, var(--gold-strong) 32%, #f6e7b2 50%, var(--gold-strong) 68%, #a8842f 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 480px;
  margin-top: 26px;
  color: var(--text-soft);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
}

.hero-lede span {
  display: block;
}

.hero-lede span + span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.82em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 450px);
}

.hero-tilt {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-halo {
  position: absolute;
  inset: 8% -14% auto;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 179, 90, 0.14), transparent 62%);
  filter: blur(52px);
}

.hero-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-photo img {
  width: 100%;
  height: auto;
}

.hero-theater {
  aspect-ratio: 1290 / 1880;
}

.hero-theater img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Facts strip ---------- */

.facts {
  border-bottom: 1px solid var(--line);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding-block: 46px;
}

.facts-grid strong {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.facts-grid p {
  margin-top: 9px;
  color: var(--text-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ---------- How it works ---------- */

.process {
  padding-block: clamp(110px, 13vw, 180px);
}

.section-lede {
  max-width: 480px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.6;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.process-copy h2 {
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.process-copy .section-lede {
  margin-bottom: 56px;
}

.process-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 46%, rgba(214, 179, 90, 0.1), transparent 52%),
    var(--bg-raised);
}

.phone-process {
  z-index: 1;
  width: min(74%, 318px);
}

.screen-halo {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(214, 179, 90, 0.1);
  filter: blur(68px);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  padding-bottom: 0;
}

.process-list h3 {
  font-size: clamp(21px, 2.1vw, 27px);
  font-weight: 590;
  letter-spacing: -0.03em;
}

.process-list p {
  max-width: 460px;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

/* ---------- Find my place ---------- */

.recovery {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-block: clamp(110px, 13vw, 180px);
}

.recovery-copy {
  max-width: 560px;
}

.recovery-copy .eyebrow {
  margin-bottom: 22px;
}

.recovery-copy h2 {
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 530;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.recovery-copy > p {
  max-width: 520px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.recovery-copy > p + p {
  margin-top: 12px;
}

/* Sync scene: the original Endgame-adjacent screen art "plays" the line;
   the phone hears it, matches, and jumps straight to the cue. One JS clock
   moves data-phase and types the transcript; CSS does every transition. */

.sync-scene {
  position: relative;
}

.scene-theater {
  display: grid;
  gap: 16px;
  width: 84%;
}

.scene-movie {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-small);
  background: #050506;
  box-shadow:
    0 0 0 1px var(--line-strong),
    0 24px 60px rgba(0, 0, 0, 0.5);
  transition: box-shadow 800ms ease;
}

.scene-movie img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

.sync-scene[data-phase="synced"] .scene-movie {
  box-shadow:
    0 0 0 1px var(--gold-border),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(214, 179, 90, 0.18);
}

.scene-dialogue {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 66%;
}

.stage-wave {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3px;
  height: 30px;
}

.stage-wave span {
  width: 3px;
  height: calc(5px + var(--h, 0.5) * 22px);
  border-radius: 2px;
  background: rgba(214, 179, 90, 0.55);
  transform-origin: center;
}

.scene-line {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 500ms ease, transform 500ms var(--ease);
}

.sync-scene[data-phase="speaking"] .scene-line,
.sync-scene[data-phase="listening"] .scene-line,
.sync-scene[data-phase="jumping"] .scene-line,
.sync-scene[data-phase="synced"] .scene-line {
  opacity: 1;
  transform: none;
}

.scene-line q {
  color: var(--text);
  font-size: 15.5px;
  font-weight: 650;
  quotes: "“" "”";
}

.scene-line span {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* The phone is a faithful miniature of the app's Listening screen: subtitle
   wheel behind, Listening sheet on top, Synced pill once the jump lands. */

.stage-phone {
  position: relative;
  z-index: 1;
  container-type: inline-size;
  width: min(44%, 232px);
  aspect-ratio: 9 / 19;
  margin: clamp(-210px, -15vw, -130px) 4% 0 auto;
  /* Match an iPhone's continuous corner geometry. Query units on the query
     container itself resolve against the viewport, which made this a capsule
     on wide screens. Percentages keep both radii tied to the phone box. */
  border-radius: 15.5% / 7.35%;
  background: transparent;
}

.phone-island {
  position: absolute;
  top: 5.2cqw;
  left: 50%;
  z-index: 3;
  width: 27%;
  height: 3.2%;
  border-radius: 999px;
  background: #000;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  transform: translateX(-50%);
}

.stage-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 17cqw 5.5cqw 7cqw;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  background: linear-gradient(180deg, #08080b, #030304);
  box-shadow:
    inset 0 0 0 4px #0b0c0f,
    0 30px 70px rgba(0, 0, 0, 0.6);
}

.stage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5cqw;
}

.stage-chip {
  position: relative;
  display: grid;
  place-items: center;
  width: 12cqw;
  height: 12cqw;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.045);
  transition: color 400ms ease, border-color 400ms ease, background-color 400ms ease;
}

.stage-chip svg {
  width: 4.8cqw;
  height: 4.8cqw;
}

.stage-mic svg {
  width: 5.4cqw;
  height: 5.4cqw;
}

.mic-ring {
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
}

.sync-scene[data-phase="listening"] .stage-mic,
.sync-scene[data-phase="jumping"] .stage-mic {
  color: var(--gold-strong);
  border-color: var(--gold-border);
  background: var(--gold-soft);
}

.cue-wheel-mask {
  height: 264px;
  margin-top: 26cqw;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.cue-wheel {
  transform: translateY(104px);
  transition: transform 900ms var(--ease);
}

.sync-scene[data-phase="jumping"] .cue-wheel,
.sync-scene[data-phase="synced"] .cue-wheel {
  transform: translateY(48px);
}

.cue {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.6cqw;
  height: 56px;
  padding-inline: 2cqw;
  text-align: center;
  opacity: 0.24;
  transition: opacity 500ms ease;
}

.cue b {
  color: var(--text);
  font-size: 6cqw;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 500ms ease;
}

.cue i {
  color: var(--text-soft);
  font-size: 4.4cqw;
  font-style: normal;
}

/* Before the jump the app sits one line behind the film. */
.sync-scene[data-phase="playing"] .cue:first-child,
.sync-scene[data-phase="speaking"] .cue:first-child,
.sync-scene[data-phase="listening"] .cue:first-child {
  opacity: 1;
}

.sync-scene[data-phase="jumping"] .cue-target,
.sync-scene[data-phase="synced"] .cue-target {
  opacity: 1;
}

.sync-scene[data-phase="jumping"] .cue-target b,
.sync-scene[data-phase="synced"] .cue-target b {
  color: var(--gold-strong);
}

/* Listening sheet, floating over the wheel exactly like the app */

.listen-sheet {
  position: absolute;
  top: 30cqw;
  left: 4cqw;
  right: 4cqw;
  z-index: 2;
  padding: 4.4cqw 4.6cqw 4.6cqw;
  border: 1px solid var(--line-strong);
  border-radius: 6.5cqw;
  background: rgba(13, 13, 16, 0.97);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(-12px) scale(0.98);
  transition: opacity 420ms ease, transform 420ms var(--ease);
  pointer-events: none;
}

.sync-scene[data-phase="listening"] .listen-sheet,
.sync-scene[data-phase="jumping"] .listen-sheet {
  opacity: 1;
  transform: none;
}

.listen-head {
  display: flex;
  align-items: center;
  gap: 2.6cqw;
  margin-bottom: 3.4cqw;
  color: var(--text);
  font-size: 5cqw;
  font-weight: 700;
}

.listen-head svg {
  width: 5cqw;
  height: 5cqw;
  color: var(--gold);
}

.listen-box {
  display: grid;
  gap: 1.8cqw;
  padding: 3.4cqw 4cqw;
  border: 1px solid var(--gold-border);
  border-radius: 4.4cqw;
  background: rgba(214, 179, 90, 0.05);
}

.listen-label {
  display: inline-flex;
  align-items: center;
  gap: 2.2cqw;
  color: var(--gold);
  font-size: 4.1cqw;
  font-weight: 650;
}

.listen-label i {
  width: 2.2cqw;
  height: 2.2cqw;
  border-radius: 50%;
  background: var(--gold);
}

.listen-text {
  min-height: 6.4cqw;
  color: var(--text);
  font-size: 4.7cqw;
  font-weight: 620;
  line-height: 1.35;
}

.synced-pill {
  position: absolute;
  left: 50%;
  bottom: -13px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold-strong);
  background: #0d0b06;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 24px rgba(214, 179, 90, 0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.9);
  transition: opacity 500ms ease 150ms, transform 500ms var(--ease) 150ms;
}

.sync-scene[data-phase="synced"] .synced-pill {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

/* ---------- Apple Watch ---------- */

.watch {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-raised);
}

.watch-art {
  position: absolute;
  inset: 0;
}

.watch-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.watch-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 8, 11, 0.74), rgba(8, 8, 11, 0.9));
}

@media (min-width: 981px) {
  .watch-art::after {
    background:
      linear-gradient(270deg, rgba(8, 8, 11, 0.95) 8%, rgba(8, 8, 11, 0.78) 47%, rgba(8, 8, 11, 0.42)),
      linear-gradient(180deg, rgba(8, 8, 11, 0.42), rgba(8, 8, 11, 0.8));
  }

  .watch-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .watch-visuals {
    order: 1;
  }

  .watch-copy {
    order: 2;
  }
}

.watch-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding-block: clamp(110px, 13vw, 170px);
}

.watch-copy h2 {
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 530;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.watch-copy > p {
  max-width: 500px;
  margin-top: 26px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.65;
}

.watch-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.watch-points li {
  padding: 8px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  color: var(--gold-strong);
  background: var(--gold-soft);
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: background-color 240ms ease, transform 240ms var(--ease);
}

.watch-points li:hover {
  background: rgba(214, 179, 90, 0.22);
  transform: translateY(-2px);
}

.watch-visuals {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.watch-visuals .watch-img {
  flex-shrink: 0;
}

.watch-visuals .watch-device {
  flex-shrink: 0;
}

.watch-a {
  z-index: 1;
  width: 33%;
  transform: rotate(-7deg) translate(9%, 9%);
}

.watch-b {
  z-index: 2;
  width: 45%;
}

.watch-c {
  z-index: 1;
  width: 33%;
  transform: rotate(7deg) translate(-9%, 12%);
}

/* ---------- Cinema moment ---------- */

.moment {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 76dvh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.moment-bg {
  position: absolute;
  inset: 0;
}

.moment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.moment-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 3, 5, 0.86), rgba(3, 3, 5, 0.34) 50%, rgba(3, 3, 5, 0.88));
}

.moment-title {
  position: relative;
  text-align: center;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

/* ---------- Closing ---------- */

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(40px, 7vw, 90px) clamp(110px, 13vw, 170px);
  text-align: center;
}

.closing-icon {
  width: 108px;
  height: auto;
  margin-bottom: 44px;
  border-radius: 26px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.5);
}

.closing h2 {
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 530;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.closing p {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 17px;
}

.closing-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
}

/* ---------- Footer ---------- */

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 130px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 13px;
}

.footer-brand {
  color: var(--text);
  font-size: 16px;
}

.footer p {
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

/* ---------- Support & privacy ---------- */

.info-page {
  min-height: 100dvh;
}

.info-shell {
  width: min(760px, var(--shell));
  min-height: calc(100dvh - 130px);
  padding-top: calc(72px + 64px);
  padding-bottom: 110px;
}

.info-shell .back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 24px;
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 650;
}

.info-shell h1 {
  max-width: 18ch;
  font-size: clamp(42px, 7vw, 68px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.info-shell h2 {
  margin-top: 54px;
  font-size: clamp(21px, 3vw, 27px);
  font-weight: 590;
  letter-spacing: -0.025em;
}

.info-shell p,
.info-shell li {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.72;
}

.info-shell h1 + p,
.info-shell h1 + time,
.info-shell h2 + p,
.info-shell p + p,
.info-shell ul,
.info-shell ol {
  margin-top: 14px;
}

.info-shell ul,
.info-shell ol {
  padding-inline-start: 1.35em;
}

.info-shell a:not(.back-link) {
  color: var(--gold-strong);
  text-decoration: underline;
  text-decoration-color: rgba(214, 179, 90, 0.35);
  text-underline-offset: 3px;
}

.info-shell .updated {
  display: block;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.info-shell .legal-source {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Arabic and Hebrew keep the product layout physical while allowing copy,
   controls, and generated screenshots to follow their native reading order. */
html[dir="rtl"] body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Arabic", "SF Hebrew", Arial, sans-serif;
}

html[dir="rtl"] .brand {
  direction: ltr;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  letter-spacing: 0;
}

html[dir="rtl"] .locale-picker select {
  padding: 0 0 0 14px;
  text-align: right;
}

html[dir="rtl"] .stage-screen,
html[dir="rtl"] .scene-dialogue,
html[dir="rtl"] .recovery-copy {
  text-align: right;
}

html[dir="rtl"] .footer-links {
  justify-content: flex-start;
}

/* ---------- Reveal & motion ---------- */

.reveal {
  transition: opacity 760ms var(--ease) var(--d, 0ms), transform 760ms var(--ease) var(--d, 0ms);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

.js .reveal-fade {
  transform: none;
}

.mask-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.mask-line > span {
  display: block;
}

.js .reveal .mask-line > span {
  transform: translateY(112%);
  transition: transform 950ms var(--ease) calc(var(--i, 0) * 110ms + var(--d, 0ms));
}

.js .reveal.is-visible .mask-line > span {
  transform: translateY(0);
}

@keyframes float-device {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@keyframes hero-fade {
  from { opacity: 0; transform: translateY(18px); }
}

@keyframes line-rise {
  from { transform: translateY(112%); }
}

@keyframes hero-card {
  from { opacity: 0; transform: rotate(5.5deg) translateY(40px); }
}

@keyframes halo-breathe {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes gold-shine {
  0%, 100% { background-position: 115% 0; }
  50% { background-position: -15% 0; }
}

@keyframes moment-drift {
  from { transform: scale(1.03) translateY(0); }
  to { transform: scale(1.12) translateY(-2%); }
}

@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

@keyframes screen-drift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.12) translateY(-2.5%); }
}

@keyframes mic-ping {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.9); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow {
    animation: hero-fade 800ms var(--ease) 80ms backwards;
  }

  .hero h1 .mask-line > span {
    animation: line-rise 1000ms var(--ease) calc(200ms + var(--i, 0) * 120ms) backwards;
  }

  .hero-lede {
    animation: hero-fade 800ms var(--ease) 540ms backwards;
  }

  .hero-actions {
    animation: hero-fade 800ms var(--ease) 660ms backwards;
  }

  .hero-photo {
    animation: hero-card 1100ms var(--ease) 340ms backwards;
  }

  .hero-halo {
    animation: halo-breathe 7s ease-in-out infinite;
  }

  .gold-accent {
    animation: gold-shine 6.5s ease-in-out 1.4s infinite;
  }

  .scene-movie img {
    animation: screen-drift 24s ease-in-out infinite alternate;
  }

  .stage-wave span {
    animation: wave-bounce 1.1s ease-in-out calc(var(--i, 0) * -0.09s) infinite;
    animation-play-state: paused;
  }

  .sync-scene[data-phase="speaking"] .stage-wave span,
  .sync-scene[data-phase="listening"] .stage-wave span {
    animation-play-state: running;
  }

  .sync-scene[data-phase="listening"] .mic-ring {
    animation: mic-ping 1.3s ease-out infinite;
  }

  .watch-a {
    animation: float-device 8s ease-in-out 1.1s infinite;
  }

  .watch-b {
    animation: float-device 8s ease-in-out infinite;
  }

  .watch-c {
    animation: float-device 8s ease-in-out 2.2s infinite;
  }

  .moment-bg img {
    animation: moment-drift 26s ease-in-out infinite alternate;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    min-height: auto;
    padding-top: calc(72px + 56px);
  }

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

  .hero h1 {
    font-size: clamp(50px, 9vw, 72px);
  }

  .hero-visual {
    width: min(100%, 420px);
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 38px;
  }

  .process-layout {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 48px;
  }

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

  .recovery {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .recovery-copy {
    max-width: 620px;
  }

  .watch-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .watch-copy {
    max-width: 620px;
  }

  .watch-visuals {
    min-height: 0;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer p {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --radius: 16px;
  }

  .shell {
    width: auto;
    margin-left: max(16px, env(safe-area-inset-left, 0px));
    margin-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .site-header {
    height: calc(64px + env(safe-area-inset-top, 0px));
  }

  .nav {
    height: calc(64px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }

  .brand {
    min-height: 44px;
    font-size: 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-side {
    gap: 8px;
  }

  html[dir="rtl"] .nav {
    direction: ltr;
  }

  html[dir="rtl"] .locale-picker {
    direction: rtl;
  }

  .nav-side .nav-link {
    display: none;
  }

  .locale-picker {
    width: 132px;
    min-width: 0;
    padding-inline-start: 8px;
  }

  .nav-action {
    padding-inline: 11px;
  }

  .hero-inner {
    gap: 48px;
    padding-top: calc(64px + env(safe-area-inset-top, 0px) + 44px);
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(46px, 13.5vw, 60px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero-inner,
  .hero-copy,
  .process-copy,
  .recovery-copy,
  .watch-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero-lede {
    max-width: 36ch;
    margin-top: 20px;
    font-size: 16px;
  }

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

  .hero-visual {
    width: min(100%, 330px);
  }

  .hero-photo {
    border-radius: 22px;
  }

  .process {
    padding-block: 84px;
  }

  .process-copy h2,
  .recovery-copy h2,
  .watch-copy h2,
  .closing h2 {
    font-size: clamp(38px, 11vw, 46px);
  }

  .section-lede {
    margin-top: 18px;
    font-size: 16px;
  }

  .process-copy .section-lede {
    margin-bottom: 38px;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .process-visual {
    order: 2;
  }

  .process-visual {
    position: relative;
    top: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .phone-process {
    width: min(66%, 264px);
  }

  .process-list li {
    padding: 26px 0 30px;
  }

  .process-list h3 {
    font-size: 22px;
  }

  .recovery {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-block: 84px;
  }

  .recovery-copy > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .scene-theater {
    width: 100%;
  }

  .scene-dialogue {
    max-width: 100%;
  }

  .stage-phone {
    width: min(66%, 250px);
    margin: 32px auto 0;
  }

  .watch-inner {
    padding-block: 84px;
  }

  .watch-copy > p {
    font-size: 16px;
  }

  .watch-b {
    width: 42%;
  }

  .moment {
    min-height: 480px;
  }

  .moment-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .closing {
    padding-block: 24px 84px;
  }

  .closing-icon {
    width: 88px;
    margin-bottom: 34px;
    border-radius: 22px;
  }

  .closing p {
    font-size: 16px;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    padding-block: 34px;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 22px;
  }

  .footer-links a {
    min-height: 44px;
    line-height: 44px;
  }

  .info-shell {
    width: auto;
    padding-top: calc(64px + env(safe-area-inset-top, 0px) + 46px);
    padding-bottom: 80px;
  }

  .text-link {
    min-height: 44px;
  }

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js .reveal .mask-line > span {
    transform: none;
    transition: none;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    height: auto;
    min-height: 100svh;
    padding-top: calc(64px + env(safe-area-inset-top, 0px) + 18px);
    padding-bottom: 48px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
    font-size: clamp(43px, 12vw, 50px);
  }

  .hero-lede {
    order: 4;
    margin-top: 28px;
  }

  .hero-actions {
    order: 5;
    gap: 14px;
    margin-top: 22px;
  }

  .hero-visual {
    order: 3;
    justify-self: center;
    width: min(100%, 370px);
    max-width: none;
    height: auto;
    max-height: none;
    margin-top: 20px;
    aspect-ratio: 1290 / 1880;
  }

  .hero-tilt,
  .hero-photo {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 420px) {
  .site-header .nav-action {
    display: none;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero-actions .button {
    padding-inline: 16px;
  }

  .hero-actions .text-link {
    font-size: 13px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .js .reveal .mask-line > span {
    transform: none;
  }
}
