/* ============================================================
   BOOMER ($BOOMER) — "BOOMER OS" retro-desktop / CRT theme
   Original identity: old-internet window chrome, beveled 3D
   panels & buttons, CRT scanlines, stock-ticker marquee.
   Robinhood green desktop. Base had Boomer. Robinhood has $BOOMER.
   ============================================================ */

:root {
  --bg: #05130c;
  --bg-2: #071a10;
  --desktop-glow: #0c3a22;

  --panel: #0e2417;          /* window body */
  --panel-2: #12301f;
  --panel-3: #163a26;
  --ink: #03130a;            /* deep border/text ink */

  --accent: #00e05a;         /* Robinhood green */
  --accent-2: #9dff3d;       /* lime highlight */
  --accent-3: #06b24a;       /* deeper green */
  --crt: #7dffa4;            /* CRT phosphor text */

  --text: #e2f6e9;
  --muted: rgba(226, 246, 233, 0.62);
  --muted-2: rgba(226, 246, 233, 0.4);

  --bevel-light: rgba(180, 255, 210, 0.28);
  --bevel-dark: rgba(0, 0, 0, 0.6);
  --border: #0a2c1b;

  --font-display: "Rubik Mono One", "Arial Black", sans-serif;
  --font-term: "VT323", "Cascadia Mono", ui-monospace, monospace;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --maxw: 1160px;
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0.9, 0.3, 1);

  --shadow-hard: 5px 5px 0 rgba(0, 0, 0, 0.55);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(95% 60% at 50% 122%, rgba(0, 224, 90, 0.24) 0%, transparent 62%),
    radial-gradient(42% 42% at 10% 6%, rgba(0, 224, 90, 0.12) 0%, transparent 60%),
    radial-gradient(46% 46% at 92% 2%, rgba(157, 255, 61, 0.09) 0%, transparent 60%),
    radial-gradient(60% 45% at 50% 50%, rgba(6, 58, 34, 0.35) 0%, transparent 70%),
    linear-gradient(180deg, #04120b 0%, #071a10 55%, #05130c 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Faint desktop grid (dual layer) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 224, 90, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 90, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(0, 224, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 224, 90, 0.035) 1px, transparent 1px);
  background-size: 132px 132px, 132px 132px, 44px 44px, 44px 44px;
  mask-image: radial-gradient(125% 95% at 50% 28%, #000 42%, transparent 100%);
  -webkit-mask-image: radial-gradient(125% 95% at 50% 28%, #000 42%, transparent 100%);
}

/* CRT scanline overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.13) 0px,
    rgba(0, 0, 0, 0.13) 1px,
    transparent 2px,
    transparent 3px
  );
  opacity: 0.55;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-family: var(--font-display); font-weight: 400; }
p { margin: 0; }

.accent { color: var(--accent); }
.muted { color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: clamp(58px, 8vw, 108px) 0; position: relative; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 700;
  font-family: var(--font-term);
  font-size: 1.1rem;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Keep content above bg layers */
.site-header, main, .site-footer { position: relative; z-index: 1; }

/* ============================================================
   Background FX layer (repurposed: hills glow only)
   ============================================================ */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
/* green dot texture */
.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(0, 224, 90, 0.5) 1px, transparent 1.7px);
  background-size: 30px 30px;
  opacity: 0.09;
  mask-image: radial-gradient(130% 100% at 50% 18%, #000 28%, transparent 100%);
  -webkit-mask-image: radial-gradient(130% 100% at 50% 18%, #000 28%, transparent 100%);
}
/* vignette to frame content */
.bg-fx::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(125% 105% at 50% 38%, transparent 52%, rgba(0, 0, 0, 0.6) 100%);
}
.vortex {
  position: absolute;
  left: 50%;
  bottom: -42vmax;
  width: 130vmax;
  height: 86vmax;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 224, 90, 0.22), transparent 68%);
  animation: none;
}
.floaters, .floater { display: none !important; }

/* ============================================================
   Reusable "window" chrome (title bar + control squares)
   Applied to panels via .win-chrome
   ============================================================ */
.win-chrome {
  position: relative;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    var(--shadow-hard);
  padding-top: 30px;               /* room for title bar */
}
.win-chrome::before {              /* title bar */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  background: linear-gradient(180deg, var(--accent-3) 0%, #064d2b 100%);
  border-bottom: 2px solid var(--ink);
}
.win-chrome::after {               /* three control squares */
  content: "";
  position: absolute;
  top: 8px; right: 12px;
  width: 8px; height: 8px;
  background: var(--accent-2);
  box-shadow: -13px 0 0 var(--accent-2), -26px 0 0 var(--accent-2);
}

/* ============================================================
   Section headings
   ============================================================ */
.section-head { max-width: 680px; margin-bottom: clamp(30px, 5vw, 54px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-term);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crt);
  background: #04160d;
  border: 2px solid var(--accent-3);
  padding: 2px 14px;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}
.section-eyebrow::before { content: "C:\\> "; opacity: 0.7; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  letter-spacing: -0.01em;
  color: var(--text);
  text-transform: uppercase;
}
.section-lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.1rem;
}
.section-head--center .section-lead { margin-inline: auto; max-width: 48ch; }

/* Chrome/bevel title treatment (replaces sticker shadow) */
.title-shadow {
  color: var(--accent-2);
  text-shadow: 3px 3px 0 var(--ink), 0 0 18px rgba(0, 224, 90, 0.35);
}
/* Inline emphasis (replaces highlighter) */
.hl {
  color: var(--accent);
  text-shadow: 0 0 14px rgba(0, 224, 90, 0.4);
  white-space: nowrap;
}

/* ============================================================
   Buttons (beveled OS buttons)
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  font-family: var(--font-term);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 0.12s var(--ease), filter 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    4px 4px 0 rgba(0, 0, 0, 0.5);
}
.btn:active {
  transform: translate(3px, 3px);
  box-shadow:
    inset -2px -2px 0 var(--bevel-light),
    inset 2px 2px 0 var(--bevel-dark),
    1px 1px 0 rgba(0, 0, 0, 0.5);
}
.btn-sm { padding: 8px 15px; font-size: 1.05rem; }

.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-2); }

.btn-hero {
  background: var(--accent);
  color: var(--ink);
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  padding: 16px 34px;
}
.btn-hero:hover { background: var(--accent-2); }

.btn-ghost {
  background: var(--panel-2);
  color: var(--crt);
}
.btn-ghost:hover { background: var(--panel-3); color: var(--accent-2); }

/* ============================================================
   Header / nav (menu-bar style)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 13, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 2px solid var(--ink);
  box-shadow: inset 0 2px 0 var(--bevel-light), 0 3px 0 rgba(0, 0, 0, 0.4);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  background: var(--accent);
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-dark);
}
.brand-name { white-space: nowrap; letter-spacing: 0.02em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-inline: auto;
}
.nav-links a {
  font-family: var(--font-term);
  font-size: 1.2rem;
  color: var(--text);
  padding: 5px 13px;
  border: 2px solid transparent;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.nav-links a:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-dark);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.socials { display: inline-flex; align-items: center; gap: 8px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text);
  border: 2px solid var(--ink);
  background: var(--panel-2);
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-dark);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.social-btn:hover { color: var(--ink); background: var(--accent); }
.social-btn:active { box-shadow: inset -1px -1px 0 var(--bevel-light), inset 1px 1px 0 var(--bevel-dark); }
.social-btn .icon { width: 18px; height: 18px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  background: var(--accent);
  border: 2px solid var(--ink);
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -1px -1px 0 var(--bevel-dark);
  cursor: pointer;
}
.hamburger span { display: block; height: 3px; width: 100%; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 99;
  background: rgba(5, 16, 10, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--accent);
  padding: 18px 22px 26px;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.26s var(--ease), opacity 0.26s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-links a {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-term);
  font-size: 1.4rem;
  border: 2px solid var(--border);
  background: var(--panel);
}
.mobile-links a:hover { color: var(--ink); background: var(--accent); border-color: var(--ink); }
.mobile-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 20px; }
.mobile-actions .btn { flex: 1; }

/* ============================================================
   Hero (CRT monitor centerpiece)
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 74px) 0 clamp(44px, 7vw, 78px);
  text-align: center;
  overflow: hidden;
}
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }

.ticker-sticker {
  display: inline-block;
  font-family: var(--font-term);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crt);
  background: #04160d;
  border: 2px solid var(--accent-3);
  padding: 3px 16px;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}
.ticker-sticker::before { content: "▶ "; color: var(--accent); }

/* CRT monitor frame */
.hero-art { position: relative; width: min(86vw, 380px); margin-bottom: 30px; }
.hero-art-frame {
  position: relative;
  z-index: 2;
  padding: 18px 18px 40px;
  background: linear-gradient(180deg, #21301f 0%, #16241a 100%);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -3px -3px 0 var(--bevel-dark),
    8px 10px 0 rgba(0, 0, 0, 0.55);
  animation: bob 5s ease-in-out infinite;
}
.hero-art-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid #000;
  border-radius: 6px;
  filter: saturate(1.05) contrast(1.03);
}
/* screen scanlines + glare on the monitor */
.hero-art-frame::before {
  content: "";
  position: absolute;
  inset: 18px 18px 40px;
  border-radius: 6px;
  pointer-events: none;
  z-index: 3;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0%, transparent 34%),
    repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}
/* power LED */
.hero-art-frame::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  animation: led 2.2s ease-in-out infinite;
}
.hero-spark {
  position: absolute;
  z-index: 4;
  font-size: 1.7rem;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.5));
}
.hero-spark--1 { top: -12px; right: -6px; animation: bob 3.4s ease-in-out infinite; }
.hero-spark--2 { bottom: 30px; left: -14px; animation: bob 4s ease-in-out infinite 0.6s; }

/* Wordmark: blocky chrome-green, static (no bounce/glitch) */
.hero-title { margin: 4px 0 16px; line-height: 0.95; }
.ht {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 11vw, 7rem);
  letter-spacing: 0.02em;
  color: var(--accent-2);
  text-shadow:
    2px 2px 0 var(--accent-3),
    4px 4px 0 var(--ink),
    0 0 26px rgba(0, 224, 90, 0.5);
  animation: crt-flicker 5s steps(60) infinite;
}
.ht-w { display: inline-block; white-space: nowrap; }
.ht-w + .ht-w { margin-left: 0.3em; }
.ht-w--accent { color: var(--accent-2); }
.ht span { display: inline-block; animation: none; }  /* kill magiccash bounce */

.hero-sub {
  font-family: var(--font-term);
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  color: var(--text);
  max-width: 26ch;
  margin-bottom: 6px;
}

.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 26px;
}

/* CA pill (terminal readout) */
.ca-wrap { margin-top: 26px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.ca-label {
  font-family: var(--font-term);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.ca-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 9px 15px;
  background: #04160d;
  border: 2px solid var(--accent-3);
  cursor: pointer;
  color: var(--text);
  font-family: inherit;
  box-shadow: inset 1px 1px 0 rgba(0,0,0,0.6), 3px 3px 0 rgba(0, 0, 0, 0.5);
  transition: background 0.2s var(--ease);
}
.ca-pill:hover { background: #06210f; }
.ca-address {
  font-family: var(--font-term);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--crt);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy { display: inline-flex; color: var(--accent); flex-shrink: 0; }
.ca-copy .icon { width: 18px; height: 18px; }
.icon-check { display: none; }
.ca-pill.copied .icon-copy { display: none; }
.ca-pill.copied .icon-check { display: block; }
.copied-toast {
  position: absolute;
  top: -34px;
  right: 0;
  background: var(--accent);
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-term);
  padding: 3px 11px;
  border: 2px solid var(--ink);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.ca-pill.copied .copied-toast { opacity: 1; transform: translateY(0); }

/* ============================================================
   Marquee — old stock ticker
   ============================================================ */
.marquee {
  overflow: hidden;
  background: #030f08;
  border-top: 2px solid var(--accent-3);
  border-bottom: 2px solid var(--accent-3);
  padding: 8px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-term);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.05em;
  color: var(--crt);
  white-space: nowrap;
  padding-right: 0.4em;
}
.marquee-track b { color: var(--accent); }

/* ============================================================
   Story — window panels
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(26px, 4vw, 52px);
}
.paper-frame {
  position: relative;
  padding: 30px 8px 8px;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    var(--shadow-hard);
}
.paper-frame::before {
  content: "boomer.exe";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 24px;
  padding-left: 10px;
  background: linear-gradient(180deg, var(--accent-3) 0%, #064d2b 100%);
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-term);
  font-size: 1rem;
  line-height: 22px;
  color: #d8ffe6;
}
.paper-frame::after {
  content: "";
  position: absolute;
  top: 8px; right: 12px;
  width: 8px; height: 8px;
  background: var(--accent-2);
  box-shadow: -13px 0 0 var(--accent-2), -26px 0 0 var(--accent-2);
}
.paper-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 2px solid #000; }

.story-cards { display: flex; flex-direction: column; gap: 20px; }
.paper-card {
  position: relative;
  background: var(--panel);
  color: var(--text);
  border: 2px solid var(--ink);
  padding: 32px 24px 22px;
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    var(--shadow-hard);
  transition: transform 0.2s var(--ease);
}
.paper-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: linear-gradient(180deg, var(--accent-3) 0%, #064d2b 100%);
  border-bottom: 2px solid var(--ink);
}
.paper-card::after {
  content: "";
  position: absolute;
  top: 7px; right: 12px;
  width: 7px; height: 7px;
  background: var(--accent-2);
  box-shadow: -12px 0 0 var(--accent-2), -24px 0 0 var(--accent-2);
}
.paper-card:hover { transform: translateY(-3px); }
.paper-title { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; color: var(--accent-2); text-transform: uppercase; }
.paper-card p { font-family: var(--font-body); font-size: 1.02rem; line-height: 1.55; color: var(--muted); }

/* ============================================================
   Panels shared (why / token / step)
   ============================================================ */
.sticker {
  position: relative;
  background: var(--panel);
  border: 2px solid var(--ink);
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    var(--shadow-hard);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.sticker::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: linear-gradient(180deg, var(--accent-3) 0%, #064d2b 100%);
  border-bottom: 2px solid var(--ink);
}
.sticker::after {
  content: "";
  position: absolute;
  top: 7px; right: 12px;
  width: 7px; height: 7px;
  background: var(--accent-2);
  box-shadow: -12px 0 0 var(--accent-2), -24px 0 0 var(--accent-2);
}
.sticker--green { background: var(--accent); color: var(--ink); }
.sticker--green::before { background: linear-gradient(180deg, #0a7a3f 0%, #064d2b 100%); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
}
.why-grid .sticker { padding: 40px 24px 26px; text-align: center; }
.why-grid .sticker:hover { transform: translateY(-5px); }
.why-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.4));
}
.why-grid h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; color: var(--accent-2); text-transform: uppercase; }
.why-grid p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   Tokenomics — timeline + stat cards
   ============================================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 22px;
  margin-bottom: 34px;
}
.tl-card {
  position: relative;
  padding: 40px 26px 26px;
  border: 2px solid var(--ink);
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    var(--shadow-hard);
  transition: transform 0.2s var(--ease);
}
.tl-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: linear-gradient(180deg, #0a7a3f 0%, #064d2b 100%);
  border-bottom: 2px solid var(--ink);
}
.tl-card--green { background: var(--accent); color: var(--ink); }
.tl-card--dark { background: var(--panel); color: var(--text); }
.tl-card:hover { transform: translateY(-4px); }
.tl-card h3 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 8px; text-transform: uppercase; }
.tl-card--dark h3 { color: var(--accent-2); }
.tl-card p { font-family: var(--font-body); font-size: 1rem; line-height: 1.5; }
.tl-card--green p { color: rgba(3, 19, 10, 0.8); }
.tl-card--dark p { color: var(--muted); }
.tl-badge {
  position: absolute;
  top: 30px; left: -8px;
  font-family: var(--font-term);
  font-size: 1.05rem;
  background: #04160d;
  color: var(--crt);
  border: 2px solid var(--accent-3);
  padding: 2px 12px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}
.tl-badge--alt { left: auto; right: -8px; background: var(--accent); color: var(--ink); border-color: var(--ink); }

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px;
}
.token-card { padding: 40px 24px 26px; text-align: center; }
.token-card:hover { transform: translateY(-4px); }
.token-label { display: block; font-family: var(--font-term); font-size: 1.2rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.token-card.sticker--green .token-label { color: var(--ink); }
.token-value { display: block; margin: 8px 0 6px; font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--accent-2); }
.token-card.sticker--green .token-value { color: var(--ink); }
.token-note { font-size: 0.96rem; color: var(--muted); }
.token-card.sticker--green .token-note { color: rgba(3, 19, 10, 0.72); }

/* ============================================================
   Gallery — photo-viewer windows
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 24px;
}
.wizard-card { position: relative; margin: 0; }
.wizard-frame {
  position: relative;
  padding: 28px 6px 6px;
  background: var(--panel);
  border: 2px solid var(--ink);
  overflow: hidden;
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    var(--shadow-hard);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.wizard-frame::before {
  content: "IMG_BOOMER.JPG";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  padding-left: 9px;
  background: linear-gradient(180deg, var(--accent-3) 0%, #064d2b 100%);
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-term);
  font-size: 0.92rem;
  line-height: 20px;
  color: #d8ffe6;
  white-space: nowrap;
  overflow: hidden;
}
.wizard-frame::after {
  content: "";
  position: absolute;
  top: 7px; right: 10px;
  width: 7px; height: 7px;
  background: var(--accent-2);
  box-shadow: -11px 0 0 var(--accent-2), -22px 0 0 var(--accent-2);
  z-index: 2;
}
.wizard-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 2px solid #000; transition: transform 0.5s var(--ease); }
.wizard-card:hover .wizard-frame { transform: translateY(-6px); box-shadow: inset 2px 2px 0 var(--bevel-light), inset -2px -2px 0 var(--bevel-dark), 9px 12px 0 rgba(0,0,0,0.55); }
.wizard-card:hover .wizard-frame img { transform: scale(1.05); }
.wizard-card figcaption {
  margin-top: 12px;
  font-family: var(--font-term);
  font-size: 1.15rem;
  text-align: center;
  color: var(--crt);
}
.wizard-card figcaption::before { content: "// "; color: var(--accent); }

/* ============================================================
   How to buy — steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 22px;
}
.step { padding: 40px 24px 26px; text-align: left; }
.step:hover { transform: translateY(-4px); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 1.3rem;
  box-shadow: inset 1px 1px 0 var(--bevel-light), inset -2px -2px 0 var(--bevel-dark);
  margin-bottom: 16px;
}
.step-title { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 8px; color: var(--accent-2); text-transform: uppercase; }
.step p { color: var(--muted); font-size: 0.98rem; }

.buy-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: clamp(32px, 5vw, 50px); }

/* ============================================================
   Community / join
   ============================================================ */
.community { position: relative; }
.spark-tag { display: inline-block; }
.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 22px;
  max-width: 940px;
  margin-inline: auto;
}
.join-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 20px 28px;
  border: 2px solid var(--ink);
  color: #fff;
  font-family: var(--font-term);
  font-size: 1.4rem;
  box-shadow:
    inset 2px 2px 0 var(--bevel-light),
    inset -2px -2px 0 var(--bevel-dark),
    var(--shadow-hard);
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}
.join-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background: rgba(0, 0, 0, 0.32);
  border-bottom: 2px solid var(--ink);
}
.join-card::after {
  content: "";
  position: absolute;
  top: 7px; right: 12px;
  width: 7px; height: 7px;
  background: rgba(255,255,255,0.85);
  box-shadow: -12px 0 0 rgba(255,255,255,0.85), -24px 0 0 rgba(255,255,255,0.85);
}
.join-card:hover { transform: translateY(-5px); filter: brightness(1.08); }
.join-card:active { box-shadow: inset -2px -2px 0 var(--bevel-light), inset 2px 2px 0 var(--bevel-dark), 1px 1px 0 rgba(0,0,0,0.5); transform: translate(2px, 2px); }
.join-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; font-size: 2.3rem; }
.join-icon svg { width: 40px; height: 40px; }
.join-card--x { background: #0b1f14; color: var(--crt); }
.join-card--tg { background: #1c7fb8; }
.join-card--buy { background: var(--accent-3); }
.join-card--chart { background: var(--accent); color: var(--ink); }

/* ============================================================
   Footer — taskbar-ish
   ============================================================ */
.site-footer {
  position: relative;
  border-top: 3px solid var(--accent-3);
  padding: clamp(46px, 6vw, 68px) 0 36px;
  background: #030f08;
  overflow: hidden;
}
.footer-glyph {
  position: absolute;
  top: -24px; right: -10px;
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.06;
  pointer-events: none;
}
.footer-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.footer-title { font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.6rem); color: var(--accent-2); text-shadow: 2px 2px 0 var(--ink); text-transform: uppercase; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-logo { width: 52px; height: 52px; }
.footer-name { font-family: var(--font-display); font-size: 1.15rem; text-align: left; }
.footer-ticker { font-family: var(--font-term); font-size: 1.05rem; color: var(--muted); text-align: left; }
.socials--footer .social-btn { width: 44px; height: 44px; }
.socials--footer .icon { width: 19px; height: 19px; }
.disclaimer { max-width: 54ch; font-size: 0.9rem; color: var(--muted-2); line-height: 1.55; }
.copyright { font-family: var(--font-term); font-size: 1.05rem; color: var(--muted-2); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); will-change: opacity, transform; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes led { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes crt-flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  94% { opacity: 0.82; }
  96% { opacity: 1; }
  97% { opacity: 0.88; }
  98% { opacity: 1; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-actions .socials { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 820px) {
  .story-grid { grid-template-columns: 1fr; }
  .paper-frame { order: -1; max-width: 460px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .brand-name { display: none; }
  .ca-address { font-size: 0.95rem; max-width: 62vw; }
  .footer-brand { flex-direction: column; }
  .footer-name, .footer-ticker { text-align: center; }
  .btn { width: 100%; }
  .hero-cta .btn, .buy-cta .btn { width: auto; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
