/* Snack Catch: snackcatch.com. One stylesheet, no framework. Light = Cozy Kitchen daylight, dark = Pizza Night. */
@font-face {
  font-family: "Fredoka";
  src: url("/fonts/fredoka.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --red: #e8323c; --orange: #f07a18; --green: #2f9a2a; --blue: #2b6fe0; --purple: #7a3fd4;
  --play: #3cdc6f; --play-2: #1fb553; --play-edge: #127a36;
  --bg: #fff1dc; --bg-2: #ffe2bd; --surface: #fffaf2; --surface-2: #fff4e3;
  --ink: #3b2314; --ink-2: #6d4630; --ink-3: #8a6348;
  --line: rgba(59, 35, 20, .14);
  --burst-a: #ffd8a3; --burst-b: #ffeacc;
  --glow: rgba(255, 190, 90, .55);
  --shadow: 0 18px 40px -12px rgba(110, 56, 14, .35);
  --shadow-sm: 0 6px 16px -6px rgba(110, 56, 14, .35);
  --radius: 28px;
  --nav-h: 64px;
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1200px;
  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1b0f1f; --bg-2: #28142c; --surface: #2c1932; --surface-2: #341e3a;
    --ink: #fff1dc; --ink-2: #ecd3b8; --ink-3: #c9a98c;
    --line: rgba(255, 241, 220, .14);
    --burst-a: #34183a; --burst-b: #2a132f;
    --glow: rgba(255, 170, 70, .35);
    --shadow: 0 18px 44px -12px rgba(0, 0, 0, .6);
    --shadow-sm: 0 6px 16px -6px rgba(0, 0, 0, .6);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 1.0625rem/1.6 "Fredoka", ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video, canvas { display: block; max-width: 100%; }
a { color: var(--blue); text-underline-offset: .18em; }
@media (prefers-color-scheme: dark) { a { color: #8fb8ff; } }
h1, h2, h3 { line-height: 1.08; margin: 0; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 10px; }
@media (prefers-color-scheme: dark) { :focus-visible { outline-color: #9cc2ff; } }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--bg); padding: 10px 16px; border-radius: 12px; font-weight: 600; text-decoration: none; }
.skip:focus { top: 12px; }

/* ---------- buttons & badges ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 20px; border-radius: 999px; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 0; transition: transform .15s var(--ease-pop), filter .15s;
}
.btn--play {
  color: #fff; background: linear-gradient(180deg, #7cf59b 0%, var(--play) 38%, var(--play-2) 100%);
  box-shadow: inset 0 0 0 3px var(--play-edge), 0 4px 0 var(--play-edge), 0 8px 18px -6px rgba(18, 122, 54, .6);
  text-shadow: 0 1px 0 rgba(0, 0, 0, .2);
}
.btn--play:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--play:active { transform: translateY(2px); box-shadow: inset 0 0 0 3px var(--play-edge), 0 1px 0 var(--play-edge); }

.stores { display: flex; flex-wrap: wrap; gap: 14px 18px; align-items: flex-start; }
.store { display: inline-flex; flex-direction: column; align-items: center; gap: 7px; text-decoration: none; color: inherit; }
.store img { height: 50px; width: auto; }
.store__soon {
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 12px; border-radius: 999px; background: var(--ink); color: var(--bg);
}
a.store { transition: transform .15s var(--ease-pop); }
a.store:hover { transform: translateY(-2px); }
.store--dim img { filter: saturate(.9); }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h); transition: background .25s, box-shadow .25s, backdrop-filter .25s; }
.nav.is-solid { background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4); box-shadow: 0 1px 0 var(--line); }
.nav__inner { max-width: var(--max); margin: 0 auto; height: 100%; padding: 0 var(--gutter); display: flex; align-items: center; gap: 20px; }
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.nav__brand img { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.nav__word { font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; white-space: nowrap; }
.nav__word b, .foot__name b { font-weight: 700; }
.c1 { color: var(--red); } .c2 { color: var(--orange); } .c3 { color: var(--green); } .c4 { color: var(--blue); } .c5 { color: var(--purple); }
@media (prefers-color-scheme: dark) { .nav__word .c3 { color: #4cc244; } .nav__word .c4 { color: #4f8dff; } .nav__word .c5 { color: #a174ff; } }
.nav__links { display: flex; gap: 4px; }
.nav__links a { color: var(--ink); text-decoration: none; font-weight: 500; padding: 8px 12px; border-radius: 999px; }
.nav__links a:hover { background: var(--line); }
.nav__cta { padding: 8px 18px; min-height: 40px; font-size: .98rem; }
@media (max-width: 900px) { .nav__links { display: none; } }
@media (max-width: 380px) { .nav__word { font-size: 1.15rem; } .nav__cta { padding: 8px 14px; } }

/* ---------- shared section chrome ---------- */
section { position: relative; }
.section-head { max-width: 760px; margin: 0 auto clamp(28px, 5vw, 52px); text-align: center; padding: 0 var(--gutter); }
.kicker { display: inline-block; font-weight: 600; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.section-head h2 { font-size: clamp(2.2rem, 6.4vw, 4rem); }
.section-lede { font-size: clamp(1.05rem, 2.2vw, 1.25rem); color: var(--ink-2); margin-top: 14px; }
.perfect-word {
  font-weight: 700; letter-spacing: .02em;
  background: linear-gradient(90deg, var(--red), var(--orange), #e6b400, var(--green), var(--blue), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- live-type wordmark ---------- */
.wm { font-weight: 700; font-size: var(--wm-size, clamp(88px, 21vw, 176px)); line-height: .9; letter-spacing: -.02em; margin: 0; }
.wm-row { display: block; white-space: nowrap; }
.wm-l {
  display: inline-block; position: relative;
  text-shadow: 0 .045em 0 rgba(0, 0, 0, .22), 0 .1em .08em rgba(60, 20, 0, .3);
  -webkit-text-stroke: .012em rgba(0, 0, 0, .12);
  animation: wm-in .9s var(--ease-pop) both, wm-bob 4.2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 70ms + 150ms), calc(var(--i) * 180ms + 1.3s);
}
.wm-l::after { /* the cream bevel highlight from the in-game title */
  content: attr(data-l); position: absolute; left: 0; top: 0; pointer-events: none; text-shadow: none; -webkit-text-stroke: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .16) 30%, rgba(255, 255, 255, 0) 46%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.wm-l.c1 { color: var(--red); } .wm-l.c2 { color: var(--orange); } .wm-l.c3 { color: var(--green); } .wm-l.c4 { color: var(--blue); } .wm-l.c5 { color: var(--purple); }
@media (prefers-color-scheme: dark) { .wm-l { text-shadow: 0 .045em 0 rgba(0, 0, 0, .5), 0 .12em .14em rgba(0, 0, 0, .55), 0 0 .5em rgba(255, 180, 90, .12); } }
@keyframes wm-in { 0% { opacity: 0; transform: translateY(-.6em) scale(.6, 1.3); } 60% { opacity: 1; transform: translateY(.04em) scale(1.12, .86); } 80% { transform: translateY(-.02em) scale(.96, 1.05); } 100% { opacity: 1; transform: none; } }
@keyframes wm-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -.035em; } }
.wm-l:hover { animation: wm-jelly .6s var(--ease-pop); }
@keyframes wm-jelly { 0% { transform: scale(1); } 30% { transform: scale(1.18, .82); } 55% { transform: scale(.9, 1.12); } 80% { transform: scale(1.05, .96); } 100% { transform: scale(1); } }

.ribbon { display: inline-block; position: relative; margin: 18px 0 0; padding: 0 30px; filter: drop-shadow(0 6px 10px rgba(120, 20, 20, .25)); }
.ribbon span {
  display: inline-block; position: relative; z-index: 1; background: linear-gradient(#f24a52, var(--red)); color: #fff;
  font-weight: 600; font-size: clamp(1.15rem, 3.6vw, 1.6rem); padding: 8px 22px 10px; border-radius: 6px;
  box-shadow: inset 0 0 0 3px #2b1210, inset 0 4px 0 rgba(255, 255, 255, .22); text-shadow: 0 2px 0 rgba(0, 0, 0, .25);
}
.ribbon::before, .ribbon::after {
  content: ""; position: absolute; top: 12px; bottom: -8px; width: 44px; background: #c42029;
  box-shadow: inset 0 0 0 3px #2b1210;
}
.ribbon::before { left: 0; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30% 50%); }
.ribbon::after { right: 0; clip-path: polygon(0 0, 100% 0, 70% 50%, 100% 100%, 0 100%); }

/* ---------- spinning snack sprites (36-frame strips) ---------- */
.snk {
  --s: 96px; display: block; width: var(--s); height: var(--s);
  background: var(--img) 0 0 / calc(var(--s) * 36) var(--s) no-repeat;
  animation: snk-spin 1.2s steps(36) infinite;
  filter: drop-shadow(0 10px 12px rgba(80, 30, 0, .28));
}
@keyframes snk-spin { to { background-position: calc(var(--s) * -36) 0; } }

/* ---------- hero ---------- */
.hero { min-height: min(100svh, 980px); padding: calc(var(--nav-h) + 28px) 0 64px; overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 80% at 50% 38%, var(--bg-2) 0%, var(--bg) 70%); }
.hero__burst {
  position: absolute; left: 50%; top: 42%; width: 240vmax; height: 240vmax; translate: -50% -50%; z-index: -2;
  background: repeating-conic-gradient(from 0deg, var(--burst-a) 0 7.5deg, var(--burst-b) 7.5deg 15deg);
  -webkit-mask: radial-gradient(closest-side, #000 0%, rgba(0, 0, 0, .75) 24%, transparent 62%);
  mask: radial-gradient(closest-side, #000 0%, rgba(0, 0, 0, .75) 24%, transparent 62%);
  animation: burst 120s linear infinite;
}
@keyframes burst { to { rotate: 360deg; } }
.lights { position: absolute; left: 0; right: 0; top: calc(var(--nav-h) - 6px); height: 46px; display: flex; justify-content: space-around; z-index: -1; pointer-events: none; }
.lights::before { content: ""; position: absolute; left: -2%; right: -2%; top: 0; height: 26px; border-bottom: 2px solid rgba(59, 35, 20, .35); border-radius: 0 0 50% 50% / 0 0 100% 100%; }
@media (prefers-color-scheme: dark) { .lights::before { border-color: rgba(255, 230, 190, .25); } }
.lights i { position: relative; width: 12px; height: 16px; margin-top: 14px; border-radius: 50% 50% 45% 45%; background: #fff3c4;
  box-shadow: 0 0 10px 3px var(--glow), 0 0 26px 8px var(--glow); animation: twinkle 3.2s ease-in-out infinite; }
.lights i:nth-child(odd) { margin-top: 22px; animation-delay: -1.2s; }
.lights i:nth-child(3n) { animation-delay: -2.1s; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

.hero__inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); display: grid; gap: 28px; align-items: center; text-align: center; }
.hero__copy { display: flex; flex-direction: column; align-items: center; }
.hero__lede { margin-top: 22px; font-size: clamp(1.15rem, 2.6vw, 1.45rem); max-width: 30ch; color: var(--ink-2); font-weight: 500; }
.hero__stores { margin-top: 26px; }
.hero__stores .stores { justify-content: center; }
.hero__fine { margin-top: 14px; font-size: .95rem; color: var(--ink-3); font-weight: 500; }
.hero__stage { position: relative; display: grid; place-items: center; padding: 20px 0 10px; }
.phone {
  position: relative; width: clamp(230px, 62vw, 300px); aspect-ratio: 1080 / 2336; border-radius: 46px; padding: 10px;
  background: linear-gradient(145deg, #3a2430, #140b12); box-shadow: 0 0 0 2px rgba(255, 255, 255, .06) inset, 0 40px 70px -24px rgba(70, 20, 0, .55), 0 0 0 1px rgba(0, 0, 0, .3);
  rotate: -3deg; animation: float 6s ease-in-out infinite;
}
.phone__screen { width: 100%; height: 100%; border-radius: 37px; overflow: hidden; background: #2a1a12; }
.phone__video { width: 100%; height: 100%; object-fit: cover; }
.phone__tag { position: absolute; left: 50%; bottom: -16px; translate: -50% 0; background: var(--surface); color: var(--ink); font-size: .82rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.phone__pause { position: absolute; right: 18px; bottom: 22px; width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(20, 10, 10, .55); color: #fff; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(6px); }
.phone__pause::before { content: ""; width: 12px; height: 14px; border-left: 4px solid #fff; border-right: 4px solid #fff; box-sizing: border-box; }
.phone__pause[aria-pressed="true"]::before { width: 0; height: 0; border: 0; border-left: 13px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 4px; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.hero__stage .snk { position: absolute; }
.snk--a { --s: 92px; left: 2%; top: 8%; }
.snk--b { --s: 84px; right: 0%; top: 18%; }
.snk--c { --s: 70px; left: 6%; bottom: 20%; }
.snk--d { --s: 88px; right: 3%; bottom: 10%; }
.snk--e { --s: 74px; left: 18%; top: -2%; display: none; }
.snk--f { --s: 72px; right: 16%; bottom: -4%; display: none; }
.hero__stage .snk { translate: var(--px, 0) var(--py, 0); }
.hero__scroll { position: absolute; left: 50%; bottom: 16px; translate: -50% 0; width: 30px; height: 46px; border-radius: 16px; border: 3px solid var(--ink-3); display: none; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 6px; height: 10px; margin-left: -3px; border-radius: 3px; background: var(--ink-3); animation: scrolly 1.8s ease-in-out infinite; }
@keyframes scrolly { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

@media (min-width: 900px) {
  .hero { display: flex; align-items: center; }
  .hero__inner { grid-template-columns: 1.15fr .85fr; text-align: left; gap: 40px; width: 100%; }
  .hero__copy { align-items: flex-start; }
  .hero__stores .stores { justify-content: flex-start; }
  .ribbon { margin-left: -30px; }
  .phone { width: clamp(260px, 24vw, 320px); }
  .snk--a { --s: 120px; left: -4%; top: 6%; } .snk--b { --s: 104px; right: -6%; top: 16%; }
  .snk--c { --s: 88px; left: -2%; bottom: 18%; } .snk--d { --s: 110px; right: -8%; bottom: 8%; }
  .snk--e, .snk--f { display: block; }
  .hero__scroll { display: block; }
}

/* ---------- how it plays (steps inside the toy section) ---------- */
.steps { list-style: none; margin: 22px auto 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 560px; }
.step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; background: var(--surface); border-radius: 22px; padding: 12px 8px 14px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.step__art { width: 64px; height: 64px; display: grid; place-items: center; }
.step__art img { width: 76px; height: 76px; object-fit: contain; }
.snk--step { --s: 64px; }
.step__art--perfect span { font-weight: 700; font-size: .82rem; color: #fff; background: linear-gradient(135deg, var(--orange), var(--red)); padding: 5px 7px; border-radius: 9px; rotate: -8deg; box-shadow: 0 3px 0 #9b1b22; }
.step__n { position: absolute; top: 6px; left: 10px; font-weight: 700; font-size: 1.1rem; line-height: 1; color: var(--ink-3); opacity: .6; }
.step h3 { font-size: 1.2rem; margin-top: 4px; }
.step p { color: var(--ink-2); font-size: .9rem; line-height: 1.35; }
@media (min-width: 1000px) {
  .steps { margin: 30px 0 0; gap: 14px; }
  .step { padding: 16px 12px 18px; }
  .step__art { width: 84px; height: 84px; }
  .step__art img { width: 96px; height: 96px; }
  .snk--step { --s: 84px; }
  .step h3 { font-size: 1.4rem; }
  .step p { font-size: 1rem; }
}

/* ---------- toy ---------- */
.toss { padding: clamp(48px, 8vw, 96px) 0; background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent); }
.toy { max-width: 560px; margin: 0 auto; padding: 0 var(--gutter); }
.toy__stage {
  position: relative; aspect-ratio: 4 / 5; border-radius: 32px; overflow: hidden; touch-action: none; user-select: none; -webkit-user-select: none; cursor: grab;
  background: #f6d6ae url(/img/worlds/kitchen.webp) center 30% / cover; box-shadow: var(--shadow), inset 0 0 0 4px rgba(59, 35, 20, .85);
}
.toy__stage:active { cursor: grabbing; }
.toy__stage:focus-visible { outline-offset: 5px; border-radius: 32px; }
.toy__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.toy__hud { position: absolute; top: 14px; left: 14px; right: 14px; display: flex; gap: 8px; pointer-events: none; }
.toy__pill { background: rgba(255, 250, 242, .92); color: #3b2314; font-weight: 600; font-size: .95rem; padding: 5px 14px; border-radius: 999px; box-shadow: 0 2px 0 rgba(59, 35, 20, .5); }
.toy__pill b { font-weight: 700; color: var(--orange); margin-left: 4px; }
.toy__hint { position: absolute; left: 50%; bottom: 29%; translate: -50% 0; background: rgba(40, 20, 10, .78); color: #fff; font-weight: 600; padding: 6px 14px; border-radius: 999px; pointer-events: none; transition: opacity .3s; white-space: nowrap; animation: hint 1.6s ease-in-out infinite; }
.toy__hint.is-gone { opacity: 0; }
@keyframes hint { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.toy__noscript { position: absolute; inset: auto 0 40% 0; text-align: center; font-weight: 600; color: #3b2314; }
.toy__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; }
.toy__guests { display: flex; gap: 8px; flex-wrap: wrap; }
.guest-chip { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 4px 4px 6px; min-width: 64px; background: var(--surface); border: 2px solid var(--line); border-radius: 18px; cursor: pointer; font-size: .82rem; font-weight: 600; color: var(--ink-2); transition: transform .15s var(--ease-pop), border-color .15s; }
.guest-chip img { width: 46px; height: 46px; }
.guest-chip:hover { transform: translateY(-2px); }
.guest-chip[aria-pressed="true"] { border-color: var(--orange); color: var(--ink); background: var(--surface-2); box-shadow: 0 3px 0 var(--orange); }
.sound-btn { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 16px; border-radius: 999px; background: var(--surface); border: 2px solid var(--line); cursor: pointer; font-weight: 600; }
.sound-btn__icon { width: 18px; height: 18px; background: currentColor; -webkit-mask: var(--ico) center / contain no-repeat; mask: var(--ico) center / contain no-repeat;
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9h4l5-4v14l-5-4H3z'/%3E%3Cpath d='M16 9l6 6M22 9l-6 6' stroke='%23000' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.sound-btn[aria-pressed="true"] .sound-btn__icon { --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9h4l5-4v14l-5-4H3z'/%3E%3Cpath d='M16 8.5a5 5 0 010 7M19 6a8.5 8.5 0 010 12' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.sound-btn[aria-pressed="true"] { border-color: var(--green); }
.toy__note { margin-top: 14px; font-size: .92rem; color: var(--ink-3); text-align: center; }
@media (min-width: 1000px) {
  .toss { display: grid; grid-template-columns: 1fr 560px; gap: 40px; align-items: center;
    padding-left: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter))); padding-right: max(var(--gutter), calc((100% - var(--max)) / 2 + var(--gutter))); }
  .toss .section-head { text-align: left; margin: 0; padding: 0; }
  .toss .toy { padding: 0; }
}

/* ---------- guests ---------- */
.guests { padding: clamp(56px, 9vw, 110px) 0 clamp(40px, 6vw, 70px); }
.guest-grid { list-style: none; margin: 0; padding: 8px var(--gutter) 24px; display: grid; grid-auto-flow: column; grid-auto-columns: min(66vw, 260px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.guest-grid::-webkit-scrollbar { display: none; }
.guest { scroll-snap-align: center; text-align: center; }
.guest__btn { position: relative; display: block; width: 100%; aspect-ratio: 1; padding: 0; border: 0; background: none; cursor: pointer; border-radius: 50%; }
.guest__plate { position: absolute; inset: 8% 4% 2%; border-radius: 50%; background: radial-gradient(circle at 50% 40%, var(--g2), color-mix(in srgb, var(--g) 55%, var(--g2)) 100%); box-shadow: inset 0 -10px 0 color-mix(in srgb, var(--g) 70%, #000 8%), var(--shadow-sm); transition: transform .3s var(--ease-pop); }
@media (prefers-color-scheme: dark) { .guest__plate { background: radial-gradient(circle at 50% 40%, color-mix(in srgb, var(--g) 45%, #2c1932), color-mix(in srgb, var(--g) 25%, #1b0f1f)); } }
.guest__img { position: absolute; left: 0; bottom: 0; width: 100%; height: auto; transition: opacity .12s, transform .35s var(--ease-pop); transform-origin: 50% 100%;
  -webkit-mask: linear-gradient(180deg, #000 78%, transparent 97%); mask: linear-gradient(180deg, #000 78%, transparent 97%); }
.guest__img--happy { opacity: 0; }
.guest__btn:hover .guest__plate, .guest__btn:focus-visible .guest__plate, .guest.is-happy .guest__plate { transform: scale(1.04); }
.guest__btn:hover .guest__img, .guest__btn:focus-visible .guest__img { transform: scale(1.04, .98) translateY(-2%); }
.guest.is-happy .guest__img--idle { opacity: 0; }
.guest.is-happy .guest__img--happy { opacity: 1; animation: gulp .7s var(--ease-pop); }
@keyframes gulp { 0% { transform: scale(1); } 25% { transform: scale(1.12, .9); } 55% { transform: scale(.94, 1.08) translateY(-5%); } 100% { transform: scale(1); } }
.guest h3 { font-size: 2rem; margin-top: 10px; color: var(--g); text-shadow: 0 2px 0 rgba(0, 0, 0, .12); }
@media (prefers-color-scheme: light) { .guest h3 { color: color-mix(in srgb, var(--g) 78%, #3b2314); } }
.guest p { color: var(--ink-2); }
@media (min-width: 1000px) {
  .guest-grid { max-width: var(--max); margin: 0 auto; grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); overflow: visible; }
}

/* ---------- worlds ---------- */
.worlds { padding: clamp(40px, 7vw, 90px) 0; }
.world-row { list-style: none; margin: 0; padding: 8px var(--gutter) 24px; display: grid; grid-auto-flow: column; grid-auto-columns: min(74vw, 320px); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.world-row::-webkit-scrollbar { display: none; }
.world { position: relative; scroll-snap-align: center; height: min(128vw, 560px); border-radius: var(--radius); overflow: hidden; background: var(--w) var(--wi) center / cover; box-shadow: var(--shadow); isolation: isolate; }
.world__media { position: absolute; inset: 0; z-index: -1; }
.world__media video { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s; }
.world.is-playing .world__media video { opacity: 1; }
.world::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(180deg, transparent, rgba(22, 10, 6, .82)); z-index: -1; pointer-events: none; }
.world__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px 20px; color: #fff; }
.world__n { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; background: var(--w); padding: 3px 10px; border-radius: 999px; box-shadow: 0 2px 0 rgba(0, 0, 0, .3); }
.world h3 { font-size: clamp(1.7rem, 3vw, 2.1rem); margin-top: 8px; text-shadow: 0 2px 8px rgba(0, 0, 0, .5); white-space: nowrap; }
.world__meta { display: block; margin-top: 4px; font-weight: 500; opacity: .92; font-size: .95rem; }
.snk--world { --s: 76px; position: absolute; top: 14px; right: 12px; }
@media (min-width: 1000px) {
  .world-row { max-width: var(--max); margin: 0 auto; display: flex; overflow: visible; gap: 12px; }
  .world { flex: 1 1 0; height: 560px; transition: flex-grow .55s cubic-bezier(.2, .8, .2, 1); min-width: 0; }
  .world h3 { font-size: 1.5rem; }
  .world.is-open { flex-grow: 2.3; }
  .world.is-open h3 { font-size: 2.1rem; }
  .world:not(.is-open) .world__meta { opacity: 0; }
  .world:not(.is-open) h3 { white-space: normal; font-size: 1.3rem; }
  .world:not(.is-open) .snk--world { --s: 60px; }
}

/* ---------- features bento ---------- */
.feats { padding: clamp(48px, 8vw, 100px) var(--gutter); }
.bento { max-width: var(--max); margin: 0 auto; display: grid; gap: 16px; grid-template-columns: 1fr; }
.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; gap: 18px; }
.card h3 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); }
.card__text p { margin-top: 10px; color: var(--ink-2); font-size: 1.08rem; }
.card__proof { font-size: .98rem !important; background: var(--surface-2); border-radius: 14px; padding: 10px 14px; border-left: 5px solid var(--orange); }
.card__proof span { color: var(--ink-3); }
.mini-phone { width: min(46vw, 180px); aspect-ratio: 360 / 780; align-self: center; border-radius: 30px; padding: 7px; background: linear-gradient(145deg, #3a2430, #140b12); box-shadow: 0 24px 40px -18px rgba(60, 20, 0, .6); flex: none; }
.mini-phone video { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; background: #2a1a12; }
.card > .mini-phone, .card > .daily { order: 2; }
.card > .rarity { order: 3; }
.card--perfect { background: radial-gradient(90% 90% at 100% 0%, color-mix(in srgb, var(--orange) 22%, var(--surface)) 0%, var(--surface) 60%); }
.card--box { background: radial-gradient(100% 80% at 50% 100%, color-mix(in srgb, #f7c21b 26%, var(--surface)), var(--surface) 70%); }
.rarity { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.rarity li { font-weight: 600; font-size: .9rem; padding: 4px 12px; border-radius: 999px; color: #fff; box-shadow: 0 2px 0 rgba(0, 0, 0, .25); }
.r-common { background: #8a8f98; } .r-rare { background: #2b6fe0; } .r-epic { background: #7a3fd4; } .r-legendary { background: linear-gradient(90deg, #f0a51a, #e8323c); }
.card--daily { align-items: center; text-align: center; background: radial-gradient(90% 70% at 50% 0%, color-mix(in srgb, var(--blue) 18%, var(--surface)), var(--surface) 70%); }
.daily { width: 190px; border-radius: 22px; overflow: hidden; background: var(--surface-2); box-shadow: var(--shadow-sm); border: 3px solid var(--ink); }
.daily__top { display: block; background: var(--red); color: #fff; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px; }
.daily__plate { display: grid; place-items: center; height: 140px; background: radial-gradient(ellipse 40% 13% at 50% 76%, #fff 0 60%, #e6ddcf 62% 76%, transparent 78%), radial-gradient(ellipse 44% 15% at 50% 80%, rgba(60, 30, 10, .18), transparent 80%), linear-gradient(#fff8ec, #f6e6cf); }
.snk--daily { --s: 110px; margin-top: -26px; }
.card--endless { background: radial-gradient(90% 90% at 0% 100%, color-mix(in srgb, var(--purple) 20%, var(--surface)), var(--surface) 65%); }
.card--party { background: radial-gradient(90% 90% at 100% 100%, color-mix(in srgb, var(--red) 18%, var(--surface)), var(--surface) 65%); }
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card--perfect { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; padding: 32px 40px; }
  .card--perfect .card__text { max-width: 560px; }
  .card--perfect .mini-phone { width: 220px; }
}
@media (min-width: 1080px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .card--perfect { grid-column: span 4; flex-direction: row; padding: 36px 48px; }
  .card--perfect h3 { font-size: 3rem; }
  .card--perfect .mini-phone { width: 250px; }
  .card--box { grid-column: span 2; }
  .card--box .mini-phone { width: 180px; }
  .card--daily, .card--endless, .card--party { grid-column: span 2; flex-direction: column; align-items: stretch; justify-content: space-between; text-align: left; }
  .card--daily .daily { align-self: center; order: 2; margin: auto 0; }
  .card--endless .mini-phone, .card--party .mini-phone { width: 170px; order: 2; }
}

/* ---------- numbers ---------- */
.numbers { padding: clamp(24px, 5vw, 50px) var(--gutter); }
.numbers__row { list-style: none; margin: 0 auto; padding: 0; max-width: var(--max); display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; text-align: center; }
.numbers__row li { display: flex; flex-direction: column; align-items: center; }
.numbers__row b { font-size: clamp(3.4rem, 11vw, 6.2rem); line-height: 1; font-weight: 700; text-shadow: 0 .05em 0 rgba(0, 0, 0, .18); }
.numbers__row li:nth-child(1) b { color: var(--red); } .numbers__row li:nth-child(2) b { color: var(--orange); }
.numbers__row li:nth-child(3) b { color: var(--green); } .numbers__row li:nth-child(4) b { color: var(--blue); }
@media (prefers-color-scheme: dark) { .numbers__row li:nth-child(3) b { color: #4cc244; } .numbers__row li:nth-child(4) b { color: #5b95ff; } }
.numbers__row span { font-weight: 600; font-size: 1.1rem; color: var(--ink-2); }
@media (min-width: 760px) { .numbers__row { grid-template-columns: repeat(4, 1fr); } }

/* ---------- trailers (theater) ---------- */
.trailers { margin-top: clamp(40px, 7vw, 80px); padding: clamp(70px, 10vw, 110px) 0 clamp(50px, 8vw, 90px); color: #fff1dc; background:
  radial-gradient(60% 50% at 50% 0%, rgba(255, 170, 60, .22), transparent 70%),
  linear-gradient(90deg, #5e0d18 0, #8f1624 3%, #5e0d18 6%, transparent 12%, transparent 88%, #5e0d18 94%, #8f1624 97%, #5e0d18 100%),
  #160a10; }
.trailers::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 26px; background: repeating-linear-gradient(90deg, #8f1624 0 26px, #6e0f1b 26px 52px); border-radius: 0 0 50% 50% / 0 0 22px 22px; box-shadow: 0 6px 14px rgba(0, 0, 0, .4); }
.marquee { display: flex; justify-content: center; margin-bottom: 18px; }
.marquee span { position: relative; font-weight: 700; font-size: clamp(1rem, 2.6vw, 1.3rem); letter-spacing: .24em; text-transform: uppercase; color: #ffe3a3; padding: 10px 26px; border-radius: 12px; border: 3px solid #f0b441;
  box-shadow: 0 0 0 6px #1d0d12, 0 0 0 8px #f0b441, 0 0 24px rgba(240, 180, 65, .5); text-shadow: 0 0 12px rgba(255, 200, 100, .8);
  background: radial-gradient(circle, #ffe7a8 2px, transparent 3px) 0 0 / 16px 16px; }
.section-head--dark .section-lede { color: #e8cfb2; }
.section-head--dark h2 { color: #fff4e2; }
.reel { list-style: none; margin: 0; padding: 12px var(--gutter) 28px; display: grid; grid-auto-flow: column; grid-auto-columns: min(46vw, 220px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #f0b441 transparent; }
.ticket { position: relative; display: block; width: 100%; padding: 0; border: 0; border-radius: 20px; overflow: hidden; cursor: pointer; background: #000; aspect-ratio: 9 / 16; scroll-snap-align: start; box-shadow: 0 0 0 3px #f0b441, 0 20px 30px -14px rgba(0, 0, 0, .8); transition: transform .25s var(--ease-pop), box-shadow .25s; }
.ticket img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .3s; filter: saturate(1.05); }
.ticket::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .85)); }
.ticket__genre { position: absolute; z-index: 1; left: 12px; right: 12px; bottom: 12px; text-align: left; font-weight: 700; font-size: 1.1rem; line-height: 1.15; color: #fff; }
.ticket__play { position: absolute; z-index: 1; left: 50%; top: 44%; width: 58px; height: 58px; translate: -50% -50%; border-radius: 50%; background: rgba(255, 244, 226, .92); box-shadow: 0 6px 18px rgba(0, 0, 0, .5); transition: transform .25s var(--ease-pop); }
.ticket__play::before { content: ""; position: absolute; left: 23px; top: 18px; border-left: 18px solid #e8323c; border-top: 11px solid transparent; border-bottom: 11px solid transparent; }
.ticket:hover, .ticket:focus-visible { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 0 0 3px #ffd36b, 0 26px 40px -14px rgba(0, 0, 0, .9); }
.ticket:hover img { transform: scale(1.05); }
.ticket:hover .ticket__play { transform: scale(1.12); }
@media (min-width: 1000px) {
  .reel { max-width: var(--max); margin: 0 auto; grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; gap: 22px; }
}
.theater { padding: 0; border: 0; background: transparent; max-width: none; max-height: none; width: 100%; height: 100%; }
.theater::backdrop { background: rgba(8, 3, 6, .88); backdrop-filter: blur(6px); }
.theater[open] { display: grid; place-items: center; }
.theater__box { width: min(92vw, calc(82svh * 9 / 16)); }
.theater__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; color: #fff; }
.theater__title { font-weight: 700; font-size: 1.2rem; }
.theater__close { width: 44px; height: 44px; border-radius: 50%; border: 0; background: #fff1dc; color: #3b2314; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.theater__video { width: 100%; aspect-ratio: 9 / 16; max-height: 82svh; border-radius: 18px; background: #000; }

/* ---------- download ---------- */
.download { padding: clamp(110px, 16vw, 170px) var(--gutter) clamp(60px, 9vw, 110px); }
.download__card { position: relative; max-width: 760px; margin: 0 auto; text-align: center; padding: 56px 24px 36px; border-radius: 36px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); z-index: 1; }
.download__card h2 { font-size: clamp(2rem, 6vw, 3.4rem); }
.download__icon { width: 104px; height: 104px; border-radius: 24px; margin: -110px auto 18px; box-shadow: var(--shadow); }
.download__stores .stores { justify-content: center; margin-top: 26px; }
.download__guests { position: relative; max-width: 760px; margin: 0 auto -58px; display: flex; justify-content: space-between; padding: 0 2%; pointer-events: none; }
.download__guests img { width: 34%; max-width: 210px; height: auto; -webkit-mask: linear-gradient(180deg, #000 70%, transparent 96%); mask: linear-gradient(180deg, #000 70%, transparent 96%); }
.download__guests img:nth-child(2) { display: none; }
.download__guests img:nth-child(1) { rotate: -8deg; } .download__guests img:nth-child(3) { rotate: 8deg; }

/* ---------- footer ---------- */
.foot { position: relative; background: #2a1810; color: #f6e2c8; padding: 60px var(--gutter) 40px; margin-top: 20px; }
@media (prefers-color-scheme: dark) { .foot { background: #110810; } }
.foot__lights { position: absolute; left: 0; right: 0; top: -10px; height: 20px; background: radial-gradient(circle at 12px 10px, #fff3c4 4px, rgba(255, 200, 100, .45) 7px, transparent 11px) 0 0 / 48px 20px repeat-x; }
.foot__inner { max-width: var(--max); margin: 0 auto; display: grid; gap: 26px; }
.foot__brand { display: flex; gap: 14px; align-items: center; }
.foot__brand img { width: 56px; height: 56px; border-radius: 15px; }
.foot__name { font-weight: 700; font-size: 1.5rem; }
.foot__tag { color: #d9bfa1; }
.foot__links { display: flex; flex-wrap: wrap; gap: 6px 4px; }
.foot__links a { color: #fff1dc; text-decoration: none; font-weight: 500; padding: 8px 12px; border-radius: 999px; }
.foot__links a:hover { background: rgba(255, 241, 220, .1); text-decoration: underline; }
.foot__fine { font-size: .92rem; color: #c8ab8c; }
@media (min-width: 900px) { .foot__inner { grid-template-columns: auto 1fr; align-items: center; } .foot__links { justify-content: flex-end; } .foot__fine { grid-column: 1 / -1; } }

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px) scale(.98); transition: opacity .6s ease, transform .7s var(--ease-pop); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- document pages (privacy, terms, support, press) ---------- */
.doc-hero { position: relative; overflow: hidden; isolation: isolate; padding: calc(var(--nav-h) + 48px) var(--gutter) 44px; text-align: center; background: radial-gradient(120% 100% at 50% 0%, var(--bg-2), var(--bg) 75%); }
.doc-hero .hero__burst { top: 0; width: 200vmax; height: 200vmax; }
.doc-hero h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); }
.doc-hero p { margin-top: 12px; color: var(--ink-2); font-size: 1.12rem; }
.doc-hero .snk { position: absolute; }
.doc-hero .snk:nth-of-type(1) { --s: 72px; left: 6%; top: 58%; }
.doc-hero .snk:nth-of-type(2) { --s: 64px; right: 7%; top: 40%; }
@media (max-width: 700px) { .doc-hero .snk:nth-of-type(1) { --s: 44px; left: 4%; top: calc(var(--nav-h) + 6px); } .doc-hero .snk:nth-of-type(2) { --s: 44px; right: 4%; top: calc(var(--nav-h) + 6px); } }
.doc { max-width: 900px; margin: 0 auto; padding: 8px var(--gutter) 70px; }
.doc__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 5vw, 48px); box-shadow: var(--shadow-sm); }
.doc__card + .doc__card { margin-top: 18px; }
.doc h2 { font-size: clamp(1.5rem, 3.6vw, 1.9rem); margin: 38px 0 12px; }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 1.25rem; margin: 26px 0 8px; }
.doc p, .doc li { color: var(--ink-2); }
.doc p + p { margin-top: 12px; }
.doc ul, .doc ol { padding-left: 1.3em; margin: 10px 0; }
.doc li + li { margin-top: 6px; }
.doc strong { color: var(--ink); font-weight: 600; }
.doc .meta { font-weight: 600; color: var(--ink); }
.table-wrap { overflow-x: auto; margin: 14px 0; border: 1px solid var(--line); border-radius: 16px; -webkit-overflow-scrolling: touch; }
.table-wrap table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: .95rem; }
.table-wrap th, .table-wrap td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.table-wrap th { background: var(--surface-2); color: var(--ink); font-weight: 600; }
.table-wrap td { color: var(--ink-2); }
.table-wrap tr:last-child td { border-bottom: 0; }
.owner-note { border: 2px dashed var(--orange); border-radius: 16px; padding: 12px 16px; margin: 14px 0; background: color-mix(in srgb, var(--orange) 8%, var(--surface)); }
.owner-note p { color: var(--ink) !important; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: 0; }
.faq summary { cursor: pointer; list-style: none; font-weight: 600; font-size: 1.15rem; color: var(--ink); padding: 14px 40px 14px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; translate: 0 -50%; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2); font-size: 1.3rem; transition: rotate .25s; }
.faq details[open] summary::after { rotate: 45deg; }
.faq details > div { padding: 0 0 16px; }
.contact-card { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.contact-card .btn { font-size: 1.05rem; }
.press-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); margin-top: 14px; }
.press-grid a { display: block; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .92rem; }
.press-grid img { width: 100%; height: auto; border-radius: 16px; box-shadow: var(--shadow-sm); background: var(--surface-2); margin-bottom: 6px; }
.press-logo { display: grid; place-items: center; padding: 24px; border-radius: 20px; background: repeating-conic-gradient(var(--burst-a) 0 25%, var(--burst-b) 0 50%) 0 0 / 22px 22px; }
.press-logo .wm { --wm-size: clamp(64px, 16vw, 112px); text-align: center; }
.press-logo .wm-l { animation: none; }
.facts { display: grid; grid-template-columns: max-content 1fr; gap: 8px 18px; margin: 12px 0 0; }
.facts dt { font-weight: 600; color: var(--ink); }
.facts dd { margin: 0; color: var(--ink-2); }
@media (max-width: 520px) { .facts { grid-template-columns: 1fr; gap: 2px; } .facts dd { margin-bottom: 10px; } }
.copy-box { position: relative; background: var(--surface-2); border-radius: 16px; padding: 14px 16px; margin-top: 10px; }
.copy-box p { color: var(--ink) !important; }
.lost { text-align: center; padding: calc(var(--nav-h) + 60px) var(--gutter) 90px; }
.lost img { width: min(62vw, 300px); margin: 0 auto; }
.lost h1 { font-size: clamp(2.4rem, 8vw, 4.4rem); margin-top: 10px; }
.lost p { margin: 12px auto 26px; color: var(--ink-2); font-size: 1.2rem; max-width: 34ch; }

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