/* v10 MEME MAXIMUS. The page IS the shitpost, and it prints money.
   Every crayon, white panels, 4px black borders, honest stickers. */

:root {
  --pink: #ff3d8c;
  --lime: #a6ff00;
  --cyan: #00e0ff;
  --purple: #9b4dff;
  --yellow: #ffe03d;
  --orange: #ff9a3d;
  --ink: #16181d;
  --disp: "Luckiest Guy", "Comic Neue", system-ui, sans-serif;
  --body: "Comic Neue", "Comic Sans MS", system-ui, sans-serif;
  --cursor-point: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Ctext y='28' font-size='28'%3E%F0%9F%91%89%3C/text%3E%3C/svg%3E") 6 12, pointer;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 700;
  color: var(--ink);
  background: #fff6fb;
  line-height: 1.5;
  overflow-x: hidden;
  overflow-x: clip;
}
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background: linear-gradient(125deg, #ffdff0 0%, #fff6d4 22%, #e4ffd1 44%, #d9f7ff 66%, #ecdfff 84%, #ffdff0 100%);
  animation: hueshift 34s linear infinite;
}
@keyframes hueshift { to { filter: hue-rotate(360deg); } }
svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
main { overflow-x: hidden; overflow-x: clip; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.wrap-mid { max-width: 860px; }
:focus-visible { outline: 4px dashed var(--purple); outline-offset: 3px; }

button, .take-btn, .js-claim-cta, summary, .step-btn { cursor: var(--cursor-point); }

/* ---------- chunky button ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--disp);
  font-size: 18px; letter-spacing: 0.04em;
  border: 4px solid #000; border-radius: 14px;
  padding: 12px 22px 9px;
  box-shadow: 5px 5px 0 #000;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
  color: #fff;
  text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 2px 2px 0 #000;
}
.btn:hover { transform: translate(-2px, -3px) rotate(-1deg); box-shadow: 8px 8px 0 #000; }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #000; }
.btn-pink { background: var(--pink); }
.btn-head { font-size: 15px; padding: 9px 16px 7px; box-shadow: 4px 4px 0 #000; }
.btn-big { font-size: 26px; padding: 18px 36px 14px; border-width: 5px; animation: wiggle 2.4s ease-in-out infinite; }
@keyframes wiggle { 0%, 100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }
.btn-big:hover { animation-play-state: paused; }

/* ---------- topbar ---------- */
.topbar { position: sticky; top: 0; z-index: 50; padding: 12px 0; }
.topbar-row {
  display: flex; align-items: center; gap: 20px;
  background: #fff; border: 4px solid #000; border-radius: 18px;
  box-shadow: 6px 6px 0 #000;
  padding: 10px 18px;
}
.logo { font-family: var(--disp); font-size: 21px; letter-spacing: 0.02em; line-height: 1; padding-top: 3px; }
.lg-pink { color: var(--pink); }
.lg-purple { color: var(--purple); }
.lg-lol { color: var(--cyan); text-shadow: 1.5px 1.5px 0 #000; }
.topnav { margin-left: auto; display: flex; gap: 18px; }
.topnav a {
  font-size: 15px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.topnav a:hover { border-color: var(--pink); transform: rotate(-2deg); }
.nav-live { display: inline-flex; align-items: center; gap: 6px; color: #12a15a; }
.nav-live .grow-ic { animation: blinkgrow 1.15s ease-in-out infinite; }
@keyframes blinkgrow { 0%, 100% { opacity: 1; transform: translateY(0); } 50% { opacity: .2; transform: translateY(-1.5px); } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 64px 0 0; }
.hero-inner { position: relative; text-align: center; z-index: 2; }

.sticker-cloud { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.sticker {
  position: absolute;
  font-family: var(--disp);
  font-size: 15px; letter-spacing: 0.05em; line-height: 1;
  padding: 12px 14px 9px;
  border: 3px solid #000; border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
}
.st-fame { background: var(--yellow); left: 5%; top: 4%; transform: rotate(-7deg); animation: floaty 5s ease-in-out infinite; }
.st-money { background: var(--lime); right: 3%; top: 12%; transform: rotate(6deg); animation: floaty 6s ease-in-out infinite reverse; }
.st-ad { background: var(--cyan); left: 2%; top: 46%; transform: rotate(-4deg); animation: floaty 5.5s ease-in-out infinite; animation-delay: -2s; }
@keyframes floaty { 50% { translate: 0 -10px; } }

.status-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 3px solid #000; border-radius: 999px;
  box-shadow: 4px 4px 0 #000;
  padding: 8px 18px;
  font-size: 14.5px;
  transform: rotate(-1.5deg);
}
.status-pill .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--lime); border: 2px solid #000;
  animation: blinkdot 1.6s steps(2, jump-none) infinite;
}
@keyframes blinkdot { 50% { background: var(--cyan); } }
.pill-star { color: var(--pink); font-style: normal; }

.h1 {
  font-family: var(--disp);
  font-size: clamp(46px, 9vw, 100px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 30px auto 18px;
  max-width: 900px;
}
.rainbow { color: var(--ink); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .rainbow {
    background-image: linear-gradient(100deg, #ff3d8c 5%, #ff9a3d 25%, #ffe03d 45%, #a6ff00 62%, #00e0ff 80%, #9b4dff 98%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(2.5px 2.5px 0 #000) drop-shadow(-2.5px -2.5px 0 #000) drop-shadow(2.5px -2.5px 0 #000) drop-shadow(-2.5px 2.5px 0 #000) drop-shadow(6px 7px 0 rgba(0,0,0,0.9));
  }
}
.one-wrap { position: relative; display: inline-block; padding: 0 0.12em; }
.starburst {
  position: absolute;
  width: 2.3em; height: 2.3em;
  left: 50%; top: 50%;
  margin: -1.15em 0 0 -1.15em;
  z-index: 0;
  animation: spinstar 18s linear infinite;
}
@keyframes spinstar { to { transform: rotate(360deg); } }
.one { position: relative; z-index: 1; }

.sub {
  font-size: clamp(16px, 2.4vw, 21px);
  max-width: 660px;
  margin: 0 auto 34px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  padding: 8px 14px;
  display: inline-block;
}

.bid-panel {
  background: #fff;
  border: 4px solid #000; border-radius: 24px;
  box-shadow: 9px 9px 0 #000;
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 28px 26px;
  transform: rotate(-0.7deg);
}
.stepper { display: flex; align-items: center; justify-content: center; gap: 20px; }
.step-btn {
  width: 64px; height: 64px;
  border: 4px solid #000; border-radius: 50%;
  font-family: var(--disp);
  font-size: 34px; line-height: 1;
  padding-top: 6px;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.step-minus { background: var(--cyan); }
.step-plus { background: var(--lime); }
.step-btn:hover { transform: scale(1.09) rotate(-4deg); box-shadow: 6px 6px 0 #000; }
.step-btn:active { transform: scale(0.92); box-shadow: 2px 2px 0 #000; }
.bid-amount {
  font-family: var(--disp);
  font-size: clamp(58px, 10vw, 90px);
  line-height: 1;
  padding-top: 10px;
  min-width: 180px;
  color: #fff;
  text-shadow: 3px 0 0 #000, -3px 0 0 #000, 0 3px 0 #000, 0 -3px 0 #000, 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000, 7px 7px 0 var(--pink);
}
.bid-amount.bump { animation: boing 0.3s ease; }
@keyframes boing { 40% { transform: scale(1.18) rotate(-3deg); } }
.stepper-note { font-size: 13.5px; margin: 12px 0 20px; }
.claim-row { display: flex; gap: 12px; }
.claim-row input {
  flex: 1; min-width: 0;
  border: 4px solid #000; border-radius: 14px;
  padding: 13px 16px;
  font-family: var(--body); font-weight: 700; font-size: 16px;
  background: #fff;
  outline: none;
}
.claim-row input::placeholder { color: #9aa1ab; }
.claim-row input:focus { background: #fffbe6; box-shadow: 0 0 0 4px var(--cyan); }
.upbid { font-size: 13px; margin-top: 14px; }

/* ---------- vial parade ---------- */
.parade { overflow: hidden; margin-top: 44px; padding: 14px 0 6px; }
.parade-track { display: flex; width: max-content; animation: walk 26s linear infinite; }
@keyframes walk { to { transform: translateX(-50%); } }
.parade-group { display: flex; align-items: flex-end; gap: 42px; padding-right: 42px; }
.p-vial { width: 54px; height: auto; animation: hop 0.85s ease-in-out infinite alternate; filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.25)); }
.parade-group .p-vial:nth-child(2) { animation-delay: -0.15s; }
.parade-group .p-vial:nth-child(3) { animation-delay: -0.3s; }
.parade-group .p-vial:nth-child(4) { animation-delay: -0.45s; }
.parade-group .p-vial:nth-child(5) { animation-delay: -0.6s; }
.parade-group .p-vial:nth-child(6) { animation-delay: -0.75s; }
@keyframes hop { from { transform: translateY(0) rotate(-2deg); } to { transform: translateY(-9px) rotate(2deg); } }

/* ---------- double marquee ---------- */
.marquee2 { transform: rotate(-1.2deg) scale(1.04); margin: 26px 0 0; }
.mq-row { overflow: hidden; white-space: nowrap; padding: 11px 0; border-top: 3px solid #000; border-bottom: 3px solid #000; }
.mq-a { background: #000; color: #fff; }
.mq-b { background: var(--pink); color: #000; border-top: 0; }
.marquee-track, .mq-track-b {
  display: inline-flex; align-items: center; gap: 26px;
  font-family: var(--disp); font-size: 17px; letter-spacing: 0.05em;
  padding-right: 26px;
  animation: mq 22s linear infinite;
  will-change: transform;
}
.mq-track-b { animation-direction: reverse; animation-duration: 27s; }
@keyframes mq { to { transform: translateX(-50%); } }
.mq-row i { font-style: normal; color: var(--yellow); }
.mq-b i { color: #fff; }

/* ---------- sections ---------- */
.section { padding: 96px 0 0; }
.sec-head { text-align: center; margin-bottom: 44px; }
.sec-title {
  font-family: var(--disp);
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  color: #fff;
  text-shadow: 3px 0 0 #000, -3px 0 0 #000, 0 3px 0 #000, 0 -3px 0 #000, 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000, 8px 8px 0 var(--purple);
}
.squiggle { width: min(320px, 70%); height: 18px; display: block; margin: 14px auto 0; }
.sec-sub { font-size: 16.5px; margin-top: 12px; }

/* ---------- board ---------- */
.demo-banner {
  background: var(--yellow);
  border: 4px solid #000; border-radius: 16px;
  box-shadow: 6px 6px 0 #000;
  max-width: 760px;
  margin: 0 auto 44px;
  padding: 14px 20px;
  font-size: 15px;
  text-align: center;
  transform: rotate(-1deg);
}
.tier-label {
  display: inline-block;
  font-family: var(--disp);
  font-size: 17px; letter-spacing: 0.06em; line-height: 1;
  border: 3px solid #000; border-radius: 12px;
  box-shadow: 4px 4px 0 #000;
  padding: 10px 16px 7px;
  margin: 44px 0 20px;
  transform: rotate(-2deg);
}
.tl-pink { background: var(--pink); color: #fff; text-shadow: 1.5px 1.5px 0 #000; }
.tl-cyan { background: var(--cyan); }
.tl-purple { background: var(--purple); color: #fff; text-shadow: 1.5px 1.5px 0 #000; }

.podium { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.podium-card {
  position: relative;
  background: #fff;
  border: 4px solid #000; border-radius: 20px;
  box-shadow: 8px 8px 0 #000;
  padding: 22px 20px 18px;
  --rot: -1.4deg;
  transform: rotate(var(--rot));
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.podium-card:nth-child(2) { --rot: 1.2deg; }
.podium-card:nth-child(3) { --rot: -0.8deg; }
.podium-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 11px 12px 0 #000; }
.podium-card.rank-1 { border-width: 5px; box-shadow: 10px 10px 0 var(--pink), 10px 10px 0 4px #000; }
.rank-badge {
  position: absolute; top: -18px; left: -12px;
  font-family: var(--disp);
  font-size: 17px; line-height: 1;
  background: #000; color: #fff;
  border: 3px solid #000; border-radius: 10px;
  padding: 8px 12px 5px;
  transform: rotate(-6deg);
  box-shadow: 3px 3px 0 var(--cyan);
}
.rank-1 .rank-badge { background: var(--yellow); color: #000; box-shadow: 3px 3px 0 var(--pink); }
.rank-crown {
  position: absolute; top: -38px; right: -6px;
  font-size: 42px;
  transform: rotate(14deg);
  animation: crownwob 3s ease-in-out infinite;
}
@keyframes crownwob { 50% { transform: rotate(22deg) translateY(-4px); } }
.podium-top { display: flex; align-items: center; gap: 12px; margin: 6px 0 8px; }
.board-vial { width: 46px; height: 46px; flex: none; }
.podium-name { font-family: var(--disp); font-size: 20px; line-height: 1.1; letter-spacing: 0.02em; padding-top: 4px; }
.podium-name a, .row-name a { color: var(--purple); text-decoration: underline wavy var(--pink) 2px; text-underline-offset: 4px; }
.podium-bid {
  display: inline-block;
  font-family: var(--disp);
  font-size: 26px; line-height: 1;
  background: var(--lime);
  border: 3px solid #000; border-radius: 12px;
  box-shadow: 3px 3px 0 #000;
  padding: 8px 14px 5px;
  transform: rotate(-2deg);
  margin: 6px 0 10px;
}
.podium-blurb { font-size: 14px; line-height: 1.5; min-height: 44px; }
.podium-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; margin-top: 10px; }
.podium-meta .spacer { flex: 1; }
.take-btn {
  font-family: var(--disp);
  font-size: 13px; letter-spacing: 0.04em; line-height: 1;
  background: var(--cyan);
  border: 3px solid #000; border-radius: 10px;
  box-shadow: 3px 3px 0 #000;
  padding: 8px 12px 5px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
}
.take-btn:hover { transform: translate(-1px, -2px) rotate(-2deg); box-shadow: 5px 5px 0 #000; background: var(--yellow); }
.take-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #000; }

.chip {
  display: inline-block;
  font-family: var(--body); font-weight: 700;
  font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  border: 2.5px solid #000; border-radius: 8px;
  box-shadow: 2px 2px 0 #000;
  padding: 1px 8px;
  margin-left: 7px;
  transform: rotate(-2deg);
  vertical-align: middle;
  white-space: nowrap;
}
.chip-demo { background: var(--yellow); }
.chip-open { background: var(--lime); }
.chip-you { background: var(--pink); color: #fff; }
.chip-paid { background: var(--cyan); }

.board-rows { display: flex; flex-direction: column; gap: 18px; margin-top: 4px; }
.board-row {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 3px solid #000; border-radius: 16px;
  box-shadow: 5px 5px 0 #000;
  padding: 13px 18px;
  --rot: -0.4deg;
  transform: rotate(var(--rot));
}
.board-row:nth-child(even) { --rot: 0.45deg; }
.board-row:hover { animation: rowboing 0.45s ease; }
@keyframes rowboing {
  0%, 100% { transform: rotate(var(--rot)) translateY(0); }
  35% { transform: rotate(var(--rot)) translateY(-8px); }
  70% { transform: rotate(var(--rot)) translateY(2px); }
}
.row-rank { font-family: var(--disp); font-size: 19px; line-height: 1; padding-top: 4px; color: var(--purple); width: 42px; flex: none; }
.row-vial { width: 34px; height: 34px; flex: none; }
.row-main { flex: 1; min-width: 0; }
.row-name { font-size: 15.5px; }
.row-blurb { font-size: 12.5px; opacity: 0.75; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 360px; }
.row-bid {
  font-family: var(--disp);
  font-size: 19px; line-height: 1;
  background: var(--lime);
  border: 3px solid #000; border-radius: 10px;
  padding: 6px 10px 3px;
  transform: rotate(-2deg);
  flex: none;
}
.row-clicks { font-size: 11.5px; flex: none; width: 76px; text-align: right; }
.board-row.open-slot { background: rgba(255, 255, 255, 0.6); border-style: dashed; box-shadow: none; }
.podium-card.open-slot { background: rgba(255, 255, 255, 0.6); border-style: dashed; box-shadow: none; }
.open-copy { font-size: 14px; }
.open-copy strong { background: var(--yellow); border: 2px solid #000; border-radius: 8px; padding: 0 7px; }
.is-you { outline: 4px solid var(--pink); outline-offset: 4px; }

.rest-note {
  background: #fff;
  border: 3px solid #000; border-radius: 16px;
  box-shadow: 5px 5px 0 #000;
  max-width: 780px;
  padding: 16px 22px;
  font-size: 14.5px;
}
.rest-note strong { background: var(--lime); border-radius: 6px; padding: 0 6px; }

/* ---------- benefits ---------- */
.bene-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.bene {
  background: #fff;
  border: 4px solid #000; border-radius: 20px;
  box-shadow: 7px 7px 0 #000;
  padding: 26px 26px 24px;
}
.b-tilt-l { transform: rotate(-1deg); }
.b-tilt-r { transform: rotate(1deg); }
.bene-wide { grid-column: span 2; }
.bene-emoji { font-size: 38px; line-height: 1; margin-bottom: 12px; }
.bene h3 { font-family: var(--disp); font-size: 23px; line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 10px; }
.bene p { font-size: 15px; line-height: 1.55; }
.stat-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.stat {
  flex: 1; min-width: 220px;
  border: 3px solid #000; border-radius: 16px;
  box-shadow: 4px 4px 0 #000;
  padding: 16px 18px 14px;
}
.st-cyan { background: #d9f7ff; transform: rotate(-0.8deg); }
.st-yellow { background: #fff6cf; transform: rotate(0.8deg); }
.stat-big { font-family: var(--disp); line-height: 1; }
.stat-num { font-size: 52px; }
.stat-pct { font-size: 30px; margin-left: 2px; }
.stat-label { font-size: 12.5px; line-height: 1.45; margin-top: 8px; }

.punch {
  background: #000;
  border: 4px solid #000; border-radius: 20px;
  box-shadow: 7px 7px 0 var(--pink);
  padding: 44px 30px;
  text-align: center;
  transform: rotate(-0.6deg);
}
.punch-line {
  font-family: var(--disp);
  font-size: clamp(26px, 4.5vw, 46px);
  line-height: 1.08;
  color: #fff;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .punch-line {
    background-image: linear-gradient(95deg, #ff3d8c, #ffe03d 35%, #a6ff00 60%, #00e0ff 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.punch-sub { color: #fff; font-size: 15px; margin-top: 14px; }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: #fff;
  border: 3px solid #000; border-radius: 16px;
  box-shadow: 5px 5px 0 #000;
  --rot: -0.4deg;
  transform: rotate(var(--rot));
}
.faq-item:nth-child(even) { --rot: 0.4deg; }
.faq-item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 18px;
  font-size: 15.5px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  margin-left: auto; flex: none;
  font-family: var(--disp);
  font-size: 26px; line-height: 1;
  color: var(--pink);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 18px 16px; font-size: 14.5px; line-height: 1.55; }

/* ---------- final cta ---------- */
.cta-section { padding-bottom: 10px; }
.cta-panel {
  background: #fff;
  border: 5px solid #000; border-radius: 26px;
  box-shadow: 12px 12px 0 var(--purple), 12px 12px 0 5px #000;
  text-align: center;
  padding: 54px 26px 50px;
  transform: rotate(-0.5deg);
}
.cta-title {
  font-family: var(--disp);
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1;
  color: #fff;
  text-shadow: 3px 0 0 #000, -3px 0 0 #000, 0 3px 0 #000, 0 -3px 0 #000, 3px 3px 0 #000, -3px 3px 0 #000, 3px -3px 0 #000, -3px -3px 0 #000, 7px 7px 0 var(--cyan);
}
.cta-sub { font-size: 18px; margin: 16px 0 30px; }

/* ---------- footer: the disclosure is the punchline ---------- */
.footer { padding: 90px 0 70px; }
.foot-shout {
  background: #000;
  border: 4px solid #000; border-radius: 22px;
  box-shadow: 8px 8px 0 var(--yellow);
  padding: 40px 32px;
  text-align: center;
  transform: rotate(0.6deg);
}
.foot-big {
  font-family: var(--disp);
  font-size: clamp(30px, 5.6vw, 58px);
  line-height: 1.02;
  color: #fff;
}
.foot-lime { color: var(--lime); }
.foot-legal {
  color: #fff;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 760px;
  margin: 20px auto 0;
}
.foot-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 34px; }
.logo-foot { font-size: 19px; }
.foot-nav { margin-left: auto; display: flex; gap: 18px; }
.foot-nav a { font-size: 14.5px; border-bottom: 3px solid transparent; }
.foot-nav a:hover { border-color: var(--pink); }

/* ---------- modal ---------- */
.modal-backdrop[hidden] { display: none; }
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(24, 8, 34, 0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal {
  background: #fff;
  border: 5px solid #000; border-radius: 22px;
  box-shadow: 12px 12px 0 var(--pink);
  width: 100%; max-width: 450px;
  padding: 28px 26px 24px;
  position: relative;
  max-height: 90vh; overflow-y: auto;
  animation: popin 0.25s cubic-bezier(0.2, 1.4, 0.4, 1);
}
@keyframes popin { from { transform: scale(0.85) rotate(-2deg); opacity: 0; } }
.modal-close {
  position: absolute; top: -16px; right: -14px;
  width: 46px; height: 46px;
  background: var(--pink); color: #fff;
  border: 4px solid #000; border-radius: 50%;
  font-size: 22px; line-height: 1;
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.12s ease;
}
.modal-close:hover { transform: rotate(90deg) scale(1.06); }
.modal-title { font-family: var(--disp); font-size: 28px; line-height: 1; letter-spacing: 0.02em; }
.modal-sub { font-size: 15px; margin: 8px 0 18px; }
.modal-sub strong {
  font-family: var(--disp); font-size: 19px;
  background: var(--lime);
  border: 2.5px solid #000; border-radius: 8px;
  padding: 3px 9px 1px;
  display: inline-block; transform: rotate(-2deg);
}
.modal form { display: flex; flex-direction: column; gap: 13px; }
.modal label { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; }
.modal label .optional { color: #8a90a0; font-weight: 400; }
.modal input {
  border: 3px solid #000; border-radius: 12px;
  padding: 11px 13px;
  font-family: var(--body); font-weight: 700; font-size: 15px;
  outline: none;
  background: #fff;
}
.modal input:focus { background: #fffbe6; box-shadow: 0 0 0 3.5px var(--cyan); }
.form-error {
  background: #ffe6ee;
  border: 3px solid var(--pink); border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
}
.btn-modal-submit {
  font-family: var(--disp);
  font-size: 19px; letter-spacing: 0.04em; line-height: 1;
  background: var(--lime);
  border: 4px solid #000; border-radius: 14px;
  box-shadow: 5px 5px 0 #000;
  padding: 15px 20px 11px;
  width: 100%;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-modal-submit:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 #000; }
.btn-modal-submit:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #000; }
.modal-note { font-size: 12px; text-align: center; margin-top: 4px; line-height: 1.5; }
#modal-success-step { text-align: center; padding: 10px 0 6px; }
#modal-success-step .modal-sub { margin-bottom: 22px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px) scale(0.985); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }
.bene.reveal.in.b-tilt-l { transform: rotate(-1deg); }
.bene.reveal.in.b-tilt-r { transform: rotate(1deg); }
.punch.reveal.in { transform: rotate(-0.6deg); }
.cta-panel.reveal.in { transform: rotate(-0.5deg); }
.demo-banner.reveal.in { transform: rotate(-1deg); }
.foot-shout { transform: rotate(0.6deg); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .podium { grid-template-columns: 1fr; gap: 34px; }
  .bene-grid { grid-template-columns: 1fr; }
  .bene-wide { grid-column: span 1; }
  .topnav { display: none; }
  .btn-head { margin-left: auto; }
  .sticker-cloud { position: static; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 0 16px 24px; }
  .sticker { position: static; animation: none; }
  .st-fame { transform: rotate(-3deg); }
  .st-money { transform: rotate(2deg); }
  .st-ad { transform: rotate(-2deg); }
}
@media (max-width: 640px) {
  .row-clicks { display: none; }
  .row-blurb { display: none; }
  .board-row { gap: 10px; padding: 12px 12px; }
  .row-rank { width: 34px; font-size: 16px; }
  .take-btn { font-size: 11.5px; padding: 7px 9px 4px; }
  .stat { min-width: 160px; }
  .section { padding-top: 72px; }
}
@media (max-width: 560px) {
  .topbar-row { padding: 8px 12px; gap: 10px; }
  .logo { font-size: 15px; }
  .btn-head { font-size: 12px; padding: 8px 11px 6px; border-width: 3px; box-shadow: 3px 3px 0 #000; }
  .hero { padding-top: 40px; }
  .claim-row { flex-direction: column; }
  .claim-row .btn { width: 100%; }
  .step-btn { width: 54px; height: 54px; font-size: 28px; }
  .bid-amount { min-width: 130px; }
  .bid-panel { padding: 22px 16px 20px; }
  .p-vial { width: 42px; }
  .parade-group { gap: 30px; padding-right: 30px; }
  .modal-close { top: -12px; right: -8px; width: 42px; height: 42px; }
  .foot-shout { padding: 30px 18px; }
}

/* ---------- reduced motion: chaos, frozen ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  body::before { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .bene.reveal.b-tilt-l { transform: rotate(-1deg); }
  .bene.reveal.b-tilt-r { transform: rotate(1deg); }
  .punch.reveal { transform: rotate(-0.6deg); }
  .cta-panel.reveal { transform: rotate(-0.5deg); }
  .demo-banner.reveal { transform: rotate(-1deg); }
}
