@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500 800;
  font-display: swap;
  src: url("/assets/fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("/assets/fonts/syne-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Syne";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("/assets/fonts/syne-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #070604;
  --fg: #f7f4ef;
  --muted: #a39b90;
  --line: rgba(255, 244, 224, .08);
  --orange-top: #ffcc4d;
  --orange: #ff8a00;
  --orange-deep: #ff6600;
  --grad: linear-gradient(165deg, var(--orange-top) 0%, var(--orange) 48%, var(--orange-deep) 100%);
  --grad-x: linear-gradient(90deg, var(--orange-top), var(--orange-deep));
  --radius: 28px;
  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --display: "Syne", var(--font);
  --glow: 0 18px 50px rgba(255, 102, 0, .38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); color: var(--fg); }
body {
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: .1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}
.orbs { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: drift 18s ease-in-out infinite;
}
.orb.a { width: 46vw; height: 46vw; left: -14vw; top: -12vw; background: #ff8a0038; }
.orb.b { width: 38vw; height: 38vw; right: -12vw; top: 16vh; background: #ffcc4d2a; animation-delay: -6s; }
.orb.c { width: 30vw; height: 30vw; left: 28vw; bottom: -14vw; background: #ff660028; animation-delay: -11s; }
.cursor-glow {
  position: fixed; width: 420px; height: 420px; margin: -210px 0 0 -210px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(255,138,0,.16), transparent 68%);
  transform: translate(-40vw, -20vh);
  transition: transform .12s linear;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(5%, 7%) scale(1.1); }
}

.wrap { position: relative; z-index: 1; width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(24px) saturate(1.2);
  background: rgba(7,6,4,.58);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 36px; width: auto; filter: drop-shadow(0 8px 18px rgba(255,102,0,.5)); }
.nav-links { display: flex; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 650; }
.nav-links a { position: relative; }
.nav-links a:hover { color: var(--fg); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--grad-x); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--grad); color: #1a0c00; font-weight: 800;
  padding: 10px 18px; border-radius: 999px; font-size: 13px;
  box-shadow: var(--glow);
  transition: transform .25s ease;
}
.nav-cta:hover { transform: translateY(-1px); }

.hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 36px;
  align-items: start;
  padding: 36px 0 20px;
  min-height: calc(100vh - 72px);
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--orange-top); font-weight: 700; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: 18px;
}
.kicker i { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scale(1.55); opacity: .45; } }
h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7.2vw, 92px);
  line-height: .9;
  letter-spacing: -.07em;
  margin: 0 0 18px;
}
h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 18px; color: var(--muted); max-width: 34rem; margin: 0 0 28px; }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 22px; border-radius: 999px; font-weight: 800; border: 0; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--grad); color: #1a0c00; box-shadow: var(--glow); }
.btn.ghost { background: rgba(255,255,255,.03); color: var(--fg); border: 1px solid var(--line); }
.store { display: flex; gap: 10px; margin-top: 18px; }
.store a {
  border: 1px solid var(--line); border-radius: 16px; padding: 12px 16px;
  font-size: 12px; color: var(--muted); min-width: 156px;
  background: rgba(255,255,255,.02);
  transition: border-color .3s ease, transform .3s ease;
}
.store a:hover { border-color: #ff8a0055; transform: translateY(-2px); }
.store strong { display: block; color: var(--fg); font-size: 14px; }

.phone-stage { position: relative; display: grid; place-items: center; min-height: 640px; padding-bottom: 28px; }
.phone-glow {
  position: absolute; width: 78%; height: 72%;
  background: radial-gradient(circle, rgba(255,138,0,.42), transparent 68%);
  filter: blur(22px); animation: pulse 3.2s ease-in-out infinite;
}
.phone-ghost {
  position: absolute;
  width: min(300px, 70vw);
  aspect-ratio: 9/19;
  border-radius: 40px;
  background: #141210;
  border: 1px solid rgba(255,255,255,.06);
  transform: rotate(10deg) translate(42%, 6%);
  opacity: .45;
  filter: blur(.4px);
}
.phone {
  position: relative;
  width: min(292px, 68vw);
  aspect-ratio: 9/18;
  border-radius: 40px;
  padding: 8px;
  background: linear-gradient(180deg, #2c2a28, #0c0b0a);
  box-shadow: 0 50px 90px rgba(0,0,0,.62), inset 0 0 0 1px rgba(255,255,255,.1);
  transform: rotate(-4deg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 50% { transform: rotate(-4deg) translateY(-8px); } }
.island {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; border-radius: 20px; background: #050505; z-index: 5;
}
.phone-screen {
  position: relative; overflow: hidden; height: 100%;
  border-radius: 36px; background: #050505;
  cursor: grab; touch-action: none;
}
.status {
  position: absolute; top: 10px; left: 16px; right: 16px; z-index: 4;
  display: flex; justify-content: space-between; font-size: 11px; font-weight: 700; color: #fff;
  padding-right: 4px;
}
.spark-head {
  position: absolute; top: 34px; left: 12px; right: 12px; z-index: 4;
  display: flex; align-items: center; gap: 8px;
}
.spark-head img { height: 18px; width: auto; filter: drop-shadow(0 4px 10px rgba(255,102,0,.7)); }
.spark-head b { font-size: 15px; letter-spacing: -.04em; }
.spark-head span { margin-left: auto; opacity: .85; font-size: 13px; }
.reel { position: absolute; inset: 0; overflow: hidden; }
.reel-track {
  height: 300%;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform .62s cubic-bezier(.22, .9, .28, 1);
}
.slide {
  position: relative;
  flex: 1 0 33.333%;
  overflow: hidden;
  background: #0a0704;
}
.slide video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide::before {
  content: ""; position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  animation: ken 7s ease-in-out infinite alternate;
}
.slide.has-vid::before { display: none; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, transparent 28%, transparent 48%, #000d 100%);
  pointer-events: none;
}
.slide.s1::before {
  background:
    linear-gradient(180deg, transparent 38%, #000d 100%),
    radial-gradient(circle at 28% 22%, #ffcc4daa, transparent 42%),
    linear-gradient(165deg, #6a2e08, #120805 70%);
}
.slide.s2::before {
  background:
    linear-gradient(180deg, transparent 38%, #000d 100%),
    radial-gradient(circle at 72% 28%, #ff6600bb, transparent 46%),
    linear-gradient(165deg, #3e1508, #070505 72%);
}
.slide.s3::before {
  background:
    linear-gradient(180deg, transparent 38%, #000d 100%),
    radial-gradient(circle at 42% 58%, #ff8a00aa, transparent 40%),
    linear-gradient(165deg, #4a220a, #050505 70%);
}
@keyframes ken {
  from { transform: scale(1) translate(0,0); }
  to { transform: scale(1.16) translate(-3%, 4%); }
}
.caption {
  position: absolute; left: 12px; right: 58px; bottom: 98px; z-index: 4;
}
.creator-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.creator-ring {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 13px; font-weight: 800; color: #1a0c00;
  background: var(--grad);
  box-shadow: 0 0 0 1.6px var(--orange-top), 0 6px 14px #0008;
}
.name-rule {
  display: block; width: 22px; height: 2px; margin-top: 3px;
  background: var(--orange);
}
.caption small {
  display: block; font-weight: 900; font-size: 12px;
  letter-spacing: .12em; text-shadow: 0 4px 10px #000;
}
.caption p { margin: 0; color: #ffffffd0; font-size: 12.5px; line-height: 1.35; }
.music {
  display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 11px; color: #ffffffc4;
}
.disc {
  width: 22px; height: 22px; border-radius: 50%;
  background: conic-gradient(from 40deg, #111, #ff8a00, #111 70%);
  box-shadow: inset 0 0 0 5px #111;
  animation: spin 3.4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.rail {
  position: absolute; right: 4px; bottom: 112px; z-index: 4;
  display: grid; gap: 14px; justify-items: center;
  width: 54px;
}
.cine {
  display: grid; justify-items: center; gap: 3px;
  color: #fff; font-size: 9px; font-weight: 800;
  letter-spacing: .08em; width: 54px; text-align: center;
  text-shadow: 0 4px 10px #000;
}
.cine svg {
  width: 28px; height: 28px;
  filter: drop-shadow(0 4px 8px #000c);
}
.cine.on { color: var(--orange-top); }
.cine.on svg { color: var(--orange-top); }
.wi-dock {
  position: absolute; left: 10px; right: 10px; bottom: 14px; z-index: 8;
  height: 76px;
}
.wi-bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 52px;
  display: grid; grid-template-columns: 1fr 1fr 52px 1fr 1fr;
  align-items: center;
  background: rgba(18,18,24,.85);
  backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 26px;
  border: 1px solid rgba(255,102,0,.28);
}
.wi-create {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad);
  border: 2px solid rgba(255,255,255,.45);
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(255,102,0,.45);
  z-index: 2;
}
.wi-item {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  color: rgba(255,255,255,.78); font-size: 8.5px; font-weight: 600;
  position: relative;
}
.wi-item svg { width: 20px; height: 20px; }
.wi-item.on { color: var(--orange-top); font-weight: 800; }
.wi-item .dot {
  position: absolute; bottom: -5px;
  width: 3px; height: 3px; border-radius: 50%; background: var(--orange-top);
}
.wi-create svg { width: 22px; height: 22px; }
.progress {
  position: absolute; left: 14px; right: 14px; top: 58px; z-index: 4;
  height: 2.5px; background: #ffffff22; border-radius: 99px; overflow: hidden;
}
.progress > i { display: block; height: 100%; width: 0; background: var(--grad); }
.watch-orb {
  position: absolute; left: 12px; top: 78px; z-index: 6;
  width: 52px; height: 52px;
  filter: drop-shadow(0 8px 16px rgba(255,102,0,.4));
}
.watch-orb svg { display: block; width: 100%; height: 100%; }
.watch-orb .orb-amt {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800; letter-spacing: -.03em;
  color: var(--orange-top);
}
.coin-pop {
  position: absolute; left: 18px; top: 128px; z-index: 6;
  pointer-events: none;
}
.coin-pop b {
  display: block;
  font-size: 12px; font-weight: 800;
  color: var(--orange-top);
  text-shadow: 0 6px 16px #000;
  animation: coinup .9s ease forwards;
}
@keyframes coinup {
  0% { opacity: 0; transform: translateY(8px) scale(.8); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-28px) scale(1.05); }
}
.swipe-hint {
  position: absolute; left: 0; right: 58px; bottom: 186px; z-index: 5;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; color: #ffffffb8; font-size: 10px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  animation: hint 2.4s ease-in-out infinite;
  pointer-events: none;
}
.swipe-hint i {
  width: 18px; height: 18px; border-left: 2px solid #fff; border-top: 2px solid #fff;
  transform: rotate(45deg); margin-bottom: -4px;
}
@keyframes hint {
  0%, 100% { opacity: .15; transform: translateY(6px); }
  50% { opacity: .9; transform: translateY(-4px); }
}
.earn-toast {
  position: absolute; left: 50%; top: 92px; z-index: 7;
  transform: translateX(-50%) translateY(-8px);
  background: var(--grad); color: #1a0c00;
  font-size: 11px; font-weight: 800;
  padding: 6px 10px; border-radius: 999px;
  opacity: 0; pointer-events: none;
  box-shadow: 0 10px 24px rgba(255,102,0,.4);
}
.earn-toast.on {
  animation: toastin 1.6s ease forwards;
}
@keyframes toastin {
  0% { opacity: 0; transform: translateX(-50%) translateY(-6px) scale(.92); }
  18% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
  75% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}
.home-pill {
  position: absolute; left: 50%; bottom: 5px; transform: translateX(-50%);
  width: 108px; height: 4px; border-radius: 99px; background: #fff; z-index: 9;
}

.marquee {
  border-block: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 36px; width: max-content;
  animation: slide 26s linear infinite;
  font-family: var(--display); font-weight: 800; letter-spacing: -.03em; font-size: 22px; color: #ffffff8a;
}
.marquee-track span em { font-style: normal; color: var(--orange); }
@keyframes slide { to { transform: translateX(-50%); } }

.section { padding: 96px 0; }
.section h2 {
  font-family: var(--display); font-size: clamp(34px, 4.4vw, 58px);
  letter-spacing: -.055em; margin: 0 0 12px; line-height: 1;
}
.sub { color: var(--muted); max-width: 38rem; margin: 0 0 40px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.card {
  background: linear-gradient(180deg, rgba(255,244,224,.04), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 180px;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: #ff8a0055;
  box-shadow: 0 24px 50px rgba(255,102,0,.12);
}
.card.wide { grid-column: 1 / 2; grid-row: 1 / 3; min-height: 360px; }
.card h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.03em; }
.card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.num { font-family: var(--display); color: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: .14em; margin-bottom: 10px; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 28px;
}
.stat {
  border: 1px solid var(--line); border-radius: 20px; padding: 18px 16px;
  background: rgba(255,255,255,.02);
}
.stat b {
  display: block; font-family: var(--display); font-size: 28px; letter-spacing: -.04em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { color: var(--muted); font-size: 13px; }

.download {
  background:
    radial-gradient(900px 320px at 12% 0%, #ff8a0028, transparent 55%),
    linear-gradient(180deg, rgba(255,244,224,.04), transparent);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 52px;
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: center;
}

.thread {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; padding: 58px 12px 88px;
  gap: 10px; background: linear-gradient(180deg, #120e0a, #070605);
}
.bubble {
  max-width: 78%; padding: 10px 12px; border-radius: 18px; font-size: 12.5px; line-height: 1.35;
  animation: pop .6s ease both;
}
.bubble.in { background: #1c1916; align-self: flex-start; border-bottom-left-radius: 6px; }
.bubble.out {
  align-self: flex-end; border-bottom-right-radius: 6px; color: #1a0c00;
  background: var(--grad);
}
.bubble.d1 { animation-delay: .2s; } .bubble.d2 { animation-delay: .55s; } .bubble.d3 { animation-delay: .95s; }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.96); } }
.typing { display: flex; gap: 4px; padding: 10px 12px; width: fit-content; background: #1c1916; border-radius: 16px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 1.1s infinite; }
.typing i:nth-child(2) { animation-delay: .15s; } .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes blink { 50% { opacity: .25; transform: translateY(-2px); } }
.lock {
  align-self: center; font-size: 10px; color: var(--orange-top); letter-spacing: .12em;
  text-transform: uppercase; font-weight: 800;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
footer a:hover { color: var(--fg); }

.legal { padding: 56px 0 96px; max-width: 760px; }
.legal-kicker {
  color: var(--orange-top); font-weight: 800; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase; margin: 0 0 12px;
}
.legal h1 {
  font-family: var(--display); font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -.05em; margin: 0 0 12px; line-height: 1;
}
.legal-meta { font-size: 13px; margin: 0 0 24px; }
.legal h2 { font-size: 20px; margin-top: 36px; color: var(--fg); }
.legal h3 { font-size: 16px; margin: 22px 0 8px; color: var(--fg); }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--orange-top); }
.legal code {
  font-size: 12.5px; color: var(--orange-top);
  background: rgba(255,138,0,.08); padding: 1px 6px; border-radius: 6px;
}
.toc {
  display: grid; gap: 8px;
  margin: 28px 0 8px; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: 18px;
  background: rgba(255,255,255,.02);
}
.toc a { color: var(--fg); font-size: 14px; font-weight: 650; }
.toc a:hover { color: var(--orange-top); }

.reveal { opacity: 0; transform: translateY(18px); animation: in .85s ease forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .24s; }
@keyframes in { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .hero, .download, .grid3, .bento, .stats { grid-template-columns: 1fr; }
  .card.wide { grid-column: auto; grid-row: auto; min-height: 180px; }
  .nav-links { display: none; }
  .phone { transform: none; animation: none; }
  .phone-ghost { display: none; }
  .phone-stage { min-height: 0; padding: 20px 0 8px; }
  h1 { font-size: 46px; }
  .section { padding: 64px 0; }
  .download { padding: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .slide { opacity: 1; }
}
