:root {
  --bg: #15120f;
  --bg-deep: #0f0d0b;
  --surface: #1e1915;
  --surface-2: #27211c;
  --surface-3: #312820;
  --cream: #f2eadf;
  --cream-2: #d8cec1;
  --muted: #a89d90;
  --faint: #7f756a;
  --amber: #f2c14e;
  --amber-2: #e7aa39;
  --amber-soft: rgba(242, 193, 78, .14);
  --wine: #6e3137;
  --sage: #6f8f78;
  --line: rgba(242, 234, 223, .11);
  --line-strong: rgba(242, 234, 223, .18);
  --shadow: 0 32px 80px rgba(0, 0, 0, .42);
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --font-condensed: "Barlow Condensed", sans-serif;
  --container: 1180px;
  --header: 76px;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--cream);
  background: linear-gradient(135deg, #17130f 0%, var(--bg) 42%, #121412 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::selection { background: var(--amber); color: var(--bg-deep); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed; z-index: 1000; top: 8px; left: 8px;
  transform: translateY(-150%);
  padding: 10px 14px; border-radius: 8px;
  color: var(--bg); background: var(--amber);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 120px 0; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(21, 18, 15, .82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 142px; height: auto; }
.desktop-nav { display: flex; gap: 32px; margin-left: auto; margin-right: 16px; }
.desktop-nav a { font-size: 14px; color: var(--muted); transition: color .2s ease; }
.desktop-nav a:hover { color: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 10px; background: rgba(30,25,21,.72); }
.lang-btn {
  min-width: 44px; min-height: 44px; border: 0; border-radius: 7px; padding: 7px 10px;
  font: 700 11px/1 var(--font-body); color: var(--faint); background: transparent; cursor: pointer;
}
.lang-btn.is-active { color: var(--bg-deep); background: var(--amber); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border: 1px solid transparent; border-radius: 14px;
  font-size: 14px; font-weight: 700; transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #17120d; background: var(--amber); box-shadow: 0 12px 32px rgba(242,193,78,.18); }
.button--primary:hover { background: #f7ca5f; }
.button--ghost { color: var(--cream-2); border-color: var(--line-strong); background: rgba(30,25,21,.55); }
.button--small { min-height: 38px; padding-inline: 15px; border-radius: 10px; font-size: 12px; }

.hero {
  position: relative; min-height: 850px; padding: 138px 0 86px; overflow: hidden; isolation: isolate;
  background: linear-gradient(118deg, #17130f 0%, #1a1511 48%, #151713 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: -2; opacity: .035; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.hero::before {
  content: ""; position: absolute; z-index: -3; width: 760px; height: 980px; right: -110px; top: -180px;
  transform: rotate(13deg); border-left: 1px solid rgba(242,193,78,.12);
  background: linear-gradient(135deg, rgba(242,193,78,.12), rgba(110,49,55,.06) 48%, rgba(111,143,120,.11));
}
.hero::after {
  content: ""; position: absolute; z-index: -3; inset: auto 0 0;
  height: 260px; background: linear-gradient(to bottom, transparent, rgba(15,13,11,.72));
}
.hero-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 40px; align-items: center; }
.hero-copy { position: relative; z-index: 3; max-width: 660px; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 24px;
  font-family: var(--font-condensed); font-size: 14px; font-weight: 700; letter-spacing: .08em; color: var(--amber);
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 7px var(--amber-soft); }
.hero h1 { margin: 0; font-family: var(--font-display); font-size: 76px; line-height: 1.01; letter-spacing: 0; font-weight: 650; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-lead { max-width: 590px; margin: 32px 0 0; font-size: 19px; line-height: 1.7; color: var(--muted); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 38px; }
.platform-pill { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.platform-dots { display: flex; gap: 4px; }
.platform-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--cream-2); }
.platform-dots i:last-child { background: var(--amber); }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }
.hero-points span { display: flex; align-items: center; gap: 9px; color: var(--cream-2); }
.hero-points svg { width: 19px; fill: none; stroke: var(--amber); stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.hero-points b { font-size: 12px; font-weight: 600; letter-spacing: .02em; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 610px;
}
.visual-halo {
  position: absolute;
  width: 94%; height: 78%; left: 5%; top: 12%;
  transform: rotate(-4deg); clip-path: polygon(12% 0, 100% 8%, 89% 100%, 0 88%);
  background: linear-gradient(145deg, rgba(242,193,78,.17), rgba(110,49,55,.12) 52%, rgba(111,143,120,.16));
  border: 1px solid rgba(242,234,223,.08);
}
.hero-backdrop-type {
  position: absolute; z-index: 1; left: 50%; top: 47%; transform: translate(-50%, -50%);
  font: 700 104px/1 var(--font-condensed); letter-spacing: .12em; color: transparent;
  -webkit-text-stroke: 1px rgba(242,234,223,.08); white-space: nowrap;
}
.hero-collage {
  position: relative;
  z-index: 2;
  width: min(112%, 690px);
  margin: 0;
  overflow: visible;
}
.hero-collage img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 36px 34px rgba(0,0,0,.46));
}
.hero-rating {
  position: absolute; z-index: 4; min-width: 138px; padding: 13px 15px;
  border: 1px solid rgba(242,234,223,.16); border-radius: 8px;
  background: rgba(23,19,15,.9); box-shadow: 0 18px 42px rgba(0,0,0,.32); backdrop-filter: blur(16px);
}
.hero-rating > span { display: block; margin-bottom: 4px; font-size: 10px; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.hero-rating strong { font: 700 28px/1 var(--font-condensed); color: var(--cream); }
.hero-rating strong small { font-size: 13px; color: var(--faint); }
.hero-rating--stars { left: 0; bottom: 72px; }
.hero-rating--decimal { right: -8px; top: 78px; border-color: rgba(111,143,120,.4); }
.rating-stars { margin-top: 7px; font-size: 16px; letter-spacing: .08em; color: var(--amber); }
.rating-stars i { color: var(--faint); font-style: normal; }

.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-deep); }
.signal-track { display: flex; align-items: center; width: max-content; min-height: 58px; animation: marquee 26s linear infinite; }
.signal-track span { margin-inline: 30px; font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: .22em; color: var(--faint); }
.signal-track i { width: 7px; height: 7px; transform: rotate(45deg); border-radius: 2px; background: var(--amber); }
@keyframes marquee { to { transform: translateX(-50%); } }

.manifesto { border-bottom: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: .42fr 1fr; gap: 80px; align-items: start; }
.manifesto-copy h2, .section-heading h2, .download-copy h2 {
  margin: 0; font-family: var(--font-display); font-size: 58px; line-height: 1.08; letter-spacing: 0; font-weight: 650;
}
.manifesto-copy p { max-width: 760px; margin: 28px 0 0; font-size: 19px; line-height: 1.8; color: var(--muted); }

.section-heading { max-width: 790px; margin-bottom: 72px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .section-kicker { justify-content: center; }
.section-heading > p:last-child { max-width: 620px; margin: 22px auto 0; color: var(--muted); font-size: 17px; }

.experience { background: linear-gradient(180deg, var(--bg-deep), var(--bg) 18%, var(--bg) 82%, var(--bg-deep)); }
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; min-height: 700px; padding: 88px 0; border-top: 1px solid var(--line); }
.story:last-child { border-bottom: 1px solid var(--line); }
.story--recap { display: block; min-height: auto; padding: 110px 0 132px; }
.story--recap .story-copy { max-width: 820px; }
.story-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 590px; }
.story-index { position: absolute; z-index: 0; right: 4%; bottom: -30px; font-family: var(--font-display); font-size: 160px; line-height: 1; color: rgba(242,234,223,.035); }
.screen-frame { position: relative; z-index: 2; overflow: hidden; border: 1px solid var(--line-strong); background: #0b0908; box-shadow: var(--shadow); }
.screen-frame--phone { width: 310px; padding: 10px; border-radius: 42px; }
.screen-frame--phone img { width: 100%; height: auto; border-radius: 32px; }
.screen-frame--tilt { transform: rotate(-3deg); }
.story-copy { max-width: 500px; }
.story-label { margin: 0 0 18px; font-family: var(--font-condensed); font-size: 13px; font-weight: 700; letter-spacing: .08em; color: var(--amber); }
.story-copy h3 { margin: 0; font-family: var(--font-display); font-size: 48px; line-height: 1.1; letter-spacing: 0; font-weight: 650; }
.story-copy > p:not(.story-label) { margin: 24px 0 0; font-size: 17px; line-height: 1.8; color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 15px; }
.check-list li { position: relative; padding-left: 29px; color: var(--cream-2); font-size: 14px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border: 2px solid var(--amber); transform: rotate(45deg); border-radius: 2px; }
.story-visual--recap { min-height: auto; justify-content: flex-start; margin-top: 58px; }
.recap-theme-control { display: grid; gap: 12px; margin-top: 34px; }
.recap-theme-label { font-size: 12px; font-weight: 700; color: var(--cream-2); }
.recap-theme-switcher { display: flex; flex-wrap: wrap; gap: 8px; }
.recap-theme-btn { min-height: 52px; display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); background: rgba(30,25,21,.68); font: 600 13px/1 var(--font-body); cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.recap-theme-btn:hover { color: var(--cream); border-color: var(--line-strong); }
.recap-theme-btn.is-active { color: var(--bg-deep); border-color: var(--amber); background: var(--amber); }
.theme-preview { width: 30px; height: 40px; flex: 0 0 30px; object-fit: cover; border: 1px solid rgba(255,255,255,.16); border-radius: 4px; box-shadow: 0 5px 12px rgba(0,0,0,.24); }
.recap-gallery { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding-bottom: 34px; transition: opacity .18s ease, transform .18s ease; }
.recap-gallery.is-changing { opacity: .3; transform: translateY(4px); }
.recap-card { margin: 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 8px; background: #0b0908; box-shadow: 0 24px 56px rgba(0,0,0,.3); }
.recap-card:nth-child(even) { transform: translateY(28px); }
.recap-card img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.recap-card figcaption { min-height: 48px; display: flex; align-items: center; padding: 11px 14px; font-size: 12px; font-weight: 600; color: var(--cream-2); border-top: 1px solid var(--line); }
.month-card { position: absolute; z-index: 3; right: 2%; bottom: 70px; width: 250px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 18px; border: 1px solid var(--line-strong); border-radius: 18px; background: rgba(30,25,21,.92); box-shadow: 0 20px 50px rgba(0,0,0,.38); backdrop-filter: blur(14px); }
.month-card > span { grid-column: 1/-1; font-family: var(--font-condensed); font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--amber); }
.month-card div { text-align: center; }
.month-card strong { display: block; font: 700 31px/1 var(--font-condensed); color: var(--cream); }
.month-card small { color: var(--muted); font-size: 11px; }

.features { background: var(--bg-deep); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { position: relative; min-height: 330px; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: linear-gradient(145deg, rgba(39,33,28,.8), rgba(26,22,18,.85)); transition: transform .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: rgba(242,193,78,.28); }
.feature-card--rating { background: linear-gradient(145deg, rgba(73,43,39,.86), rgba(30,29,23,.96)); border-color: rgba(242,193,78,.25); }
.feature-card--recap { grid-column: span 2; min-height: 410px; display: grid; grid-template-columns: minmax(0, 1fr) 230px; gap: 40px; align-items: center; padding: 40px; background: linear-gradient(125deg, rgba(61,35,25,.96), rgba(25,21,17,.98) 62%); border-color: rgba(242,193,78,.28); }
.feature-recap-copy { max-width: 520px; }
.feature-eyebrow { margin: 0 0 18px !important; font: 700 12px/1 var(--font-condensed); letter-spacing: .08em; color: var(--amber) !important; }
.feature-card--recap h3 { font-size: 36px; }
.feature-card--recap p:not(.feature-eyebrow) { font-size: 15px; }
.feature-recap-visual { width: 190px; margin: 0 auto; overflow: hidden; border: 1px solid rgba(242,234,223,.15); border-radius: 7px; box-shadow: 0 24px 46px rgba(0,0,0,.42); transform: rotate(3deg); }
.feature-recap-visual img { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.feature-card--import { background: linear-gradient(145deg, rgba(37,44,36,.78), rgba(24,22,18,.94)); }
.feature-number { position: absolute; top: 22px; right: 22px; font: 600 12px/1 var(--font-condensed); letter-spacing: .12em; color: var(--faint); }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 62px; border-radius: 16px; background: var(--amber-soft); color: var(--amber); }
.feature-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 25px; line-height: 1.15; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.rating-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 62px; padding: 5px; border: 1px solid var(--line); border-radius: 8px; background: rgba(15,13,11,.44); }
.rating-preview span { min-height: 42px; display: flex; align-items: center; justify-content: center; gap: 5px; border-radius: 5px; font: 700 18px/1 var(--font-condensed); color: var(--muted); }
.rating-preview span.is-active { color: var(--bg-deep); background: var(--amber); }
.rating-preview b { color: var(--amber); font-size: 14px; }
.rating-stars-compact { gap: 2px !important; }
.rating-stars-compact b { letter-spacing: 1px; }
.rating-stars-compact i { position: relative; color: var(--faint); font-size: 14px; font-style: normal; line-height: 1; }
.rating-stars-compact i::before { content: "★"; position: absolute; top: 0; left: 0; width: 50%; overflow: hidden; color: var(--amber); }
.rating-preview small { font-size: 11px; }

.download { background: var(--bg-deep); }
.download-card { position: relative; display: grid; grid-template-columns: 150px 1fr auto; gap: 42px; align-items: center; min-height: 330px; padding: 56px; overflow: hidden; border: 1px solid rgba(242,193,78,.26); border-radius: 8px; background: linear-gradient(115deg, #241b12, #1b1713 55%, #15120f); }
.download-card::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle at 2px 2px, rgba(242,193,78,.6) 1px, transparent 1.2px); background-size: 25px 25px; mask-image: linear-gradient(to right, black, transparent 68%); }
.download-glow { position: absolute; width: 320px; height: 320px; left: -70px; top: -30px; border-radius: 50%; background: rgba(242,193,78,.14); filter: blur(50px); }
.download-icon { position: relative; z-index: 2; width: 130px; border-radius: 30px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.download-copy { position: relative; z-index: 2; max-width: 610px; }
.download-copy h2 { font-size: 52px; }
.download-copy p:last-child { margin: 18px 0 0; color: var(--muted); font-size: 15px; }
.store-buttons { position: relative; z-index: 2; display: grid; gap: 12px; }
.store-button { min-width: 190px; min-height: 64px; display: flex; align-items: center; gap: 13px; padding: 11px 17px; border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(15,13,11,.62); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.store-button:hover { transform: translateY(-2px); border-color: rgba(242,193,78,.48); background: rgba(39,33,28,.92); }
.store-button svg { width: 28px; fill: var(--cream-2); }
.store-button span { display: flex; flex-direction: column; }
.store-button small { font-size: 9px; letter-spacing: .06em; color: var(--muted); }
.store-button strong { font-size: 16px; color: var(--cream); }

.footer { padding: 50px 0; border-top: 1px solid var(--line); background: var(--bg-deep); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: end; }
.footer-brand img { width: 132px; height: auto; }
.footer-brand p { margin: 14px 0 0; font-size: 13px; color: var(--faint); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 24px; }
.footer-links a { min-height: 44px; display: inline-flex; align-items: center; font-size: 12px; color: var(--muted); transition: color .2s ease; }
.footer-links a:hover { color: var(--amber); }
.footer-copy { grid-column: 1/-1; margin: 0; padding-top: 26px; border-top: 1px solid var(--line); font-size: 11px; color: var(--faint); }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1060px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: 68px; }
  .hero-visual { min-height: 620px; max-width: 700px; width: 100%; margin: 0 auto; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 10px; }
  .story { gap: 58px; }
  .feature-grid { grid-template-columns: repeat(3,1fr); }
  .download-card { grid-template-columns: 120px 1fr; }
  .download-icon { width: 110px; }
  .store-buttons { grid-column: 1/-1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .desktop-nav { display: none; }
  .brand img { width: 126px; }
  .header-actions { gap: 8px; }
  .header-actions .button { display: none; }
  .hero { padding: 108px 0 60px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: 48px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-points { gap: 14px 20px; }
  .hero-visual { min-height: 430px; }
  .hero-collage { width: min(100%, 560px); }
  .hero-backdrop-type { font-size: 76px; }
  .hero-rating--stars { left: 0; bottom: 34px; }
  .hero-rating--decimal { right: 0; top: 42px; }
  .manifesto-copy h2, .section-heading h2 { font-size: 42px; }
  .story-copy h3 { font-size: 38px; }
  .manifesto-copy p { font-size: 16px; }
  .section-heading { margin-bottom: 52px; }
  .story { grid-template-columns: 1fr; min-height: auto; gap: 52px; padding: 72px 0; }
  .story-visual { min-height: 540px; order: 1; }
  .story-copy { order: 2; }
  .screen-frame--phone { width: 270px; }
  .story--recap { padding: 78px 0 94px; }
  .story--recap .story-copy { max-width: 100%; }
  .recap-theme-switcher { flex-wrap: nowrap; width: calc(100vw - 28px); padding-bottom: 6px; overflow-x: auto; scrollbar-width: none; }
  .recap-theme-switcher::-webkit-scrollbar { display: none; }
  .recap-theme-btn { flex: 0 0 auto; }
  .story-visual--recap { width: calc(100% + 14px); min-height: auto; margin-top: 44px; margin-right: -14px; order: initial; }
  .recap-gallery { display: flex; gap: 12px; padding: 0 14px 18px 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--amber) transparent; }
  .recap-card { flex: 0 0 min(74vw, 280px); scroll-snap-align: start; }
  .recap-card:nth-child(even) { transform: none; }
  .month-card { width: 220px; right: -1%; bottom: 42px; }
  .story-index { font-size: 110px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--recap { grid-column: auto; grid-template-columns: minmax(0, 1fr) 190px; }
  .feature-card { min-height: 280px; }
  .feature-icon { margin-bottom: 50px; }
  .download-card { grid-template-columns: 80px 1fr; gap: 24px; padding: 34px 24px; }
  .download-icon { width: 80px; border-radius: 20px; }
  .download-copy .section-kicker { margin-bottom: 12px; }
  .download-copy h2 { font-size: 34px; }
  .download-copy p:last-child { grid-column: 1/-1; }
  .store-buttons { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 42px; }
  .hero-actions { margin-top: 28px; }
  .hero-points { margin-top: 28px; padding-top: 22px; }
  .hero-visual { min-height: 350px; }
  .hero-collage { width: 112%; }
  .hero-backdrop-type { font-size: 56px; }
  .hero-rating { min-width: 116px; padding: 10px 12px; }
  .hero-rating strong { font-size: 24px; }
  .hero-rating--stars { bottom: 16px; }
  .hero-rating--decimal { top: 24px; right: -4px; }
  .rating-stars { font-size: 13px; }
  .feature-card--recap { grid-template-columns: 1fr; gap: 30px; padding: 28px; }
  .feature-recap-visual { width: min(74%, 210px); }
  .hero-points { display: grid; grid-template-columns: 1fr 1fr; }
  .month-card { right: -4px; width: 205px; }
  .download-card { grid-template-columns: 1fr; text-align: center; }
  .download-icon { margin-inline: auto; }
  .download-copy .section-kicker { justify-content: center; }
}

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