/* ============================================================
   $HOODBOY: hellfire theme
   ============================================================ */
:root {
  --red: #c40000;
  --red-hot: #ff1a1a;
  --red-deep: #7a0000;
  --ink: #0a0000;
  --lime: #ccff00;
  --ember: #ff6a00;
  --bone: #f3e9e0;
  --muted: #c8a79f;
  --line: rgba(255, 60, 40, .22);

  --display: "Anton", Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  --heavy: "Archivo Black", "Arial Black", "Helvetica Neue", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  --gutter: clamp(16px, 4vw, 48px);
  --radius: 16px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font: 400 16px/1.65 var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
code { font-family: var(--mono); }
::selection { background: var(--lime); color: #000; }

.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }
.lime { color: var(--lime); }
.red { color: var(--red-hot); }

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 1s steps(6) infinite;
}

/* ember canvas (created by embers.js) */
.embers { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 55; pointer-events: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding-inline: 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font: 400 16px/1 var(--heavy);
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0) scale(.97); }
.btn:focus-visible, .icon-btn:focus-visible, .copy-btn:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.btn-lime { background: var(--lime); color: #000; box-shadow: 0 6px 0 #000; }
.btn-lime:hover { box-shadow: 0 9px 0 #000, 0 0 40px rgba(204, 255, 0, .45); }
.btn-dark { background: #000; color: var(--bone); }
.btn-dark:hover { background: #1a0000; color: var(--lime); }
.btn-icon { width: 54px; padding: 0; background: #000; color: var(--bone); }
.btn-icon svg { width: 20px; height: 20px; fill: currentColor; }
.btn-icon:hover { color: var(--lime); }
.btn-sm { height: 40px; padding-inline: 18px; font-size: 13px; box-shadow: 0 4px 0 #000; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(10, 0, 0, .8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-color: var(--line);
}
.nav-inner { position: relative; display: flex; align-items: center; gap: 24px; height: 68px; }
.brand { font-family: var(--display); font-size: 28px; line-height: 1; letter-spacing: .02em; color: var(--bone); }
.brand span { color: var(--lime); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  position: relative;
  padding-block: 6px;
  font: 700 13px/1 var(--body);
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .88;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-links a { white-space: nowrap; }
.nav-links a:hover { opacity: 1; }
@media (min-width: 901px) and (max-width: 1140px) {
  .nav-inner { gap: 16px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; letter-spacing: .07em; }
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  font-size: 17px;
  transition: background .2s, border-color .2s;
}
.icon-btn:hover { background: rgba(0, 0, 0, .55); border-color: var(--lime); }
.menu-btn { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 100px 80px;
  overflow: hidden;
  background: radial-gradient(90% 80% at 30% 45%, #e00a00 0%, #b30000 40%, #6e0000 85%, #420000 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 40%, transparent 55%, rgba(0, 0, 0, .5) 100%),
    linear-gradient(to bottom, transparent 78%, var(--ink) 100%);
}
.hero-glow {
  position: absolute;
  z-index: 1;
  left: 30%; top: 50%;
  width: 70vmax; height: 70vmax;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 130, 0, .55) 0%, rgba(255, 40, 0, .22) 35%, transparent 65%);
  opacity: .6;
  pointer-events: none;
  will-change: transform, opacity;
  animation: pulse 3.2s ease-in-out infinite;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.hero.shake .hero-grid { animation: shake .45s cubic-bezier(.36, .07, .19, .97); }

.art-stage { position: relative; perspective: 1100px; }
.art {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
  outline: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.art:focus-visible { outline: 3px dashed var(--lime); outline-offset: 8px; border-radius: 20px; }
.portrait {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: opacity .4s;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 24%, #000 76%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 70%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, #000 24%, #000 76%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 9%, #000 70%, transparent 100%);
  mask-composite: intersect;
}
.portrait img { pointer-events: none; }
.portrait.banner { aspect-ratio: 1240 / 1143; }
.portrait.banner img { position: absolute; top: 0; left: 0; height: 100%; width: auto; max-width: none; }
.portrait.cutout {
  aspect-ratio: 2772 / 2700;
  -webkit-mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  -webkit-mask-composite: source-over;
  mask-image: linear-gradient(to bottom, #000 76%, transparent 100%);
  mask-composite: add;
}
.portrait.cutout img {
  position: absolute;
  top: 0;
  left: -32.25%;
  width: 173.16%;
  height: 100%;
  max-width: none;
  /* no drop-shadow here: the frame clips it into a visible rectangle */
}
.portrait.square { aspect-ratio: 1; }
.portrait.square img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* moving eyes */
.eye {
  position: absolute;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 70%, #f6f0ea 0%, #e8ddd3 55%, #c7b0a3 100%);
  box-shadow: inset 0 5px 5px -3px rgba(90, 10, 0, .6), inset 0 -2px 3px -1px rgba(90, 10, 0, .35);
}
.pupil {
  position: absolute;
  left: 50%; top: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #050202 0 36%, #3b1d0c 39%, #6e3c17 62%, #2a1206 74% 100%);
}
.pupil::after {
  content: "";
  position: absolute;
  left: 56%; top: 18%;
  width: 24%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  opacity: .92;
}
.lid {
  position: absolute;
  inset: -2px;
  background: linear-gradient(#b52a20, #8a1c15);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .08s ease-in;
}
.eye.squint .lid { transform: scaleY(.45); transition-duration: .12s; }
.eye.blink .lid { transform: scaleY(1); }
.eye.debug { outline: 1px solid var(--lime); }

.bubble {
  position: absolute;
  z-index: 3;
  left: 56%; top: 2%;
  max-width: min(260px, 62%);
  padding: 12px 16px;
  border: 3px solid #000;
  border-radius: 18px;
  background: var(--bone);
  color: #000;
  font: 400 15px/1.25 var(--heavy);
  box-shadow: 5px 5px 0 #000;
  transform-origin: 0% 100%;
  transform: translateZ(40px) scale(0) rotate(-6deg);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.3, 1.6, .5, 1), opacity .2s;
}
.bubble::after {
  content: "";
  position: absolute;
  left: 18px; bottom: -15px;
  border: 10px solid transparent;
  border-top: 14px solid #000;
  border-bottom: 0;
}
.bubble.show { transform: translateZ(40px) scale(1) rotate(-3deg); opacity: 1; }

.poke-hint {
  margin: 14px 0 0;
  text-align: center;
  font: 700 12px/1.4 var(--body);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 235, 225, .85);
}
.poke-hint strong { color: var(--lime); font: 400 13px/1 var(--heavy); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #000;
  color: var(--lime);
  font: 400 12px/1 var(--heavy);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: blinkdot 1.4s infinite;
}
.wordmark {
  position: relative;
  font-family: var(--display);
  font-size: clamp(4.2rem, 11.5vw, 10.5rem);
  line-height: .86;
  letter-spacing: .005em;
  color: #000;
  filter: url(#heat);
}
.wordmark.glitch { animation: glitch .4s steps(2, end); }
.onrh { margin: 12px 0 22px; font: 400 clamp(1.3rem, 3vw, 2.3rem)/1 var(--heavy); color: #000; }
.onrh .lime { text-shadow: 0 0 30px rgba(204, 255, 0, .35); }
.tagline { max-width: 30ch; margin-bottom: 24px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 600; color: var(--bone); }

.ca-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 6px 6px 6px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
}
.ca-label { font: 400 11px/1 var(--heavy); letter-spacing: .12em; text-transform: uppercase; color: var(--lime); }
.ca-pill code { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; color: var(--bone); }
.copy-btn {
  flex: none;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--bone);
  color: #000;
  font: 400 12px/1 var(--heavy);
  text-transform: uppercase;
  transition: background .2s;
}
.copy-btn:hover { background: var(--lime); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%; bottom: 22px;
  translate: -50% 0;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  font-size: 18px;
  animation: bob 2s ease-in-out infinite;
}

/* ---------- marquee ---------- */
.marquee-wrap { position: relative; z-index: 5; overflow: hidden; margin-block: -40px -20px; padding-block: 30px; }
.marquee {
  background: #000;
  border-block: 3px solid var(--lime);
  transform: rotate(-2deg) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span {
  padding: 16px 18px;
  font: 400 clamp(1.4rem, 3vw, 2.2rem)/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
  color: var(--lime);
}
.marquee-track span:nth-child(4n+3) { color: var(--bone); }
.marquee-track span:nth-child(even) { color: var(--red-hot); }

/* ---------- sections ---------- */
.section { position: relative; padding-block: clamp(80px, 11vw, 150px); }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.kicker {
  display: inline-block;
  margin-bottom: 16px;
  font: 400 13px/1 var(--heavy);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lime);
}
.title {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.lead { max-width: 56ch; margin: 0; font-size: 1.1rem; color: var(--muted); }

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- lore ---------- */
.lore { background: radial-gradient(60% 50% at 85% 25%, rgba(196, 0, 0, .25), transparent 70%), var(--ink); }
.lore-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
.lore-story .opener { font: 400 clamp(1.4rem, 2.4vw, 1.9rem)/1.2 var(--heavy); color: var(--bone); }
.lore-story .story { max-width: 58ch; font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: #e8d6cf; }
.lore-story .closer { margin: 1.2em 0 0; font: 400 clamp(1.3rem, 2.2vw, 1.7rem)/1.25 var(--heavy); color: var(--lime); }

.versus {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, #1b0000, #070000);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5), inset 0 1px 0 rgba(255, 255, 255, .04);
}
.versus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(70, 160, 60, .1), transparent 40%, transparent 60%, rgba(220, 0, 0, .18));
}
.versus h3 {
  margin-bottom: 18px;
  text-align: center;
  font: 400 12px/1 var(--heavy);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.vs-head, .vs-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.vs-head { margin-bottom: 10px; font: 400 clamp(1.6rem, 3vw, 2.3rem)/1 var(--display); text-transform: uppercase; }
.vs-head .pepe { text-align: right; color: #6fbf4a; }
.vs-head .hood { color: var(--red-hot); }
.vs-head .vs { padding: 8px 10px; border-radius: 999px; background: var(--lime); color: #000; font: 400 14px/1 var(--heavy); }
.vs-row { padding-block: 12px; border-top: 1px solid rgba(255, 255, 255, .07); }
.vs-row span:first-child { text-align: right; color: #b9c9ae; }
.vs-row span:nth-child(2) {
  min-width: 70px;
  text-align: center;
  font: 700 10px/1 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.vs-row span:last-child { font-weight: 700; color: var(--bone); }

/* ---------- banner break ---------- */
.banner-break { padding-bottom: clamp(20px, 4vw, 40px); }
.banner-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(196, 0, 0, .35);
}
.banner-frame img,
.banner-frame .banner-video { display: block; width: 100%; height: auto; transition: transform 1.2s var(--ease); }
.banner-frame:hover img,
.banner-frame:hover .banner-video { transform: scale(1.04); }

/* ---------- tokenomics ---------- */
.tokenomics { background: linear-gradient(to bottom, var(--ink), #150000 50%, var(--ink)); }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 18px;
  margin-bottom: 26px;
}
.stat {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #220202, #0c0000);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.stat::after {
  content: "";
  position: absolute;
  left: -30%; right: -30%; bottom: -60%;
  height: 120%;
  background: radial-gradient(closest-side, rgba(255, 80, 0, .25), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.stat:hover { transform: translateY(-6px); border-color: rgba(255, 80, 40, .6); box-shadow: 0 20px 50px rgba(196, 0, 0, .3); }
.stat:hover::after { opacity: 1; }
.stat-icon { position: absolute; top: 18px; right: 18px; font-size: 22px; opacity: .55; }
.stat-value {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font: 400 clamp(2.4rem, 4.5vw, 3.4rem)/1 var(--display);
  color: var(--bone);
  overflow-wrap: anywhere;
}
.stat-label {
  position: relative;
  z-index: 1;
  font: 400 12px/1.3 var(--heavy);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}
.stat-note {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(204, 255, 0, .35);
  border-radius: 999px;
  font: 700 10px/1 var(--body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}
.stat-note::before { content: "🔒"; font-size: 11px; }

.buyback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1b0303, #0b0000);
}
.buyback p {
  flex: 1 1 320px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bone);
}
.buyback-links { display: flex; flex-wrap: wrap; gap: 10px; }
.buyback .btn { flex: none; height: 46px; padding-inline: 18px; font-size: 13px; }
.buyback .btn svg { width: 15px; height: 15px; fill: currentColor; }
/* handles are case-sensitive: show it exactly as written */
.buyback [data-cfg="fomoHandle"] { text-transform: none; letter-spacing: 0; color: var(--lime); }

.ca-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px dashed rgba(204, 255, 0, .45);
  border-radius: var(--radius);
  background: #000;
}
.ca-box > div { flex: 1 1 280px; min-width: 0; }
.ca-box .ca-label { display: block; margin-bottom: 8px; }
.ca-box code { display: block; font-size: clamp(.85rem, 1.6vw, 1.1rem); line-height: 1.4; color: var(--bone); word-break: break-all; }

/* ---------- how to buy ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.step {
  padding: 30px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0f0000;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.step:hover { transform: translateY(-6px); background: #1a0101; border-color: rgba(255, 80, 40, .5); }
.step-num {
  display: block;
  margin-bottom: 14px;
  font: 400 4.2rem/1 var(--display);
  color: transparent;
  -webkit-text-stroke: 2px var(--red-hot);
  transition: color .3s;
}
.step:hover .step-num { color: var(--red-hot); }
.step h3 { margin-bottom: 10px; font: 400 1.2rem/1.2 var(--heavy); text-transform: uppercase; }
.step p { margin: 0; font-size: .97rem; color: var(--muted); }
.buy-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- hellmap ---------- */
.hellmap { background: radial-gradient(70% 60% at 50% 100%, rgba(196, 0, 0, .28), transparent 70%), var(--ink); }
.phases { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.phase {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #1a0000, #080000);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.phase:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(196, 0, 0, .28); }
.phase.active { border-color: rgba(204, 255, 0, .55); box-shadow: 0 0 0 1px rgba(204, 255, 0, .2), 0 0 50px rgba(204, 255, 0, .12); }
.phase.locked::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, rgba(255, 255, 255, .018) 14px 28px);
}
.phase-num {
  display: block;
  margin-bottom: 8px;
  font: 400 5rem/1 var(--display);
  color: var(--red-hot);
  text-shadow: 0 0 24px rgba(255, 26, 26, .6);
  animation: flicker 5s infinite;
}
.phase:nth-child(2) .phase-num { animation-delay: 1.3s; }
.phase:nth-child(3) .phase-num { animation-delay: 2.6s; }
.phase:nth-child(4) .phase-num { animation-delay: 3.7s; }
.phase.active .phase-num { color: var(--lime); text-shadow: 0 0 24px rgba(204, 255, 0, .5); animation: none; }
.chip {
  position: absolute;
  top: 22px; right: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font: 400 10px/1 var(--heavy);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.phase.active .chip { background: var(--lime); border-color: var(--lime); color: #000; }
.phase h3 { margin-bottom: 14px; font: 400 1.9rem/1.05 var(--display); text-transform: uppercase; letter-spacing: .02em; }
.phase ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.phase li { position: relative; padding-left: 22px; font-size: .97rem; color: #e2cfc8; }
.phase li::before { content: "✦"; position: absolute; left: 0; top: .15em; font-size: .8rem; color: var(--red-hot); }
.fineprint { margin: 22px 0 0; font-size: .85rem; color: var(--muted); }

/* ---------- memes ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: 16px; }
.tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #b00000;
  cursor: zoom-in;
}
.tile:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.tile-inner { width: 100%; height: 100%; transform: scale(var(--z, 1)); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile:hover img { transform: scale(1.08); }
.tile-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 16px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .88));
  text-align: left;
  font: 400 14px/1.2 var(--heavy);
  text-transform: uppercase;
  color: var(--bone);
  transform: translateY(6px);
  transition: transform .3s var(--ease);
}
.tile:hover .tile-cap { transform: none; }
.tile.missing { cursor: default; background: #140000; border: 2px dashed rgba(255, 80, 40, .45); }
.tile-missing {
  display: grid;
  place-items: center;
  height: 100%;
  padding: 20px 16px 60px;
  font: 600 13px/1.4 var(--mono);
  color: var(--muted);
  overflow-wrap: anywhere;
}
.tile.slot {
  display: grid;
  place-items: center;
  padding: 20px;
  border: 2px dashed rgba(204, 255, 0, .4);
  background: repeating-linear-gradient(-45deg, #0c0000 0 12px, #140000 12px 24px);
  color: var(--lime);
  cursor: pointer;
  text-align: center;
  font: 400 1.6rem/1.05 var(--display);
  text-transform: uppercase;
  transition: border-color .3s, background .3s;
}
.tile.slot small { display: block; margin-top: 8px; font: 600 13px/1.4 var(--body); text-transform: none; color: var(--muted); }
.tile.slot:hover { border-color: var(--lime); background: #1a0000; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: rgba(5, 0, 0, .93);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lb-inner { display: grid; justify-items: center; gap: 14px; margin: 0; max-width: 100%; }
.lb-inner img { max-width: min(1100px, 100%); max-height: 78vh; border-radius: 12px; box-shadow: 0 30px 100px rgba(0, 0, 0, .8); }
.lb-cap { text-align: center; font: 400 1.2rem/1.2 var(--heavy); text-transform: uppercase; }
.lb-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 48px; height: 48px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: #000;
  font-size: 26px;
  line-height: 1;
}
.lb-close:hover { border-color: var(--lime); color: var(--lime); }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.4fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #0f0000; transition: border-color .3s, background .3s; }
.faq-item[open] { border-color: rgba(255, 80, 40, .55); background: #160101; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  list-style: none;
  cursor: pointer;
  font: 400 1.05rem/1.3 var(--heavy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #000;
  color: var(--lime);
  font: 400 22px/1 var(--body);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 3px solid var(--lime); outline-offset: -3px; border-radius: var(--radius); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); }

/* ---------- community ---------- */
.community {
  overflow: hidden;
  text-align: center;
  background: radial-gradient(80% 90% at 50% 40%, #d00000, #6e0000 85%);
}
.community .title { color: #000; }
.kicker-dark { padding: 9px 14px; border-radius: 999px; background: #000; }
.giant {
  position: absolute;
  left: 50%; bottom: -.14em;
  translate: -50% 0;
  font: 400 clamp(6rem, 24vw, 22rem)/.8 var(--display);
  white-space: nowrap;
  color: rgba(0, 0, 0, .16);
  pointer-events: none;
}
.comm-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 36px auto 0;
}
.comm-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 28px;
  border-radius: 22px;
  background: #000;
  color: var(--bone);
  text-align: left;
  box-shadow: 0 8px 0 rgba(0, 0, 0, .35);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.comm-card svg { flex: none; width: 40px; height: 40px; fill: currentColor; }
.comm-card strong { display: block; font: 400 1.8rem/1 var(--display); text-transform: uppercase; }
.comm-card small { display: block; margin-top: 6px; font-size: .9rem; color: var(--muted); }
.comm-card .arrow { margin-left: auto; font-size: 1.6rem; color: var(--lime); transition: transform .3s var(--ease); }
.js .comm-card.reveal.in:hover, .comm-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 14px 0 rgba(0, 0, 0, .35), 0 0 60px rgba(204, 255, 0, .2); }
.comm-card:hover .arrow { transform: translateX(6px); }

/* ---------- footer ---------- */
.footer { padding-block: 56px 40px; border-top: 1px solid var(--line); background: #000; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.footer .brand { font-size: 40px; }
.footer-links { display: flex; gap: 10px; }
.disclaimer { max-width: 90ch; font-size: .85rem; color: #9c8680; }
.copyright { margin: 0; font-size: .8rem; color: #6f5c57; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  z-index: 80;
  left: 50%; bottom: 28px;
  max-width: calc(100% - 32px);
  translate: -50% 20px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--lime);
  color: #000;
  font: 400 14px/1.2 var(--heavy);
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 6px 0 #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, translate .25s var(--ease);
}
.toast.show { opacity: 1; translate: -50% 0; }

/* ---------- roast (scroll-locked) ---------- */
html.scroll-locked { overscroll-behavior: none; }

.burn {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 90px 40px;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 30% 60%, rgba(255, 90, 0, .22), transparent 70%),
    radial-gradient(60% 50% at 85% 40%, rgba(120, 200, 40, .10), transparent 70%),
    var(--ink);
}
.burn.hidden { display: none; }
.burn-stage { width: 100%; max-width: 1240px; padding-inline: var(--gutter); }
.burn-head { text-align: center; margin-bottom: clamp(14px, 2vw, 26px); }
.burn-head .title { margin-bottom: 12px; }
.burn-head .frog { color: #6fbf4a; }
.burn-hint {
  margin-inline: auto;
  transition: opacity .4s;
  font-weight: 600;
  color: var(--muted);
}
.burn.roasted .burn-hint { opacity: .35; }

/* full-bleed: the jet runs off the edge of the screen instead of stopping in mid-air */
.burn-scene {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(300px, 56svh, 620px);
}
.burn-hood-wrap {
  position: absolute;
  left: var(--hood-left, clamp(10px, 5vw, 110px));
  bottom: 4%;
  height: var(--hood-height, 88%);
  /* aspect-ratio and image offsets come from the artwork's alpha box */
}
.burn-hood {
  position: absolute;
  max-width: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .5));
}
.burn-pepe {
  position: absolute;
  right: var(--pepe-right, 7vw);
  bottom: var(--pepe-bottom, 7%);
  height: var(--pepe-height, 54%);
  transform: translate(var(--shake-x, 0px), var(--shake-y, 0px));
}
.burn-pepe-inner { position: relative; height: 100%; overflow: hidden; }
/* ember glow lives outside the crop box so it never shows as a rectangle */
.burn-pepe::after {
  content: "";
  position: absolute;
  inset: -16% -12%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 110, 0, .55), rgba(255, 60, 0, .18) 60%, transparent 75%);
  opacity: var(--heat, 0);
  pointer-events: none;
}
.burn-pepe-inner img { position: absolute; max-width: none; }
.pepe-char {
  /* charcoal, not a black hole: keeps a readable silhouette with ember glow */
  /* scorched, not a black cut-out: he stays a readable frog, just cooked */
  filter: brightness(.72) contrast(1.15) sepia(.75) saturate(1.45) hue-rotate(-24deg);
  -webkit-mask-image: linear-gradient(to right, #000 calc(var(--char, 0%) - 18%), transparent var(--char, 0%));
  mask-image: linear-gradient(to right, #000 calc(var(--char, 0%) - 18%), transparent var(--char, 0%));
}
.burn-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.burn-punch {
  position: absolute;
  left: 50%;
  bottom: 4%;
  translate: -50% 0;
  margin: 0;
  padding: 14px 22px;
  border: 3px solid #000;
  border-radius: 14px;
  background: var(--lime);
  color: #000;
  font: 400 clamp(1rem, 2.4vw, 1.9rem)/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 6px 6px 0 #000;
  opacity: 0;
  transform: scale(.7) rotate(-4deg);
  transition: opacity .25s, transform .4s cubic-bezier(.3, 1.7, .5, 1);
  pointer-events: none;
}
.burn.roasted .burn-punch { opacity: 1; transform: scale(1) rotate(-2deg); }

.burn-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: clamp(16px, 2.5vw, 28px) auto 0;
}
.burn-bar-row { display: flex; align-items: center; justify-content: center; gap: 14px; }
.burn-gauge {
  position: relative;
  width: 100%;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(0, 0, 0, .5);
  overflow: hidden;
}
.burn-gauge-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ember), var(--lime));
  box-shadow: 0 0 18px rgba(255, 120, 0, .6);
}
.burn-gauge-label {
  flex: none;
  font: 400 12px/1 var(--heavy);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lime);
}
.burn-again {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: #000;
  font: 400 12px/1 var(--heavy);
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 4px 0 #000;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.burn-again::before { content: "🔥"; }
.burn-again:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #000, 0 0 30px rgba(204, 255, 0, .45); }
.burn.roasted .burn-again { display: inline-flex; }

@media (max-width: 700px) {
  .burn { padding-block: 80px 30px; }
  .burn-bar { gap: 10px; }
  /* keep the two of them from colliding on a narrow screen */
  .burn-hood-wrap { height: 64%; }
  .burn-pepe { height: 40%; right: 3vw; }
}

/* short windows: shrink the furniture so the scene and gauge still fit */
@media (max-height: 720px) {
  .burn { padding-block: 74px 10px; }
  .burn-scene { height: clamp(260px, 46svh, 460px); }
  .burn-head { margin-bottom: 8px; }
  .burn-head .title { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 6px; }
  .burn-head .kicker { margin-bottom: 8px; font-size: 11px; }
  .burn-hint { font-size: .9rem; }
  .burn-bar { margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .burn-hood, .pepe-char { -webkit-mask-image: none; mask-image: none; }
  .burn .burn-punch { opacity: 1; transform: none; }
}

/* ---------- keyframes ---------- */
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); }
  80% { transform: translate(3%, 3%); }
}
@keyframes pulse { 50% { scale: 1.08; } }
@keyframes bob { 50% { transform: translateY(8px); } }
@keyframes blinkdot { 50% { opacity: .25; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes flicker {
  0%, 19%, 21%, 23%, 55%, 57%, 100% { opacity: 1; }
  20%, 22%, 56% { opacity: .35; }
}
@keyframes shake {
  10%, 90% { transform: translate(-2px, 1px); }
  20%, 80% { transform: translate(4px, -2px); }
  30%, 50%, 70% { transform: translate(-7px, 3px) rotate(-.4deg); }
  40%, 60% { transform: translate(7px, -3px) rotate(.4deg); }
}
@keyframes glitch {
  0% { text-shadow: 4px 0 var(--lime), -4px 0 #fff; transform: translate(2px, -1px); }
  25% { text-shadow: -5px 0 var(--lime), 5px 0 var(--ember); transform: translate(-3px, 1px) skewX(-4deg); }
  50% { text-shadow: 3px 2px var(--lime); transform: translate(1px, 0); }
  75% { text-shadow: -2px -1px #fff; transform: none; }
  100% { text-shadow: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .steps, .phases { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phase { min-height: 0; }
}

@media (max-width: 900px) {
  .menu-btn { display: grid; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 8px var(--gutter) 16px;
    border-bottom: 1px solid var(--line);
    background: rgba(10, 0, 0, .97);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding-block: 14px; font-size: 15px; }
  .nav-actions { margin-left: auto; }

  .hero { padding-block: 88px 60px; }
  .hero-grid { grid-template-columns: 1fr; }
  .wordmark { filter: none; }
  .art-stage { width: 100%; max-width: 460px; margin-inline: auto; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .tagline { margin-inline: auto; }
  .cta-row { justify-content: center; }
  .scroll-cue { display: none; }

  .lore-grid, .faq-grid { grid-template-columns: 1fr; }
  .faq-grid .section-head { margin-bottom: 0; }
}

@media (max-width: 640px) {
  .comm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .steps, .phases { grid-template-columns: 1fr; }
  .btn { height: 50px; padding-inline: 20px; font-size: 14px; }
  .btn-icon { width: 50px; }
  .cta-row .btn-lime, .cta-row .btn-dark { flex: 1 1 40%; }
}

@media (max-width: 420px) {
  .nav-actions .btn-sm { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .wordmark { filter: none; }
}
