/* ============================================================
   Daubaria — Design System
   Elevated brand match: crimson + cream + gold, daub-card motif
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand reds */
  --red-900: #6E0B1B;
  --red-800: #8E0F22;
  --red-700: #A8132A;   /* primary dark surface / nav */
  --red-600: #C8152F;
  --red-500: #E11D2E;   /* signal / CTA */
  --red-tint: #FBE3E3;  /* soft red chip bg */

  /* Gold */
  --gold-600: #E8A800;
  --gold-500: #FBC50C;
  --gold-400: #FFD21E;
  --gold-200: #FFE890;

  /* Cream canvas */
  --cream: #FBF6E9;
  --cream-50: #FDFAF2;
  --cream-100: #FCF8EF;
  --cream-200: #F2E8D2;  /* hairline on cream */
  --cream-300: #E9DCC0;

  /* Ink + supporting */
  --ink: #2B1518;        /* warm near-black text */
  --ink-600: #6A5458;    /* muted body */
  --ink-400: #9A878A;
  --navy: #211C33;       /* logo tiles / dark accent */
  --white: #ffffff;

  /* Accent tints (from app marker packs, used sparingly) */
  --mint: #34B27B;
  --mint-bg: #E3F6EC;
  --sky: #2D8FE0;
  --sky-bg: #E4F0FC;
  --grape: #7A5AF8;
  --grape-bg: #ECE7FE;
  --pink: #E5398A;
  --pink-bg: #FCE3F0;

  /* Type */
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-h3: clamp(1.25rem, 1rem + 1.1vw, 1.6rem);
  --fs-h2: clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
  --fs-display: clamp(2.6rem, 1.4rem + 5.2vw, 4.9rem);

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Shadows (warm) */
  --sh-sm: 0 2px 6px rgba(120, 40, 30, 0.08);
  --sh-md: 0 14px 34px -16px rgba(120, 30, 30, 0.30);
  --sh-lg: 0 30px 70px -28px rgba(110, 20, 30, 0.42);
  --sh-gold: 0 16px 34px -12px rgba(225, 160, 0, 0.55);
  --sh-red: 0 16px 32px -12px rgba(225, 29, 46, 0.55);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 130px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--red-500); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.center { text-align: center; }
.muted { color: var(--ink-600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 700;
  font-size: var(--fs-eyebrow); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red-600);
}
.eyebrow .ball {
  display: inline-grid; place-items: center;
  width: 1.9em; height: 1.9em; border-radius: 50%;
  background: var(--red-500); color: #fff; font-family: var(--font-display);
  font-weight: 800; font-size: 0.82em; letter-spacing: 0;
  box-shadow: var(--sh-sm);
}
.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; font-size: var(--fs-lg); color: var(--ink-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  padding: 0.92em 1.6em; border-radius: var(--r-pill);
  min-height: 48px; transition: transform 0.18s var(--ease-spring), box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn-primary { background: var(--red-500); color: #fff; box-shadow: var(--sh-red); }
.btn-primary:hover { transform: translateY(-2px); background: var(--red-600); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--ink); box-shadow: var(--sh-gold); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.14); color: #fff; border: 1.5px solid rgba(255,255,255,0.34); }
.btn-ghost:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--ink); border: 1.5px solid var(--cream-300); box-shadow: var(--sh-sm); }
.btn-outline:hover { border-color: var(--red-500); color: var(--red-600); transform: translateY(-2px); }

/* ---------- Chips / pills ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.9rem; padding: 0.5em 0.95em;
  border-radius: var(--r-pill); background: #fff; box-shadow: var(--sh-sm);
}
.chip svg { width: 16px; height: 16px; }
.chip-mint { background: var(--mint-bg); color: var(--mint); }
.chip-red { background: var(--red-tint); color: var(--red-600); }
.chip-gold { background: var(--gold-200); color: var(--gold-600); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--red-700) 84%, transparent);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { border-color: rgba(255,255,255,0.16); box-shadow: 0 12px 30px -18px rgba(110,11,27,0.7); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; letter-spacing: -0.02em; white-space: nowrap; }
.brand img { width: 38px; height: 38px; filter: drop-shadow(0 4px 8px rgba(180,120,0,0.30)); }
.brand .tld { color: var(--red-600); }
.nav .brand { color: #fff; }
.nav .brand .tld { color: var(--gold-400); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a { font-weight: 600; font-size: 0.98rem; color: #fff; padding: 8px 14px; border-radius: var(--r-pill); transition: background 0.18s ease, color 0.18s ease; }
.nav-links a:hover { background: rgba(255,255,255,0.18); color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 14px; background: #fff; box-shadow: var(--sh-sm); place-items: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2.4px; border-radius: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span::before { transform: translateY(-6px); } .nav-toggle span::after { transform: translateY(6px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: rotate(45deg); } .nav-open .nav-toggle span::after { transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; margin-left: auto; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 4px; padding: 18px var(--gutter) 26px; margin: 0;
    background: var(--red-800); border-bottom: 1px solid rgba(255,255,255,0.12);
    transform: translateY(calc(-100% - 80px)); transition: transform 0.32s var(--ease-out); box-shadow: var(--sh-md);
  }
  .nav-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 13px 16px; font-size: 1.05rem; }
  .nav-cta .btn-text { display: inline; }
  .nav-cta .btn-outline { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(40px, 6vw, 70px); padding-bottom: var(--section-y); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.hero-grid > * { min-width: 0; max-width: 100%; }
.hero-copy { max-width: 560px; }
.hero h1 { font-size: var(--fs-display); margin: 18px 0 0; }
.hero h1 .daub { color: var(--red-500); position: relative; white-space: nowrap; font-size: 1.4em; line-height: 0.95; display: inline-block; }
.hero h1 .daub::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: 0.08em; height: 0.42em; z-index: -1;
  background: var(--gold-400); border-radius: var(--r-pill); transform: rotate(-1.4deg); opacity: 0.65;
}
.hero-sub { margin-top: 20px; font-size: var(--fs-lg); color: var(--ink-600); max-width: 30ch; }
.hero-sub b { color: var(--ink); font-weight: 700; }

/* Waitlist */
.waitlist { margin-top: 30px; }
.waitlist-form { display: flex; gap: 10px; max-width: 440px; }
.waitlist-form input {
  flex: 1; min-width: 0; font: inherit; font-size: 1rem; padding: 0.85em 1.1em;
  border-radius: var(--r-pill); border: 1.6px solid var(--cream-300); background: #fff; color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.waitlist-form input::placeholder { color: var(--ink-400); }
.waitlist-form input:focus { outline: none; border-color: var(--red-500); box-shadow: 0 0 0 4px var(--red-tint); }
.waitlist-note { margin-top: 12px; font-size: 0.92rem; color: var(--ink-600); display: flex; align-items: center; gap: 7px; }
.waitlist-note svg { width: 16px; height: 16px; color: var(--mint); flex: none; }
.waitlist-success { margin-top: 14px; font-weight: 600; color: var(--mint); display: none; align-items: center; gap: 8px; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.waitlist-error { margin-top: 11px; font-size: 0.92rem; font-weight: 600; color: var(--red-600); display: none; }
.waitlist.done .waitlist-form, .waitlist.done .waitlist-note, .waitlist.done .waitlist-error { display: none; }
.waitlist.done .waitlist-success { display: flex; }

/* Store badges */
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px; padding: 9px 16px 9px 14px;
  background: var(--ink); color: #fff; border-radius: 15px; box-shadow: var(--sh-md);
  transition: transform 0.18s var(--ease-spring), box-shadow 0.18s ease; position: relative;
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.store-badge svg { width: 26px; height: 26px; flex: none; }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge .sb-small { font-size: 0.66rem; opacity: 0.8; letter-spacing: 0.03em; }
.store-badge .sb-big { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; }
.store-badge .sb-soon {
  position: absolute; top: -9px; right: -8px; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em;
  background: var(--gold-400); color: var(--ink); padding: 2px 7px; border-radius: var(--r-pill); text-transform: uppercase;
}

/* ---------- Hero stage: animated daub card + caller ---------- */
.hero-stage { position: relative; display: grid; place-items: center; min-height: 440px; }
.stage-glow { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(251,197,12,0.34), transparent 65%); filter: blur(8px); z-index: 0; }

/* number caller */
.caller {
  position: absolute; top: 2px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: inline-flex; align-items: center; gap: 11px;
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  color: #fff; padding: 10px 22px; border-radius: var(--r-pill); box-shadow: var(--sh-red);
}
.caller-live { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.92; }
.caller-live i { width: 7px; height: 7px; border-radius: 50%; background: #6CF1A0; animation: livePulse 1.7s ease-out infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(108,241,160,0.7); } 70% { box-shadow: 0 0 0 6px rgba(108,241,160,0); } 100% { box-shadow: 0 0 0 0 rgba(108,241,160,0); } }
.caller .col { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; opacity: 0.82; margin-left: 1px; }
.caller .num { font-family: var(--font-display); font-weight: 800; font-size: 1.95rem; line-height: 1; font-variant-numeric: tabular-nums; }
.caller.pop { animation: callerPop 0.5s var(--ease-spring); }
@keyframes callerPop { 0% { transform: translateX(-50%) scale(0.5) rotate(-6deg); opacity: 0; } 60% { transform: translateX(-50%) scale(1.08); } 100% { transform: translateX(-50%) scale(1); opacity: 1; } }

/* the card */
.daubcard {
  position: relative; z-index: 2; width: min(360px, 82vw); background: #FFFDF8;
  border-radius: var(--r-xl); padding: 18px; box-shadow: var(--sh-lg);
  margin-top: 70px;
}
.dc-head { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-bottom: 7px; }
.dc-head span {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; text-align: center;
  color: var(--red-600); line-height: 1.1; padding: 2px 0 6px;
}
.dc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.cell {
  position: relative; aspect-ratio: 1; display: grid; place-items: center;
  background: var(--cream-100); border-radius: 14px; font-family: var(--font-display); font-weight: 700;
  font-size: 1.18rem; color: var(--ink); font-variant-numeric: tabular-nums; border: 1.5px solid var(--cream-200);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.2s ease;
}
/* daubed = solid red cell, number stays white, white dot in the corner */
.cell.daubed { background: var(--red-500); border-color: var(--red-500); color: #fff; }
.cell .daub-mark {
  position: absolute; top: 6px; right: 6px; width: 9px; height: 9px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.25); opacity: 0; transform: scale(0);
}
.cell .daub-mark svg { display: none; }
.cell.daubed .daub-mark { opacity: 1; transform: scale(1); animation: stamp 0.4s var(--ease-spring); }
@keyframes stamp { 0% { transform: scale(0) rotate(-25deg); } 55% { transform: scale(1.4) rotate(4deg); } 100% { transform: scale(1) rotate(0); } }
/* FREE space — shown pre-daubed like the app */
.cell.free {
  background: var(--red-500); border-color: var(--red-500); color: #fff;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 800;
}
.cell.free::after { content: ""; position: absolute; top: 6px; right: 6px; width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.25); }
/* most-recently-called cell gets the dashed highlight */
.cell.latest::before { content: ""; position: absolute; inset: 3px; border: 2px dashed rgba(255,255,255,0.9); border-radius: 10px; pointer-events: none; }
.cell .ripple { position: absolute; inset: 0; border-radius: 14px; border: 2.5px solid var(--red-500); opacity: 0; }
.cell.daubed .ripple { animation: ripple 0.6s var(--ease-out); }
@keyframes ripple { 0% { transform: scale(0.7); opacity: 0.8; } 100% { transform: scale(1.7); opacity: 0; } }

/* floating daub markers (ambient) */
.float-mark { position: absolute; z-index: 1; opacity: 0.9; filter: drop-shadow(0 8px 14px rgba(120,20,30,0.22)); animation: floaty 6s ease-in-out infinite; }
.float-mark svg { width: 100%; height: 100%; }
.float-mark.m1 { width: 52px; top: 8%; right: 2%; animation-delay: -1s; }
.float-mark.m2 { width: 40px; bottom: 14%; left: -2%; animation-delay: -3s; }
.float-mark.m3 { width: 34px; bottom: 4%; right: 12%; animation-delay: -2s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-16px) rotate(6deg); } }

@media (max-width: 860px) {
  .hero-grid { display: flex; flex-direction: column; }
  .hero-copy { width: 100%; max-width: none; text-align: center; margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .waitlist-form, .stores { justify-content: center; margin-inline: auto; }
  .waitlist-note { justify-content: center; }
  .hero-stage { order: -1; min-height: 400px; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust { background: var(--ink); color: var(--cream); padding-block: 20px; }
.trust-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.97rem; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold-400); flex: none; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); }
@media (max-width: 620px) { .trust-dot { display: none; } }

/* ============================================================
   HOW TO PLAY — BINGO step rail
   ============================================================ */
.howto { background: var(--cream-50); }
.steps { display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: #fff; border: 1px solid var(--cream-200); border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 30px); box-shadow: var(--sh-sm); transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.step-ball {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; flex: none;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff;
  background: var(--red-500);
  box-shadow: var(--sh-sm);
}
.step:nth-child(3) .step-ball { background: var(--gold-500); color: var(--ink); }
.step h3 { margin-bottom: 5px; }
.step p { color: var(--ink-600); font-size: 1rem; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps .step:last-child { grid-column: 1 / -1; } }

/* number-range table */
.range-card { margin-top: 26px; background: #fff; border: 1px solid var(--cream-200); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.range-card .rc-head { display: grid; grid-template-columns: repeat(5, 1fr); }
.range-card .rc-head div { padding: 16px 6px; text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: #fff; background: var(--red-600); }
.range-card .rc-head div:nth-child(3) { background: var(--gold-500); color: var(--ink); }
.range-card .rc-body { display: grid; grid-template-columns: repeat(5, 1fr); }
.range-card .rc-body div { padding: 16px 6px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; border-right: 1px solid var(--cream-200); }
.range-card .rc-body div:last-child { border-right: none; }
.range-card .rc-body small { display: block; font-weight: 600; color: var(--ink-400); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 560px) { .range-card .rc-head div { font-size: 1.15rem; padding: 11px 2px; } .range-card .rc-body div { font-size: 0.82rem; padding: 11px 2px; } }

/* ============================================================
   GAME MODES
   ============================================================ */
.modes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.mode {
  position: relative; border-radius: var(--r-xl); padding: clamp(26px, 3.4vw, 40px); overflow: hidden;
  color: #fff; min-height: 280px; display: flex; flex-direction: column; box-shadow: var(--sh-md);
}
.mode-75 { background: linear-gradient(155deg, var(--red-600), var(--red-800)); }
.mode-52 { background: linear-gradient(155deg, var(--navy), #15111F); }
.mode .mode-icon { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,255,255,0.14); margin-bottom: 18px; }
.mode .mode-icon svg { width: 28px; height: 28px; }
.mode-52 .mode-icon { background: rgba(251,197,12,0.18); }
.mode h3 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem); }
.mode .mode-tag { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.78; margin-bottom: 6px; }
.mode p { margin-top: 12px; opacity: 0.9; font-size: 1.02rem; max-width: 42ch; }
.mode ul { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.mode ul li { font-size: 0.85rem; font-weight: 600; background: rgba(255,255,255,0.13); padding: 6px 12px; border-radius: var(--r-pill); }
.mode-deco { position: absolute; right: -30px; bottom: -30px; width: 170px; opacity: 0.16; transform: rotate(-12deg); }
.mode-soon {
  position: absolute; top: clamp(20px, 3vw, 30px); right: clamp(20px, 3vw, 30px); z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body); font-weight: 800; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gold-400); color: var(--ink); padding: 6px 12px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.mode-soon i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); opacity: 0.75; }
@media (max-width: 720px) { .modes-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURES — bento
   ============================================================ */
.features { background: var(--cream-50); }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.feature {
  background: #fff; border: 1px solid var(--cream-200); border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--sh-sm);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease; grid-column: span 2;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feature.wide { grid-column: span 3; }
.feature.tall { grid-row: span 2; }
.f-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; }
.f-icon svg { width: 26px; height: 26px; }
.f-red { background: var(--red-tint); color: var(--red-600); }
.f-gold { background: var(--gold-200); color: var(--gold-600); }
.f-mint { background: var(--mint-bg); color: var(--mint); }
.f-sky { background: var(--sky-bg); color: var(--sky); }
.f-grape { background: var(--grape-bg); color: var(--grape); }
.f-pink { background: var(--pink-bg); color: var(--pink); }
.feature h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { color: var(--ink-600); font-size: 0.98rem; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(4, 1fr); } .feature, .feature.wide { grid-column: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .feature, .feature.wide { grid-column: 1 / -1; } .feature.tall { grid-row: auto; } }

/* live-room mini demo inside a feature */
.room-demo { margin-top: 18px; background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-md); padding: 14px; }
.room-row { display: flex; align-items: center; gap: 10px; padding: 7px 0; }
.room-row .ava { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; flex: none; }
.room-row .nm { font-weight: 600; font-size: 0.92rem; }
.room-row .st { margin-left: auto; font-size: 0.74rem; font-weight: 700; color: var(--mint); background: var(--mint-bg); padding: 3px 9px; border-radius: var(--r-pill); }
.room-row .st.host { color: var(--gold-600); background: var(--gold-200); }

/* ============================================================
   MARKERS showcase
   ============================================================ */
.markers { background: linear-gradient(170deg, var(--red-700), var(--red-900)); color: #fff; overflow: clip; }
.markers .eyebrow { color: var(--gold-300); }
.markers .section-head p { color: rgba(255,255,255,0.82); }
.marker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 16px; margin-top: 12px; }
.marker {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: var(--r-lg);
  padding: 22px 14px; text-align: center; transition: transform 0.2s var(--ease-spring), background 0.2s ease; position: relative;
}
.marker:hover { transform: translateY(-5px); background: rgba(255,255,255,0.12); }
.marker .m-disc { width: 58px; height: 58px; margin: 0 auto 12px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; }
.marker:hover .m-disc { animation: stamp 0.5s var(--ease-spring); }
.marker .m-disc svg { width: 30px; height: 30px; }
.marker .m-name { font-weight: 700; font-size: 0.96rem; }
.marker .m-lock { font-size: 0.72rem; opacity: 0.6; margin-top: 2px; }
.marker.free .m-lock { color: var(--gold-300); opacity: 1; font-weight: 700; }

/* ============================================================
   STORE / PRICING
   ============================================================ */
.store-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; }
.price-card { position: relative; background: #fff; border: 1px solid var(--cream-200); border-radius: var(--r-xl); padding: clamp(26px, 3vw, 38px); box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--gold-400); box-shadow: var(--sh-md); }
.price-card .accent-bar { position: absolute; left: 0; top: 26px; bottom: 26px; width: 5px; border-radius: var(--r-pill); }
.price-card.featured .accent-bar { background: var(--gold-400); }
.price-card.slots .accent-bar { background: var(--sky); }
.price-card.sponsor { margin-top: 22px; border: 2px solid var(--pink-bg); }
.price-card.sponsor .accent-bar { background: var(--pink); }
.pc-feats.cols2 { grid-template-columns: repeat(2, 1fr); column-gap: 24px; }
.btn-block { width: 100%; }
@media (max-width: 560px) { .pc-feats.cols2 { grid-template-columns: 1fr; } }
.pc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.pc-icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.pc-icon svg { width: 26px; height: 26px; }
.pc-title h3 { font-size: 1.4rem; }
.pc-title .pc-sub { font-size: 0.9rem; color: var(--ink-600); font-weight: 600; }
.pc-feats { list-style: none; padding: 0; margin: 18px 0 22px; display: grid; gap: 11px; }
.pc-feats li { display: flex; align-items: center; gap: 11px; font-weight: 500; font-size: 0.98rem; }
.pc-feats li svg { width: 21px; height: 21px; color: var(--mint); flex: none; }
.pc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.pc-price { font-family: var(--font-display); font-weight: 800; font-size: 2rem; line-height: 1; }
.pc-price small { font-size: 0.84rem; font-weight: 600; color: var(--ink-600); display: block; letter-spacing: 0; }
.cosmetic-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
.cosmetic-tags .ct { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 0.88rem; padding: 7px 13px; border-radius: var(--r-pill); }
.cosmetic-tags .ct svg { width: 16px; height: 16px; }
@media (max-width: 820px) { .store-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
.cta { position: relative; }
.cta-card {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(150deg, var(--red-600), var(--red-800));
  color: #fff; padding: clamp(40px, 6vw, 72px); text-align: center; box-shadow: var(--sh-lg);
}
.cta-card h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
.cta-card p { margin: 16px auto 0; max-width: 48ch; opacity: 0.92; font-size: var(--fs-lg); }
.cta-card .stores { justify-content: center; margin-top: 30px; }
.cta-card .store-badge { background: #fff; color: var(--ink); }

/* Closed Testing (beta) block inside the CTA card */
.beta-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--r-pill); padding: 8px 18px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
}
.beta-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); animation: livePulse 1.7s ease-out infinite; }
.beta-steps { display: flex; flex-direction: column; gap: 12px; max-width: 620px; margin: 30px auto 0; text-align: left; }
.beta-step {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-lg); padding: 16px 20px;
}
.beta-step .bs-num {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: var(--gold-400); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center;
}
.beta-step .bs-text { flex: 1; min-width: 200px; }
.beta-step .bs-text strong { display: block; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.25; }
.beta-step .bs-text small { display: block; margin-top: 2px; font-size: 0.86rem; opacity: 0.82; }
.beta-step .btn { flex: none; }
.beta-note {
  display: flex; align-items: flex-start; gap: 9px; text-align: left;
  max-width: 620px; margin: 16px auto 0; font-size: 0.9rem; opacity: 0.88; line-height: 1.55;
}
.beta-note svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold-400); }
@media (max-width: 560px) {
  .beta-step { flex-direction: column; align-items: flex-start; }
  .beta-step .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding-top: clamp(50px, 7vw, 80px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px 24px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand { color: #fff; display: inline-flex; }
.footer .brand span { display: inline; padding: 0; }
.footer-blurb { margin-top: 16px; color: rgba(255,255,255,0.62); font-size: 0.96rem; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer .footer-social a {
  width: 40px; height: 40px; padding: 0; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.82);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s var(--ease-spring);
}
.footer .footer-social a:hover { background: var(--gold-400); color: var(--ink); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: rgba(255,255,255,0.74); font-size: 0.96rem; padding: 5px 0; transition: color 0.16s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding-block: 26px; color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.age-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--cream); }
.age-badge .pill18 { background: var(--red-500); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 0.78rem; padding: 3px 9px; border-radius: var(--r-pill); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-col.about { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL / CONTENT PAGES
   ============================================================ */
.page-hero { background: linear-gradient(160deg, var(--red-700), var(--red-900)); color: #fff; padding-block: clamp(56px, 8vw, 96px) clamp(40px, 5vw, 60px); }
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero h1 { font-size: clamp(2.2rem, 1.5rem + 3vw, 3.4rem); margin-top: 14px; }
.page-hero p { margin-top: 14px; max-width: 56ch; opacity: 0.9; font-size: var(--fs-lg); }
.legal { max-width: 760px; }
.legal .toc { background: var(--cream-50); border: 1px solid var(--cream-200); border-radius: var(--r-lg); padding: 22px 26px; margin-top: 32px; margin-bottom: 40px; }
.legal .toc h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-600); margin-top: 0; margin-bottom: 12px; }
.legal .toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 24px; }
.legal .toc a { font-weight: 600; padding: 4px 0; display: inline-block; }
.legal .toc a:hover { color: var(--red-600); }
.legal h2 { font-size: 1.5rem; margin-top: 44px; scroll-margin-top: 90px; }
.legal .toc + h2 { margin-top: 0; }
.legal h3 { font-size: 1.15rem; margin-top: 26px; }
.legal p, .legal li { color: var(--ink); font-size: 1.04rem; }
.legal p { margin-top: 14px; }
.legal ul, .legal ol.body { margin-top: 14px; padding-left: 22px; }
.legal li { margin-top: 8px; }
.legal a.inline { color: var(--red-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal .updated { font-weight: 600; color: var(--ink-600); }

/* callout / note boxes */
.note { display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--r-md); margin-top: 22px; border: 1px solid; }
.note svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.note.warn { background: var(--red-tint); border-color: #F3C9C9; color: var(--ink); }
.note.warn svg { color: var(--red-600); }
.note.info { background: var(--sky-bg); border-color: #CFE5F8; }
.note.info svg { color: var(--sky); }
.note p { margin: 0; }

/* delete steps */
.del-steps { counter-reset: d; margin-top: 24px; display: grid; gap: 14px; }
.del-step { display: grid; grid-template-columns: auto 1fr; gap: 18px; background: #fff; border: 1px solid var(--cream-200); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-sm); }
.del-step::before { counter-increment: d; content: counter(d); width: 44px; height: 44px; border-radius: 50%; background: var(--red-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.del-step h3 { margin-top: 0; margin-bottom: 4px; font-size: 1.12rem; }
.del-step p { margin: 0; color: var(--ink-600); font-size: 0.98rem; }
.data-table { width: 100%; border-collapse: collapse; margin-top: 18px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh-sm); }
.data-table th, .data-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--cream-200); font-size: 0.98rem; }
.data-table th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 700; }
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child { font-weight: 600; }
.data-table .keep { color: var(--ink-600); }

/* reveal animation */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.06s; }
[data-reveal][data-delay="2"] { transition-delay: 0.12s; }
[data-reveal][data-delay="3"] { transition-delay: 0.18s; }
[data-reveal][data-delay="4"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .float-mark, .caller.pop, .caller-live i, .cell.daubed .daub-mark, .cell.daubed .ripple { animation: none !important; }
  .float-mark { display: none; }
  .cell.daubed .daub-mark { opacity: 1; transform: scale(1); }
}

.skip-link { position: absolute; left: -999px; top: 8px; z-index: 200; background: #fff; color: var(--ink); padding: 10px 16px; border-radius: var(--r-pill); box-shadow: var(--sh-md); font-weight: 700; }
.skip-link:focus { left: var(--gutter); }
