/* ══════════════════════════════════════════════════════════════════
   CHILLHAM — design system
   Dark terminal canvas · logo-green accent · gold + chrome support.
   Fonts: Unbounded (display) · Libre Franklin (UI/body)
          · JetBrains Mono (tickers, labels, addresses)

   2026-08-11 — full recut from the letterpress "narrative" system at the
   customer's request: hyper green, super cool, new-age. The greens are
   SAMPLED FROM THEIR ARTWORK (the beach banner + hamster logo): a teal
   #ACD724 highlight. Gold stays as the secondary (the logo is gold+black);
   red/navy/political remain BANNED. The charity band keeps its own light
   + TCF-cyan pair on purpose — it must not read as more hype furniture.

   Legacy var names (--ink, --paper-hi, --gold-ink, --rule, --font-marker…)
   are kept as ALIASES onto the dark palette because shop/admin.php and the
   checkout pages use them in inline styles. --ink is only ever a BORDER
   colour in those files, so it maps to a light line tone, not black.
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* Sampled from Staci's own artwork, 2026-09-21: the beach banner's
     teal-to-sunset water and gold coins, and the logo's pastel mint sky.
     The previous values were lifted from the TP Balls logo — a neon lime
     that appears nowhere in Chillham's art. */
  --void:        #05110e;   /* deepest field — bands, wells, buttons */
  --canvas:      #091a17;   /* page background — deep teal water */
  --surface:     #0e241f;   /* cards */
  --surface-hi:  #143029;   /* raised / hover */
  --edge:        #1e4a40;   /* hairlines on dark */
  --hyper:       #4fc9a8;   /* THE accent — the banner's aqua */
  --hyper-hi:    #7fe4c6;   /* lit — hovers, links on dark */
  --hyper-deep:  #2f8a74;   /* rules, borders, quiet accents */
  --hyper-ink:   #1b6152;   /* text-safe on light plates */
  --gold:        #e8b73e;   /* secondary — the coin pile */
  --gold-deep:   #c2902a;
  --chrome:      #e7f1ed;   /* headings/body on dark */
  --chrome-soft: #a2bab2;   /* muted copy on dark */
  --alert:       #f0883a;   /* semantic warning — the sunset */

  --font-display: 'Unbounded', 'Arial Black', sans-serif;
  --font-ui:      'Libre Franklin', 'Franklin Gothic Medium', Arial, sans-serif;
  --font-body:    'Libre Franklin', 'Franklin Gothic Medium', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'Cascadia Mono', Consolas, monospace;

  --glow:      0 0 26px rgba(79, 201, 168, .30);
  --glow-soft: 0 0 18px rgba(79, 201, 168, .16);

  /* legacy aliases — admin/checkout inline styles depend on these names */
  --ink:          #cdded7;  /* only ever used as a border in admin */
  --ink-soft:     var(--chrome-soft);
  --paper:        var(--canvas);
  --paper-hi:     var(--surface);
  --paper-lo:     #12302a;
  --rule:         #1e4a40;
  --gold-ink:     var(--hyper-hi);
  --gold-ink-deep: var(--hyper);
  --gold-lit:     #f5d071;
  --font-marker:  var(--font-mono);
  --shadow-ink:   0 10px 30px rgba(0, 0, 0, .35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; color-scheme: dark; }

body {
  background: var(--canvas);
  color: var(--chrome);
  font: 400 1.05rem/1.65 var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--hyper); color: #04211b; }

a { color: var(--hyper-hi); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--hyper); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--hyper); color: #04211b; padding: 10px 16px;
  font: 700 .9rem var(--font-ui); border-radius: 6px;
}
.skip:focus { left: 8px; }

:focus-visible { outline: 2.5px solid var(--hyper); outline-offset: 2px; }

/* Inverting band — literal pair, never var-swapped */
.band-ink { background: #05110e; color: #e7f1ed; }

/* ── Type ─────────────────────────────────────────────────────────── */
/* The kicker brackets are pseudo-element TEXT with padding, not inline SVG
   and not content-with-spaces, and that is load-bearing. An inline <svg> is
   an atomic inline the line-breaker treats like an ideographic character, so
   it breaks BEFORE it even with no whitespace; a space inside content is its
   own break opportunity. A bare character with padding travels with the word
   beside it on every wrap. */
.kicker {
  font: 700 .78rem/1.5 var(--font-mono);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--hyper);
  margin-bottom: 14px;
}
.kicker::before, .kicker::after {
  color: rgba(79, 201, 168, .55);
  letter-spacing: 0;
}
.kicker::before { content: "["; padding-right: .55em; }
.kicker::after  { content: "]"; padding-left: .55em; }
.kicker.center { text-align: center; }
.kicker-light { color: var(--hyper); }

.section-title {
  font: 700 clamp(1.55rem, 3.4vw, 2.5rem)/1.14 var(--font-display);
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 18px;
}
.section-title-light { color: #e7f1ed; }
.section-sub {
  font-size: 1.1rem; color: var(--chrome-soft);
  max-width: 640px; margin: 0 auto 34px;
}

/* ── Buttons: sharp blocks, never pills ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 12px 20px;
  font: 800 .88rem/1 var(--font-ui);
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  color: var(--chrome); background: var(--surface-hi);
  border: 1.5px solid var(--edge); border-radius: 8px;
  cursor: pointer;
  transition: border-color .14s ease, box-shadow .14s ease,
              background .14s ease, color .14s ease, transform .1s ease;
}
.btn:hover  { border-color: var(--hyper-deep); color: var(--hyper-hi); box-shadow: var(--glow-soft); transform: translateY(-1px); }
.btn:active { transform: translateY(0); box-shadow: none; }
/* The money button: solid logo green, near-black type (10.5:1). */
.btn-hyper  { background: var(--hyper); color: #04211b; border-color: var(--hyper); }
.btn-hyper:hover { background: var(--hyper-hi); color: #04211b; border-color: var(--hyper-hi); box-shadow: var(--glow); }
/* Black block with green type — works on dark AND on the light charity card. */
.btn-ink    { background: #05110e; color: var(--hyper); border-color: var(--hyper-deep); }
.btn-ink:hover  { background: #0c1206; color: var(--hyper-hi); border-color: var(--hyper); }
.btn-outline { background: transparent; border-color: var(--hyper-deep); color: var(--hyper-hi); }
.btn-outline:hover { border-color: var(--hyper); color: var(--hyper-hi); }
.btn-lg     { padding: 16px 26px; font-size: .98rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Masthead ─────────────────────────────────────────────────────── */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: var(--canvas);
}
.masthead-in {
  max-width: 1160px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 26px;
  /* Nine rigid nowrap items need ~1190px in a 1120px content box. Above the
     burger breakpoint they used to spill out and give the whole document a
     horizontal scrollbar, clipping the Buy CTA. Wrapping is the safety net; the
     tightened .nav metrics below are what actually make the row fit. */
  flex-wrap: wrap;
}
.masthead-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hyper-deep) 18%, var(--hyper-deep) 82%, transparent);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; flex: none; border-radius: 50%; border: 1.5px solid var(--hyper-deep); }
.brand-seal { flex: none; }
.brand-word {
  font: 700 1.06rem/1 var(--font-display);
  color: var(--chrome); letter-spacing: .02em;
}
.brand-word-gold { color: var(--hyper); }

.nav {
  display: flex; align-items: center; gap: 14px; margin-left: auto;
}
.nav > a {
  font: 700 .8rem var(--font-ui); letter-spacing: .04em;
  color: var(--chrome-soft); text-decoration: none; text-transform: uppercase;
  white-space: nowrap;
}
.nav .nav-buy { padding: 10px 14px; font-size: .8rem; }
.nav > a:hover { color: var(--hyper-hi); }
.nav .btn { text-decoration: none; }

.nav-cart { position: relative; }
.cart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px; margin-left: 6px;
  background: var(--hyper); color: #04211b; border-radius: 50%;
  font: 800 .72rem var(--font-ui);
  vertical-align: 2px;
}
.cart-badge[hidden] { display: none; }

.nav-toggle { display: none; }
.nav-burger { display: none; }

/* Burger at 1280px (was 1150): the Live nav item pushed the full row past what
   even the tightened metrics could fit above 1150. */
@media (max-width: 1280px) {
  .masthead-in { flex-wrap: wrap; gap: 12px; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    padding: 10px; border: 1.5px solid var(--edge); border-radius: 8px;
    background: var(--surface); cursor: pointer;
  }
  .nav-burger span { width: 22px; height: 2.5px; background: var(--hyper); border-radius: 2px; }
  .nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    gap: 0; padding: 8px 0 14px;
  }
  .nav > a { padding: 12px 6px; border-bottom: 1px solid var(--edge); }
  .nav > a:last-child { border-bottom: 0; }
  .nav .btn { margin-top: 12px; justify-content: center; }
  .nav-toggle:checked ~ .nav { display: flex; }
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero {
  overflow: hidden;
  background:
    radial-gradient(52% 46% at 74% 42%, rgba(79, 201, 168, .10), transparent 70%),
    repeating-linear-gradient(to bottom, transparent 0 3px, rgba(79, 201, 168, .014) 3px 4px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 44px; align-items: center;
  padding-top: 54px; padding-bottom: 66px;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 34px; gap: 54px; }
}

.hero-title { line-height: 1; margin: 6px 0 18px; }
.hero-line { display: block; }
.hero-word {
  position: relative; display: inline-block;
  font: 800 clamp(2.5rem, 6.6vw, 4.7rem)/1.04 var(--font-display);
  letter-spacing: .01em; color: var(--chrome);
}
/* phosphor echo — same data-word trick, recut from the misregistered-print look */
.hero-word::before {
  content: attr(data-word);
  position: absolute; left: 3px; top: 3px; z-index: -1;
  color: var(--hyper); opacity: .30;
}
.hero-word-alt { color: var(--hyper); text-shadow: 0 0 38px rgba(79, 201, 168, .40); }
.hero-word-alt::before { color: var(--gold); opacity: .22; }

.hero-banner { margin: 6px 0 16px; }
.hero-banner span {
  display: inline-block; padding: 9px 22px;
  background: var(--hyper); color: #04211b;
  font: 800 clamp(.9rem, 1.8vw, 1.15rem)/1 var(--font-ui); letter-spacing: .3em;
  border-radius: 4px;
  box-shadow: var(--glow-soft);
}
.hero-sub { max-width: 480px; font-size: 1.14rem; color: var(--chrome-soft); margin-bottom: 26px; }

.ca-ticket {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--edge); border-radius: 10px;
  padding: 12px 14px; margin-bottom: 26px;
  max-width: 640px;
}
.ca-ticket-label {
  font: 700 .66rem var(--font-mono); letter-spacing: .18em; color: var(--hyper);
  border-right: 1px dashed var(--rule); padding-right: 14px;
}
.ca-ticket-addr {
  font: 600 .84rem/1.3 var(--font-mono);
  word-break: break-all; flex: 1; min-width: 200px; color: var(--chrome);
}
.btn-copy { padding: 9px 14px; font-size: .8rem; flex: none; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stage — the logo on a lit pedestal (replaces the taped poster frame) */
.hero-stage { position: relative; justify-self: center; width: min(430px, 88vw); }
.hero-stage::before {
  content: ''; position: absolute; inset: -14%;
  background: radial-gradient(circle, rgba(79, 201, 168, .22), transparent 62%);
  z-index: 0; pointer-events: none;
}
.hero-stage img {
  position: relative; z-index: 1;
  border-radius: 22px; border: 1px solid var(--edge);
  box-shadow: 0 0 0 1px rgba(79, 201, 168, .22), 0 26px 70px rgba(0, 0, 0, .55);
}
.hero-stage-cap {
  position: relative; z-index: 1;
  margin-top: 16px; text-align: center;
  font: 500 .74rem var(--font-mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--chrome-soft);
}
.hero-stage-cap::before { content: "// "; color: var(--hyper); }

/* ── Scoreboard ───────────────────────────────────────────────────── */
.scoreboard { border-top: 1px solid var(--hyper-deep); border-bottom: 1px solid var(--hyper-deep); }
.scoreboard-in {
  display: flex; flex-wrap: wrap; align-items: stretch;
  padding-top: 0; padding-bottom: 0;
}
.score-cell {
  flex: 1 1 150px;
  display: flex; flex-direction: column; gap: 3px;
  padding: 18px 20px;
  border-right: 1px solid rgba(79, 201, 168, .16);
}
.score-cell:first-child { padding-left: 0; }
.score-label {
  font: 700 .62rem var(--font-mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--hyper);
}
.score-val {
  font: 700 1.35rem/1.1 var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: #e7f1ed;
}
.score-val.up   { color: var(--hyper-hi); }
.score-val.down { color: #e08575; }
.score-live {
  display: flex; align-items: center; gap: 8px; padding: 18px 0 18px 20px;
  margin-left: auto;
  font: 700 .68rem var(--font-mono); letter-spacing: .16em; color: var(--hyper);
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--hyper); box-shadow: 0 0 10px rgba(79, 201, 168, .8); }
@media (prefers-reduced-motion: no-preference) {
  .live-dot { animation: livepulse 1.6s ease-in-out infinite; }
  @keyframes livepulse { 50% { opacity: .35; } }
}
@media (max-width: 700px) {
  .score-cell { flex: 1 1 46%; border-right: 0; padding: 12px 8px; }
  .score-cell:first-child { padding-left: 8px; }
  .score-live { width: 100%; justify-content: center; padding: 4px 0 14px; margin: 0; }
}

/* ── Generic dark card (was the paper card) ───────────────────────── */
.paper {
  background: var(--surface);
  border: 1px solid var(--edge); border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

/* ── Creed — replaces the newspaper story ─────────────────────────── */
.creed { padding: 74px 0; }
.creed-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.creed-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--edge); border-radius: 12px;
  padding: 26px 26px 28px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.creed-card:hover { border-color: rgba(79, 201, 168, .45); box-shadow: var(--glow-soft); }
.creed-card::before {
  content: ''; position: absolute; left: 0; top: 20px; bottom: 20px; width: 3px;
  background: var(--hyper); border-radius: 2px;
}
.creed-index { font: 700 .76rem var(--font-mono); letter-spacing: .24em; color: var(--hyper); }
.creed-card h3 {
  font: 700 1rem var(--font-display); text-transform: uppercase; letter-spacing: .02em;
  color: var(--chrome); margin: 12px 0 10px;
}
.creed-card p { color: var(--chrome-soft); font-size: 1.02rem; }
.creed-quote {
  margin: 44px auto 0; max-width: 860px; text-align: center;
  font: 700 clamp(1.05rem, 2.4vw, 1.5rem)/1.5 var(--font-mono);
  color: var(--hyper); letter-spacing: .02em;
}
.creed-quote::before { content: "> "; color: var(--hyper-deep); }

/* ── The cause ────────────────────────────────────────────────────────
   Own literal colour pair — the one LIGHT band on the site, and that is the
   point: the sincere section must not read as more hype furniture. Orchid is
   the awareness colour and appears nowhere else. Do not var-swap this band. */
.cause {
  --cause: #00b4db;
  --cause-deep: #0a6c87;
  background: #e8f5fa;
  color: #0f172a;
  padding: 72px 0 84px;
}
.cause .kicker { color: var(--cause-deep); }
.cause .kicker::before, .cause .kicker::after { color: rgba(10, 108, 135, .5); }
.cause-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.cause-ribbon { display: block; margin: 0 auto 18px; }
.cause .section-title { color: #0f172a; }
.cause-hl { color: var(--cause-deep); }
.cause .section-sub { color: #334155; }
.cause .section-sub a { color: var(--cause-deep); }

.pledge-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-bottom: 34px;
}
.pledge {
  background: #f8fcfe;
  border: 1px solid #c9e4ec; border-radius: 12px;
  box-shadow: 0 12px 30px rgba(10, 108, 135, .12);
  padding: 26px 28px;
}
.pledge-figure {
  display: block;
  font: 700 2.6rem/1.15 var(--font-display); color: var(--cause-deep);
  margin-bottom: 4px;
}
.pledge h3 {
  font: 800 1rem var(--font-ui); text-transform: uppercase; letter-spacing: .06em;
  color: #0f172a; margin-bottom: 10px;
}
.pledge p { color: #334155; font-size: 1.02rem; }

.donate-panel {
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
  background: #0f172a; color: #eef9fc;
  border: 1px solid #0f172a; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10, 108, 135, .25);
  padding: 26px 30px; margin-bottom: 44px;
}
.donate-main { flex: 1 1 420px; }
.donate-label {
  font: 700 .68rem var(--font-mono); letter-spacing: .18em; color: #9be6f5;
  margin-bottom: 10px;
}
.donate-addr {
  display: block; word-break: break-all; margin-bottom: 16px;
  font: 600 .95rem/1.45 var(--font-mono); color: #f8fcfe;
}
.donate-actions { display: flex; gap: 12px; flex-wrap: wrap; }
/* This panel is near-black, so the outline button goes light and .btn-ink takes
   the band's own TCF cyan — it must stay distinct from the green "Give to TCF". */
.donate-actions .btn-outline {
  color: #f8fcfe; border-color: #f8fcfe;
}
.donate-actions .btn-outline:hover { color: #0f172a; background: #f8fcfe; }
.donate-actions .btn-ink {
  background: var(--cause); color: #0f172a; border-color: var(--cause-deep);
}
.donate-actions .btn-ink:hover { background: var(--cause-deep); color: #fff; }
.donate-meter {
  flex: 0 0 auto; text-align: center;
  border-left: 1.5px dashed rgba(238, 249, 252, .35); padding-left: 28px;
}
@media (max-width: 720px) {
  .donate-meter { border-left: 0; border-top: 1.5px dashed rgba(238, 249, 252, .35); padding: 18px 0 0; width: 100%; }
}
.donate-meter-num { font: 700 2.4rem/1 var(--font-mono); color: #bff0fa; font-variant-numeric: tabular-nums; }
.donate-meter-unit { font: 800 1.1rem var(--font-ui); color: #9be6f5; margin-left: 4px; }
.donate-meter-cap { display: block; margin-top: 8px; font: 600 .72rem var(--font-mono); letter-spacing: .08em; color: rgba(238, 249, 252, .72); }

.awareness {
  background: #f8fcfe;
  border: 1px solid #c9e4ec; border-radius: 12px;
  box-shadow: 0 12px 30px rgba(10, 108, 135, .12);
  padding: 34px 32px 38px; text-align: center;
}
.awareness-title {
  font: 700 clamp(1.25rem, 2.5vw, 1.7rem)/1.2 var(--font-display);
  text-transform: uppercase; color: #0f172a; margin-bottom: 26px;
}
.awareness-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px; margin-bottom: 22px;
}
.aw-stat { padding: 0 10px; }
.aw-num {
  display: block; font: 700 2.2rem/1.15 var(--font-display); color: var(--cause-deep);
  margin-bottom: 6px;
}
.aw-lbl { font: 600 .96rem/1.4 var(--font-ui); color: #334155; }
.awareness-note {
  max-width: 620px; margin: 0 auto 24px;
  font: 400 1rem var(--font-ui); font-style: italic; color: #475569;
}

/* ── How to buy: steps ────────────────────────────────────────────── */
.howto { padding: 30px 0 80px; }
.tickets { list-style: none; max-width: 860px; margin: 40px auto 36px; display: grid; gap: 18px; }
.ticket {
  display: flex; align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--edge); border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ticket:hover { border-color: rgba(79, 201, 168, .45); box-shadow: var(--glow-soft); }
.ticket-num {
  flex: none; width: 86px;
  display: flex; align-items: center; justify-content: center;
  font: 700 1.9rem var(--font-mono); color: var(--hyper);
  background: var(--void);
  border-right: 1px solid var(--edge);
}
.ticket-body { padding: 22px 24px; flex: 1; }
.ticket-body h3 { font: 700 .98rem var(--font-display); text-transform: uppercase; letter-spacing: .03em; color: var(--chrome); margin-bottom: 8px; }
.ticket-body p { color: var(--chrome-soft); font-size: 1.04rem; }
@media (max-width: 620px) {
  .ticket-num { width: 60px; font-size: 1.4rem; }
}
.howto-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── DYOR / verification ───────────────────────────────── */
.dyor { padding: 20px 0 80px; }
.dyor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin: 36px 0 26px;
}
.dyor-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--edge); border-radius: 12px;
  padding: 22px 22px 20px; overflow: hidden;
}
.dyor-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--gold);
}
.dyor-card.is-good::before { background: var(--hyper); }
.dyor-card.is-warn::before { background: var(--alert); }
.dyor-q {
  display: flex; align-items: flex-start; gap: 10px;
  font: 600 .97rem/1.45 var(--font-ui); color: var(--chrome-soft);
  margin-bottom: 10px;
}
.dyor-flag {
  flex: 0 0 auto; width: 21px; height: 21px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font: 800 .74rem/1 var(--font-ui);
  color: var(--hyper-hi); background: rgba(79, 201, 168, .13);
  border: 1px solid var(--hyper-deep);
}
.is-warn .dyor-flag { color: var(--alert); background: rgba(224, 149, 79, .13); border-color: var(--alert); }
.is-plain .dyor-flag { color: var(--gold); background: rgba(212, 175, 55, .13); border-color: var(--gold-deep); }
.dyor-a {
  font: 800 1.24rem/1.3 var(--font-ui); color: var(--chrome); margin-bottom: 9px;
}
.is-good .dyor-a { color: var(--hyper-hi); }
.is-warn .dyor-a { color: var(--alert); }
.dyor-tech {
  align-self: flex-start; margin-bottom: 13px;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, .035); border: 1px solid var(--edge);
  font: 500 .69rem var(--font-mono); letter-spacing: .04em; color: var(--chrome-soft);
}
.dyor-why { font-size: .95rem; line-height: 1.62; color: var(--chrome-soft); margin-bottom: 16px; }
.dyor-foot { margin-top: auto; }
.dyor-link {
  display: inline-block;
  font: 700 .78rem var(--font-mono); letter-spacing: .06em; text-transform: uppercase;
  color: var(--hyper-hi); text-decoration: none; border-bottom: 1.5px solid var(--hyper-deep);
}
.dyor-link:hover, .dyor-link:focus-visible { color: var(--hyper); border-color: var(--hyper); }
.dyor-hint {
  display: block; margin-top: 9px;
  font: 500 .8rem/1.5 var(--font-ui); color: #8b9683;
}
.dyor-stamp {
  max-width: 720px; margin: 0 auto; text-align: center;
  font: 500 .88rem/1.7 var(--font-mono); color: var(--chrome-soft);
}
@media (max-width: 1000px) { .dyor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .dyor-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .dyor-card { padding: 20px 18px 18px; }
  .dyor-a { font-size: 1.16rem; }
  .dyor-stamp { font-size: .82rem; }
}

/* ── Chart ────────────────────────────────────────────────────────── */
.chart { padding: 70px 0 76px; border-top: 1px solid var(--hyper-deep); border-bottom: 1px solid var(--hyper-deep); }
.chart-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 26px 0 0; }
.chart-tab {
  padding: 10px 18px;
  font: 700 .8rem var(--font-mono); letter-spacing: .06em; text-transform: uppercase;
  color: var(--chrome-soft); background: transparent;
  border: 1px solid var(--edge); border-bottom: 0;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}
.chart-tab:hover { border-color: var(--hyper-deep); color: var(--hyper-hi); }
.chart-tab.is-active { background: var(--hyper); color: #04211b; border-color: var(--hyper); }
.chart-frame {
  border: 1px solid var(--hyper-deep); border-radius: 0 0 10px 10px; background: #0a0a0a;
  box-shadow: var(--glow-soft);
  overflow: hidden;
}
.chart-frame iframe { display: block; width: 100%; height: 560px; border: 0; }
@media (max-width: 700px) { .chart-frame iframe { height: 640px; } }
.chart-note {
  margin-top: 16px; text-align: center;
  font: 500 .82rem var(--font-mono); letter-spacing: .04em; color: var(--chrome-soft);
}
.chart-note code { color: var(--hyper-hi); font-family: var(--font-mono); }

/* ── Shop ─────────────────────────────────────────────────────────── */
.shopteaser { padding: 10px 0 84px; }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 26px; margin: 40px 0 34px;
}
.product-card {
  position: relative; text-decoration: none; color: var(--chrome);
  /* Column + auto-margin on the stamp so prices align across a row no matter
     how many lines the product name and blurb take. */
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--edge); border-radius: 14px;
  padding: 16px 16px 22px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.product-card:hover { border-color: rgba(79, 201, 168, .5); box-shadow: var(--glow-soft); transform: translateY(-3px); color: var(--chrome); }
.product-card h3 { font: 800 1.02rem/1.3 var(--font-ui); text-transform: uppercase; letter-spacing: .03em; color: var(--chrome); margin: 14px 0 6px; }
.product-blurb { font-size: .96rem; color: var(--chrome-soft); min-height: 3em; }
/* The line art is ink-on-cream — it gets its own light plate inside the dark
   card, like a print in a frame. Without this the black strokes vanish. */
.product-art {
  width: 100%; height: auto;
  background: #f6f3e9; border-radius: 10px; padding: 10px;
}
.product-badge {
  position: absolute; top: 14px; left: -6px; z-index: 2;
  background: var(--hyper); color: #04211b;
  font: 800 .66rem var(--font-mono); letter-spacing: .14em;
  padding: 6px 12px; border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
}
/* Sold out reads as a state, not a promotion. */
.product-badge.is-soldout { background: var(--void); color: var(--chrome-soft); border: 1px solid var(--edge); }
.product-card .price-stamp { margin-top: auto; align-self: flex-start; }
.price-stamp {
  display: inline-block; margin-top: 12px;
  font: 700 1.02rem var(--font-mono);
  color: var(--hyper); border: 1.5px solid var(--hyper-deep); border-radius: 6px;
  padding: 5px 12px;
}

/* Shop chrome shared by all shop pages */
.shop-head { padding: 44px 0 8px; }
.shop-head .section-title { margin-bottom: 8px; }
.shop-note {
  max-width: 720px; margin: 18px auto 0;
  background: var(--surface); border: 1.5px dashed var(--hyper-deep); border-radius: 10px;
  padding: 12px 18px; text-align: center;
  font: 600 .92rem var(--font-ui); color: var(--hyper-hi);
}
.shop-body { padding-bottom: 90px; }

/* Product page */
.pd-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; padding-top: 40px; }
@media (max-width: 820px) { .pd-grid { grid-template-columns: 1fr; } }
.pd-art { padding: 20px; }
.pd-art .product-art { width: 100%; }
.pd-info h1 { font: 700 clamp(1.4rem, 2.8vw, 2rem)/1.16 var(--font-display); text-transform: uppercase; color: var(--chrome); margin-bottom: 14px; }
.pd-price { margin: 6px 0 18px; }
.pd-desc { margin-bottom: 26px; max-width: 520px; color: var(--chrome-soft); }
.pd-form { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; }
.pd-form .field { margin: 0; }

/* Forms */
.field { margin-bottom: 18px; }
.field label {
  display: block; font: 700 .72rem var(--font-mono);
  letter-spacing: .14em; text-transform: uppercase; color: var(--chrome-soft); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px;
  font: 600 1rem var(--font-ui); color: var(--chrome);
  background: var(--void);
  border: 1.5px solid var(--edge); border-radius: 8px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2.5px solid var(--hyper); outline-offset: 0;
}
.field-inline { display: inline-block; width: auto; }
.field select { min-width: 110px; }
.field input[type=number] { width: 90px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .span2 { grid-column: 1 / -1; }

.flash-error {
  margin: 20px auto 0; max-width: 720px;
  background: var(--surface); border: 1.5px solid var(--alert); border-radius: 10px;
  padding: 12px 18px; text-align: center;
  font: 700 .96rem var(--font-ui); color: #f0b183;
}

/* honeypot — hidden from humans, tasty for bots */
.hp-wrap { position: absolute; left: -9999px; top: -9999px; }

/* Cart table */
.cart-table { width: 100%; border-collapse: collapse; margin: 34px 0 22px; }
.cart-table th {
  font: 700 .7rem var(--font-mono); letter-spacing: .16em; text-transform: uppercase;
  color: var(--chrome-soft);
  text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--hyper-deep);
}
.cart-table td { padding: 16px 12px; border-bottom: 1px solid var(--edge); vertical-align: middle; }
.cart-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.cart-item-name { font: 800 .98rem var(--font-ui); text-transform: uppercase; letter-spacing: .02em; color: var(--chrome); }
.cart-item-variant { font: 600 .85rem var(--font-ui); color: var(--chrome-soft); }
.cart-qty { display: inline-flex; align-items: center; gap: 8px; }
.cart-qty input { width: 64px; padding: 8px; text-align: center; font: 700 1rem var(--font-ui); color: var(--chrome); border: 1.5px solid var(--edge); border-radius: 8px; background: var(--void); }
.linklike { background: none; border: 0; color: var(--hyper-hi); font: 600 .9rem var(--font-ui); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

/* Phones: the 5-column cart table's min-content width is ~505px, which pushed
   the line total and the remove button off-screen and made the whole document
   scroll sideways. Below 700px each row becomes a stacked card instead. */
@media (max-width: 700px) {
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table thead { display: none; }
  .cart-table tr {
    border: 1px solid var(--edge); border-radius: 12px;
    background: var(--surface);
    padding: 14px 16px; margin-bottom: 18px;
  }
  .cart-table td { border-bottom: 0; padding: 5px 0; text-align: left; }
  .cart-table td.num { text-align: left; }
  /* Label the now-headerless cells. */
  .cart-table td[data-label]::before {
    content: attr(data-label) ': ';
    font: 700 .68rem var(--font-mono); letter-spacing: .12em; text-transform: uppercase;
    color: var(--chrome-soft);
  }
  .cart-summary { max-width: none; }
}

.cart-summary {
  margin-left: auto; max-width: 380px;
  background: var(--surface); border: 1px solid var(--edge); border-radius: 12px;
  padding: 22px 24px;
}
.cart-summary dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 20px; margin-bottom: 18px; }
.cart-summary dt { font: 700 .88rem var(--font-ui); text-transform: uppercase; letter-spacing: .06em; color: var(--chrome-soft); }
.cart-summary dd { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.cart-summary .total dt, .cart-summary .total dd { font: 800 1.15rem var(--font-ui); color: var(--chrome); border-top: 2px solid var(--hyper-deep); padding-top: 10px; }

/* Order stub / receipt */
.stub {
  max-width: 640px; margin: 46px auto;
  background: var(--surface); border: 1px solid var(--edge); border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .4);
  padding: 0 0 30px;
}
.stub-head {
  border-bottom: 1.5px dashed var(--rule);
  padding: 26px 32px 20px; text-align: center;
}
.stub-head .ref { font: 700 1.6rem var(--font-mono); color: var(--hyper); letter-spacing: .04em; }
.stub-body { padding: 24px 32px 0; }
.stub-row { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; border-bottom: 1px solid var(--edge); font-size: 1rem; }
.stub-row .num { font-variant-numeric: tabular-nums; }
.stub-total { font: 800 1.12rem var(--font-ui); color: var(--chrome); border-bottom: 0; padding-top: 14px; }
.stub-status {
  margin: 22px 32px 0; padding: 14px 18px; text-align: center;
  border: 1.5px solid var(--hyper-deep); border-radius: 8px; color: var(--hyper-hi);
  font: 700 .88rem var(--font-mono); letter-spacing: .1em; text-transform: uppercase;
}

/* ── Community pins ───────────────────────────────────────────────────
   Dark coins with green brand glyphs, laid out monochrome so six different
   logos read as one row. CrypTok is the exception — it ships its own logo
   as an image, and being the one full-colour coin is the point. */
.community { padding: 84px 0 96px; }
.community-victory { color: var(--hyper); }
.pin-row { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin-top: 44px; }
.pin { display: flex; flex-direction: column; align-items: center; gap: 12px; text-decoration: none; width: 104px; }
.pin-face {
  width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--hyper);
  background: radial-gradient(circle at 32% 26%, #1d2614 0 30%, #0d120a 64%, #000 100%);
  border: 1.5px solid var(--edge);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, color .12s ease;
  overflow: hidden;
}
.pin-face .social-glyph { width: 40px; height: 40px; display: block; }
.pin-face img { width: 66px; height: 66px; }
.pin:hover .pin-face { transform: translateY(-4px); border-color: var(--hyper-deep); box-shadow: var(--glow-soft); color: var(--hyper-hi); }
.pin-label { font: 700 .76rem var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--chrome-soft); text-align: center; }
.pin:hover .pin-label { color: var(--hyper-hi); }

/* ── CrypTok co-brand card ────────────────────────────────────────── */
.cryptok-card {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  max-width: 860px; margin: 54px auto 0;
  background: var(--void); color: var(--chrome);
  border: 1px solid var(--edge); border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
  padding: 26px 30px;
}
.cryptok-card-art {
  flex: none; display: flex; align-items: center; gap: 14px;
}
.cryptok-card-art img.ck-mascot {
  width: 92px; height: 92px; border-radius: 50%;
  border: 1.5px solid var(--hyper-deep);
}
.cryptok-card-art img.ck-logo { width: 78px; height: 78px; }
.cryptok-card-art .ck-plus {
  font: 800 1.5rem var(--font-ui); color: var(--hyper); line-height: 1;
}
.cryptok-card-body { flex: 1 1 320px; }
.cryptok-card-body .kicker { color: var(--hyper); margin-bottom: 8px; }
.cryptok-card-body h3 {
  font: 700 clamp(1.15rem, 2.2vw, 1.5rem)/1.2 var(--font-display);
  text-transform: uppercase; color: var(--chrome); margin-bottom: 10px;
}
.cryptok-card-body p { font-size: 1.02rem; color: var(--chrome-soft); margin-bottom: 16px; }
@media (max-width: 620px) {
  .cryptok-card { justify-content: center; text-align: center; }
  .cryptok-card-body { text-align: center; }
  .cryptok-card-body .kicker.center, .cryptok-card-body .kicker { text-align: center; }
}

/* ── Contact strip ────────────────────────────────────────────────── */
.contact-line {
  margin-top: 34px; text-align: center;
  font: 600 .98rem var(--font-ui); color: var(--chrome-soft);
}
.contact-line a {
  font-weight: 800; color: var(--hyper-hi); text-decoration: none;
  border-bottom: 1.5px solid var(--hyper-deep);
}
.contact-line a:hover { color: var(--hyper); }

/* ── Footer ───────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--hyper-deep); }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px;
  padding-top: 56px; padding-bottom: 30px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-mark { width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid var(--hyper-deep); }
.footer-motto { font: 700 .95rem var(--font-mono); letter-spacing: .1em; color: var(--hyper); margin: 14px 0 10px; text-transform: uppercase; }
.footer-motto::before { content: "// "; color: var(--hyper-deep); }
.footer-copy { font: 600 .88rem var(--font-ui); color: var(--chrome-soft); }
.footer-links h3 {
  font: 700 .72rem var(--font-mono); letter-spacing: .2em; text-transform: uppercase;
  color: var(--hyper); margin-bottom: 14px;
}
.footer-links a {
  display: block; padding: 5px 0;
  font: 600 .94rem var(--font-ui); color: var(--chrome); text-decoration: none;
}
.footer-links a:hover { color: var(--hyper-hi); text-decoration: underline; text-underline-offset: 3px; }
.footer-fine {
  border-top: 1px solid var(--edge);
  padding-top: 22px; padding-bottom: 40px;
  font: 400 .9rem/1.6 var(--font-body); color: var(--chrome-soft);
}
.footer-fine strong { color: var(--hyper-hi); }
.footer-ca { margin-top: 10px; font: 600 .8rem var(--font-ui); }
.footer-ca a, .footer-fine a { color: var(--hyper-hi); }
.footer-ca a:hover, .footer-fine a:hover { color: var(--hyper); }
.mono-ca { font: 600 .8rem var(--font-mono); word-break: break-all; color: var(--chrome-soft); }

/* ── Toast (copy feedback) ────────────────────────────────────────── */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 300;
  background: var(--void); color: var(--chrome);
  border: 1px solid var(--hyper); border-radius: 10px;
  box-shadow: var(--glow-soft), 0 10px 30px rgba(0, 0, 0, .5);
  padding: 12px 22px;
  font: 700 .86rem var(--font-mono); letter-spacing: .06em; text-transform: uppercase;
  opacity: 0; pointer-events: none; transition: opacity .18s ease;
}
.toast.show { opacity: 1; }

/* ── Admin (tiny) ─────────────────────────────────────────────────── */
.admin-table { width: 100%; border-collapse: collapse; font: 600 .92rem var(--font-ui); }
.admin-table th, .admin-table td { padding: 9px 10px; border-bottom: 1px solid var(--edge); text-align: left; vertical-align: top; }
.admin-table th { font: 700 .68rem var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--chrome-soft); border-bottom: 2px solid var(--hyper-deep); }
/* Status tags keep their light chips on the dark desk — text is pinned to ink
   because the body colour is now light and would vanish on the pastel. */
.status-tag { font: 800 .7rem var(--font-ui); letter-spacing: .1em; text-transform: uppercase; padding: 3px 8px; border: 1px solid rgba(0,0,0,.35); border-radius: 5px; display: inline-block; color: #121210; }
.status-paid { background: #b9e2b3; }
.status-reserved { background: #d9d9cf; }
.status-pending_payment { background: var(--gold); }
.status-shipped { background: #cfd8c8; }
.status-cancelled { background: #e3cfc6; }
.admin-table input[disabled], .linklike[disabled] { opacity: .45; cursor: not-allowed; }
/* Checkboxes and radios render Windows-blue by default — accent-color is the
   whole fix. */
input[type=checkbox], input[type=radio] { accent-color: var(--hyper); width: 16px; height: 16px; }

/* Charity gets the one non-palette accent in the nav — it should not read as
   just another hype link. Light TCF cyan: the deep tone vanishes on dark. */
.nav .nav-cause { color: #7ddff0; }
.nav .nav-cause:hover { color: #9be6f5; }
.footer-cause { margin-bottom: 10px; font: 400 .9rem/1.6 var(--font-body); color: var(--chrome-soft); }
.footer-cause strong { color: #9be6f5; }
.footer-cause a { color: #9be6f5; }
/* ══════════════════════════════════════════════════════════════════════
   THE CAUSE — richer, in TCF blue  (2026-08-28, recoloured 2026-08-29)

   Orchid (#00b4db) came from the previous brand's cause palette and was
   already here; this does not introduce it, it commits to it. Everything
   below is scoped to `.cause` on purpose — hyper-green #4fc9a8 remains the
   token's brand everywhere else, per the standing rule.

   The band's original comment still governs: this is the one LIGHT, sincere
   section and it must not read as more hype furniture. So: no glow spam, no
   animation, no neon. Depth comes from a soft radial ground, a structural
   cyan edge on each card, and headings that carry the colour — the same
   restraint the rest of the band already shows.
   ══════════════════════════════════════════════════════════════════════ */

/* A soft cyan ground instead of one flat lavender fill. Two very low-alpha
   radials — enough to give the band depth on a large screen, invisible as
   "an effect". */
.cause {
  background:
    radial-gradient(900px 420px at 50% -8%,  rgba(0, 180, 219, .16), transparent 62%),
    radial-gradient(700px 380px at 12% 108%, rgba(10, 108, 135, .10), transparent 60%),
    #e8f5fa;
}

/* The ribbon is the emotional anchor of the page — give it a halo so it reads
   as deliberate rather than clip-art dropped in. */
.cause-ribbon {
  filter: drop-shadow(0 6px 14px rgba(10, 108, 135, .28));
}

/* Pledge + awareness cards get a structural cyan top edge. This mirrors the
   ::before rail the DYOR cards already use elsewhere on the site, so it reads
   as the same design language in a different colour rather than a new idea. */
.pledge,
.awareness {
  position: relative;
  overflow: hidden;
  border-color: #b3dbe7;
  box-shadow: 0 14px 34px rgba(10, 108, 135, .16);
}
.pledge::before,
.awareness::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--cause-deep), var(--cause) 55%, #7ddff0);
}

/* Headings inside the band carry the colour. They were near-black, which made
   the colour feel like an accent applied to one or two numbers rather than the
   section's actual identity. */
.pledge h3,
.awareness-title {
  color: var(--cause-deep);
}

/* The two big pledge figures are the loudest thing in the band — let them sit
   on a faint cyan wash so the eye lands there first. */
.pledge-figure {
  background: linear-gradient(180deg, var(--cause-deep), #0091b0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Donation panel: deepen the cyan edge so the near-black card reads as part
   of the cause block rather than a generic dark panel borrowed from above. */
.donate-panel {
  border-color: rgba(0, 180, 219, .42);
  box-shadow:
    0 18px 44px rgba(10, 108, 135, .30),
    inset 0 1px 0 rgba(155, 230, 245, .14);
}
.donate-meter {
  border-left-color: rgba(155, 230, 245, .40);
}

/* Awareness stat labels lift slightly toward the band's ink so the numbers and
   their captions read as one unit. */
.aw-lbl { color: #3b4a5e; }

/* The section rule under the kicker, in cyan rather than inherited neutral. */
.cause .kicker::before,
.cause .kicker::after { color: rgba(10, 108, 135, .62); }

/* Links in the band underline in cyan — the TCF link is the single most
   important outbound click on the page. */
.cause .section-sub a,
.awareness a {
  text-decoration-color: rgba(0, 180, 219, .55);
  text-underline-offset: 3px;
}
.cause .section-sub a:hover,
.awareness a:hover { text-decoration-color: var(--cause-deep); }

@media (prefers-reduced-motion: reduce) {
  .cause-ribbon { filter: none; }
}

/* ══════════════════════════════════════════════════════════════════
   ELECTRIC BLUE — the broadcast accent            (appended 2026-08-29)

   The team grew this token by live-streaming, so the site now has a live
   surface, and the client asked for blue on four zones: the masthead/hero,
   the market data (scoreboard + chart), the community band, and the new
   stream sections.

   THE COLOUR IS NOT INVENTED. #2aa7ff is the electric blue already sampled
   from this client's own MEME MERCH mark and already shipping on their
   sibling site — same client, same family, so the two brands rhyme.
   It is NOT the navy that was banned in the 2026-08-10 recut: navy was
   rejected as political red-white-blue furniture; this is a neon on black.

   WHAT DOES NOT CHANGE — read this before editing:
   · Hyper green #4fc9a8 stays THE token colour. Green means BUY and means
     "this is Chillham"; blue means WATCH and means "this is data or
     broadcast". Every primary purchase CTA stays green. If both colours ever
     mean the same thing, delete one.
   · The charity band is BLUE too, but it was the previous cause's
     own cyan (#00b4db / #0a6c87), NOT --volt. It is the one light, sincere
     band and it belongs to the charity, not to the token.
   · .score-val.up stays green and .down stays salmon — those are semantics,
     not decoration.

   Unlike the charity pass (scoped to .cause because it was ONE band), these
   tokens live in :root: the accent legitimately crosses four separate zones,
   and copying the pair into each would guarantee they drift apart.

   Contrast, measured against the real canvases, not eyeballed:
     --volt      on #091a17 = 7.43:1   ·  on #05110e = 7.70:1
     --volt-hi   on #091a17 = 11.39:1  (links and hovers on dark)
     --volt-deep on #091a17 =  4.16:1  — RULES AND BORDERS ONLY, never text
     --volt-ink  on #fbf9f3 =  6.63:1  (the only one safe on a light plate)
   Type sitting ON solid --volt must be near-black (#04121f = 7.26:1); white
   on --volt is 2.60:1 and fails, exactly as white on the green does.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --volt:      #2aa7ff;   /* THE blue — client's own logo electric blue */
  --volt-hi:   #7fd0ff;   /* lit — hovers, links, live text on dark */
  --volt-deep: #1478c4;   /* rules, borders, quiet structure. NOT text. */
  --volt-ink:  #0e5c99;   /* text-safe blue on light plates */
  --volt-on:   #04121f;   /* type that sits on solid --volt */

  --volt-glow:      0 0 26px rgba(42, 167, 255, .30);
  --volt-glow-soft: 0 0 18px rgba(42, 167, 255, .16);
}

/* ── Shared blue primitives ─────────────────────────────────────────
   Mirrors of the green ones so the two accents behave identically. */

.btn-volt {
  background: var(--volt); color: var(--volt-on); border-color: var(--volt);
}
.btn-volt:hover {
  background: var(--volt-hi); color: var(--volt-on); border-color: var(--volt-hi);
  box-shadow: var(--volt-glow);
}
.btn-volt-outline {
  background: transparent; color: var(--volt-hi); border-color: var(--volt-deep);
}
.btn-volt-outline:hover {
  background: var(--volt); color: var(--volt-on); border-color: var(--volt);
}

/* The kicker's bracket glyphs are pseudo-element TEXT on purpose — an inline
   svg or a space would give the line-breaker somewhere to break and orphan the
   bracket on mobile. Recolour only; do not restructure. */
.kicker-volt { color: var(--volt-hi); }
.kicker-volt::before, .kicker-volt::after { color: rgba(42, 167, 255, .55); }

/* The live dot already exists in green on the scoreboard; this is the blue
   sibling, and it inherits the same reduced-motion guard below. */
.live-dot-volt { background: var(--volt); box-shadow: 0 0 10px rgba(42, 167, 255, .85); }

/* ══ ZONE 1 — MASTHEAD + HERO ══════════════════════════════════════
   The lightest touch of the four. The hero headline stays green because it
   is the logo wordmark; blue enters as the second light source. */

/* Green at the edges, blue through the middle — one rule reading as two
   accents meeting rather than a stripe of a third colour. */
.masthead-rule {
  background: linear-gradient(90deg,
    transparent,
    var(--hyper-deep) 16%,
    var(--volt-deep) 42%,
    var(--volt-deep) 58%,
    var(--hyper-deep) 84%,
    transparent);
}

.nav > a:hover { color: var(--volt-hi); }

/* "BALLS" carried a gold phosphor echo behind it. Blue does the job better:
   BALLS echoes green, TRILLIONS echoes gold, and the pair now states the
   two-accent system in the first thing anyone sees. */
.hero-word-alt::before { color: var(--volt); opacity: .26; }

/* Second light source, opposite corner from the existing green one at 74% 42%.
   The green radial and the scanline are REPRODUCED VERBATIM from the base rule
   at site.css:229-233 — this redeclares the whole `background` shorthand, so
   omitting either would silently delete it. */
.hero {
  background:
    radial-gradient(52% 46% at 74% 42%, rgba(79, 201, 168, .10), transparent 70%),
    radial-gradient(46% 42% at 16% 78%, rgba(42, 167, 255, .09), transparent 72%),
    repeating-linear-gradient(to bottom, transparent 0 3px, rgba(79, 201, 168, .014) 3px 4px);
}

/* The pedestal under the mascot picks up the same cool rim. */
.hero-stage img {
  box-shadow: 0 0 0 1px rgba(42, 167, 255, .20),
              0 26px 70px rgba(0, 0, 0, .55);
}

/* Buy stays green; the two secondary CTAs are "look at data" / "go watch",
   which is what blue means here. */
.hero-ctas .btn-outline {
  color: var(--volt-hi); border-color: var(--volt-deep);
}
.hero-ctas .btn-outline:hover {
  background: var(--volt); color: var(--volt-on); border-color: var(--volt);
}

/* ══ ZONE 2 — SCOREBOARD + CHART (the data band) ════════════════════
   Both already sit on .band-ink, so they read as one dark instrument panel.
   Blue is the instrument colour. */

.scoreboard { border-top-color: var(--volt-deep); border-bottom-color: var(--volt-deep); }
.score-cell { border-right-color: rgba(42, 167, 255, .18); }
.score-label { color: var(--volt); }
/* .score-val.up stays --hyper-hi and .down stays #e08575 — up/down is data,
   and recolouring it would destroy the only semantic colour on the band. */
.score-live { color: var(--volt); }
.score-live .live-dot { background: var(--volt); box-shadow: 0 0 10px rgba(42, 167, 255, .85); }

.chart { border-top-color: var(--volt-deep); border-bottom-color: var(--volt-deep); }
.chart .kicker { color: var(--volt-hi); }
.chart .kicker::before, .chart .kicker::after { color: rgba(42, 167, 255, .55); }
.chart-tab:hover { border-color: var(--volt-deep); color: var(--volt-hi); }
.chart-tab.is-active {
  background: var(--volt); color: var(--volt-on); border-color: var(--volt);
}
/* The frame carried the green --glow-soft; leaving it would ring a blue
   border in green light. */
.chart-frame { border-color: var(--volt-deep); box-shadow: var(--volt-glow-soft); }
.chart-note code { color: var(--volt-hi); }

/* ══ ZONE 3 — COMMUNITY ════════════════════════════════════════════
   The pins stay deliberately monochrome so six different brand logos read as
   one row; what changes is the ground they sit on and what happens on hover. */

.community-victory { color: var(--volt); }

.pin-face {
  background: radial-gradient(circle at 32% 26%, #16222c 0 30%, #0a1016 64%, #000 100%);
  border-color: rgba(42, 167, 255, .22);
}
/* The base rule also carries transform: translateY(-4px); this overrides only
   the three colour properties, so the lift survives. Glyphs rest GREEN (the
   monochrome row is deliberate) and light up blue on hover. */
.pin:hover .pin-face {
  border-color: var(--volt);
  box-shadow: var(--volt-glow-soft);
  color: var(--volt-hi);
}
.pin:hover .pin-label { color: var(--volt-hi); }

/* The CrypTok co-brand card takes the 3px top rail — the same device the
   charity band uses on .pledge, rotated from .dyor-card's vertical rail. */
.cryptok-card { position: relative; overflow: hidden; }
.cryptok-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--volt-deep), var(--volt) 55%, var(--volt-hi));
}
.contact-line a { color: var(--volt-hi); }
.contact-line a:hover { color: var(--volt); }

/* ══ ZONE 4 — THE STREAM SURFACES ══════════════════════════════════
   Fully blue, because this is the zone the colour was asked for. */

/* ── The bar under the masthead ──────────────────────────────────── */
.livebar {
  border-bottom: 1px solid var(--edge);
  background: var(--void);
  font: 600 .84rem/1.35 var(--font-ui);
}
.livebar-in {
  display: flex; align-items: center; gap: 14px;
  padding-top: 9px; padding-bottom: 9px;
}
.livebar.is-live {
  border-bottom-color: var(--volt-deep);
  background:
    radial-gradient(600px 120px at 12% 50%, rgba(42, 167, 255, .16), transparent 70%),
    #04121f;
}
.livebar-badge {
  display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto;
  font: 700 .68rem var(--font-mono); letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--volt-on); background: var(--volt);
  padding: 5px 10px; border-radius: 4px;
}
.livebar-badge-quiet {
  color: var(--volt-hi); background: transparent;
  border: 1px solid var(--volt-deep);
}
.livebar-text {
  flex: 1 1 auto; min-width: 0;
  color: var(--chrome);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.livebar-on { color: var(--chrome-soft); font-weight: 500; }
.livebar-meta {
  color: var(--volt-hi); font: 600 .78rem var(--font-mono);
  margin-left: 6px;
}
.livebar-cta {
  flex: 0 0 auto;
  font: 700 .78rem var(--font-ui);
  color: var(--volt-hi); text-decoration: none;
  border-bottom: 1.5px solid var(--volt-deep);
  padding-bottom: 1px;
}
.livebar-cta:hover { color: var(--volt); border-bottom-color: var(--volt); }
/* Below the burger breakpoint the bar keeps the badge and the CTA — the
   free-text middle is the part that can go, not the two actionable ends. */
@media (max-width: 620px) {
  .livebar-in { gap: 10px; }
  .livebar-text { white-space: normal; font-size: .8rem; line-height: 1.3; }
  .livebar-meta { display: block; margin-left: 0; }
}

/* ── The #live band ──────────────────────────────────────────────── */
.band-live {
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(42, 167, 255, .16), transparent 62%),
    radial-gradient(700px 380px at 10% 110%, rgba(20, 120, 196, .12), transparent 60%),
    #04121f;
  color: var(--chrome);
  border-top: 1px solid var(--volt-deep);
  border-bottom: 1px solid var(--volt-deep);
  padding: 66px 0 74px;
}
.band-live .section-title-light { color: #eaf4fb; }
.live-sub { max-width: 640px; margin-left: auto; margin-right: auto; }

.live-stage { margin: 38px 0 10px; }

/* Framed player — only ever rendered for a platform that permits framing. */
.live-player {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border: 1px solid var(--volt-deep); border-radius: 12px; overflow: hidden;
  background: #04121f; box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
}
.live-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Click-through card — the honest answer for pump.fun, X and TikTok, all
   three of which refuse to be iframed. */
.live-card {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0; align-items: stretch;
  text-decoration: none; color: inherit;
  background: rgba(8, 22, 34, .72);
  border: 1px solid var(--volt-deep); border-radius: 14px; overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.live-card:hover { border-color: var(--volt); box-shadow: var(--volt-glow); }
.live-card-art {
  position: relative; display: block; background: #04121f;
  min-height: 220px; overflow: hidden;
  /* Without this the 1:1 mascot dictates a ~610px-tall card next to a
     ~260px body. 16/10 keeps it a stage, not a poster. */
  aspect-ratio: 16 / 10;
}
.live-card-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.live-card-art .live-card-mascot {
  object-fit: contain; padding: 22px; opacity: .55;
}
.live-card.is-live .live-card-art img { opacity: 1; }
.live-card-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--volt); opacity: .9;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .6));
}
.live-card:hover .live-card-play { color: var(--volt-hi); }
.live-card-body {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 26px 28px; justify-content: center;
}
.live-flag {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 .68rem var(--font-mono); letter-spacing: .16em;
  color: var(--volt-on); background: var(--volt);
  padding: 5px 10px; border-radius: 4px;
}
.live-flag-off {
  color: var(--chrome-soft); background: transparent;
  border: 1px solid var(--edge);
}
.live-card-title {
  font: 700 clamp(1.15rem, 2.4vw, 1.6rem)/1.25 var(--font-display);
  color: #eaf4fb;
}
.live-card-meta { font: 600 .84rem var(--font-mono); color: var(--volt-hi); }
.live-card-cta { margin-top: 6px; }
.live-card-fine { font: 400 .76rem/1.4 var(--font-ui); color: var(--chrome-soft); }
@media (max-width: 760px) {
  .live-card { grid-template-columns: 1fr; }
  .live-card-art { min-height: 180px; }
  .live-card-body { padding: 22px 20px; }
}

/* ── Schedule ────────────────────────────────────────────────────── */
.live-h3 {
  font: 700 1.05rem var(--font-ui); text-transform: uppercase; letter-spacing: .07em;
  color: #eaf4fb; margin: 44px 0 16px;
  display: flex; align-items: baseline; gap: 10px;
}
.live-h3-center { justify-content: center; }
.live-tz { font: 600 .72rem var(--font-mono); letter-spacing: .12em; color: var(--volt-hi); }

.live-slots { list-style: none; display: grid; gap: 10px; }
.live-slot {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 16px;
  background: rgba(8, 22, 34, .6);
  border: 1px solid rgba(42, 167, 255, .22); border-radius: 10px;
  padding: 14px 18px;
}
.live-slot::before {
  content: ''; position: absolute; left: 0; top: 12px; bottom: 12px; width: 3px;
  border-radius: 2px; background: var(--volt-deep);
}
.live-slot.is-next { border-color: var(--volt); box-shadow: var(--volt-glow-soft); }
.live-slot.is-next::before {
  background: linear-gradient(180deg, var(--volt-hi), var(--volt));
}
.live-slot-when {
  font: 700 .92rem var(--font-mono); color: var(--volt-hi);
  min-width: 132px;
}
.live-slot-what { font: 600 1rem var(--font-ui); color: var(--chrome); flex: 1 1 auto; }
.live-slot-where { font: 600 .76rem var(--font-mono); color: var(--chrome-soft); }
.live-slot-next {
  font: 700 .64rem var(--font-mono); letter-spacing: .14em; text-transform: uppercase;
  color: var(--volt-on); background: var(--volt); padding: 3px 8px; border-radius: 4px;
}
.live-fine { margin-top: 14px; font: 400 .82rem/1.5 var(--font-ui); color: var(--chrome-soft); }

/* ── Platform tiles ──────────────────────────────────────────────── */
.live-platforms {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px;
}
.live-plat {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none;
  background: rgba(8, 22, 34, .6);
  border: 1px solid rgba(42, 167, 255, .22); border-radius: 10px;
  padding: 18px 20px 20px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.live-plat::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--volt-deep), var(--volt) 55%, var(--volt-hi));
  opacity: .55;
}
.live-plat:hover { border-color: var(--volt); box-shadow: var(--volt-glow-soft); }
.live-plat:hover::before { opacity: 1; }
.live-plat.is-on { border-color: var(--volt); box-shadow: var(--volt-glow-soft); }
.live-plat-name {
  display: inline-flex; align-items: center; gap: 8px;
  font: 700 1.02rem var(--font-ui); color: #eaf4fb;
}
.live-plat-note { font: 400 .86rem/1.45 var(--font-ui); color: var(--chrome-soft); }

/* ── Clips ───────────────────────────────────────────────────────── */
.live-clips { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.live-clip {
  display: flex; flex-direction: column; gap: 6px; text-decoration: none;
  background: rgba(8, 22, 34, .6);
  border: 1px solid rgba(42, 167, 255, .22); border-radius: 10px;
  padding: 16px 18px;
}
.live-clip:hover { border-color: var(--volt); }
.live-clip-title { font: 600 .98rem/1.35 var(--font-ui); color: #eaf4fb; }
.live-clip-where { font: 600 .74rem var(--font-mono); letter-spacing: .1em; color: var(--volt-hi); }

/* ── Nav entry ───────────────────────────────────────────────────── */
.nav .nav-live { color: var(--volt-hi); }
.nav .nav-live:hover { color: var(--volt); }
.nav .nav-live.is-on::after {
  content: ''; display: inline-block; width: 7px; height: 7px; margin-left: 6px;
  border-radius: 50%; background: var(--volt);
  box-shadow: 0 0 8px rgba(42, 167, 255, .9);
  vertical-align: middle;
}

/* The green scoreboard dot already animates only when motion is welcome; the
   blue one has to opt in the same way rather than inheriting by accident. */
@media (prefers-reduced-motion: no-preference) {
  .live-dot-volt { animation: livepulse 1.6s ease-in-out infinite; }
}
