/* Little Robin - comic book identity, built by hand.
   Palette taken straight off the mascot: cape red, hero blue, shield gold,
   comic ink, newsprint cream. Single light "printed page" theme on purpose. */

:root {
  --ink: #16171d;
  --red: #e22537;
  --red-dark: #b31626;
  --blue: #1f45c4;
  --blue-dark: #16309a;
  --gold: #ffc21f;
  --gold-dark: #e6a400;
  --paper: #f6efe0;
  --paper-2: #fdf8ee;
  --card: #ffffff;
  --line: #16171d;

  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);

  --font-comic: "Bangers", system-ui, sans-serif;
  --font-poster: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1160px;
  --pad: clamp(1.1rem, 4vw, 2.6rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(var(--ink) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  background-position: -8px -8px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
h1, h2, h3 { margin: 0; }
img { max-width: 100%; display: block; }

.mono { font-family: var(--font-mono); }

.skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink); padding: .6rem 1rem;
  border: 3px solid var(--ink); font-weight: 800;
}
.skip:focus { left: 8px; top: 8px; }

:focus-visible { outline: 4px solid var(--blue); outline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-poster);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1rem;
  padding: .7rem 1.2rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  text-decoration: none;
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: var(--shadow-sm); }
.btn--red { --btn-bg: var(--red); --btn-fg: #fff; }
.btn--blue { --btn-bg: var(--blue); --btn-fg: #fff; }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); }
.btn--dark { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn--lg { font-size: 1.3rem; padding: .85rem 1.6rem; }
.btn--block { width: 100%; }

/* ---------- shield mark ---------- */
.shield {
  display: inline-grid; place-items: center;
  width: 38px; height: 42px;
  background: var(--gold);
  color: var(--red);
  border: 3px solid var(--ink);
  clip-path: polygon(50% 0, 100% 22%, 100% 62%, 50% 100%, 0 62%, 0 22%);
  font-family: var(--font-comic);
  font-size: 1.5rem;
  line-height: 1;
}
.shield b { transform: translateY(1px); }
.shield--sm { width: 30px; height: 33px; font-size: 1.15rem; }

/* ---------- top line ---------- */
.topline {
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em;
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .4rem var(--pad);
}
.topline__mid { color: var(--gold); }
@media (max-width: 640px) { .topline__mid { display: none; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; gap: 1rem;
  padding: .7rem var(--pad);
  background: var(--paper-2);
  border-bottom: 3px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand__word { font-family: var(--font-comic); font-size: 1.6rem; letter-spacing: .03em; }
.nav__links { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; font-weight: 700; }
.nav__links a { text-decoration: none; }
.nav__links a:hover { color: var(--red); }
.nav__x {
  display: grid; place-items: center; width: 34px; height: 34px;
  border: 3px solid var(--ink); background: var(--card); box-shadow: var(--shadow-sm);
}
.nav > .btn { flex: none; }
@media (max-width: 780px) {
  .nav__links { gap: 1rem; }
  .nav__links a:not(.nav__x) { display: none; }
  .nav > .btn { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) var(--pad);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero__burst {
  position: absolute; inset: auto; right: 44%; top: 12%;
  width: 60vw; height: 60vw; max-width: 620px; max-height: 620px;
  background: repeating-conic-gradient(from 0deg, var(--gold) 0deg 9deg, transparent 9deg 18deg);
  opacity: .35; z-index: 0; pointer-events: none;
  -webkit-mask: radial-gradient(circle, #000 30%, transparent 66%);
  mask: radial-gradient(circle, #000 30%, transparent 66%);
}
.hero__copy { position: relative; z-index: 1; }
.kicker {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; margin: 0 0 .6rem;
  background: var(--blue); color: #fff; display: inline-block;
  padding: .3rem .6rem; border: 3px solid var(--ink); box-shadow: var(--shadow-sm);
}
.title {
  font-family: var(--font-comic);
  font-size: clamp(4rem, 14vw, 9.5rem);
  line-height: .82; letter-spacing: .01em;
  color: var(--red);
  -webkit-text-stroke: 3px var(--ink);
  text-shadow: var(--shadow-lg);
  margin: .2rem 0 1.2rem;
}
.hero__ticker { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem; }
.chip {
  font-family: var(--font-mono); font-weight: 700; font-size: .82rem;
  background: var(--gold); border: 3px solid var(--ink); padding: .35rem .7rem;
  box-shadow: var(--shadow-sm);
}
.chip--ghost { background: var(--card); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero__art { margin: 0; position: relative; z-index: 1; }
.hero__art img {
  width: 100%; border: 4px solid var(--ink); box-shadow: var(--shadow-lg);
  background: var(--card);
}
.hero__art figcaption {
  display: inline-block; margin-top: -1px;
  font-family: var(--font-comic); font-size: 1.4rem; letter-spacing: .02em;
  background: var(--red); color: #fff; border: 4px solid var(--ink); border-top: none;
  padding: .1rem .8rem; transform: rotate(-2deg) translateY(-6px);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 420px; margin: 0 auto; }
  .hero__burst { right: 10%; top: 2%; }
}

/* ---------- bands ---------- */
.band {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
  border-top: 3px dashed var(--ink);
}
.band__head { margin-bottom: 2rem; max-width: 60ch; }
.h-anton {
  font-family: var(--font-poster); text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.4rem); letter-spacing: .01em; line-height: 1;
}
.lede { margin: .8rem 0 0; font-size: 1.1rem; max-width: 54ch; }

.band--blue {
  background: var(--blue);
  color: #fff;
  border-radius: 0;
  max-width: none;
  padding-inline: max(var(--pad), calc((100vw - var(--maxw)) / 2 + var(--pad)));
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.band--blue .h-anton { color: var(--gold); -webkit-text-stroke: 2px var(--ink); }

/* ---------- buy ---------- */
.buy { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.4rem; align-items: start; }
.buy__panel {
  background: var(--card); border: 4px solid var(--ink); box-shadow: var(--shadow-lg);
  padding: 1.4rem;
}
.field { margin-bottom: .4rem; }
.field label {
  display: block; font-family: var(--font-mono); font-size: .74rem;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem;
}
.field__row {
  display: flex; align-items: center; gap: .6rem;
  border: 3px solid var(--ink); background: var(--paper-2); padding: .6rem .8rem;
}
.field__row input, .field__row output {
  flex: 1; border: none; background: transparent; font-family: var(--font-poster);
  font-size: 1.8rem; color: var(--ink); min-width: 0;
}
.field__row input:focus { outline: none; }
.field__unit { font-family: var(--font-mono); font-weight: 700; font-size: .9rem; }
.buy__swap { display: grid; place-items: center; margin: .5rem 0; }
.buy__note { margin: .8rem 0 0; font-size: .85rem; font-family: var(--font-mono); }

.buy__facts {
  list-style: none; margin: 0; padding: 0;
  border: 4px solid var(--ink); background: var(--paper-2); box-shadow: var(--shadow);
}
.buy__facts li {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: .85rem 1rem; border-bottom: 2px solid var(--ink);
}
.buy__facts li:last-child { border-bottom: none; }
.buy__facts b { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.buy__facts span { font-weight: 700; text-align: right; word-break: break-all; }
@media (max-width: 760px) { .buy { grid-template-columns: 1fr; } }

/* ---------- ways ---------- */
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.6rem; }
.way {
  position: relative; background: var(--paper-2); color: var(--ink);
  border: 4px solid var(--ink); box-shadow: var(--shadow-lg); padding: 1.5rem 1.4rem 1.4rem;
}
.way__no {
  position: absolute; top: -18px; left: -14px;
  font-family: var(--font-comic); font-size: 1.8rem;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--gold); color: var(--ink); border: 4px solid var(--ink);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.way h3 { font-family: var(--font-poster); text-transform: uppercase; font-size: 1.5rem; margin-bottom: .5rem; }
.way p { margin: 0; font-size: .98rem; }
@media (max-width: 760px) { .ways { grid-template-columns: 1fr; } }

/* ---------- claim ---------- */
.claim {
  background: var(--paper-2); color: var(--ink);
  border: 4px solid var(--ink); box-shadow: var(--shadow-lg); padding: 1.4rem;
}
.claim__connect { display: flex; flex-wrap: wrap; gap: .7rem; }
.claim__connect .btn { flex: 1; min-width: 150px; }
.claim__result { margin-top: 1.3rem; border-top: 3px dashed var(--ink); padding-top: 1.3rem; }
.claim__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.1rem; }
.claim__k { display: block; font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: #555; }
.claim__v { display: block; font-weight: 700; word-break: break-all; }
.claim__total {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  background: var(--gold); border: 3px solid var(--ink); padding: .8rem 1rem; margin-bottom: 1rem;
}
.claim__total span { font-family: var(--font-mono); text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.claim__total strong { font-family: var(--font-poster); font-size: 1.6rem; }
.claim__note { margin: .8rem 0 0; font-size: .85rem; font-family: var(--font-mono); }
@media (max-width: 520px) { .claim__grid { grid-template-columns: 1fr; } }

/* ---------- tokenomics ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat {
  border: 4px solid var(--ink); box-shadow: var(--shadow-lg); padding: 1.4rem 1rem;
  text-align: center; color: #fff;
}
.stat--red { background: var(--red); }
.stat--blue { background: var(--blue); }
.stat--gold { background: var(--gold); color: var(--ink); }
.stat--ink { background: var(--ink); }
.stat__pct { display: block; font-family: var(--font-comic); font-size: 2.8rem; line-height: 1; -webkit-text-stroke: 2px var(--ink); }
.stat--ink .stat__pct, .stat--red .stat__pct, .stat--blue .stat__pct { color: var(--gold); }
.stat--gold .stat__pct { color: #fff; }
.stat__label { display: block; font-family: var(--font-poster); text-transform: uppercase; letter-spacing: .04em; margin-top: .4rem; font-size: .95rem; }
.split { display: flex; margin-top: 1.4rem; border: 4px solid var(--ink); box-shadow: var(--shadow); height: 34px; overflow: hidden; }
.split__seg--red { background: var(--red); }
.split__seg--blue { background: var(--blue); }
.split__seg--gold { background: var(--gold); }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- footer ---------- */
.foot {
  border-top: 4px solid var(--ink); background: var(--ink); color: var(--paper);
  padding: clamp(2rem, 5vw, 3rem) var(--pad);
  display: grid; gap: 1.2rem; grid-template-columns: auto 1fr auto; align-items: center;
}
.foot__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-comic); font-size: 1.4rem; }
.foot__contract { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.foot__k { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); }
.foot__contract code { font-size: .9rem; }
.foot__copy { background: var(--gold); color: var(--ink); border: 2px solid var(--paper); font-family: var(--font-mono); font-size: .74rem; padding: .3rem .6rem; cursor: pointer; }
.foot__links { display: flex; gap: 1.2rem; font-weight: 700; }
.foot__links a { color: var(--gold); text-decoration: none; }
.foot__legal { grid-column: 1 / -1; margin: .6rem 0 0; font-size: .78rem; color: #b9b3a6; max-width: 90ch; line-height: 1.5; }
@media (max-width: 820px) { .foot { grid-template-columns: 1fr; text-align: center; } .foot__brand, .foot__links { justify-content: center; } }

/* ---------- landing gateways ---------- */
.gateways {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(1rem, 4vw, 2rem) var(--pad) clamp(2.5rem, 6vw, 4rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem;
}
.gateway {
  position: relative; display: block; text-decoration: none; color: #fff;
  border: 4px solid var(--ink); box-shadow: var(--shadow-lg);
  padding: 1.8rem 1.6rem; min-height: 230px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .1s ease, box-shadow .1s ease;
  overflow: hidden;
}
.gateway:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }
.gateway--red { background: var(--red); }
.gateway--blue { background: var(--blue); }
.gateway__no {
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase; opacity: .85;
}
.gateway h2 {
  font-family: var(--font-comic); font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: .9; letter-spacing: .02em; margin: .4rem 0;
  color: var(--gold); -webkit-text-stroke: 2px var(--ink);
}
.gateway p { margin: 0 0 1.2rem; max-width: 34ch; }
.gateway__go {
  align-self: flex-start; font-family: var(--font-poster); text-transform: uppercase;
  letter-spacing: .04em; background: var(--gold); color: var(--ink);
  border: 3px solid var(--ink); box-shadow: var(--shadow-sm); padding: .5rem 1rem;
}
.gateway__mark {
  position: absolute; right: -10px; bottom: -18px; font-size: 8rem; line-height: 1;
  opacity: .12; font-family: var(--font-comic); pointer-events: none;
}
@media (max-width: 760px) { .gateways { grid-template-columns: 1fr; } }

/* ---------- sub page header ---------- */
.page-head {
  border-bottom: 3px solid var(--ink);
  padding: clamp(2rem, 6vw, 3.5rem) var(--pad) clamp(1.6rem, 4vw, 2.4rem);
}
.page-head__in { max-width: var(--maxw); margin: 0 auto; }
.page-head .crumb {
  font-family: var(--font-mono); font-size: .76rem; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
}
.page-head .crumb:hover { color: var(--red); }
.page-head h1 {
  font-family: var(--font-comic); font-size: clamp(3rem, 10vw, 6rem);
  line-height: .85; color: var(--red); -webkit-text-stroke: 3px var(--ink);
  text-shadow: var(--shadow); margin: .6rem 0 .3rem;
}
.page-head p { max-width: 56ch; font-size: 1.1rem; margin: .6rem 0 0; }
.page-head--blue { background: var(--blue); color: #fff; }
.page-head--blue h1 { color: var(--gold); }
.page-wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem, 5vw, 3.5rem) var(--pad); }

/* ---------- how to suit up (steps) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start;
  background: var(--paper-2); border: 3px solid var(--ink); box-shadow: var(--shadow-sm);
  padding: 1rem 1.1rem;
}
.step__n {
  font-family: var(--font-comic); font-size: 1.5rem; width: 40px; height: 40px;
  display: grid; place-items: center; background: var(--blue); color: var(--gold);
  border: 3px solid var(--ink);
}
.step b { font-family: var(--font-poster); text-transform: uppercase; letter-spacing: .03em; }
.step p { margin: .2rem 0 0; font-size: .95rem; }

/* ---------- suit up status meter ---------- */
.status {
  border: 4px solid var(--ink); background: var(--paper-2); box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem; margin-top: 1.4rem;
}
.status__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-family: var(--font-mono); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.status__bar { height: 16px; border: 3px solid var(--ink); background: #fff; margin-top: .7rem; overflow: hidden; }
.status__fill { height: 100%; background: var(--red); width: 0; }

.two-col { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.6rem; align-items: start; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- admin report tables ---------- */
.rtile-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1rem 0; }
.rtile { border: 3px solid var(--ink); background: var(--paper-2); box-shadow: var(--shadow-sm); padding: 1rem; }
.rtile b { display: block; font-family: var(--font-comic); font-size: 1.8rem; line-height: 1; }
.rtile span { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); }
.rtile--warn { background: var(--gold); }
.rtable-wrap { overflow-x: auto; border: 3px solid var(--ink); box-shadow: var(--shadow-sm); margin-top: 1rem; }
.rtable { width: 100%; border-collapse: collapse; font-family: var(--font-mono); font-size: .82rem; }
.rtable th, .rtable td { text-align: left; padding: .5rem .7rem; border-bottom: 1px solid var(--border); white-space: nowrap; }
.rtable th { background: var(--ink); color: var(--paper); text-transform: uppercase; font-size: .68rem; letter-spacing: .06em; }
.rtable td.num { text-align: right; font-variant-numeric: tabular-nums; }
.rtable tr:last-child td { border-bottom: none; }
.rflag { display: inline-block; background: var(--red); color: #fff; border: 2px solid var(--ink); font-family: var(--font-mono); font-size: .7rem; padding: .15rem .5rem; margin: .2rem .3rem 0 0; }
@media (max-width: 640px) { .rtile-row { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   REDESIGN LAYER v2 - dog badge logo, live states, motion, depth
   ============================================================ */

/* Super Robin dog badge logo */
.brand-badge {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--paper-2);
}
.brand-badge img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 6%; transform: scale(1.75); transform-origin: 50% 22%;
}
.brand-badge--sm { width: 34px; height: 34px; border-width: 2px; box-shadow: 2px 2px 0 var(--ink); }
.foot__brand .brand-badge { border-color: var(--paper); }

/* Live pill */
.live-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-mono); font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em;
  background: var(--red); color: #fff; border: 2px solid var(--ink);
  padding: .25rem .6rem; box-shadow: 2px 2px 0 var(--ink);
}
.live-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255,194,31,.8); animation: blip 1.6s ease-out infinite;
}
@keyframes blip { 0% { box-shadow: 0 0 0 0 rgba(255,194,31,.7); } 70% { box-shadow: 0 0 0 7px rgba(255,194,31,0); } }
@media (prefers-reduced-motion: reduce) { .live-pill::before { animation: none; } }

/* Hero upgrade: comic ray burst behind the dog + float */
.hero__art { --ray: color-mix(in srgb, var(--gold) 70%, transparent); }
.hero__art::before {
  content: ""; position: absolute; inset: -8% -6% -6% -6%; z-index: -1;
  background: repeating-conic-gradient(from 8deg at 52% 46%, var(--ray) 0deg 8deg, transparent 8deg 20deg);
  -webkit-mask: radial-gradient(circle at 52% 46%, #000 34%, transparent 62%);
  mask: radial-gradient(circle at 52% 46%, #000 34%, transparent 62%);
  opacity: .7; animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__art img { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero__art::before, .hero__art img { animation: none; } }

/* Punchier buttons */
.btn { border-radius: 3px; }
.btn--primary, .btn--red { background-image: linear-gradient(180deg, color-mix(in srgb, var(--btn-bg) 88%, #fff) 0%, var(--btn-bg) 55%); }

/* Card depth on hover for panels */
.card, .way, .stat, .buy__panel, .buy__facts, .claim, .path {
  transition: transform .14s ease, box-shadow .14s ease;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Section eyebrow */
.eyebrow {
  display: inline-block; font-family: var(--font-mono); font-weight: 700;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  background: var(--ink); color: var(--gold); padding: .28rem .6rem;
  border: 2px solid var(--ink); box-shadow: 2px 2px 0 var(--gold); margin-bottom: .9rem;
}
.band--blue .eyebrow { background: var(--gold); color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }

/* ---------- founder FOMO card ---------- */
.founder {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 1.8rem);
  margin-top: 1.4rem; text-decoration: none; color: #fff;
  background: var(--blue); border: 4px solid var(--ink); box-shadow: var(--shadow-lg);
  padding: clamp(1.1rem, 3vw, 1.8rem); position: relative; overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease;
}
.founder::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .18; pointer-events: none;
  background: repeating-conic-gradient(from 10deg at 88% 50%, var(--gold) 0deg 9deg, transparent 9deg 20deg);
  -webkit-mask: radial-gradient(circle at 88% 50%, #000 20%, transparent 55%);
  mask: radial-gradient(circle at 88% 50%, #000 20%, transparent 55%);
}
.founder:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--ink); }
.founder__pic {
  position: relative; flex: none; z-index: 1; margin: 0;
  width: clamp(120px, 24vw, 172px); aspect-ratio: 1;
  border: 4px solid var(--ink); box-shadow: var(--shadow); overflow: hidden; background: var(--ink);
}
.founder__pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder__badge {
  position: absolute; right: -8px; bottom: -8px;
  font-family: var(--font-comic); font-size: clamp(1.6rem, 5vw, 2.4rem); line-height: 1;
  color: var(--gold); -webkit-text-stroke: 2px var(--ink);
  background: var(--red); border: 3px solid var(--ink); box-shadow: var(--shadow-sm);
  padding: .1rem .5rem; transform: rotate(-6deg);
}
.founder__body { z-index: 1; }
.founder__tag {
  display: inline-block; font-family: var(--font-mono); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--gold);
  background: var(--ink); border: 2px solid var(--ink); padding: .2rem .5rem; margin-bottom: .55rem;
}
.founder__body h3 { font-family: var(--font-poster); text-transform: uppercase; font-size: clamp(1.1rem, 3vw, 1.7rem); line-height: 1.05; color: var(--gold); }
.founder__body p { margin: .5rem 0 0; font-size: .98rem; max-width: 60ch; }
.founder__addr { display: inline-block; margin-top: .6rem; font-size: .72rem; color: #cfe0ff; word-break: break-all; }
@media (max-width: 620px) { .founder { flex-direction: column; text-align: center; } }

/* ---------- meme lab ---------- */
.memelab { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); align-items: start; }
.memelab__stage {
  border: 4px solid var(--ink); box-shadow: var(--shadow-lg); background: #e9e4d6;
  overflow: hidden; aspect-ratio: 1;
}
#memeCanvas { width: 100%; height: 100%; display: block; }
.memelab__controls { display: flex; flex-direction: column; gap: 1rem; }
.fld { display: flex; flex-direction: column; gap: .35rem; font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; }
.fld input {
  font-family: var(--font-poster); font-size: 1.2rem; text-transform: uppercase;
  border: 3px solid var(--ink); background: var(--paper-2); padding: .55rem .7rem; color: var(--ink);
}
.fld input:focus { outline: none; box-shadow: inset 0 0 0 2px var(--red); }
.fld__lbl { display: block; font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .4rem; }
.thumbs { display: flex; flex-wrap: wrap; gap: .5rem; }
.thumb { width: 62px; height: 62px; padding: 0; border: 3px solid var(--ink); background: var(--paper-2); cursor: pointer; overflow: hidden; box-shadow: 2px 2px 0 var(--ink); transition: transform .1s; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { transform: translateY(-2px); }
.thumb.is-active { outline: 3px solid var(--red); outline-offset: 1px; }
.memelab__row { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .3rem; }
.memelab__row .btn { flex: 1; min-width: 140px; }
.memelab__hint { font-size: .78rem; color: var(--text-dim); margin: 0; }
@media (max-width: 760px) { .memelab { grid-template-columns: 1fr; } }

.meme-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.meme-card {
  padding: 0; border: 4px solid var(--ink); box-shadow: var(--shadow); background: var(--card);
  cursor: pointer; overflow: hidden; position: relative; aspect-ratio: 1; transition: transform .12s, box-shadow .12s;
}
.meme-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.meme-card span { position: absolute; left: 0; bottom: 0; font-family: var(--font-poster); text-transform: uppercase; font-size: .8rem; letter-spacing: .04em; background: var(--red); color: #fff; border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); padding: .15rem .6rem; }
.meme-card:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lg); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%) translateY(14px);
  background: var(--gold); color: var(--ink); border: 3px solid var(--ink); box-shadow: var(--shadow);
  font-family: var(--font-poster); text-transform: uppercase; letter-spacing: .03em;
  padding: .7rem 1.1rem; z-index: 90; opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
