/* ZZQSKZB — cream, lavender, sickly pink, mustard iris. ugly-cute, not a template. */
:root {
  --bg: #161014;
  --bg-2: #22181c;
  --cream: #f3e6c8;
  --cream-dim: #d4c4a4;
  --lavender: #c4a3d6;
  --lavender-deep: #8e6aa0;
  --pink: #e89aa8;
  --pink-hot: #d4687a;
  --mustard: #e0b52a;
  --mustard-deep: #c49212;
  --ink: #1a1216;
  --paper: #efe2c0;
  --ok: #7dae5c;
  --display: "Alfa Slab One", "Impact", "Arial Black", system-ui, sans-serif;
  --body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --mono: "Cascadia Mono", "Consolas", ui-monospace, monospace;
  --max: 1120px;
  --border: 3px solid #0b0708;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  max-width: 100%;
  background: var(--bg);
  color: var(--cream);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.5;
  min-height: 100vh;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 50% at 8% -8%, #3a2438 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, #2a1824 0%, transparent 50%),
    radial-gradient(circle at 12% 72%, #c47884 0 7px, transparent 8px),
    radial-gradient(circle at 78% 88%, #8e6aa0 0 11px, transparent 12px),
    radial-gradient(circle at 92% 40%, #d4687a 0 6px, transparent 7px),
    radial-gradient(circle at 4% 30%, #c4a3d6 0 5px, transparent 6px);
  background-attachment: fixed;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }

a { color: var(--mustard); }
a:hover { color: var(--pink); }

code { font-family: var(--mono); font-size: 0.86em; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--mustard);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { left: 8px; top: 8px; }

.tape {
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--display);
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.04em;
  font-size: clamp(0.75rem, 2.4vw, 1rem);
  border-bottom: var(--border);
}

.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 14px 18px;
  border-bottom: var(--border);
  background: #120e11;
  position: sticky;
  top: 0;
  z-index: 10;
}

.wordmark {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.wordmark:hover { color: var(--pink); }

.census {
  margin: 0;
  color: var(--lavender);
  font-size: 0.82rem;
}

.nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}
.nav a {
  color: var(--cream-dim);
  text-decoration: none;
  text-transform: lowercase;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--mustard); }

.nav-ca {
  font-family: var(--mono);
  font-size: 0.72rem;
  background: #0d0a0c;
  color: var(--mustard);
  border: 2px solid #000;
  padding: 6px 8px;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  max-width: 42vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-ca:hover { color: var(--pink); }

.live-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  padding: 8px 18px;
  background: #0d0a0c;
  border-bottom: var(--border);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  z-index: 8;
}
.live-k { color: var(--pink); font-family: var(--display); letter-spacing: 0.12em; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mustard);
  box-shadow: 0 0 0 3px rgba(224, 181, 42, 0.25);
}
.live-strip.is-live .live-dot { background: var(--ok); box-shadow: 0 0 0 3px rgba(125, 174, 92, 0.3); }

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 12px;
}

.hero-copy {
  container-type: inline-size;
  min-width: 0;
  padding-left: 4px;
}

.kicker {
  font-family: var(--display);
  color: var(--pink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 8px;
}

.name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 12cqi, 4.2rem);
  line-height: 0.9;
  margin: 0 0 12px;
  color: var(--cream);
  text-shadow: 4px 4px 0 #000, -2px 0 0 var(--pink-hot);
  white-space: nowrap;
  letter-spacing: -0.04em;
}

.hook {
  font-size: clamp(1.15rem, 3.4vw, 1.7rem);
  margin: 0 0 8px;
  color: var(--lavender);
  max-width: 28ch;
}

.subhook {
  margin: 0 0 22px;
  color: var(--cream-dim);
  max-width: 42ch;
}

.ca-box {
  background: #0d0a0c;
  border: var(--border);
  box-shadow: 6px 6px 0 #000;
  padding: 12px 14px 10px;
  margin-bottom: 18px;
}

.ca-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.chain-pill, .pill {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border: 2px solid #000;
  font-family: var(--display);
}

.chain-pill { background: var(--lavender); color: var(--ink); }
.pill-wait { background: var(--mustard); color: var(--ink); }
.pill-live { background: var(--ok); color: var(--ink); }

.ca-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ca-value {
  flex: 1 1 100%;
  font-size: clamp(0.62rem, 2.2vw, 0.82rem);
  word-break: break-all;
  color: var(--cream);
  background: #1c1518;
  padding: 8px 10px;
  border: 2px solid #3a2a30;
}

.icon-btn, .btn {
  font-family: var(--display);
  border: var(--border);
  background: var(--pink);
  color: var(--ink);
  text-decoration: none;
  padding: 10px 14px;
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  line-height: 1;
}

.icon-btn { font-size: 0.78rem; padding: 8px 10px; background: var(--cream); }

.btn:hover, .icon-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
  color: var(--ink);
}

.btn.buy { background: var(--mustard); }
.btn.ghost { background: var(--lavender); }
.btn small { font-family: var(--body); font-size: 0.7em; font-weight: 700; }

.btn[aria-disabled="true"],
.btn:disabled,
.icon-btn[aria-disabled="true"] {
  opacity: 0.45;
  box-shadow: none;
  transform: none;
  cursor: not-allowed;
  pointer-events: none;
}

#btn-tg[aria-disabled="true"] {
  pointer-events: auto;
  cursor: pointer;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.cta > .btn {
  flex: 1 1 7.2rem;
  min-width: 7.2rem;
  max-width: 100%;
  height: 44px;
  margin: 0;
  white-space: nowrap;
}

.copy-feedback {
  min-height: 1.2em;
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: var(--mustard);
}

.hero-stage {
  position: relative;
  min-height: 320px;
  padding: 28px 8px 8px;
}

.polaroid {
  margin: 18px auto 0;
  width: min(100%, 420px);
  background: var(--cream);
  padding: 12px 12px 46px;
  transform: rotate(-2.4deg);
  box-shadow: 10px 14px 0 #000, 0 24px 40px rgba(0, 0, 0, 0.45);
  border: var(--border);
  position: relative;
  z-index: 1;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.05);
}

.polaroid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(0.7rem, 2.4vw, 0.88rem);
  letter-spacing: 0.02em;
}

.float-eye {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.eye-white {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: var(--cream);
  border: 3px solid var(--pink-hot);
  border-radius: 50% 50% 48% 52%;
  box-shadow: 3px 3px 0 #000, inset 0 -6px 0 rgba(212, 104, 122, 0.18);
  overflow: hidden;
}

.eye-iris {
  width: 46%;
  height: 46%;
  background: var(--mustard);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 3px var(--mustard-deep);
  will-change: transform;
}

.eye-pupil {
  width: 46%;
  height: 46%;
  background: #0b0708;
  border-radius: 50%;
  box-shadow: -2px -2px 0 1px #f7f0d8;
}

.e1 { width: 58px; height: 50px; top: 2%; left: 2%; }
.e2 { width: 30px; height: 26px; top: 0; right: 18%; }
.e3 { width: 44px; height: 40px; top: 12%; right: 0; }
.e4 { width: 22px; height: 20px; top: 48%; right: 4%; }
.e5 { width: 38px; height: 34px; top: 58%; left: 0; }
.e6 { width: 18px; height: 16px; bottom: -8%; left: 16%; }
.e7 { width: 28px; height: 24px; top: -4%; left: 42%; }
.e8 { width: 34px; height: 30px; bottom: -6%; right: -2%; }
.e9 { width: 24px; height: 22px; top: 28%; left: 4%; }

.chart-slot {
  width: min(var(--max), calc(100% - 32px));
  margin: 8px auto 40px;
}

.chart-ph {
  border: var(--border);
  background: #0d0a0c;
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--cream-dim);
  box-shadow: 6px 6px 0 #000;
}

.chart-slot iframe {
  width: 100%;
  min-height: 360px;
  border: var(--border);
  background: #0d0a0c;
}

section h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 6vw, 3.1rem);
  line-height: 1;
  margin: 0 0 14px;
  color: var(--cream);
}

.lede {
  max-width: 58ch;
  color: var(--cream-dim);
  margin: 0 0 22px;
}

.lore, .case, .buy, .omics, .safety, .band {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 48px;
}

.lore-grid {
  display: grid;
  gap: 22px;
}

.lore-block p { margin: 0 0 12px; }
.lore-block strong { color: var(--mustard); }
.lore-block em { color: var(--pink); font-style: normal; }

.say-it {
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  box-shadow: 8px 8px 0 #000;
  padding: 18px;
  transform: rotate(0.8deg);
}

.say-it .btn { margin: 8px 0; }

.stamp {
  font-family: var(--display);
  color: var(--pink-hot);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 8px;
}

.say-prompt { margin: 0 0 8px; }

.say-out {
  font-family: var(--display);
  font-size: 1.15rem;
  margin: 10px 0 0;
  min-height: 2.4em;
}

.folder {
  position: relative;
  margin-top: 8px;
  min-width: 0;
  max-width: 100%;
}

.folder-tab {
  display: inline-block;
  background: #d9b56a;
  color: var(--ink);
  font-family: var(--display);
  padding: 8px 18px 6px;
  border: var(--border);
  border-bottom: none;
  margin-left: 18px;
  transform: rotate(-1.2deg);
}

.folder-body {
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  box-shadow: 12px 12px 0 #000;
  padding: 18px 16px 22px;
}

.folder-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--display);
  font-size: 0.85rem;
  margin-bottom: 14px;
  color: #5a3a28;
}

.eye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.lid {
  appearance: none;
  border: 3px solid #0b0708;
  background: #c47884;
  height: 56px;
  cursor: pointer;
  position: relative;
  box-shadow: 3px 3px 0 #000;
  font-family: var(--display);
  color: var(--ink);
  font-size: 0.72rem;
  overflow: hidden;
}

.lid::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 46%;
  height: 4px;
  background: #5a2030;
  border-radius: 4px;
}

.lid.open {
  background: var(--cream);
  color: transparent;
}

.lid.open::after { display: none; }

.lid.open .lid-eye {
  opacity: 1;
  transform: scale(1);
}

.lid-eye {
  position: absolute;
  inset: 7px;
  background: var(--cream);
  border: 2px solid var(--pink-hot);
  border-radius: 50% 50% 48% 52%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.4);
  transition: transform 160ms ease, opacity 160ms ease;
  box-shadow: inset 0 -4px 0 rgba(212, 104, 122, 0.2);
}

.lid-iris {
  width: 46%;
  height: 46%;
  background: var(--mustard);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 2px var(--mustard-deep);
}

.lid-pupil {
  width: 46%;
  height: 46%;
  background: #0b0708;
  border-radius: 50%;
  box-shadow: -1px -1px 0 1px #f7f0d8;
}

.lid:nth-child(3n) .lid-iris { width: 36%; height: 36%; }
.lid:nth-child(4n) .lid-iris { width: 54%; height: 54%; }

.lid:hover { transform: translate(1px, 1px); }

.report {
  background: #f7edd2;
  border: 2px dashed #8a6a3a;
  padding: 14px;
  min-height: 110px;
  margin-bottom: 14px;
}

.report-kicker {
  font-family: var(--display);
  margin: 0 0 6px;
  color: var(--pink-hot);
  font-size: 0.85rem;
}

.report-body { margin: 0; }

.briefing pre {
  white-space: pre-wrap;
  background: #1a1216;
  color: var(--cream);
  padding: 12px;
  border: 2px solid #000;
  font-family: var(--mono);
  font-size: 0.85rem;
  min-height: 6em;
}

.briefing .btn { margin-top: 10px; }

.briefing.is-ready .stamp { color: var(--ok); }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  background: var(--bg-2);
  border: var(--border);
  padding: 16px;
  box-shadow: 6px 6px 0 #000;
  min-width: 0;
  width: 100%;
}

.step > div { min-width: 0; }

.step code { overflow-wrap: anywhere; }

.step h3 {
  font-family: var(--display);
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.step p { margin: 0 0 12px; color: var(--cream-dim); }

.num {
  font-family: var(--display);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--pink);
  color: var(--ink);
  border: var(--border);
  font-size: 1.2rem;
}

.hint { min-height: 1.2em; color: var(--mustard) !important; font-size: 0.88rem; }

.planned {
  display: inline-block;
  background: var(--mustard);
  color: var(--ink);
  font-family: var(--display);
  padding: 6px 10px;
  border: 2px solid #000;
  margin: 0 0 18px;
  font-size: 0.85rem;
}

.omics-grid {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.omics-grid li {
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  padding: 16px 14px;
  box-shadow: 5px 5px 0 #000;
}

.omics-grid .label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6a4a38;
}

.omics-grid .value {
  font-family: var(--display);
  font-size: clamp(1.4rem, 5vw, 2rem);
}

.omics-foot { color: var(--cream-dim); max-width: 60ch; }

.badges {
  display: grid;
  gap: 12px;
}

.badge {
  border: var(--border);
  padding: 16px;
  background: var(--bg-2);
  box-shadow: 5px 5px 0 #000;
}

.badge h3 {
  font-family: var(--display);
  margin: 0 0 6px;
}

.badge p { margin: 0; color: var(--cream-dim); }

.badge-state {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 2px solid #000;
  background: var(--mustard);
  color: var(--ink);
  margin: 0 0 8px;
}

.badge.is-live .badge-state {
  background: var(--ok);
}

.foot {
  border-top: var(--border);
  padding: 32px 18px 48px;
  background: #100c0e;
  color: var(--cream-dim);
}

.foot-name {
  font-family: var(--display);
  color: var(--cream);
  font-size: 1.6rem;
  margin: 0 0 8px;
}

.disclaimer {
  max-width: 70ch;
  font-size: 0.82rem;
  color: #b8a894;
}

.copy-year { font-size: 0.8rem; color: #7a6a62; }

@media (min-width: 860px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    width: min(var(--max), calc(100% - 48px));
    margin-top: 36px;
  }

  .lore-grid { grid-template-columns: 1.2fr 0.8fr; align-items: start; }

  .eye-grid { grid-template-columns: repeat(9, 1fr); }

  .lid { height: 72px; }

  .omics-grid { grid-template-columns: repeat(4, 1fr); }

  .badges { grid-template-columns: repeat(3, 1fr); }

  .lore, .case, .buy, .omics, .safety, .chart-slot, .band {
    width: min(var(--max), calc(100% - 48px));
  }

  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .drool-grid { grid-template-columns: 1.1fr 0.9fr; }
  .kit-grid { grid-template-columns: 1fr 1fr; }
  .faq-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .top { padding: 10px 12px; }
  .nav { width: 100%; margin-left: 0; }
  .nav-ca { max-width: 100%; }
  .hero, .lore, .case, .buy, .omics, .safety, .chart-slot, .band {
    width: calc(100% - 24px);
  }
  .cta > .btn { flex-basis: calc(50% - 10px); min-width: 0; }
  .e1, .e3, .e5, .e8 { transform: scale(0.86); }
  .name { letter-spacing: -0.05em; }
  .step { box-shadow: 4px 4px 0 #000; }
  .live-strip { padding: 8px 12px; }
  .game-pads { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover, .icon-btn:hover, .lid:hover, .fact:hover, .kit-card:hover { transform: none; }
  .lid-eye { transition: none; }
  .polaroid { transform: none; }
  .say-it { transform: none; }
  .folder-tab { transform: none; }
  .ticker-track { animation: none; flex-wrap: wrap; width: 100%; }
  .drool-drops span { animation: none; }
  .live-dot { box-shadow: none; }
  .wax { animation: none; }
}

/* ---- ticker ---- */
.ticker {
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--mustard);
  color: var(--ink);
  margin: 8px 0 28px;
}
.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker-track span {
  font-family: var(--display);
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  padding: 10px 22px;
  white-space: nowrap;
  border-right: 3px solid #0b0708;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- 9 facts ---- */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.fact {
  background: var(--bg-2);
  border: var(--border);
  padding: 16px 14px 18px;
  box-shadow: 5px 5px 0 #000;
  position: relative;
  overflow: hidden;
}
.fact:hover { transform: translate(1px, 1px); box-shadow: 4px 4px 0 #000; }
.fact-n {
  font-family: var(--display);
  color: var(--pink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 4px;
}
.fact h3 {
  font-family: var(--display);
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.fact p { margin: 0; color: var(--cream-dim); }
.fact-eye {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 36px;
  height: 32px;
  display: grid;
  place-items: center;
}
.fact-omics { background: #2a2214; }
.fact-legal { outline: 3px dashed var(--mustard); outline-offset: -8px; }
.fact-vlad {
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(0,0,0,0.18) 8px, rgba(0,0,0,0.18) 16px),
    #22141a;
}
.fact-vlad h3 { color: var(--mustard); }

/* ---- drool fund ---- */
.drool { position: relative; }
.drool-drops {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.drool-drops span {
  position: absolute;
  width: 10px;
  height: 16px;
  background: var(--lavender);
  border-radius: 40% 40% 50% 50%;
  opacity: 0.45;
  animation: drip 3.6s linear infinite;
}
.drool-drops span:nth-child(1) { left: 8%; animation-delay: 0s; }
.drool-drops span:nth-child(2) { left: 28%; animation-delay: 0.9s; background: var(--pink); }
.drool-drops span:nth-child(3) { left: 62%; animation-delay: 1.6s; }
.drool-drops span:nth-child(4) { left: 88%; animation-delay: 2.4s; background: var(--pink-hot); }
@keyframes drip {
  0% { top: -20px; opacity: 0; }
  15% { opacity: 0.5; }
  100% { top: 100%; opacity: 0; }
}
.drool-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.drool-card {
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  box-shadow: 8px 8px 0 #000;
  padding: 16px;
}
.drool-wallet { background: #0d0a0c; color: var(--cream); }
.drool-wallet .stamp { color: var(--mustard); }
.drool-wallet .ca-value { display: block; margin-bottom: 10px; }
.drool-steps {
  margin: 0 0 12px;
  padding-left: 18px;
}
.drool-steps li { margin: 0 0 8px; }
.drool-not {
  margin: 0;
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--pink-hot);
}
.drool-stats {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.drool-stats li {
  background: #1c1518;
  border: 2px solid #3a2a30;
  padding: 10px;
}
.drool-stats .label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
}
.drool-stats .value {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--mustard);
}
.burn-list { display: grid; gap: 8px; }
.burn-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  background: #f7edd2;
  border: 2px dashed #8a6a3a;
  padding: 10px 12px;
  font-size: 0.9rem;
}
.burn-row a { color: #8a1020; }
.burn-empty { margin: 0; color: #5a3a28; }

/* ---- game ---- */
.game-wrap {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  background: #0d0a0c;
  border: var(--border);
  box-shadow: 10px 10px 0 #000;
  overflow: hidden;
}
.game-wrap.is-theater {
  position: fixed;
  inset: 0;
  z-index: 80;
  max-width: none;
  margin: 0;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  background: #0b0708;
}
.game-wrap.is-theater #game-canvas { flex: 1; height: auto; max-height: none; }
#game-canvas {
  width: 100%;
  height: auto;
  display: block;
  touch-action: none;
  background: #1a1216;
  max-height: 70vh;
}
.game-hud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  padding: 8px 10px;
  background: #120e11;
  border-bottom: 2px solid #000;
  font-family: var(--mono);
  font-size: 0.72rem;
}
.game-lives { display: flex; gap: 4px; flex-wrap: wrap; }
.game-lives i {
  width: 16px; height: 14px;
  background: var(--mustard);
  border: 2px solid #000;
  border-radius: 50% 50% 45% 55%;
  display: inline-block;
}
.game-lives i.off { background: #3a2a30; opacity: 0.45; }
.game-depth { margin: 0; color: var(--cream); flex: 1; }
.game-best { margin: 0; color: var(--lavender); }
.game-overlay {
  position: absolute;
  inset: 42px 0 0;
  background: rgba(16, 10, 12, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
  z-index: 2;
}
.game-overlay[hidden] { display: none !important; }
.game-play { font-size: 1.6rem; padding: 16px 28px; }
.game-hint { max-width: 36ch; color: var(--cream-dim); margin: 0; }
.game-over-kicker {
  font-family: var(--display);
  color: var(--pink);
  letter-spacing: 0.08em;
  margin: 0;
}
.game-over-depth {
  font-family: var(--display);
  font-size: 2rem;
  margin: 0;
}
.game-tools { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.game-pads {
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid #000;
}
.game-pads button {
  font-family: var(--display);
  font-size: 1.4rem;
  padding: 12px;
  background: var(--lavender);
  border: 0;
  border-right: 2px solid #000;
  cursor: pointer;
}
.game-pads button:last-child { border-right: 0; background: var(--pink); }
.game-pads button:active { filter: brightness(0.9); }

/* ---- locker ---- */
.locker-sealed { text-align: center; padding: 12px 8px 8px; }
.wax {
  width: 88px; height: 88px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e89aa8, #8a1020 62%, #4a0810);
  color: var(--cream);
  font-family: var(--display);
  display: grid;
  place-items: center;
  border: 3px solid #3a0810;
  box-shadow: 4px 4px 0 #000;
  animation: waxpulse 2.8s ease-in-out infinite;
}
@keyframes waxpulse {
  50% { transform: scale(0.96); }
}
.locker-files { display: grid; gap: 10px; margin-top: 16px; }
.classified {
  background: #1a1216;
  color: var(--cream);
  border: 2px solid #000;
  padding: 12px;
  position: relative;
}
.classified .stamp { color: var(--mustard); }
.classified p { margin: 0; }
.redact-bar {
  display: inline-block;
  background: #0b0708;
  color: #0b0708;
  height: 0.9em;
  min-width: 4ch;
  vertical-align: middle;
}
.locker-badge { margin-top: 18px; }
#badge-canvas {
  width: 100%;
  height: auto;
  background: var(--paper);
  border: var(--border);
  margin: 8px 0 12px;
}

/* ---- meme kit ---- */
.kit-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}
.kit-card {
  background: var(--bg-2);
  border: var(--border);
  padding: 12px;
  box-shadow: 6px 6px 0 #000;
  display: grid;
  gap: 10px;
}
.kit-card:hover { transform: translate(1px, 1px); }
.kit-card img { border: 2px solid #000; }
.kit-card svg { width: 100%; height: auto; border: 2px solid #000; background: #efe2c0; }
.meme-card label {
  display: grid;
  gap: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
}
.meme-card input {
  font-family: var(--display);
  font-size: 0.95rem;
  padding: 8px;
  border: var(--border);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  text-transform: uppercase;
}
.sighting-box pre {
  white-space: pre-wrap;
  background: #1a1216;
  color: var(--cream);
  padding: 12px;
  border: 2px solid #000;
  font-family: var(--mono);
  font-size: 0.85rem;
}

/* ---- faq ---- */
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  box-shadow: 4px 4px 0 #000;
}
.faq-list summary {
  font-family: var(--display);
  cursor: pointer;
  padding: 12px 14px;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 42px;
  height: 10px;
  background: #0b0708;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after { width: 18px; }
.faq-list details p {
  margin: 0;
  padding: 0 14px 14px;
  color: #3a2a28;
  border-top: 2px dashed #8a6a3a;
  padding-top: 10px;
}

.icon-btn:focus-visible,
.btn:focus-visible,
.nav a:focus-visible,
.nav-ca:focus-visible,
.lid:focus-visible,
.faq-list summary:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 2px;
}

@media (min-width: 600px) {
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .kit-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 860px) {
  .facts-grid { grid-template-columns: repeat(3, 1fr); }
  .drool-grid { grid-template-columns: 1.1fr 0.9fr; }
  .faq-list { grid-template-columns: 1fr 1fr; }
}
@media (pointer: coarse) {
  .game-pads { display: grid; }
}
