/* ════════════════════════════════════════════════════
   HALO MINI — halftone money-zine landing
   black collage base · mascot pink · CTA purple · cream trust flip
   ════════════════════════════════════════════════════ */

:root {
  --bg: #0b0b0e;
  --bg-2: #141318;
  --line: #28262e;
  --paper: #f4efe4;
  --ink: #17161b;
  --white: #f7f4ec;
  --muted: #a39fad;
  --pink: #ee43c9;
  --pink-deep: #c4279f;
  --purple: #a855f7;
  --purple-deep: #7c2fd6;
  --yellow: #f5d90b;
  --blue: #2c55f0;
  --font-display: 'Anton', 'Pretendard Variable', sans-serif;
  --font-body: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
  --shadow-pop: 6px 6px 0 0 rgba(0, 0, 0, .55);
  --halftone: radial-gradient(circle, currentColor 1.3px, transparent 1.4px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film-grain over everything */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1) var(--d, 0s),
              transform .7s cubic-bezier(.2, .7, .2, 1) var(--d, 0s);
}

/* ════ ticker ════ */
.ticker {
  background: var(--purple);
  border-bottom: 2px solid #000;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 700;
  color: #14071f;
}
.ticker-track {
  display: inline-flex;
  gap: 2.4em;
  padding: 7px 0;
  animation: ticker 32s linear infinite;
}
.t-item b { font-weight: 900; }
.t-item::before { content: '◆'; margin-right: 2.4em; font-size: .7em; vertical-align: 1px; opacity: .55; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ════ nav ════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 56px);
  background: rgba(11, 11, 14, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-word {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: .04em;
  color: var(--white);
}
.logo-blob {
  position: relative;
  width: 34px;
  height: 27px;
  background: var(--pink);
  border-radius: 17px 17px 4px 4px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3px;
  padding-top: 6px;
  flex-shrink: 0;
}
.logo-blob .eye { width: 10px; height: 10px; }
.logo-blob .pupil { width: 5px; height: 5px; }
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a { transition: color .15s; }
.nav-links a:hover { color: var(--white); }

/* ════ buttons ════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn-nav {
  padding: 10px 20px;
  background: var(--white);
  color: var(--ink);
  font-size: 14.5px;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 0 var(--pink);
}
.btn-nav:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 0 var(--pink); }

.btn-play, .btn-soon {
  padding: 13px 24px;
  border: 2px solid #000;
  line-height: 1.15;
}
.btn-play small, .btn-soon small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: .72;
  letter-spacing: .02em;
}
.btn-play span, .btn-soon span { font-size: 18px; font-weight: 900; }
.btn-play {
  background: var(--purple);
  color: #fff;
  box-shadow: 5px 5px 0 0 var(--yellow);
}
.btn-play:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 0 var(--yellow); background: var(--purple-deep); }
.btn-play:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--yellow); }
.btn-soon {
  background: transparent;
  color: var(--muted);
  border: 2px dashed #4a4754;
  cursor: default;
}
.btn-big { padding: 17px 30px; }
.btn-big span { font-size: 21px; }

/* ════ eyebrow / headings ════ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: .18em;
  color: var(--yellow);
}
.eyebrow .dash { width: 34px; height: 5px; background: var(--yellow); flex-shrink: 0; }
.eyebrow-ink { color: var(--pink-deep); }
.eyebrow-ink .dash { background: var(--pink-deep); }

h1, h2 {
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.12;
  word-break: keep-all;
}
h1 { font-size: clamp(42px, 7vw, 84px); margin: 18px 0 22px; }
h2 { font-size: clamp(32px, 4.6vw, 56px); margin: 16px 0 0; }

/* halftone-filled emphasis word */
h1 em, h2 em {
  font-style: normal;
  position: relative;
  color: var(--pink);
  -webkit-text-stroke: 0;
}
h1 em::after, h2 em::after {
  content: '';
  position: absolute;
  left: -4%;
  bottom: .04em;
  width: 108%;
  height: .28em;
  background-image: var(--halftone);
  background-size: 7px 7px;
  color: var(--pink);
  opacity: .55;
  z-index: -1;
}

.sec-head { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.sec-lede { color: var(--muted); margin-top: 20px; font-size: clamp(16px, 1.6vw, 18.5px); }

/* ════ hero ════ */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 5vw, 56px) clamp(120px, 14vw, 180px);
}
.lede { font-size: clamp(16.5px, 1.8vw, 20px); color: var(--muted); }
.lede strong { color: var(--white); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-line { margin-top: 22px; font-size: 13.5px; font-weight: 600; color: #6e6a7a; letter-spacing: .01em; }

.hero-visual { position: relative; display: flex; justify-content: center; }

.shot-card {
  border: 3px solid #000;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 8px 10px 0 0 rgba(168, 85, 247, .28), 8px 10px 0 3px #000;
  background: #000;
}
.shot-main {
  width: min(330px, 78%);
  transform: rotate(-3deg);
  box-shadow: 10px 12px 0 0 rgba(168, 85, 247, .28), 10px 12px 0 3px #000;
}

/* stickers */
.sticker {
  position: absolute;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: .08em;
  line-height: 1.25;
  padding: 10px 16px;
  border: 2.5px solid #000;
  border-radius: 12px;
  box-shadow: 4px 4px 0 0 #000;
  z-index: 3;
}
.sticker b { display: block; font-size: 21px; letter-spacing: .02em; }
.stick-1 {
  top: 9%;
  right: 2%;
  background: var(--yellow);
  color: #161204;
  transform: rotate(5deg);
  animation: floaty 4.2s ease-in-out infinite;
}
.stick-2 {
  bottom: 22%;
  left: -2%;
  background: var(--pink);
  color: #fff;
  transform: rotate(-6deg);
  animation: floaty 4.8s ease-in-out .6s infinite reverse;
}
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* confetti */
.confetti { position: absolute; inset: -4% -6%; pointer-events: none; z-index: 2; }
.confetti i, .final-confetti i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  animation: drift 5.5s ease-in-out infinite;
}
.confetti i:nth-child(3n)   { background: var(--yellow); width: 12px; height: 4px; border-radius: 2px; }
.confetti i:nth-child(3n+1) { background: var(--pink); }
.confetti i:nth-child(3n+2) { background: var(--blue); width: 11px; height: 4px; border-radius: 2px; rotate: 40deg; }
.confetti i:nth-child(4n)   { background: var(--white); width: 6px; height: 6px; }
.confetti i:nth-child(1)  { top: 4%;  left: 12%; animation-delay: 0s; }
.confetti i:nth-child(2)  { top: 10%; left: 78%; animation-delay: .4s; }
.confetti i:nth-child(3)  { top: 22%; left: 4%;  animation-delay: .9s; }
.confetti i:nth-child(4)  { top: 30%; left: 92%; animation-delay: 1.3s; }
.confetti i:nth-child(5)  { top: 47%; left: 0%;  animation-delay: .2s; }
.confetti i:nth-child(6)  { top: 55%; left: 88%; animation-delay: 1.8s; }
.confetti i:nth-child(7)  { top: 67%; left: 8%;  animation-delay: .7s; }
.confetti i:nth-child(8)  { top: 75%; left: 95%; animation-delay: 1.1s; }
.confetti i:nth-child(9)  { top: 86%; left: 18%; animation-delay: 1.5s; }
.confetti i:nth-child(10) { top: 91%; left: 70%; animation-delay: .5s; }
.confetti i:nth-child(11) { top: 14%; left: 45%; animation-delay: 2s; }
.confetti i:nth-child(12) { top: 96%; left: 42%; animation-delay: 2.4s; }
@keyframes drift {
  0%, 100% { translate: 0 0; opacity: .9; }
  50% { translate: 4px -16px; opacity: .45; }
}

/* mascot — pink blob peeking from the bottom edge */
.mascot {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: clamp(180px, 22vw, 260px);
  height: clamp(95px, 11.5vw, 135px);
  background: var(--pink);
  border-radius: 999px 999px 0 0;
  border: 3px solid #000;
  border-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-top: clamp(22px, 2.6vw, 32px);
  z-index: 4;
  animation: peek .9s cubic-bezier(.2, .9, .3, 1.2) .5s both;
}
.eye {
  position: relative;
  width: clamp(34px, 4vw, 46px);
  height: clamp(34px, 4vw, 46px);
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.pupil {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 46%;
  background: #0a0a0a;
  border-radius: 50%;
  translate: -50% -50%;
  transition: transform .12s ease-out;
}
@keyframes peek { from { transform: translateY(105%); } }

/* halftone band at hero base */
.halftone-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 14vw, 180px);
  color: #3b3645;
  background-image: var(--halftone);
  background-size: 11px 11px;
  -webkit-mask-image: linear-gradient(to top, #000 25%, transparent);
  mask-image: linear-gradient(to top, #000 25%, transparent);
  pointer-events: none;
}

/* ════ stats ════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) clamp(20px, 5vw, 56px);
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  gap: 18px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: .01em;
  color: var(--white);
  line-height: 1;
}
.stat:nth-child(1) strong { color: var(--yellow); }
.stat:nth-child(2) strong { color: var(--pink); }
.stat:nth-child(3) strong { color: var(--purple); }
.stat > span { display: block; margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--muted); }

/* ════ how ════ */
.how { padding: clamp(80px, 10vw, 140px) 0 0; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 30px 24px 28px;
  transition: transform .2s, border-color .2s;
}
.step:hover { transform: translateY(-6px); border-color: var(--purple); }
.step:nth-child(even) { translate: 0 26px; }
.step-num {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--purple);
  display: block;
}
.step h3 { font-size: 21px; font-weight: 800; margin: 16px 0 8px; }
.step p { font-size: 15px; color: var(--muted); }

/* ════ games ════ */
.games { padding: clamp(100px, 12vw, 160px) 0 0; }
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}
.game-card {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.game-card:hover { transform: translateY(-6px) rotate(-.5deg); border-color: var(--pink); }
.game-card h3 { font-size: 22px; font-weight: 800; margin: 22px 24px 8px; }
.game-card p { font-size: 15px; color: var(--muted); margin: 0 24px 26px; }

.game-art {
  position: relative;
  height: 170px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* tap: mini blob + expanding ring */
.art-tap { background: radial-gradient(circle at 50% 120%, rgba(238, 67, 201, .25), transparent 70%); }
.tap-blob {
  position: relative;
  width: 86px;
  height: 64px;
  background: var(--pink);
  border-radius: 43px 43px 8px 8px;
  border: 2.5px solid #000;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 14px;
  animation: squish 1.6s ease-in-out infinite;
}
.tap-blob .eye { width: 20px; height: 20px; }
.tap-blob .pupil { width: 9px; height: 9px; }
@keyframes squish {
  0%, 100% { transform: scaleY(1); }
  12% { transform: scaleY(.82) scaleX(1.08); }
  24% { transform: scaleY(1.04); }
}
.tap-ring {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  animation: ring 1.6s ease-out infinite;
}
@keyframes ring {
  0%, 30% { transform: scale(.4); opacity: 0; }
  45% { opacity: .9; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* scratch */
.art-scratch { background: radial-gradient(circle at 50% -20%, rgba(245, 217, 11, .2), transparent 70%); }
.art-scratch b {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--yellow);
  letter-spacing: .1em;
  position: relative;
  z-index: 1;
}
.scratch-line {
  position: absolute;
  width: 150px;
  height: 56px;
  background: repeating-linear-gradient(-45deg, #57536280 0 9px, transparent 9px 18px);
  border: 2.5px dashed #575362;
  border-radius: 12px;
  -webkit-mask-image: linear-gradient(105deg, transparent 38%, #000 42%);
  mask-image: linear-gradient(105deg, transparent 38%, #000 42%);
  animation: scratch 2.6s ease-in-out infinite alternate;
}
@keyframes scratch {
  from { -webkit-mask-position: 0 0; mask-position: 0 0; -webkit-mask-size: 300% 100%; mask-size: 300% 100%; }
  to { -webkit-mask-position: 100% 0; mask-position: 100% 0; -webkit-mask-size: 300% 100%; mask-size: 300% 100%; }
}
/* spin */
.art-spin { background: radial-gradient(circle at 50% 130%, rgba(168, 85, 247, .28), transparent 70%); }
.wheel {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #000;
  background: conic-gradient(var(--purple) 0 60deg, var(--yellow) 60deg 120deg, var(--pink) 120deg 180deg, var(--blue) 180deg 240deg, var(--purple-deep) 240deg 300deg, var(--white) 300deg 360deg);
  animation: spin 3.4s cubic-bezier(.3, .1, .2, 1) infinite;
}
.wheel-pin {
  position: absolute;
  top: 18px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 16px solid var(--white);
  filter: drop-shadow(0 2px 0 #000);
}
@keyframes spin {
  0% { transform: rotate(0); }
  70%, 100% { transform: rotate(2.6turn); }
}
.game-note {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
  font-weight: 700;
  color: var(--yellow);
}

/* ════ rewards ════ */
.rewards { padding: clamp(100px, 12vw, 160px) 0 0; }
.rewards-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 56px);
}
.check-list { list-style: none; margin-top: 30px; display: grid; gap: 16px; }
.check-list li {
  position: relative;
  padding-left: 38px;
  color: var(--muted);
  font-size: 16px;
}
.check-list b { color: var(--white); }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: var(--pink);
  color: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.rewards-visual { position: relative; display: flex; justify-content: center; min-height: 480px; }
.shot-wallet { width: min(300px, 70%); transform: rotate(2.5deg); z-index: 1; }
.shot-goal {
  position: absolute;
  width: min(225px, 52%);
  left: 0;
  bottom: -7%;
  transform: rotate(-7deg);
  z-index: 2;
  box-shadow: 7px 7px 0 0 rgba(238, 67, 201, .35), 7px 7px 0 3px #000;
}

/* brand marquee */
.brand-marquee {
  margin-top: clamp(64px, 8vw, 100px);
  overflow: hidden;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  background: var(--bg-2);
}
.brand-track {
  display: inline-flex;
  gap: 14px;
  padding: 20px 0;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
}
.brand-track span {
  padding: 9px 20px;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s, border-color .2s;
}
.brand-track span:hover { color: var(--white); border-color: var(--pink); }
.brand-marquee:hover .brand-track { animation-play-state: paused; }

/* ════ referral ════ */
.referral { padding: clamp(100px, 12vw, 160px) 0 0; }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}
.ref-card {
  position: relative;
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 22px;
  padding: 56px 26px 30px;
  transition: transform .2s;
}
.ref-card:hover { transform: translateY(-6px); }
.ref-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: .14em;
  padding: 6px 14px;
  background: var(--blue);
  color: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  box-shadow: 3px 3px 0 0 #000;
  rotate: -2deg;
}
.ref-hot { border-color: var(--pink); box-shadow: 0 0 44px rgba(238, 67, 201, .14); }
.ref-hot .ref-badge { background: var(--pink); rotate: 2deg; }
.ref-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.ref-card p { font-size: 15px; color: var(--muted); }

/* ════ trust — cream paper flip ════ */
.trust {
  margin-top: clamp(100px, 12vw, 160px);
  background: var(--paper);
  color: var(--ink);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  position: relative;
  overflow: hidden;
}
/* paper edge halftone */
.trust::before {
  content: '';
  position: absolute;
  inset: 0;
  color: #d8cfb8;
  background-image: var(--halftone);
  background-size: 9px 9px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 18%, transparent 82%, #000);
  mask-image: linear-gradient(to bottom, #000, transparent 18%, transparent 82%, #000);
  pointer-events: none;
}
.trust-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) 0;
}
.trust h2 em { color: var(--pink-deep); }
.trust h2 em::after { color: var(--pink-deep); opacity: .35; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
  padding: 0 clamp(20px, 5vw, 56px);
}
.trust-card {
  background: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 28px 28px 26px;
  box-shadow: 5px 5px 0 0 var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.trust-card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 0 var(--ink); }
.trust-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 2px dashed #c9c0aa;
}
.trust-card p { font-size: 15.5px; color: #4c4a52; }
.stamp {
  position: absolute;
  top: clamp(60px, 9vw, 110px);
  right: clamp(16px, 6vw, 80px);
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.05;
  letter-spacing: .06em;
  color: #b73b2f;
  border: 3.5px solid #b73b2f;
  border-radius: 10px;
  padding: 12px 16px;
  rotate: 9deg;
  opacity: .75;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.6 -0.4'/%3E%3C/filter%3E%3Crect width='80' height='80' fill='%23000' filter='url(%23r)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.5' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1.6 -0.4'/%3E%3C/filter%3E%3Crect width='80' height='80' fill='%23000' filter='url(%23r)'/%3E%3C/svg%3E");
}

/* ════ faq ════ */
.faq { padding: clamp(100px, 12vw, 150px) 0 0; }
.faq-list {
  max-width: 860px;
  margin: clamp(36px, 4vw, 52px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: 16px;
  transition: border-color .2s;
}
.faq-list details[open] { border-color: var(--purple); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 2px solid var(--muted);
  border-radius: 8px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2.5px;
  background: var(--muted);
  translate: -50% -50%;
  transition: rotate .25s, background .25s;
}
.faq-icon::after { rotate: 90deg; }
details[open] .faq-icon { border-color: var(--purple); }
details[open] .faq-icon::before, details[open] .faq-icon::after { background: var(--purple); }
details[open] .faq-icon::after { rotate: 0deg; }
.faq-list details p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15.5px;
}

/* ════ final cta ════ */
.final {
  position: relative;
  text-align: center;
  padding: clamp(110px, 13vw, 180px) clamp(20px, 5vw, 56px) clamp(150px, 17vw, 230px);
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 70%;
  background: radial-gradient(ellipse at center bottom, rgba(168, 85, 247, .3), rgba(238, 67, 201, .12) 45%, transparent 72%);
  pointer-events: none;
}
.final h2 { position: relative; }
.final > p { position: relative; color: var(--muted); margin-top: 18px; font-size: clamp(16px, 1.7vw, 19px); }
.final-cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}
.qr-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  color: var(--ink);
  border: 2px solid #000;
  border-radius: 16px;
  padding: 10px 18px 10px 10px;
  font-size: 13.5px;
  font-weight: 800;
  text-align: left;
  line-height: 1.4;
  box-shadow: 5px 5px 0 0 var(--pink);
  rotate: 2deg;
}
.qr-card img { width: 84px; height: 84px; border-radius: 8px; }
.final-soon { position: relative; margin-top: 24px; font-size: 14px; font-weight: 600; color: #6e6a7a; }
.final-confetti i { animation: drift 5s ease-in-out infinite; }
.final-confetti i:nth-child(odd) { background: var(--pink); }
.final-confetti i:nth-child(even) { background: var(--yellow); width: 12px; height: 4px; border-radius: 2px; rotate: -30deg; }
.final-confetti i:nth-child(3n) { background: var(--purple); }
.final-confetti i:nth-child(1) { top: 18%; left: 12%; }
.final-confetti i:nth-child(2) { top: 30%; left: 88%; animation-delay: .6s; }
.final-confetti i:nth-child(3) { top: 55%; left: 6%; animation-delay: 1.2s; }
.final-confetti i:nth-child(4) { top: 12%; left: 64%; animation-delay: .3s; }
.final-confetti i:nth-child(5) { top: 64%; left: 93%; animation-delay: 1.7s; }
.final-confetti i:nth-child(6) { top: 8%; left: 35%; animation-delay: 2.1s; }
.final-confetti i:nth-child(7) { top: 70%; left: 26%; animation-delay: .9s; }
.final-confetti i:nth-child(8) { top: 45%; left: 76%; animation-delay: 1.4s; }
/* final mascot is clipped by the section's overflow, so the observer can't
   see it — key its peek off the heading's reveal instead */
.mascot-final {
  animation: none;
  width: clamp(210px, 26vw, 320px);
  height: clamp(110px, 13.5vw, 165px);
  transform: translateY(105%);
  transition: transform .9s cubic-bezier(.2, .9, .3, 1.2) .4s;
}
.final h2.in ~ .mascot-final { transform: none; }

/* ════ footer ════ */
.footer {
  border-top: 2px solid var(--line);
  background: #070709;
  padding: 44px clamp(20px, 5vw, 56px) 36px;
}
.foot-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; font-weight: 600; color: var(--muted); }
.foot-links a:hover { color: var(--white); }
.foot-bottom {
  max-width: 1180px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: #5d5968;
  display: grid;
  gap: 6px;
}
.foot-bottom b { color: var(--muted); }

/* ════ responsive ════ */
.bdesk { display: inline; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-visual { margin-top: 28px; }
  .steps, .game-grid, .ref-grid { grid-template-columns: 1fr 1fr; }
  .step:nth-child(even) { translate: 0 0; }
  .ref-grid { gap: 20px 16px; row-gap: 34px; }
  .rewards-inner { grid-template-columns: 1fr; }
  .rewards-visual { margin-top: 16px; }
  .bdesk { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 12px; }
  .steps, .game-grid, .ref-grid { grid-template-columns: 1fr; }
  .ref-grid { row-gap: 34px; }
  .trust-grid { grid-template-columns: 1fr; }
  .stick-1 { right: -2%; }
  .sticker b { font-size: 17px; }
  .shot-goal { bottom: -4%; }
  .foot-top { flex-direction: column; align-items: flex-start; }
}

/* ════ reduced motion ════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .mascot, .mascot-final { transform: none; }
}
