:root {
  --grass: #3DDC84;
  --sunshine: #FFD23F;
  --cherry: #FF3B6B;
  --grape: #7A5CFF;
  --tangerine: #FF8A3D;
  --electric: #2EC4FF;
  --paper: #FFF4DA;
  --ink: #181410;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Fredoka', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(24, 20, 16, 0.06) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
  line-height: 1.6;
  min-height: 100vh;
}

.display { font-family: 'Lilita One', system-ui, sans-serif; font-weight: 400; }
a { color: var(--grape); font-weight: 600; }
.wrap { max-width: 920px; margin: 0 auto; padding: 0 20px; }

/* ── Header ── */
header.site {
  position: relative;
  background: var(--grape);
  border-bottom: 6px solid var(--ink);
}
header.site .bar {
  max-width: 920px; margin: 0 auto; padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
}
header.site img { width: 52px; height: 52px; }
header.site .name { font-size: 26px; color: #fff; flex: 1; }
header.site nav a { color: #fff; margin-left: 18px; text-decoration: none; font-size: 15px; }
header.site nav a:hover { text-decoration: underline; }

/* ── Components ── */
.pop {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
}
.pill {
  display: inline-block;
  background: var(--sunshine);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: 'Lilita One', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
}
.btn {
  display: inline-block;
  background: var(--grass);
  border: 3px solid var(--ink);
  border-radius: 16px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 14px 26px;
  font-family: 'Lilita One', sans-serif;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn.grape { background: var(--grape); color: #fff; }
.btn.ghost { background: #fff; }
.cta-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ── Hero ── */
.hero { text-align: center; padding: 64px 20px 48px; }
.hero h1 { font-size: clamp(56px, 12vw, 104px); line-height: 0.95; margin: 18px 0; }
.hero h1 .d { color: var(--grape); }
.hero h1 .bang { color: var(--cherry); }
.hero .tag { font-size: clamp(18px, 3vw, 24px); font-weight: 600; color: rgba(24,20,16,0.7); max-width: 560px; margin: 0 auto 26px; }
.hero .soon { margin-top: 22px; font-weight: 600; font-size: 14px; color: rgba(24,20,16,0.55); }

/* ── Feature grid ── */
.features { padding: 24px 20px 56px; }
.features h2 { text-align: center; font-size: 32px; margin-bottom: 28px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; max-width: 920px; margin: 0 auto; }
.card { padding: 22px; }
.card .emoji { font-size: 34px; }
.card h3 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 21px; margin: 10px 0 6px; }
.card p { font-size: 15px; color: rgba(24,20,16,0.7); }

/* ── FAQ ── */
.faq { padding: 8px 20px 44px; max-width: 720px; margin: 0 auto; }
.faq h2 { text-align: center; font-size: 32px; margin-bottom: 22px; }
.faq-list { display: grid; gap: 12px; }
.faq details { overflow: hidden; }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 16px 20px;
  font-family: 'Lilita One', sans-serif; font-size: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: 'Lilita One', sans-serif; font-size: 26px; line-height: 1; color: var(--grape); }
.faq details[open] summary::after { content: '–'; }
.faq details p { padding: 0 20px 18px; margin: 0; font-size: 15.5px; color: rgba(24,20,16,0.75); }

/* ── Waitlist ── */
.waitlist { padding: 8px 20px 60px; }
.waitlist .card-wide { max-width: 620px; margin: 0 auto; padding: 32px 28px; text-align: center; }
.waitlist h2 { font-size: 34px; margin: 16px 0 8px; }
.waitlist .sub { font-size: 16px; color: rgba(24,20,16,0.7); max-width: 460px; margin: 0 auto 20px; }
.waitlist iframe { display: block; width: 100%; border: 0; }
.waitlist .fallback { margin-top: 14px; font-size: 14px; color: rgba(24,20,16,0.55); }

/* ── Hero additions ── */
.hero .tag { margin-bottom: 10px; }
.hero .tag-sub { font-size: clamp(15px, 2.2vw, 18px); font-weight: 600; color: rgba(24,20,16,0.55); max-width: 520px; margin: 0 auto 24px; }
.hero .trust { margin-top: 12px; font-size: 13px; color: rgba(24,20,16,0.5); }

/* ── Demo / proof ── */
.demo { padding: 8px 20px 48px; max-width: 920px; margin: 0 auto; text-align: center; }
.demo h2 { font-size: 32px; }
.demo .demo-sub { font-size: 16px; color: rgba(24,20,16,0.65); margin: 6px 0 26px; }
.demo-wrap { display: flex; gap: 26px; justify-content: center; align-items: flex-start; flex-wrap: wrap; text-align: left; }
.demo-video { width: 280px; max-width: 100%; aspect-ratio: 9 / 16; overflow: hidden; position: relative; background: var(--grape); padding: 0; }
.demo-video video, .demo-video img { width: 100%; height: 100%; object-fit: cover; display: block; }
.demo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #fff; text-align: center; padding: 20px; }
.demo-placeholder .play { font-size: 30px; width: 74px; height: 74px; border: 3px solid #fff; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.demo-placeholder span:not(.play):not(.tiny) { font-family: 'Lilita One', sans-serif; font-size: 18px; }
.demo-placeholder .tiny { font-size: 12px; opacity: 0.85; }
.demo-cards { flex: 1; min-width: 260px; max-width: 380px; display: grid; gap: 12px; }
.demo-cards .deck-label { font-family: 'Lilita One', sans-serif; font-size: 15px; color: rgba(24,20,16,0.55); }
.drop-card { background: #fff; border: 3px solid var(--ink); border-radius: 16px; box-shadow: 5px 5px 0 var(--ink); padding: 14px; border-left-width: 10px; }
.drop-card.curse { border-left-color: var(--cherry); }
.drop-card.buff { border-left-color: var(--grass); }
.drop-card.chaos { border-left-color: var(--sunshine); }
.dc-type { display: inline-block; font-family: 'Lilita One', sans-serif; font-size: 11px; letter-spacing: 1.5px; padding: 2px 9px; border-radius: 999px; border: 2px solid var(--ink); }
.drop-card.curse .dc-type { background: var(--cherry); color: #fff; }
.drop-card.buff .dc-type { background: var(--grass); }
.drop-card.chaos .dc-type { background: var(--sunshine); }
.dc-body { display: block; margin-top: 8px; }
.dc-emoji { font-size: 22px; margin-right: 6px; vertical-align: middle; }
.dc-name { font-family: 'Lilita One', sans-serif; font-size: 17px; vertical-align: middle; }
.dc-effect { display: block; margin-top: 4px; font-size: 14px; color: rgba(24,20,16,0.7); }

/* ── Waitlist incentive ── */
.incentive { border: 3px dashed var(--ink); border-radius: 14px; background: rgba(255,210,63,0.25); padding: 12px 16px; font-size: 14.5px; margin: 0 auto 20px; max-width: 480px; text-align: left; }
.incentive .ph { display: inline-block; font-size: 10px; font-weight: 700; color: var(--cherry); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Playful motion ── */
.card.pop, .drop-card { transition: transform .14s ease, box-shadow .14s ease; }
.card.pop:hover { transform: translate(-2px, -3px); box-shadow: 9px 10px 0 var(--ink); }
.drop-card:hover { transform: translate(-2px, -3px); box-shadow: 8px 9px 0 var(--ink); }
@keyframes deal-in { from { opacity: 0; transform: translateY(12px) scale(.95) rotate(-2deg); } to { opacity: 1; transform: none; } }
.dealt-anim { animation: deal-in .28s ease; }
@keyframes roast-in { from { opacity: .15; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.roast-anim { animation: roast-in .25s ease; }

/* ── Deal-a-Drop ── */
.deal-area { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.deal-area .drop-card { width: 100%; max-width: 360px; text-align: left; }

/* ── Caddie voice ── */
.caddie { padding: 8px 20px 40px; max-width: 720px; margin: 0 auto; text-align: center; }
.caddie-card { padding: 26px 24px; background: var(--ink); border-color: var(--ink); box-shadow: 6px 6px 0 var(--grape); }
.caddie-line { font-family: 'Lilita One', sans-serif; font-size: clamp(18px, 3vw, 24px); color: #fff; margin: 16px auto 18px; max-width: 560px; line-height: 1.3; }
.caddie-btn { background: none; border: 0; padding: 0; color: var(--sunshine); font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: underline; }
.payoff { font-family: 'Lilita One', sans-serif; font-size: clamp(18px, 3vw, 22px); color: var(--ink); margin-top: 26px; }

@media (prefers-reduced-motion: reduce) {
  .card.pop, .drop-card { transition: none; }
  .card.pop:hover, .drop-card:hover { transform: none; box-shadow: 6px 6px 0 var(--ink); }
  .dealt-anim, .roast-anim { animation: none; }
}

/* ── Legal / doc pages ── */
.doc { padding: 40px 20px 64px; }
.doc .pop { padding: 32px 28px; }
.doc h1 { font-size: 38px; margin-bottom: 6px; }
.doc .meta { color: rgba(24,20,16,0.5); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.doc h2 { font-family: 'Lilita One', sans-serif; font-weight: 400; font-size: 22px; margin: 26px 0 8px; }
.doc h3 { font-size: 17px; font-weight: 600; margin: 16px 0 4px; }
.doc p, .doc li { font-size: 15.5px; color: rgba(24,20,16,0.85); margin-bottom: 10px; }
.doc ul { padding-left: 22px; }

/* ── Footer ── */
footer.site { border-top: 6px solid var(--ink); background: var(--ink); color: var(--paper); }
footer.site .wrap { padding: 30px 20px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
footer.site a { color: var(--sunshine); text-decoration: none; margin-right: 18px; font-size: 15px; }
footer.site a:hover { text-decoration: underline; }
footer.site .copy { font-size: 13px; color: rgba(255,244,218,0.6); }
