/* ============================================================
   Unspeakabl — unspeakabl.in
   One stylesheet, built from the design tokens.
   Mobile-first (390) with a desktop tier at 900px+ (design: 1440).
   ============================================================ */

@font-face {
  font-family: 'Bungee';
  src: url('../fonts/Bungee.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('../fonts/Nunito-var.woff2') format('woff2-variations'),
       url('../fonts/Nunito-var.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* surfaces */
  --page: #120C0A;
  --stage: #1A1210;
  --valance: #241E1A;
  --well: #0B0908;
  --hairline: #3A302A;

  /* paper */
  --cream: #FAF0E4;
  --cream-2: #F5EAD9;
  --cream-3: #F0E0CB;
  --ink: #1A1210;
  --ink-2: #4A3B32;

  /* accents */
  --terracotta: #C14B3D;
  --terracotta-dark: #9C3527;
  --amber: #E0882A;
  --amber-hi: #F0A24C;
  --amber-dark: #93520F;
  --amber-ink: #241503;
  --gold: #C8A951;
  --gold-dark: #7C6521;
  --gold-ink: #241D03;
  --olive: #8B9A46;
  --olive-deep: #6F7F2E;
  --green: #7AAD4A;
  --green-dark: #456A24;
  --green-ink: #16220A;
  --teal: #3E7C8B;

  /* type */
  --body: #B9A692;
  --muted: #8A7565;
  --muted-2: #9C8878;
  --muted-3: #5E4E42;
  --nav-link: #C5B3A0;

  /* shape — near-zero radii */
  --r-paper: 2px;
  --r-key: 4px;

  --shadow-paper: 0 14px 26px rgba(0, 0, 0, .45);
  --shadow-paper-lg: 0 22px 40px rgba(0, 0, 0, .55);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font-family: 'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

* { text-wrap: pretty; }

a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-hi); }

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

h1, h2, h3, h4 {
  font-family: 'Bungee', 'Nunito', sans-serif;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--cream);
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: var(--amber-ink);
  font-family: 'Bungee', sans-serif;
  font-size: 13px;
  padding: 12px 18px;
  z-index: 99;
}
.skip-link:focus { left: 8px; top: 8px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── stage + grain ─────────────────────────────────────────── */

.stage {
  position: relative;
  background: var(--stage);
  overflow: hidden;
}

/* An absolutely-positioned replaced element with auto width/height falls back to
   the SVG intrinsic 300x150 and ignores inset — set the size explicitly. */
.grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .05;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  padding-left: 22px;
  padding-right: 22px;
}

.rule {
  height: 2px;
  background: var(--hairline);
  margin: 0 22px;
  border: 0;
}

/* ── keys (the hard-offset buttons) ────────────────────────── */

.key {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  border: 0;
  cursor: pointer;
  font-family: 'Bungee', sans-serif;
  text-align: left;
  border-radius: var(--r-key);
  transition: transform .06s ease, box-shadow .06s ease, background .12s ease;
}

.key--amber {
  background: var(--amber);
  color: var(--amber-ink);
  box-shadow: 0 5px 0 var(--amber-dark);
  padding: 11px 18px 10px;
}
.key--amber:hover { background: var(--amber-hi); color: var(--amber-ink); }
.key--amber:active { transform: translateY(4px); box-shadow: 0 1px 0 var(--amber-dark); }

.key--amber-lg {
  padding: 16px 20px 14px;
  box-shadow: 0 8px 0 var(--amber-dark);
  width: 100%;
}
.key--amber-lg:active { transform: translateY(6px); box-shadow: 0 2px 0 var(--amber-dark); }

.key--green {
  background: var(--green);
  color: var(--green-ink);
  box-shadow: 0 8px 0 var(--green-dark);
  padding: 15px 26px 13px;
  min-height: 44px;
}
.key--green:active { transform: translateY(6px); box-shadow: 0 2px 0 var(--green-dark); }

.key__label { font-size: 18px; line-height: 1.1; }
.key__sub {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 9.5px;
  letter-spacing: 0.12em;
}
.key--amber .key__sub { color: rgba(36, 21, 3, .72); }
.key--green .key__sub { color: rgba(22, 34, 10, .65); }

.key--nav .key__label { font-size: 11px; white-space: nowrap; }

/* buzzer */
.buzzer {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: #100B09;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex: none;
}
.buzzer__inner {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 5px 0 var(--terracotta-dark), inset 0 3px 0 rgba(255, 235, 225, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bungee', sans-serif;
  font-size: 11px;
  color: var(--cream);
  transition: transform .06s ease, box-shadow .06s ease;
}
.buzzer:active .buzzer__inner {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--terracotta-dark);
}

/* ── store badges ──────────────────────────────────────────── */

.badges { display: flex; flex-direction: column; gap: 10px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.badge img { display: block; height: 52px; width: auto; }

/* ── nav ───────────────────────────────────────────────────── */

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
}

.wordmark {
  font-family: 'Bungee', sans-serif;
  font-size: 16px;
  color: var(--cream);
  text-shadow: 2px 2px 0 rgba(193, 75, 61, .9);
  white-space: nowrap;
}
.wordmark:hover { color: var(--cream); }

.nav__links { display: none; }

/* valance — the lit awning over the stage.
   Drawn in CSS, not a stretched SVG: preserveAspectRatio="none" on a wide
   viewport turns the bulbs into ellipses. */
.valance { position: relative; z-index: 1; }
.valance__bar {
  height: 18px;
  background: var(--valance);
  border-bottom: 2px solid rgba(200, 169, 81, .8);
}
.valance__bulbs {
  display: flex;
  justify-content: space-around;
  padding: 7px 6% 12px;
}
.valance__bulbs i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFD98A;
  box-shadow: 0 0 10px rgba(255, 217, 138, .55);
}
.valance__bulbs i:nth-child(5),
.valance__bulbs i:nth-child(6) { display: none; }

/* ── hero ──────────────────────────────────────────────────── */

.hero {
  position: relative;
  z-index: 1;
  padding: 34px 22px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.eyebrow {
  font-weight: 900;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(38px, 11vw, 44px);
  line-height: 1.02;
  text-shadow: 4px 4px 0 rgba(193, 75, 61, .9);
}

.hero__lede { margin: 0; font-size: 16px; line-height: 1.6; color: var(--body); }

.hero__cone { display: none; }

.microcopy {
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.13em;
  color: var(--muted-3);
  text-transform: uppercase;
}

/* ── the playable card demo ────────────────────────────────── */

.demo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  padding-top: 10px;
}

.demo__cue {
  font-weight: 900;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

#demo-play {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.card {
  position: relative;
  width: 100%;
  max-width: 330px;
}
.card__tear { display: block; width: 100%; height: auto; }

.card__body {
  background: var(--cream);
  border-left: 7px solid var(--terracotta);
  border-radius: 0 0 var(--r-paper) var(--r-paper);
  padding: 22px 26px 26px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .55);
}

.card__kicker {
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(26, 18, 16, .45);
}

.card__word {
  font-family: 'Bungee', sans-serif;
  font-size: clamp(30px, 9vw, 36px);
  line-height: 1;
  color: var(--ink);
  padding: 7px 0 15px;
  overflow-wrap: anywhere;
}

.card__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}
.card__divider span {
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--terracotta);
  white-space: nowrap;
}
.card__divider i { flex: 1; height: 2px; background: var(--terracotta); opacity: .35; }

.card__banned { list-style: none; margin: 0; padding: 0; }
.card__banned li {
  font-family: 'Bungee', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
}

.card__seal {
  position: absolute;
  bottom: 18px;
  right: 20px;
  width: 52px;
  height: 52px;
  transform: rotate(-11deg);
  display: none;
}

.demo__controls { display: flex; gap: 14px; align-items: center; }

.demo__count {
  font-weight: 900;
  font-size: 9.5px;
  letter-spacing: 0.13em;
  color: var(--muted-3);
  text-transform: uppercase;
  text-align: center;
}

/* end slate */
.slate {
  width: 100%;
  max-width: 330px;
  background: var(--cream);
  border-bottom: 6px solid var(--gold);
  padding: 28px 26px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .55);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: rotate(-1.5deg);
}
.slate h3 { font-size: 24px; line-height: 1.05; color: var(--ink); }
.slate p { margin: 0; font-weight: 800; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }

.slate__again {
  font-family: 'Bungee', sans-serif;
  font-size: 11px;
  color: var(--muted-2);
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  text-align: left;
  align-self: flex-start;
}
.slate__again:hover { color: var(--terracotta); }

[hidden] { display: none !important; }

/* ── sections ──────────────────────────────────────────────── */

.section {
  position: relative;
  z-index: 1;
  padding: 40px 22px 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section__head { display: flex; flex-direction: column; gap: 8px; }
.section h2 {
  font-size: clamp(24px, 7vw, 26px);
  text-shadow: 3px 3px 0 rgba(193, 75, 61, .9);
}
.section__lede { margin: 0; font-size: 16px; line-height: 1.6; color: var(--body); }

/* steps */
.steps { display: flex; flex-direction: column; gap: 18px; margin: 0; padding: 0; list-style: none; }
.step {
  background: var(--cream-2);
  padding: 20px 22px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .45);
  display: flex;
  gap: 16px;
  border-radius: var(--r-paper);
}
.step:nth-child(1) { transform: rotate(-1.2deg); }
.step:nth-child(2) { transform: rotate(1deg); }
.step:nth-child(3) { transform: rotate(-0.8deg); }
.step__n { font-family: 'Bungee', sans-serif; font-size: 24px; color: var(--terracotta); line-height: 1; }
.step__t { font-weight: 700; font-size: 14px; line-height: 1.55; color: var(--ink-2); }
.step__t strong { color: var(--ink); }

.facts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'Bungee', sans-serif;
  font-size: 12px;
  color: var(--gold);
}
.facts i { color: var(--hairline); font-style: normal; }

/* packs shelf */
.shelf { display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }

.pack {
  position: relative;
  width: 150px;
  background: var(--cream-3);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-paper);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: var(--r-paper);
}
.pack::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.32) 0%, rgba(255,255,255,0) 34%, rgba(255,255,255,.16) 52%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.pack--free { background: var(--cream); border-bottom: 6px solid var(--terracotta); width: 172px; }
.pack--free::after { content: none; }
.pack:nth-child(1) { transform: rotate(-2deg); }
.pack:nth-child(2) { transform: rotate(1.6deg); border-bottom: 6px solid var(--teal); }
.pack:nth-child(3) { transform: rotate(-1deg); border-bottom: 6px solid var(--gold); }
.pack:nth-child(4) { transform: rotate(2.2deg); border-bottom: 6px solid var(--olive); }

.pack__n { font-family: 'Bungee', sans-serif; font-size: 17px; line-height: 1.05; color: var(--ink); }
.pack--free .pack__n { font-size: 20px; }
.pack__m { font-weight: 900; font-size: 10px; letter-spacing: 0.13em; color: rgba(26, 18, 16, .55); }
.pack__tag {
  align-self: flex-start;
  font-family: 'Bungee', sans-serif;
  font-size: 11px;
  background: var(--olive);
  color: var(--cream);
  padding: 4px 8px;
  margin-top: 6px;
}
.shelf__more {
  font-family: 'Bungee', sans-serif;
  font-size: 15px;
  color: var(--muted);
  padding-bottom: 14px;
  align-self: flex-end;
}

/* pricing */
.tiers { display: flex; flex-direction: column; gap: 18px; margin: 0; padding: 0; list-style: none; }

.tier {
  padding: 20px 22px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, .45);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--r-paper);
}
.tier__eyebrow { font-weight: 900; font-size: 10px; letter-spacing: 0.16em; color: rgba(26, 18, 16, .5); }
.tier__name { font-family: 'Bungee', sans-serif; font-size: 19px; line-height: 1.05; color: var(--ink); }
.tier__desc { font-weight: 700; font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.tier__tag { font-family: 'Bungee', sans-serif; font-size: 11px; margin-top: auto; }

.tier--free { background: var(--cream); border-bottom: 6px solid var(--olive); transform: rotate(-1deg); }
.tier--free .tier__tag { color: var(--olive-deep); }

.tier--pass { background: var(--cream-2); transform: rotate(0.9deg); padding-top: 16px; }
.tier--pass .tier__tag { color: var(--amber-dark); }
.tier-tear { display: block; width: 100%; height: auto; }
.tier-pass-wrap { display: flex; flex-direction: column; transform: rotate(0.9deg); }
.tier-pass-wrap .tier--pass { transform: none; box-shadow: 0 12px 22px rgba(0,0,0,.45); }

.tier--season {
  background: var(--gold);
  border-radius: 3px;
  transform: rotate(-0.7deg);
  box-shadow: 0 9px 0 var(--gold-dark), 0 18px 26px rgba(0, 0, 0, .5), inset 0 3px 0 rgba(255, 248, 220, .55);
}
.tier--season .tier__eyebrow { color: rgba(36, 29, 3, .62); }
.tier--season .tier__name { color: var(--gold-ink); }
.tier--season .tier__desc { color: #3E3208; }
.tier--season .tier__tag { color: var(--gold-ink); }

.footnote { font-weight: 800; font-size: 12px; line-height: 1.6; color: var(--muted); }

/* ── footer ────────────────────────────────────────────────── */

.foot {
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--hairline);
  padding: 26px 22px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 900;
  font-size: 10.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.foot__links a { color: var(--muted-2); }
.foot__links a:hover { color: var(--cream); }
.foot__copy { font-weight: 800; font-size: 11px; color: var(--muted-3); }

/* ── text pages (privacy / support / terms) ────────────────── */

.sheet-stage { padding: 22px 16px 48px; display: flex; justify-content: center; }

.sheet {
  width: 100%;
  max-width: 640px;
  background: var(--cream);
  border-bottom: 6px solid var(--terracotta);
  padding: 30px 24px 36px;
  box-shadow: var(--shadow-paper-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: var(--r-paper);
}

.sheet__meta { font-weight: 900; font-size: 10px; letter-spacing: 0.18em; color: rgba(26, 18, 16, .45); text-transform: uppercase; }
.sheet h1 { font-size: clamp(26px, 8vw, 34px); line-height: 1.05; color: var(--ink); }
.sheet__hr { height: 2px; background: var(--terracotta); opacity: .3; border: 0; margin: 0; }

.sheet h2 { font-family: 'Bungee', sans-serif; font-size: 15px; color: var(--ink); text-shadow: none; margin: 10px 0 0; }
.sheet h3 { font-family: 'Bungee', sans-serif; font-size: 13px; color: var(--ink); margin: 6px 0 0; }
.sheet p, .sheet li { font-weight: 600; font-size: 14.5px; line-height: 1.7; color: var(--ink-2); }
.sheet p { margin: 0; }
.sheet ul, .sheet ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 4px; }
.sheet a { color: #A8442F; text-decoration: underline; }
.sheet a:hover { color: var(--terracotta); }
.sheet strong { color: var(--ink); }

.sheet__note {
  background: #F0E0CB;
  border-left: 5px solid var(--amber-dark);
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.6;
}

.sheet-actions { display: flex; justify-content: center; padding: 0 16px 8px; }

/* ── /download ─────────────────────────────────────────────── */

.router {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.router__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 32px 30px 40px;
  position: relative;
  z-index: 1;
}
.router__body h1 { font-size: clamp(28px, 9vw, 34px); line-height: 1.05; }
.router__body p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }

.qr {
  flex: none;
  background: var(--cream);
  padding: 18px;
  transform: rotate(1.6deg);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .55);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  border-radius: var(--r-paper);
}
.qr img { display: block; width: 164px; height: 164px; image-rendering: pixelated; }
.qr__cap { font-weight: 900; font-size: 9.5px; letter-spacing: 0.12em; color: rgba(26, 18, 16, .55); text-transform: uppercase; }

/* variant switching for /download */
.only-desktop { display: none; }

/* ── desktop tier ──────────────────────────────────────────── */

@media (min-width: 900px) {
  .wrap, .nav, .hero, .section, .foot { padding-left: 64px; padding-right: 64px; }
  .rule { margin: 0 64px; }

  .wordmark { font-size: 21px; text-shadow: 3px 3px 0 rgba(193, 75, 61, .9); }

  .nav { padding-top: 22px; padding-bottom: 22px; }
  .nav__links {
    display: flex;
    gap: 34px;
    align-items: center;
  }
  .nav__links a {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--nav-link);
    text-transform: uppercase;
  }
  .nav__links a:hover { color: var(--cream); }
  .key--nav { padding: 11px 18px 10px; }
  .key--nav .key__label { font-size: 13px; }
  .nav__cta-mobile { display: none !important; }
  #demo-play { gap: 18px; }
  .valance__bar { height: 20px; }
  .valance__bulbs { padding: 8px 4% 14px; }
  .valance__bulbs i:nth-child(5),
  .valance__bulbs i:nth-child(6) { display: block; }
  /* keep the wax seal clear of the longest banned word */
  .card__banned { padding-right: 58px; }

  .hero {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 64px;
    align-items: center;
    padding: 64px 64px 88px;
  }
  .hero__copy { display: flex; flex-direction: column; gap: 26px; max-width: 640px; }
  .hero h1 { font-size: clamp(56px, 5vw, 74px); text-shadow: 5px 5px 0 rgba(193, 75, 61, .9); }
  .hero__lede { font-size: 19px; max-width: 52ch; }
  .eyebrow { font-size: 12px; letter-spacing: 0.2em; }

  .hero__cone {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    z-index: 0;
    animation: coneBreathe 6s ease-in-out infinite;
  }

  .badges { flex-direction: row; gap: 14px; }

  .demo { gap: 18px; padding-top: 0; }
  .demo__cue { font-size: 11px; }
  .card { max-width: 340px; }
  .card__body { padding: 26px 30px 30px; }
  .card__word { font-size: 42px; padding: 8px 0 18px; }
  .card__banned li { font-size: 19px; }
  .card__seal { display: block; }
  .demo__controls { gap: 16px; }
  .buzzer { width: 74px; height: 74px; }
  .buzzer__inner { width: 58px; height: 58px; box-shadow: 0 6px 0 var(--terracotta-dark), inset 0 3px 0 rgba(255, 235, 225, .4); }
  .demo__count { font-size: 10px; letter-spacing: 0.14em; }

  .slate { max-width: 340px; padding: 34px 30px; gap: 14px; }
  .slate h3 { font-size: 30px; }
  .slate p { font-size: 14px; }
  .slate__again { font-size: 12px; }

  .section { padding: 72px 64px 84px; gap: 36px; }
  .section h2 { font-size: 38px; text-shadow: 4px 4px 0 rgba(193, 75, 61, .9); }
  .section__lede { font-size: 17px; max-width: 64ch; }

  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .step { flex-direction: column; padding: 26px 26px 30px; gap: 12px; box-shadow: 0 14px 26px rgba(0, 0, 0, .45); }
  .step:nth-child(1) { transform: rotate(-1.4deg); }
  .step:nth-child(2) { transform: rotate(1.2deg); }
  .step:nth-child(3) { transform: rotate(-0.8deg); }
  .step__n { font-size: 30px; }
  .step__t { font-size: 14.5px; line-height: 1.6; }
  .facts { gap: 32px; font-size: 13px; }

  .shelf { gap: 22px; }
  .pack { width: 170px; }
  .pack--free { width: 190px; }

  .tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
  .tier { padding: 26px 26px 28px; box-shadow: var(--shadow-paper); flex: 1; }
  .tier__name { font-size: 26px; }
  .tier__desc { font-size: 14.5px; line-height: 1.6; }
  .tier--free { transform: rotate(-1.2deg); }
  .tier-pass-wrap { transform: rotate(0.9deg); }
  .tier--pass { padding-top: 20px; }
  .tier--season {
    transform: rotate(-0.7deg);
    box-shadow: 0 11px 0 var(--gold-dark), 0 22px 32px rgba(0, 0, 0, .55), inset 0 3px 0 rgba(255, 248, 220, .55);
  }
  .footnote { font-size: 13px; max-width: 80ch; }

  .foot { flex-direction: row; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; padding: 36px 64px 44px; }
  .foot__brand { display: flex; flex-direction: column; gap: 6px; }
  .foot__links { gap: 28px; font-size: 11.5px; }

  .sheet-stage { padding: 28px 48px 64px; }
  .sheet { max-width: 640px; padding: 48px 52px 56px; transform: rotate(-0.5deg); gap: 22px; }
  .sheet h1 { font-size: 34px; }

  .router__body { flex-direction: row; align-items: center; gap: 52px; padding: 56px 60px; }
  .router__copy { display: flex; flex-direction: column; gap: 18px; flex: 1; }
  .router__body h1 { font-size: 38px; }
  .router__body p { font-size: 16px; max-width: 40ch; }
  .only-mobile { display: none; }
  h1.only-desktop, p.only-desktop { display: block; }
  .qr.only-desktop { display: flex; }
  .badges--router { flex-direction: row; }
}

/* ── motion ────────────────────────────────────────────────── */

@keyframes bulbFlicker { 0%, 100% { opacity: 1; } 42% { opacity: .72; } 61% { opacity: .95; } }
@keyframes coneBreathe { 0%, 100% { opacity: .9; } 50% { opacity: 1; } }
@keyframes chase { 0% { opacity: .35; } 25% { opacity: 1; } 60% { opacity: .35; } 100% { opacity: .35; } }
@keyframes cardDeal { 0% { transform: translateX(60px) rotate(8deg); opacity: 0; } 100% { transform: translateX(0) rotate(0); opacity: 1; } }
@keyframes buzzShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  45% { transform: translateX(6px); }
  70% { transform: translateX(-4px); }
  90% { transform: translateX(2px); }
}

.bulbs { animation: bulbFlicker 4.5s ease-in-out infinite; }
.bulbs--chase circle { animation: chase 1.6s linear infinite; }
.bulbs--chase circle:nth-child(2) { animation-delay: .4s; }
.bulbs--chase circle:nth-child(3) { animation-delay: .8s; }
.bulbs--chase circle:nth-child(4) { animation-delay: 1.2s; }

.is-dealt { animation: cardDeal .32s ease-out; }
.is-buzzed { animation: buzzShake .4s ease-out; }

/* Ambient loops off; deliberate one-shot feedback stays. */
@media (prefers-reduced-motion: reduce) {
  .bulbs,
  .bulbs--chase circle,
  .hero__cone { animation: none !important; }

  .is-dealt,
  .is-buzzed { animation: none !important; }

  *, *::before, *::after {
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
