/* ──────────────────────────────────────────────────────────────
   POOWELBRR — Terminal × Cartoon
   ────────────────────────────────────────────────────────────── */

:root {
  --bg: #0A0A0B;
  --surface: #111114;
  --surface-2: #16161B;
  --line: #1F1F26;
  --line-strong: #2A2A33;
  --cyan: #4FA858;
  --cyan-dim: #2E6B36;
  --text: #FAFAFA;
  --muted: #7A7A82;
  --money: #4FA858;
  --money-dark: #2E6B36;
  --pump: #22C55E;
  --dump: #EF4444;
  --gold: #F4C430;
  --navy: #2A3556;
  --skin: #E8A89B;
  --display: "Bagel Fat One", "Bowlby One", "Rubik Mono One", system-ui, sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* subtle scanline + noise overlay (sitewide) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: overlay;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
}

#root, main { position: relative; z-index: 2; }

/* ── selection ── */
::selection { background: var(--cyan); color: #000; }

/* ── scrollbar ── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan-dim); }

/* ──────────────────────────────────────────────────────────────
   TOP BAR
   ────────────────────────────────────────────────────────────── */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.brand-dot {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.nav {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid transparent;
  position: relative;
  transition: color 120ms ease;
}

.nav a:hover { color: var(--text); }
.nav a.active { color: var(--cyan); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contract-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 7px 10px 7px 12px;
  cursor: pointer;
  transition: all 150ms ease;
}
.contract-pill:hover {
  border-color: var(--cyan);
  color: var(--text);
}
.contract-pill .copy-btn {
  font-size: 10px;
  padding: 3px 6px;
  background: var(--line);
  color: var(--text);
  letter-spacing: 0.1em;
}

/* ── chunky button ── */
.btn {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
  background: var(--cyan);
  border: 1px solid var(--cyan);
  padding: 11px 18px;
  cursor: pointer;
  position: relative;
  transition: transform 100ms ease, box-shadow 200ms ease, background 200ms ease;
  box-shadow: 0 0 0 rgba(0,229,255,0);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.55), 0 0 0 1px var(--cyan) inset;
  background: #5BF1FF;
}
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,229,255,0.05);
  box-shadow: 0 0 18px rgba(0,229,255,0.25);
}

.btn-xl {
  font-size: 22px;
  padding: 18px 28px;
  letter-spacing: 0.03em;
}

/* idle wiggle */
@keyframes wiggle {
  0%, 92%, 100% { transform: rotate(0deg); }
  94% { transform: rotate(-1.5deg); }
  96% { transform: rotate(2deg); }
  98% { transform: rotate(-1deg); }
}
.btn-wiggle { animation: wiggle 4.5s ease-in-out infinite; transform-origin: center; }
.btn-wiggle:hover { animation-play-state: paused; }

/* ──────────────────────────────────────────────────────────────
   SHELL / GRID
   ────────────────────────────────────────────────────────────── */

.section {
  position: relative;
  padding: 96px 28px;
  max-width: 1440px;
  margin: 0 auto;
}

.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: inline-block;
}
.section-tag::before { content: "[ "; color: var(--muted); }
.section-tag::after  { content: " ]"; color: var(--muted); }

.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.section-sub {
  font-family: var(--mono);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 56px;
  font-size: 13px;
}

/* faint grid overlay used by hero */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

/* ──────────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 28px 40px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-character {
  position: relative;
  width: clamp(340px, 44vw, 560px);
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.5));
}
.hero-character img {
  width: 100%;
  display: block;
  filter: contrast(1.05) drop-shadow(0 14px 30px rgba(0,0,0,0.55));
}
/* outer glow halo behind character */
.hero-character::before {
  content: "";
  position: absolute;
  inset: -8% -8% -2% -8%;
  background: radial-gradient(ellipse at 50% 60%, rgba(34,197,94,0.18), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.hero-headline {
  font-family: var(--display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: uppercase;
  margin: -40px 0 0;
  position: relative;
  z-index: 3;
  color: var(--text);
  text-shadow:
    0 0 60px rgba(0,229,255,0.18);
}

.hero-headline .word-brrr {
  color: var(--money);
  -webkit-text-stroke: 3px #000;
  paint-order: stroke fill;
  display: inline-block;
  transform: rotate(-3deg) translateY(6px);
  text-shadow:
    4px 4px 0 #000,
    8px 8px 0 rgba(34,197,94,0.4);
}

.hero-sub {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin: 28px auto 36px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 42px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ──────────────────────────────────────────────────────────────
   TOKENOMICS
   ────────────────────────────────────────────────────────────── */

.tk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.tk-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 22px;
  position: relative;
  transition: all 200ms ease;
}
.tk-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px var(--cyan), 0 12px 40px rgba(0,229,255,0.08);
  transform: translateY(-2px);
}

.tk-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.tk-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.tk-status {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--pump);
  display: flex;
  align-items: center;
  gap: 6px;
}
.tk-status::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--pump);
  border-radius: 999px;
  box-shadow: 0 0 8px var(--pump);
}

.tk-avatar {
  width: 56px;
  height: 56px;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
}
.tk-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}

.tk-figure {
  font-family: var(--display);
  font-size: 32px;
  margin: 4px 0 6px;
}
.tk-sub {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}

.tk-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tk-row {
  display: grid;
  grid-template-columns: 1fr 80px;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
}
.tk-row-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.tk-row-bar {
  height: 4px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.tk-row-bar > i {
  position: absolute;
  inset: 0;
  background: var(--money);
  transform-origin: left;
}
.tk-row-val {
  text-align: right;
  color: var(--text);
}

.tk-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-strong);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.tk-foot-icons {
  display: flex;
  gap: 8px;
}
.tk-foot-icons i {
  width: 14px; height: 14px;
  display: inline-block;
  background: var(--line-strong);
}

/* big supply hero */
.tk-supply {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.tk-supply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right, rgba(0,229,255,0.06), transparent 60%);
  pointer-events: none;
}
.tk-supply-num {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tk-supply-num .unit {
  font-size: 0.4em;
  color: var(--cyan);
  margin-left: 12px;
}
.tk-supply-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}
.tk-supply-meta b {
  color: var(--text);
  font-weight: normal;
  display: inline-block;
  border: 1px solid var(--line-strong);
  padding: 4px 10px;
  margin-left: 6px;
  font-family: var(--mono);
}

/* ──────────────────────────────────────────────────────────────
   ROADMAP
   ────────────────────────────────────────────────────────────── */

.rm-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.rm-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: all 200ms ease;
}
.rm-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--cyan), 0 16px 40px rgba(0,229,255,0.1);
}
.rm-card.done { opacity: 0.7; }
.rm-card.done .rm-phase { color: var(--pump); }
.rm-card.done .rm-phase::after { content: " ✓"; }

.rm-phase {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.rm-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  overflow: hidden;
  position: relative;
}
.rm-avatar {
  background:
    repeating-linear-gradient(45deg, #14141A 0 6px, #1A1A22 6px 12px);
}
.rm-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
}
.rm-title {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1;
}
.rm-text {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  flex: 1;
}

/* ──────────────────────────────────────────────────────────────
   HOW TO BUY
   ────────────────────────────────────────────────────────────── */

.htb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.htb-card {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 200ms ease;
  cursor: default;
}
.htb-card:hover {
  border-color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px var(--cyan), 0 16px 40px rgba(0,229,255,0.1);
}
.htb-num {
  font-family: var(--display);
  font-size: 38px;
  color: var(--cyan);
  line-height: 1;
}
.htb-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.htb-title {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
}
.htb-text {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────
   COMMUNITY MEMES
   ────────────────────────────────────────────────────────────── */

.meme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.meme-card {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 8px;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.meme-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--cyan), 0 10px 24px rgba(0,0,0,0.28);
}

.meme-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.meme-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.meme-modal-content {
  position: relative;
  max-width: min(92vw, 1000px);
  max-height: 90vh;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 10px;
}

.meme-modal-content img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 20px);
  width: auto;
  height: auto;
}

.meme-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

/* ──────────────────────────────────────────────────────────────
   JERUM ON X (AI account disclosure)
   ────────────────────────────────────────────────────────────── */

.jerum-x-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
}

.jerum-x-copy .section-title {
  margin-bottom: 20px;
}

.jerum-x-intro {
  max-width: none;
  margin-bottom: 24px;
}

.jerum-x-visual {
  position: relative;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  overflow: hidden;
}

.jerum-x-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: contrast(1.05);
}

.jerum-panel {
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: 28px 32px;
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.jerum-panel-lead {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.jerum-panel-lead a {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}
.jerum-panel-lead a:hover {
  border-bottom-color: var(--cyan);
}

/* ──────────────────────────────────────────────────────────────
   COMMUNITY / FOOTER
   ────────────────────────────────────────────────────────────── */

.community {
  position: relative;
  padding: 120px 28px;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(34,197,94,0.08), transparent 60%),
    radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.05), transparent 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.community-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
}

.community .section-tag,
.community h2,
.community p { text-align: center; }
.community p { margin-left: auto; margin-right: auto; }
.community .social-row { justify-content: center; }

.community h2 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.community p {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 460px;
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-btn {
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  background: var(--text);
  color: #000;
  border: 3px solid #000;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
  box-shadow: 4px 4px 0 #000;
}
.social-btn:hover {
  transform: translate(-2px, -2px) rotate(-1.5deg);
  box-shadow: 6px 6px 0 var(--cyan);
  background: var(--cyan);
}
.social-btn.green { background: var(--money); color: #fff; }
.social-btn.green:hover { background: var(--pump); }

.community-collage {
  position: relative;
  height: 380px;
}
.community-collage img {
  position: absolute;
  width: 70%;
  filter: contrast(1.05) drop-shadow(0 12px 30px rgba(0,0,0,0.4));
}
.cc-1 { top: 0; left: 10%; transform: rotate(-4deg); width: 80% !important; }

.footer {
  padding: 36px 28px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.footer-inner b { color: var(--text); font-weight: normal; }

/* ──────────────────────────────────────────────────────────────
   CURSOR TRAIL + EASTER EGG
   ────────────────────────────────────────────────────────────── */

.cursor-bill {
  position: fixed;
  width: 22px; height: 12px;
  background: var(--money);
  border: 1px solid var(--money-dark);
  pointer-events: none;
  z-index: 9999;
  font-family: var(--display);
  font-size: 8px;
  color: var(--money-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brrr-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 600ms cubic-bezier(.2,1,.2,1);
  pointer-events: none;
}
.brrr-overlay.up {
  transform: translateY(0);
  pointer-events: auto;
}
.brrr-overlay-text {
  font-family: var(--display);
  font-size: clamp(56px, 14vw, 220px);
  text-transform: uppercase;
  line-height: 0.72;
  text-align: left;
  transform: rotate(-4deg);
  position: relative;
  z-index: 1;
  pointer-events: none;
  display: inline-block;
  white-space: nowrap;
}
.brrr-overlay-text .brrr-overlay-line {
  display: block;
  -webkit-text-stroke: 5px #000;
  paint-order: stroke fill;
  text-shadow: 8px 8px 0 #000;
}
.brrr-overlay-text .brrr-overlay-bye-line {
  color: var(--text);
  position: relative;
  z-index: 1;
}
/* Second line: pulled up + shifted right so RET sits over BYE (tweak em if font changes) */
.brrr-overlay-text .brrr-overlay-retard-line {
  color: var(--money);
  position: relative;
  z-index: 2;
  margin-top: -0.2em;
  margin-left: 3.15em;
}
.brrr-overlay img {
  width: 280px;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.5));
}

.brrr-overlay-links {
  position: relative;
  z-index: 3;
  justify-content: center;
}

.brrr-overlay-links .social-btn {
  text-decoration: none;
}

/* ──────────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .tk-grid { grid-template-columns: 1fr; }
  .rm-grid { grid-template-columns: repeat(2, 1fr); }
  .htb-grid { grid-template-columns: repeat(2, 1fr); }
  .meme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jerum-x-grid { grid-template-columns: 1fr; gap: 28px; }
  .community-inner { grid-template-columns: 1fr; }
  .tk-supply { flex-direction: column; align-items: flex-start; }
  .tk-supply-meta { text-align: left; }
}

@media (max-width: 820px) {
  .nav { display: none; }
}

@media (max-width: 600px) {
  .topbar-inner { padding: 12px 16px; gap: 16px; }
  .contract-pill { display: none; }
  .section { padding: 64px 16px; }
  .rm-grid { grid-template-columns: 1fr; }
  .htb-grid { grid-template-columns: 1fr; }
  .meme-grid { grid-template-columns: 1fr; }
  .hero-character { width: 78vw; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .btn-wiggle, .brand-dot { animation: none; }
  .hero-canvas { display: none; }
  .cursor-bill { display: none; }
}
