/* ═══════════════════════════════════════════════════════
   GIFTASTIC MYSTERY BOX
   Palette + type pulled straight from the logo:
   glossy royal→sky blue chrome, hot pink hearts,
   violet petals, gold sparks, on deep space black.
   ═══════════════════════════════════════════════════════ */

:root {
  /* Core */
  --ink:          #05060f;
  --ink-2:        #0a0c1c;
  --ink-3:        #11142c;

  /* Logo blues */
  --blue-deep:    #0a1f7a;
  --blue:         #1f4fe0;
  --blue-bright:  #3b82f6;
  --sky:          #7fd4ff;
  --ice:          #dff1ff;

  /* Logo pinks + violets */
  --pink:         #ff3d9a;
  --pink-hot:     #ff1f8b;
  --pink-soft:    #ff9bd0;
  --violet:       #a855f7;
  --violet-deep:  #6d28d9;

  /* Accents */
  --gold:         #ffc94d;
  --mint:         #34e0c0;
  --orange:       #ff8a3d;

  --white:        #ffffff;
  --muted:        #a7b0d6;

  /* Gradients */
  --grad-chrome:  linear-gradient(180deg, #ffffff 0%, #dff1ff 18%, #7fd4ff 40%, #2f6bff 62%, #0a1f7a 82%, #4a90ff 100%);
  --grad-pink:    linear-gradient(180deg, #ffffff 0%, #ffd9ec 18%, #ff9bd0 40%, #ff3d9a 65%, #b8005c 85%, #ff6bb0 100%);
  --grad-rainbow: linear-gradient(90deg, #a855f7, #ff3d9a, #ffc94d, #34e0c0, #3b82f6, #a855f7);

  --shadow-card:  0 24px 60px -20px rgba(0,0,0,.85);
  --radius:       26px;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-body:    'Outfit', system-ui, -apple-system, sans-serif;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

/* Horizontal-scroll guard. hidden on <html> propagates to the viewport.
   body uses clip, NOT hidden: hidden on both would turn <body> into its
   own scroll container and break the window scroll listeners. */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--ice);
  line-height: 1.65;
  overflow-x: clip;
  min-height: 100vh;
  position: relative;
}

/* Deep-space backdrop with drifting nebula */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(900px 700px at 12% 8%,  rgba(31, 79, 224, .30), transparent 60%),
    radial-gradient(800px 620px at 88% 22%, rgba(255, 61, 154, .22), transparent 62%),
    radial-gradient(760px 700px at 50% 88%, rgba(168, 85, 247, .22), transparent 64%),
    var(--ink);
}

/* Fine star dust */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .5;
  background-image:
    radial-gradient(1.4px 1.4px at 18% 24%,  #fff, transparent),
    radial-gradient(1.2px 1.2px at 74% 12%,  #bfe9ff, transparent),
    radial-gradient(1.6px 1.6px at 42% 68%,  #ffd9ec, transparent),
    radial-gradient(1.1px 1.1px at 88% 76%,  #fff, transparent),
    radial-gradient(1.3px 1.3px at 62% 42%,  #d9c4ff, transparent),
    radial-gradient(1px   1px   at 8%  62%,  #fff, transparent),
    radial-gradient(1.5px 1.5px at 30% 90%,  #bfe9ff, transparent),
    radial-gradient(1.2px 1.2px at 95% 45%,  #ffd9ec, transparent);
  background-size: 620px 620px, 480px 480px, 720px 720px, 540px 540px,
                   660px 660px, 500px 500px, 700px 700px, 580px 580px;
  animation: drift 120s linear infinite;
}
@keyframes drift { to { background-position: 620px 620px, -480px 480px, 720px -720px, -540px -540px, 660px 300px, 500px -500px, -700px 400px, 300px 580px; } }

img { max-width: 100%; display: block; }
main { overflow-x: clip; }   /* the tilted ticker bleeds past both edges on purpose */
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--pink); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue-bright), var(--pink));
  border-radius: 99px;
  border: 3px solid var(--ink);
}

/* ── Ambient layers ──────────────────────────────────── */
#sparkle-canvas {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

/* Orbs are absolute inside a clipped fixed layer. A position:fixed orb would
   escape overflow clipping and can widen the page on iOS Safari. */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .35;
  pointer-events: none;
  will-change: transform;
}
.glow-orb--blue   { width: 460px; height: 460px; background: #1f4fe0; top: -8%;  left: -6%;  animation: float-a 26s ease-in-out infinite; }
.glow-orb--pink   { width: 380px; height: 380px; background: #ff3d9a; top: 42%;  right: -8%; animation: float-b 32s ease-in-out infinite; }
.glow-orb--violet { width: 420px; height: 420px; background: #a855f7; bottom: 4%; left: 28%; animation: float-a 38s ease-in-out infinite reverse; }

@keyframes float-a { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(80px,60px) scale(1.15); } }
@keyframes float-b { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-70px,-80px) scale(1.2); } }

/* Floating hearts / petals / sparkles injected by JS */
.floaties { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.floatie {
  position: absolute;
  bottom: -60px;
  font-size: 20px;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(255,61,154,.5));
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) rotate(0deg) scale(.6); opacity: 0; }
  10%  { opacity: .85; }
  90%  { opacity: .5; }
  100% { transform: translateY(-112vh) rotate(360deg) scale(1.1); opacity: 0; }
}

/* ═══════════ TYPOGRAPHY / CHROME TEXT ═══════════════════
   The logo look: white outline behind, glossy blue gradient
   fill on top, hard drop-shadow for 3D depth. */

/* Base element = the thick white outline (as in the logo).
   ::before overlays the glossy gradient fill on top of it.
   Order matters: a background-clip:text fill paints in the
   background layer, so it must live on the positioned pseudo
   element to sit ABOVE the outline rather than under it. */
.chrome {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .01em;
  color: #fff;
  -webkit-text-stroke: .13em #fff;
  paint-order: stroke fill;
  filter:
    drop-shadow(0 2px 0 #0a1f7a)
    drop-shadow(0 4px 0 rgba(10,31,122,.6))
    drop-shadow(0 10px 22px rgba(31,79,224,.55));
}
.chrome::before {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  -webkit-text-stroke: 0;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Must wrap exactly like the outline text underneath. `pre` kept long
     titles on one line on phones, pushing the page wider than the screen. */
  white-space: normal;
  pointer-events: none;
}
.chrome--pink {
  filter: drop-shadow(0 2px 0 #8c0046) drop-shadow(0 4px 0 rgba(140,0,70,.6)) drop-shadow(0 10px 22px rgba(255,61,154,.55));
}
.chrome--pink::before { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; }

.chrome--script {
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  -webkit-text-stroke-width: .1em;
}

/* Rainbow script — the "Happy vibes all the time" line */
.hero__script, .order__script, .footer__script {
  font-family: var(--font-script);
  background: var(--grad-rainbow);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-slide 8s linear infinite;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.9));
}
@keyframes rainbow-slide { to { background-position: 300% 0; } }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  --btn-a: var(--blue-bright);
  --btn-b: var(--blue-deep);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--btn-a), var(--btn-b));
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.55),
    inset 0 -3px 0 rgba(0,0,0,.28),
    0 8px 0 -2px rgba(0,0,0,.45),
    0 14px 30px -8px var(--btn-a);
  text-shadow: 0 2px 4px rgba(0,0,0,.4);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, filter .18s;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.btn::after { /* shine sweep */
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.1); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.1rem; }
.btn--pink   { --btn-a: #ff5aac; --btn-b: #c4006a; }
.btn--blue   { --btn-a: #4d8cff; --btn-b: #0a1f7a; }
.btn--violet { --btn-a: #b06cff; --btn-b: #5b21b6; }
.btn--gold   { --btn-a: #ffd873; --btn-b: #c98a00; color: #3a2500; text-shadow: 0 1px 0 rgba(255,255,255,.5); }
.btn--wa     { --btn-a: #4ce07a; --btn-b: #0b7a3a; }
.btn--ghost {
  background: rgba(255,255,255,.05);
  border: 2px solid rgba(127,212,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 26px -12px var(--sky);
  color: var(--ice);
}
.btn--ghost:hover { border-color: var(--sky); background: rgba(127,212,255,.12); }

/* ── Layout ──────────────────────────────────────────── */
.wrap { width: min(1200px, 92vw); margin-inline: auto; }
.wrap--narrow { width: min(820px, 92vw); }

.section { padding: clamp(4.5rem, 10vw, 8rem) 0; position: relative; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink-soft);
  text-align: center;
  margin-bottom: .7rem;
}

.section__title {
  display: block;
  text-align: center;
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section__title::before { text-align: center; }

.section__sub {
  text-align: center;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 60ch;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

/* ═══════════ NAV ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem clamp(1rem, 4vw, 2.5rem);
  transition: background .35s, backdrop-filter .35s, box-shadow .35s, padding .35s;
}
.nav.is-stuck {
  background: rgba(5,6,15,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(127,212,255,.18), 0 18px 40px -24px #000;
  padding-block: .45rem;
}

/* The logo is a dense square lock-up — unreadable shrunk into a nav bar.
   So: small logo mark + a legible chrome wordmark beside it. */
.nav__brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
/* Square mask zoomed onto the gift-box + peace-hand detail of the logo */
.nav__mark {
  display: block;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(127,212,255,.35);
  box-shadow: 0 0 16px rgba(31,79,224,.55);
  transition: width .35s, height .35s, transform .3s, box-shadow .3s;
}
.nav.is-stuck .nav__mark { width: 44px; height: 44px; }
.nav__brand:hover .nav__mark { transform: scale(1.07) rotate(-4deg); box-shadow: 0 0 22px rgba(255,61,154,.75); }
.nav__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(2.6) translate(-10%, 28%);
}

.nav__word { display: flex; flex-direction: column; }
/* Pacifico's descenders swing low and left — the sub-line needs
   room underneath or the "G" tail lands on top of it. */
.nav__word-main { font-size: 1.55rem; line-height: 1.3; transition: font-size .35s; }
.nav.is-stuck .nav__word-main { font-size: 1.35rem; }
.nav__word-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .32em;
  line-height: 1;
  color: var(--pink-soft);
  margin-top: .42rem;
  padding-left: 1.7rem;
}

.nav__links { display: flex; gap: .3rem; }
.nav__links a {
  position: relative;
  padding: .5rem .85rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ice);
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: .25rem;
  width: 0; height: 2px;
  background: var(--grad-rainbow);
  background-size: 200%;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .28s;
}
.nav__links a:hover { color: #fff; background: rgba(127,212,255,.08); }
.nav__links a:hover::after { width: 60%; }

.nav__cta { padding: .6rem 1.3rem; font-size: .92rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: .55rem; }
.nav__burger span {
  display: block; width: 26px; height: 3px;
  background: var(--ice); border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(5,6,15,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ice);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .4s, opacity .4s, color .2s;
}
.mobile-menu.is-open a { transform: none; opacity: 1; }
.mobile-menu.is-open a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.is-open a:nth-child(2) { transition-delay: .12s; }
.mobile-menu.is-open a:nth-child(3) { transition-delay: .18s; }
.mobile-menu.is-open a:nth-child(4) { transition-delay: .24s; }
.mobile-menu.is-open a:nth-child(5) { transition-delay: .30s; }
.mobile-menu.is-open a:nth-child(6) { transition-delay: .36s; }
.mobile-menu a:hover { color: var(--pink); }
.mobile-menu__cta {
  margin-top: .8rem;
  padding: .8rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5aac, #c4006a);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.5), 0 10px 30px -10px #ff3d9a;
  font-size: 1.2rem !important;
}

/* ═══════════ HERO ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 4rem;
}
.hero__inner {
  width: min(1240px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  padding: .45rem 1rem .45rem .7rem;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: rgba(255,61,154,.1);
  border: 1px solid rgba(255,61,154,.4);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}
.live-badge__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #ff2d55;
  box-shadow: 0 0 0 0 rgba(255,45,85,.7);
  animation: pulse-dot 1.9s infinite;
}
@keyframes pulse-dot {
  70%  { box-shadow: 0 0 0 12px rgba(255,45,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,85,0); }
}
.live-badge__text { color: var(--pink-soft); text-transform: uppercase; font-size: .74rem; letter-spacing: .18em; }
.live-badge__time { font-family: var(--font-display); font-weight: 600; color: #fff; }

.hero__title {
  font-size: clamp(2.1rem, 8.6vw, 6.4rem);
  line-height: .95;
  margin-bottom: .5rem;
}
.hero__title .chrome { display: inline-block; }
.hero__title .chrome--script { font-size: .78em; transform: rotate(-3deg); transform-origin: left bottom; margin-right: .12em; }
.hero__title-row { display: block; }

.hero__script {
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  line-height: 1.2;
  margin-bottom: 1.3rem;
  transform: rotate(-1.5deg);
}

.hero__lede {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__lede b { color: var(--sky); font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.2rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: .9rem;
  color: var(--muted);
}
.hero__trust li { display: flex; align-items: center; gap: .45rem; }
.hero__trust span { font-size: 1.1rem; }

/* ── 3D BOX ──────────────────────────────────────────── */
.box-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(340px, 46vw, 520px);
  perspective: 1100px;
}

.box-glow {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,154,.45), rgba(31,79,224,.32) 45%, transparent 68%);
  filter: blur(38px);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.18); opacity: 1; } }

.box3d {
  --s: clamp(140px, 19vw, 200px);
  position: relative;
  width: var(--s);
  height: var(--s);
  transform-style: preserve-3d;
  transform: rotateX(-16deg) rotateY(-28deg);
  cursor: pointer;
  animation: box-idle 5s ease-in-out infinite;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes box-idle {
  0%,100% { transform: rotateX(-16deg) rotateY(-28deg) translateY(0); }
  50%     { transform: rotateX(-16deg) rotateY(-22deg) translateY(-16px); }
}
.box3d:hover { animation-play-state: paused; transform: rotateX(-16deg) rotateY(-28deg) translateY(-10px) scale(1.05); }

/* shake before opening */
.box3d.is-shaking { animation: box-shake .45s ease-in-out 3; }
@keyframes box-shake {
  0%,100% { transform: rotateX(-16deg) rotateY(-28deg) translateX(0) rotateZ(0); }
  25%     { transform: rotateX(-16deg) rotateY(-28deg) translateX(-9px) rotateZ(-5deg); }
  75%     { transform: rotateX(-16deg) rotateY(-28deg) translateX(9px)  rotateZ(5deg); }
}

.box3d__face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(191,233,255,.35);
  background:
    linear-gradient(150deg, rgba(255,255,255,.28) 0%, transparent 42%),
    linear-gradient(180deg, #3b6cf0 0%, #1f4fe0 45%, #0a1f7a 100%);
  box-shadow: inset 0 0 42px rgba(10,31,122,.75);
}
.box3d__face .q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: calc(var(--s) * .42);
  color: rgba(255,255,255,.9);
  text-shadow: 0 0 22px rgba(255,155,208,.95), 0 3px 0 rgba(10,31,122,.7);
  animation: q-pulse 2.6s ease-in-out infinite;
}
@keyframes q-pulse { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

/* Front face: two "?" flanking the ribbon cross, like the logo's box */
.box3d__face--front { display: block; }
.box3d__face--front .q { position: absolute; font-size: calc(var(--s) * .28); }
.box3d__face--front .q--tl { left: 11%; top: 4%; }
.box3d__face--front .q--br { right: 11%; bottom: 4%; }

.box3d__face--front  { transform: translateZ(calc(var(--s) / 2)); }
.box3d__face--back   { transform: rotateY(180deg) translateZ(calc(var(--s) / 2)); }
.box3d__face--left   { transform: rotateY(-90deg) translateZ(calc(var(--s) / 2)); }
.box3d__face--right  { transform: rotateY(90deg)  translateZ(calc(var(--s) / 2)); }
.box3d__face--bottom { transform: rotateX(-90deg) translateZ(calc(var(--s) / 2)); background: #060e33; }

/* pink ribbon wrapping the box */
.box3d__ribbon-v, .box3d__ribbon-h {
  position: absolute;
  background: linear-gradient(90deg, #ff9bd0, #ff3d9a 45%, #c4006a);
  box-shadow: 0 0 14px rgba(255,61,154,.8);
  pointer-events: none;
}
.box3d__ribbon-v {
  left: 50%; top: 0;
  width: 15%; height: 100%;
  transform: translateX(-50%) translateZ(calc(var(--s) / 2 + 1px));
}
.box3d__ribbon-h {
  top: 50%; left: 0;
  width: 100%; height: 15%;
  transform: translateY(-50%) translateZ(calc(var(--s) / 2 + 1px));
  background: linear-gradient(180deg, #ff9bd0, #ff3d9a 45%, #c4006a);
}

/* lid */
.box3d__lid {
  position: absolute;
  left: -6%;
  top: -14%;
  width: 112%;
  height: 22%;
  transform-style: preserve-3d;
  transform-origin: center bottom;
  transition: transform 1s cubic-bezier(.5,-.4,.3,1.5), opacity .8s;
}
.box3d.is-open .box3d__lid {
  transform: translateY(-160%) translateZ(60px) rotateX(48deg) rotateZ(-16deg);
}
.box3d__lid-top {
  position: absolute;
  inset: 0;
  transform: rotateX(90deg) translateZ(calc(var(--s) * .11));
  background: linear-gradient(140deg, #4d8cff, #1f4fe0 55%, #0a1f7a);
  border: 2px solid rgba(191,233,255,.4);
  box-shadow: inset 0 0 30px rgba(255,255,255,.18);
}
.box3d__lid-side {
  position: absolute;
  border: 2px solid rgba(191,233,255,.35);
  background: linear-gradient(180deg, #4d8cff, #0a1f7a);
}
.box3d__lid-side--f { inset: 0; transform: translateZ(calc(var(--s) * .56)); }
.box3d__lid-side--b { inset: 0; transform: rotateY(180deg) translateZ(calc(var(--s) * .56)); }
.box3d__lid-side--l { top: 0; bottom: 0; left: 0; width: calc(var(--s) * 1.12); transform: rotateY(-90deg) translateZ(calc(var(--s) * .56)); }
.box3d__lid-side--r { top: 0; bottom: 0; right: 0; width: calc(var(--s) * 1.12); transform: rotateY(90deg) translateZ(calc(var(--s) * .56)); }

/* Bow rides clear above the lid so the lid's top face can't occlude it */
.box3d__bow {
  position: absolute;
  left: 50%; top: -125%;
  transform: translateX(-50%) translateZ(calc(var(--s) * .2));
  font-size: calc(var(--s) * .5);
  line-height: 1;
  filter: drop-shadow(0 6px 14px rgba(255,61,154,.85));
  animation: bow-bob 3s ease-in-out infinite;
}
@keyframes bow-bob {
  0%,100% { transform: translateX(-50%) translateZ(calc(var(--s)*.2)) rotate(-5deg); }
  50%     { transform: translateX(-50%) translateZ(calc(var(--s)*.2)) rotate(5deg); }
}

/* light shaft when open */
.box3d.is-open .box3d__face .q { animation: none; opacity: 0; transition: opacity .3s; }
.box3d.is-open::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 130%; height: 130%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(255,201,77,.85), rgba(255,61,154,.4) 40%, transparent 70%);
  filter: blur(22px);
  animation: burst .9s ease-out;
  pointer-events: none;
}
@keyframes burst { from { opacity: 0; transform: translate(-50%,-50%) scale(.3); } to { opacity: 1; transform: translate(-50%,-50%) scale(1.5); } }

.box-shadow {
  position: absolute;
  bottom: 8%;
  width: clamp(150px, 20vw, 210px);
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(31,79,224,.6), transparent 70%);
  filter: blur(12px);
  animation: shadow-pulse 5s ease-in-out infinite;
}
@keyframes shadow-pulse { 0%,100% { transform: scale(1); opacity: .7; } 50% { transform: scale(.8); opacity: .45; } }

.box-hint {
  position: absolute;
  bottom: 0;
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: var(--pink-soft);
  animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob { 0%,100% { transform: translateY(0); opacity: .75; } 50% { transform: translateY(-7px); opacity: 1; } }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(127,212,255,.45);
  border-radius: 999px;
}
.scroll-cue span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--sky);
  transform: translateX(-50%);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 100% { opacity: 0; top: 24px; } }

/* ═══════════ TICKER ════════════════════════════════════ */
.ticker {
  overflow: hidden;
  padding: .85rem 0;
  background: linear-gradient(90deg, #0a1f7a, #1f4fe0 25%, #ff3d9a 50%, #a855f7 75%, #0a1f7a);
  border-block: 2px solid rgba(255,255,255,.14);
  box-shadow: 0 0 50px -10px rgba(255,61,154,.6);
  transform: rotate(-1.2deg) scale(1.03);
}
.ticker__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(.95rem, 1.8vw, 1.3rem);
  letter-spacing: .1em;
  color: #fff;
  text-shadow: 0 2px 0 rgba(0,0,0,.35);
  white-space: nowrap;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══════════ STEPS ═════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.step {
  position: relative;
  padding: 2.4rem 1.6rem 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(31,79,224,.16), rgba(10,12,28,.9));
  border: 1px solid rgba(127,212,255,.18);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), border-color .35s, box-shadow .35s;
}
.step::before { /* top rainbow hairline */
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad-rainbow);
  background-size: 200%;
  opacity: .7;
}
.step:hover {
  transform: translateY(-10px);
  border-color: rgba(255,61,154,.5);
  box-shadow: var(--shadow-card), 0 0 46px -14px var(--pink);
}
.step__num {
  position: absolute;
  top: .7rem; right: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: rgba(127,212,255,.1);
}
.step__icon {
  font-size: 2.6rem;
  margin-bottom: .8rem;
  filter: drop-shadow(0 6px 14px rgba(255,61,154,.45));
  transition: transform .35s;
}
.step:hover .step__icon { transform: scale(1.18) rotate(-8deg); }
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: .45rem;
}
.step p { color: var(--muted); font-size: .95rem; }
.step p b { color: var(--mint); font-weight: 600; }

.how-note {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-top: 2.4rem;
  padding: 1.5rem 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255,61,154,.13), rgba(168,85,247,.1));
  border: 1px dashed rgba(255,155,208,.45);
}
.how-note__icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.how-note p { color: var(--ice); font-size: 1rem; }
.how-note b { color: var(--pink-soft); }

/* ═══════════ BOX CARDS ═════════════════════════════════ */
.boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.boxcard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.7rem 1.9rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(31,79,224,.2), rgba(10,12,28,.94) 60%);
  border: 1px solid rgba(127,212,255,.22);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), border-color .4s, box-shadow .4s;
}
.boxcard:hover {
  transform: translateY(-12px) rotate(-.6deg);
  border-color: rgba(127,212,255,.6);
  box-shadow: var(--shadow-card), 0 0 60px -18px var(--blue-bright);
}
.boxcard__shine {
  position: absolute;
  top: -60%; left: -60%;
  width: 60%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  transition: left .8s ease;
  pointer-events: none;
}
.boxcard:hover .boxcard__shine { left: 130%; }

.boxcard--hot {
  background: linear-gradient(165deg, rgba(255,61,154,.24), rgba(10,12,28,.94) 60%);
  border-color: rgba(255,61,154,.5);
  box-shadow: var(--shadow-card), 0 0 50px -20px var(--pink);
}
.boxcard--hot:hover { border-color: var(--pink); box-shadow: var(--shadow-card), 0 0 70px -16px var(--pink); }

.boxcard--legend {
  background: linear-gradient(165deg, rgba(255,201,77,.2), rgba(168,85,247,.16) 40%, rgba(10,12,28,.94) 70%);
  border-color: rgba(255,201,77,.45);
}
.boxcard--legend:hover { border-color: var(--gold); box-shadow: var(--shadow-card), 0 0 70px -16px var(--gold); }

.boxcard__flag {
  position: absolute;
  top: 1rem; right: -2.6rem;
  padding: .3rem 3rem;
  transform: rotate(38deg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(90deg, #ff5aac, #c4006a);
  box-shadow: 0 4px 14px rgba(0,0,0,.5);
}
.boxcard__flag--gold { background: linear-gradient(90deg, #ffd873, #c98a00); color: #3a2500; }

.boxcard__emoji {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: .7rem;
  filter: drop-shadow(0 8px 16px rgba(255,61,154,.5));
  transition: transform .4s;
}
.boxcard:hover .boxcard__emoji { transform: scale(1.2) rotate(10deg); }

.boxcard__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  line-height: 1.15;
}
.boxcard__tag { color: var(--pink-soft); font-size: .88rem; font-style: italic; margin-bottom: 1.1rem; }

.boxcard__price {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1.2rem;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(10,31,122,.8));
}
.boxcard--hot .boxcard__price, .boxcard--legend .boxcard__price { background: var(--grad-pink); -webkit-background-clip: text; background-clip: text; }
.boxcard__price .cur { font-size: 1.4rem; }
.boxcard__price .amt { font-size: 3.1rem; line-height: 1; }

.boxcard__btn { width: 100%; }

/* ── Pull bundle cards: neon, like Dee's price flyer ─── */
.boxcard { text-align: center; align-items: center; }

.boxcard--violet {
  background: linear-gradient(165deg, rgba(168,85,247,.24), rgba(10,12,28,.94) 60%);
  border-color: rgba(168,85,247,.5);
}
.boxcard--violet:hover { border-color: var(--violet); box-shadow: var(--shadow-card), 0 0 70px -16px var(--violet); }

.boxcard__pulls { display: flex; flex-direction: column; align-items: center; line-height: .9; margin-top: .3rem; }
.boxcard__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4.6rem;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255,61,154,.55));
}
.boxcard__l {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: #fff;
}

/* Fixed-height slot keeps prices aligned whether or not a card has a bonus */
.boxcard__slot { min-height: 2.5rem; display: grid; place-items: center; margin: .5rem 0 .2rem; }
.boxcard__bonus {
  padding: .28rem .95rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  color: #fff;
  background: linear-gradient(180deg, #8b5cf6, #5b21b6);
  border: 1px solid rgba(216,180,254,.7);
  box-shadow: 0 0 18px rgba(168,85,247,.65);
}

.boxcard .boxcard__price {
  display: inline-block;
  padding: .3rem 1.3rem;
  margin-bottom: .5rem;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #fff;
  background: rgba(255,61,154,.12);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  border: 2px solid var(--pink);
  box-shadow: 0 0 22px rgba(255,61,154,.55), inset 0 0 18px rgba(255,61,154,.35);
  text-shadow: 0 0 14px rgba(255,61,154,.9);
  filter: none;
}
.boxcard__per { min-height: 1.4em; margin-bottom: 1.3rem; font-size: .86rem; color: var(--muted); }
.boxcard__btn { margin-top: auto; }

/* Selected state */
.boxcard__check {
  position: absolute;
  top: .9rem; left: .9rem;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #4ce07a, #0b7a3a);
  box-shadow: 0 0 16px rgba(76,224,122,.7);
  transform: scale(0);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.boxcard.is-selected {
  transform: translateY(-8px);
  border-color: var(--mint);
  box-shadow: var(--shadow-card), 0 0 0 2px var(--mint), 0 0 60px -12px var(--mint);
}
.boxcard.is-selected .boxcard__check { transform: scale(1); }

/* ── Info strip (the flyer's small print, made loud) ── */
.infostrip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .9rem;
  margin: 2.2rem 0;
}
.infostrip li {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(10,12,28,.8);
  border: 1px solid rgba(255,61,154,.35);
  box-shadow: 0 0 30px -16px var(--pink);
}
.infostrip__icon { font-size: 1.7rem; line-height: 1; filter: drop-shadow(0 0 10px rgba(255,61,154,.6)); }
.infostrip p { font-size: .95rem; line-height: 1.4; color: var(--ice); }
.hl-pink { color: var(--pink); font-weight: 600; }

/* ── Extras + order builder ─────────────────────────── */
.shop { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.shop > * { min-width: 0; }

.extras, .builder { padding: 1.8rem; border-radius: var(--radius); box-shadow: var(--shadow-card); }

.extras {
  background: linear-gradient(165deg, rgba(168,85,247,.2), rgba(10,12,28,.94) 60%);
  border: 1px solid rgba(168,85,247,.45);
}
.extras__title {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .25rem 1.4rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .14em;
  color: #e9d5ff;
  background: rgba(168,85,247,.2);
  border: 2px solid var(--violet);
  box-shadow: 0 0 22px rgba(168,85,247,.6);
  text-shadow: 0 0 12px rgba(168,85,247,.9);
}
.extras__sub { margin-bottom: 1rem; font-size: .9rem; color: var(--muted); }

.extra { display: flex; align-items: center; gap: 1rem; padding: .95rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.extra__icon { font-size: 1.8rem; line-height: 1; }
.extra__info { flex: 1; display: flex; flex-direction: column; }
.extra__info b { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: #fff; }
.extra__info small { font-size: .88rem; color: var(--pink-soft); }

.stepper {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(127,212,255,.25);
}
.stepper button {
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: linear-gradient(180deg, #ff5aac, #c4006a);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.4);
  transition: transform .15s, opacity .15s;
}
.stepper button:hover { transform: scale(1.1); }
.stepper button:disabled { opacity: .3; cursor: not-allowed; transform: none; }
.stepper output { min-width: 1.8rem; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; }

.builder {
  scroll-margin-top: 110px;
  background: linear-gradient(165deg, rgba(52,224,192,.14), rgba(10,12,28,.94) 60%);
  border: 1px solid rgba(52,224,192,.4);
}
.builder__title { margin-bottom: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; }
.builder__lines { display: grid; gap: .5rem; }
.builder__lines li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .9rem;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: var(--ice);
}
.builder__lines li b { font-family: var(--font-display); font-weight: 600; color: #fff; white-space: nowrap; }
.builder__empty { padding: .6rem 0; font-style: italic; color: var(--muted); }
.builder__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 2px dashed rgba(52,224,192,.35);
}
.builder__total span { font-family: var(--font-display); font-weight: 600; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); }
.builder__total strong { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: #fff; text-shadow: 0 0 18px rgba(52,224,192,.6); }
.builder__note { margin-bottom: 1.2rem; text-align: right; font-size: .82rem; color: var(--pink-soft); }
.builder__send { width: 100%; }
.builder__send.is-disabled { filter: grayscale(.8) brightness(.7); pointer-events: none; }

.order__thanks {
  position: relative;
  margin-top: 1.4rem;
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--pink-soft);
}

@media (max-width: 860px) {
  .shop { grid-template-columns: 1fr; }
}

/* ═══════════ MYSTERY MACHINE ═══════════════════════════ */
.machine {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 2rem;
  align-items: center;
}

.machine__body {
  position: relative;
  padding: 1.6rem;
  border-radius: 32px;
  background: linear-gradient(165deg, #1a2352, #080a1c 70%);
  border: 2px solid rgba(127,212,255,.28);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,.14),
    inset 0 -8px 30px rgba(0,0,0,.7),
    0 30px 70px -24px #000,
    0 0 60px -26px var(--violet);
}

.machine__screen {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  border-radius: 22px;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 2px, transparent 2px 4px),
    radial-gradient(circle at 50% 40%, rgba(31,79,224,.4), rgba(4,5,14,.98) 70%);
  border: 2px solid rgba(10,31,122,.9);
  box-shadow: inset 0 0 60px rgba(0,0,0,.9);
  overflow: hidden;
  text-align: center;
}
.machine__screen::after { /* CRT glare */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,.09), transparent 45%);
  pointer-events: none;
}
.machine__screen.is-rolling .machine__q { animation: roll-spin .35s linear infinite; }

.machine__q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
  background: var(--grad-chrome);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(127,212,255,.7));
  animation: q-pulse 2.4s ease-in-out infinite;
}
@keyframes roll-spin { to { transform: rotate(360deg); } }
.machine__idle p { color: var(--muted); letter-spacing: .22em; text-transform: uppercase; font-size: .78rem; margin-top: .6rem; }

.machine__result { animation: pop-in .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop-in { from { opacity: 0; transform: scale(.6) translateY(20px); } to { opacity: 1; transform: none; } }
.machine__result-emoji { font-size: 4.6rem; line-height: 1; filter: drop-shadow(0 10px 24px rgba(255,61,154,.6)); }
.machine__rarity {
  display: inline-block;
  margin: .7rem 0 .5rem;
  padding: .22rem .95rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.machine__rarity[data-r="common"]    { background: rgba(127,212,255,.16); color: var(--sky);    border: 1px solid rgba(127,212,255,.5); }
.machine__rarity[data-r="rare"]      { background: rgba(52,224,192,.16);  color: var(--mint);   border: 1px solid rgba(52,224,192,.5); }
.machine__rarity[data-r="epic"]      { background: rgba(168,85,247,.18);  color: #d8b4fe;       border: 1px solid rgba(168,85,247,.6); }
.machine__rarity[data-r="legendary"] { background: rgba(255,201,77,.18);  color: var(--gold);   border: 1px solid rgba(255,201,77,.6); animation: legend-glow 1.4s ease-in-out infinite; }
@keyframes legend-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(255,201,77,.5); } 50% { box-shadow: 0 0 22px 2px rgba(255,201,77,.6); } }

.machine__result-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 3px 0 rgba(10,31,122,.8), 0 0 30px rgba(127,212,255,.5);
}
.machine__result-desc { color: var(--muted); font-size: .96rem; margin-top: .5rem; max-width: 34ch; margin-inline: auto; }

.machine__lights { display: flex; justify-content: center; gap: .8rem; margin: 1.2rem 0 1rem; }
.machine__lights i {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #1a2352;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.7);
  animation: bulb 1.4s ease-in-out infinite;
}
.machine__lights i:nth-child(1) { animation-delay: 0s;    background: #ff3d9a; }
.machine__lights i:nth-child(2) { animation-delay: .12s;  background: #ff8a3d; }
.machine__lights i:nth-child(3) { animation-delay: .24s;  background: #ffc94d; }
.machine__lights i:nth-child(4) { animation-delay: .36s;  background: #34e0c0; }
.machine__lights i:nth-child(5) { animation-delay: .48s;  background: #3b82f6; }
.machine__lights i:nth-child(6) { animation-delay: .60s;  background: #a855f7; }
.machine__lights i:nth-child(7) { animation-delay: .72s;  background: #ff3d9a; }
@keyframes bulb { 0%,100% { opacity: .28; filter: none; } 50% { opacity: 1; filter: drop-shadow(0 0 10px currentColor); } }

.machine__lever {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  width: 100%;
  padding: 1.05rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff5aac, #c4006a);
  box-shadow:
    inset 0 3px 0 rgba(255,255,255,.55),
    inset 0 -4px 0 rgba(0,0,0,.3),
    0 9px 0 -2px rgba(0,0,0,.5),
    0 18px 40px -12px var(--pink);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .3em;
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,.45);
  transition: transform .16s, box-shadow .16s, filter .16s;
}
.machine__lever:hover { filter: brightness(1.12); transform: translateY(-2px); }
.machine__lever:active, .machine__lever:disabled { transform: translateY(6px); box-shadow: inset 0 3px 0 rgba(255,255,255,.3), 0 3px 0 -2px rgba(0,0,0,.5); }
.machine__lever:disabled { filter: grayscale(.4) brightness(.85); cursor: wait; }
.machine__lever-knob {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #fff, #ffd9ec 40%, #ff3d9a);
  box-shadow: 0 0 14px rgba(255,255,255,.8);
}

.machine__side { display: grid; gap: 1.1rem; align-content: center; }
.machine__count { font-size: 1.05rem; color: var(--ice); }
.machine__count b { font-family: var(--font-display); font-size: 1.6rem; color: var(--pink); }
#pull-nudge { display: block; color: var(--pink-soft); font-size: .9rem; font-style: italic; min-height: 1.4em; }
.machine__disclaimer {
  padding: .9rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,201,77,.08);
  border: 1px dashed rgba(255,201,77,.4);
  font-size: .85rem;
  color: #ffe3a8;
}

/* ═══════════ LIVE ══════════════════════════════════════ */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.live-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(31,79,224,.16), rgba(10,12,28,.94));
  border: 1px solid rgba(127,212,255,.2);
  box-shadow: var(--shadow-card);
  transition: transform .35s, border-color .35s;
}
.live-card:hover { transform: translateY(-8px); border-color: rgba(255,61,154,.5); }

.live-card__head { display: flex; align-items: center; justify-content: space-between; }
.live-card__pill {
  padding: .3rem .9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.live-card__pill--fb   { background: linear-gradient(90deg, #1877f2, #0a1f7a); }
.live-card__pill--tt   { background: linear-gradient(90deg, #ff0050, #00f2ea); color: #05060f; }
.live-card__pill--gold { background: linear-gradient(90deg, #ffd873, #c98a00); color: #3a2500; }
.live-card__dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff2d55;
  animation: pulse-dot 1.9s infinite;
}

.live-card__body {
  flex: 1;
  display: grid;
  place-items: center;
  gap: .9rem;
  padding: 2rem 1rem;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 40%, rgba(255,61,154,.18), rgba(4,5,14,.9) 70%);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.live-card__body p { color: var(--muted); font-size: .93rem; }
.live-card__play {
  display: grid;
  place-items: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  font-size: 1.6rem;
  color: #fff;
  padding-left: 5px;
  background: linear-gradient(180deg, #ff5aac, #c4006a);
  box-shadow: 0 0 0 0 rgba(255,61,154,.6), 0 12px 30px -10px var(--pink);
  animation: pulse-play 2.2s ease-out infinite;
}
@keyframes pulse-play {
  0%   { box-shadow: 0 0 0 0 rgba(255,61,154,.55), 0 12px 30px -10px var(--pink); }
  70%  { box-shadow: 0 0 0 24px rgba(255,61,154,0), 0 12px 30px -10px var(--pink); }
  100% { box-shadow: 0 0 0 0 rgba(255,61,154,0), 0 12px 30px -10px var(--pink); }
}

.live-card__body--sched { display: block; text-align: center; }
.live-card__body--sched h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: .8rem;
}
.sched { display: grid; gap: .45rem; margin-bottom: 1.2rem; }
.sched li {
  display: flex;
  justify-content: space-between;
  padding: .5rem .9rem;
  border-radius: 12px;
  background: rgba(127,212,255,.08);
  border: 1px solid rgba(127,212,255,.18);
  font-size: .92rem;
}
.sched b { font-family: var(--font-display); color: #fff; }
.sched span { color: var(--sky); }

.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.countdown > div {
  padding: .55rem .2rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,61,154,.2), rgba(10,12,28,.9));
  border: 1px solid rgba(255,61,154,.3);
}
.countdown span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 18px rgba(255,61,154,.8);
}
.countdown small { font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

.live__note {
  margin-top: 1.8rem;
  text-align: center;
  font-size: .86rem;
  color: rgba(167,176,214,.75);
  font-style: italic;
}

/* ═══════════ WALL ══════════════════════════════════════ */
.wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
}
.wall__card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(168,85,247,.14), rgba(10,12,28,.94));
  border: 1px solid rgba(168,85,247,.24);
  box-shadow: var(--shadow-card);
  transition: transform .35s, border-color .35s;
}
.wall__card:nth-child(even) { transform: rotate(1.2deg); }
.wall__card:nth-child(odd)  { transform: rotate(-1deg); }
.wall__card:hover { transform: rotate(0) translateY(-8px) scale(1.03); border-color: rgba(255,61,154,.55); }
.wall__stars { color: var(--gold); letter-spacing: .18em; margin-bottom: .7rem; filter: drop-shadow(0 0 8px rgba(255,201,77,.6)); }
.wall__card blockquote { font-size: 1.02rem; color: var(--ice); line-height: 1.55; }
.wall__card figcaption { margin-top: .9rem; font-size: .85rem; color: var(--pink-soft); }
.wall__note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: .86rem;
  color: rgba(255,201,77,.85);
}

/* ═══════════ FAQ ═══════════════════════════════════════ */
.faq { display: grid; gap: .8rem; }
.faq details {
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(31,79,224,.14), rgba(10,12,28,.9));
  border: 1px solid rgba(127,212,255,.2);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: rgba(255,61,154,.5); box-shadow: 0 0 40px -18px var(--pink); }
.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 3.2rem 1.05rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.06rem;
  color: #fff;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--pink-soft); }
.faq summary::after {
  content: '＋';
  position: absolute;
  right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--pink);
  transition: transform .3s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq details p {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  animation: fade-down .35s ease;
}
.faq details p b { color: var(--sky); }
@keyframes fade-down { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ═══════════ ORDER ═════════════════════════════════════ */
.order {
  position: relative;
  text-align: center;
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 4rem);
  border-radius: 40px;
  background: linear-gradient(160deg, rgba(255,61,154,.18), rgba(31,79,224,.16) 50%, rgba(10,12,28,.96));
  border: 2px solid rgba(255,61,154,.35);
  box-shadow: var(--shadow-card), 0 0 90px -40px var(--pink);
  overflow: hidden;
}
.order__glow {
  position: absolute;
  left: 50%; top: -30%;
  width: 70%; aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,61,154,.32), transparent 65%);
  filter: blur(50px);
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}
.order__box {
  position: relative;
  font-size: clamp(3.4rem, 8vw, 5rem);
  line-height: 1;
  filter: drop-shadow(0 12px 30px rgba(255,61,154,.65));
  animation: box-hop 2.6s ease-in-out infinite;
}
@keyframes box-hop { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(4deg); } }

.order__title { position: relative; font-size: clamp(2.6rem, 9vw, 5.5rem); line-height: 1; margin: .4rem 0 .2rem; }
.order__script { position: relative; font-size: clamp(1.3rem, 3.4vw, 2rem); margin-bottom: 1rem; }
.order__lede { position: relative; color: var(--muted); max-width: 48ch; margin: 0 auto 2rem; }
.order__actions { position: relative; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.order__small { position: relative; margin-top: 1.4rem; font-size: .85rem; color: rgba(167,176,214,.8); }

/* ═══════════ FOOTER ════════════════════════════════════ */
.footer {
  position: relative;
  margin-top: 2rem;
  border-top: 1px solid rgba(127,212,255,.15);
  background: linear-gradient(180deg, rgba(10,12,28,.6), rgba(5,6,15,.95));
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.4rem;
  padding: 3.2rem 0 2.4rem;
}
.footer__logo { width: min(230px, 60vw); border-radius: 18px; filter: drop-shadow(0 0 24px rgba(31,79,224,.5)); }
.footer__script { font-size: 1.25rem; margin-top: .7rem; }
.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: .9rem;
}
.footer__col a {
  display: block;
  padding: .28rem 0;
  color: var(--muted);
  font-size: .95rem;
  transition: color .25s, transform .25s;
}
.footer__col a:hover { color: var(--sky); transform: translateX(5px); }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: space-between;
  padding: 1.2rem 0;
  width: min(1200px, 92vw);
  margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .84rem;
  color: rgba(167,176,214,.7);
}

/* ═══════════ STICKY MOBILE CTA ═════════════════════════ */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 880;
  transform: translate(-50%, 140%);
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #ff5aac, #c4006a);
  box-shadow: inset 0 2px 0 rgba(255,255,255,.5), 0 10px 34px -8px var(--pink);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  display: none;
}
.sticky-cta.is-visible { transform: translate(-50%, 0); }

/* ═══════════ SCROLL REVEAL ═════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ═══════════ CONFETTI ══════════════════════════════════ */
.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
}
.confetti-piece {
  position: absolute;
  width: 11px;
  height: 15px;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ═══════════ RESPONSIVE ════════════════════════════════ */
@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }
  .sticky-cta { display: block; }

  .hero { min-height: auto; padding-top: 6.5rem; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  /* Grid items default to min-width:auto and refuse to shrink below
     their min-content, which pushes the hero wider than the viewport. */
  .hero__inner > * { min-width: 0; }
  .hero__copy { order: 2; }
  .hero__box  { order: 1; }
  .hero__lede { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__title .chrome--script { transform: none; }
  .scroll-cue { display: none; }

  .machine { grid-template-columns: 1fr; }
  .machine > * { min-width: 0; }
  .machine__side { text-align: center; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; text-align: center; }
  .footer__logo { margin-inline: auto; }
}

@media (max-width: 560px) {
  .hero__trust { flex-direction: column; align-items: center; gap: .6rem; }
  /* nowrap + full width overflows narrow buttons */
  .btn { width: 100%; white-space: normal; }
  .btn--lg { padding: .95rem 1.3rem; font-size: 1rem; }
  .hero__actions, .order__actions { flex-direction: column; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__col a:hover { transform: none; }
  .how-note { flex-direction: column; text-align: center; align-items: center; }
  .footer__bar { justify-content: center; text-align: center; }
  .machine__q { font-size: 4.4rem; }
}

/* ═══════════ MOTION SAFETY ═════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .floaties, #sparkle-canvas { display: none; }
}
