/* =====================================================================
   STRUCK BY LIGHTNING ($SBL) — landing styles
   Aesthetic: brutalist hazard-yard. Hard edges, hazard yellow, storm dark.
   ===================================================================== */

:root {
  --bg:        #0a0a0f;
  --bg-1:      #10101a;
  --bg-2:      #16162a;
  --bg-3:      #1f1f37;
  --ink:       #f4f4ff;
  --ink-dim:   #9a9ab2;
  --ink-mute:  #5e5e7a;
  --volt:      #fff200;      /* hazard yellow, primary accent */
  --volt-soft: #fffb7a;
  --volt-deep: #b9a800;
  --danger:    #ff3b1f;      /* warning / risk red-orange */
  --storm:     #3a1f6b;      /* cloud purple */
  --line:      rgba(255, 242, 0, 0.18);
  --line-soft: rgba(255, 242, 0, 0.08);

  --display:   'Monoton', 'Big Shoulders Display', system-ui;
  --sans:      'Big Shoulders Display', system-ui;
  --mono:      'JetBrains Mono', ui-monospace, monospace;

  --container: 1240px;
  --pad:       clamp(1rem, 4vw, 3rem);
  --radius:    0px; /* brutalist: no rounding */
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--mono);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
code { font-family: var(--mono); }

::selection { background: var(--volt); color: var(--bg); }

/* =====================================================================
   ATMOSPHERIC LAYERS (fixed behind everything)
   ===================================================================== */

.storm-bg {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse 80% 60% at 15% -10%, rgba(58, 31, 107, 0.55), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 110%, rgba(255, 242, 0, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(58, 31, 107, 0.25), transparent 70%),
    var(--bg);
}
.storm-bg::after {
  /* faint grid for that engineering / blueprint feel */
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 30%, transparent 90%);
}

.scanlines {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(255,255,255,0.018) 2px 3px
  );
  mix-blend-mode: overlay;
}

.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: 0.14; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.lightning-flash {
  position: fixed; inset: 0; z-index: 95;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,242,0,0.6) 60%, transparent 95%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 60ms linear;
}
.lightning-flash.is-strike { animation: strike 540ms ease-out; }
@keyframes strike {
  0%   { opacity: 0; }
  6%   { opacity: 0.85; }
  12%  { opacity: 0.05; }
  18%  { opacity: 0.7; }
  28%  { opacity: 0.0; }
  44%  { opacity: 0.5; }
  60%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ===== bolt + meme character flashed in at the strike's impact point =====
   Sit above the white .lightning-flash overlay (z-index 95) so both stay
   visible during the strike. */
.sbl-bolt {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  animation: sbl-bolt-flash 520ms ease-out;
}
.sbl-bolt__glow {
  fill: none;
  stroke: rgba(150,200,255,0.55);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(4px);
}
.sbl-bolt__core {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(180,220,255,0.95));
}
@keyframes sbl-bolt-flash {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  38%  { opacity: 1; }
  52%  { opacity: 0.35; }
  68%  { opacity: 1; }
  100% { opacity: 0; }
}

.sbl-char {
  position: fixed;
  /* Uniform portrait box: every image scales to fit inside the same footprint
     (object-fit: contain keeps each one's aspect ratio, no stretching), so a
     tall image and a wide image take up the same space. */
  width: clamp(120px, 14vw, 180px);
  height: clamp(150px, 18vw, 220px);
  object-fit: contain;
  pointer-events: none;
  z-index: 9999;
  transform: var(--char-tf, translate(-50%, -4%));
  transform-origin: center top;
  filter: drop-shadow(0 0 10px rgba(180,220,255,0.9)) brightness(1.12);
  animation: sbl-char-zap 520ms ease-out;
}
/* Landscape art gets a wider, larger box so it doesn't read tiny next to the
   portrait characters. Applied in JS when naturalWidth > naturalHeight. */
.sbl-char--wide {
  width: clamp(220px, 30vw, 380px);
  height: clamp(130px, 18vw, 230px);
}
/* Make the ∞ "VIBES" stat read bigger than the other three stats. */
.hero__stats b.infinity {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 0.8;
}
@keyframes sbl-char-zap {
  0%   { opacity: 0; margin-left: 0; }
  12%  { opacity: 1; }
  28%  { margin-left: -3px; }
  44%  { margin-left: 3px; opacity: 1; }
  60%  { margin-left: -2px; }
  78%  { margin-left: 2px; opacity: 0.9; }
  100% { opacity: 0; margin-left: 0; }
}

/* =====================================================================
   MARQUEE
   ===================================================================== */

.marquee {
  background: var(--volt);
  color: var(--bg);
  overflow: hidden;
  border-block: 3px solid var(--bg);
  position: relative;
}
.marquee--top {
  position: sticky; top: 0;
  z-index: 80;
  border-top: 0;
}
.marquee__track {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  padding: 10px 0;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  animation: scroll-x 38s linear infinite;
  will-change: transform;
}
.marquee__track > span { padding-inline: 0.5rem; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   NAV
   ===================================================================== */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem var(--pad);
  position: relative;
  z-index: 60;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--volt);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.08em;
}
.nav__brand .bolt-icon {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--volt);
  color: var(--bg);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.nav__wordmark { font-size: 1.15rem; }

.nav__links {
  display: flex;
  gap: 1.75rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
}
.nav__links a { transition: color .15s; position: relative; padding: .25rem 0; }
.nav__links a:hover { color: var(--volt); }
.nav__links a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--volt);
}

.nav__cta { padding: 0.6rem 1rem; font-size: 0.82rem; }

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

/* =====================================================================
   BUTTONS
   ===================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  border: 2px solid var(--bg);
  background: var(--ink);
  color: var(--bg);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
  white-space: nowrap;
}
.btn--volt {
  background: var(--volt);
  color: var(--bg);
  border-color: var(--bg);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.btn--volt:hover,
.btn--volt:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--ink), 0 0 36px rgba(255, 242, 0, 0.35);
  outline: none;
}
.btn--volt:active { transform: translate(0, 0); box-shadow: 0 0 0 0 var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--volt);
  border: 2px solid var(--volt);
  box-shadow: 6px 6px 0 0 var(--volt-deep);
}
.btn--ghost:hover {
  background: var(--volt);
  color: var(--bg);
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--volt-deep);
}

.btn--lg { padding: 1.15rem 1.9rem; font-size: 1.1rem; }

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(4rem, 10vw, 7rem);
  text-align: center;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  margin-bottom: 2.5rem;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--volt);
  box-shadow: 0 0 8px var(--volt);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.5; }
}

.wordmark {
  font-family: var(--display);
  font-weight: 400;       /* Monoton has only 400 */
  line-height: 0.82;
  font-size: clamp(2.6rem, 11vw, 8.5rem);
  letter-spacing: 0.005em;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  padding-inline: 0.1em;        /* breathing room so the skewed edges never clip */
  transform: skewX(-1deg);

  /* current-through-the-letters effect */
  background:
    /* travelling white-hot streak (layer 1) */
    linear-gradient(
      95deg,
      transparent 0%,
      transparent 34%,
      rgba(255, 255, 255, 0.55) 42%,
      #ffffff 47%,
      rgba(255, 255, 240, 0.95) 49%,
      rgba(255, 255, 255, 0.55) 54%,
      transparent 62%,
      transparent 100%
    ),
    /* secondary smaller pulse, runs slightly behind (layer 2) */
    linear-gradient(
      95deg,
      transparent 0%,
      transparent 70%,
      rgba(255, 255, 255, 0.45) 75%,
      rgba(255, 255, 255, 0.85) 77%,
      rgba(255, 255, 255, 0.45) 79%,
      transparent 84%,
      transparent 100%
    ),
    /* vertical glow body (layer 3 — the steady volt yellow) */
    linear-gradient(180deg, #c8b100 0%, #fff200 38%, #fff48a 50%, #fff200 62%, #c8b100 100%);
  background-size: 320% 100%, 260% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-position: -130% 0%, -130% 0%, 0% 0%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;

  /* glow + brutalist hard offset shadow — use filter so it works with transparent fill */
  filter:
    drop-shadow(0 0 18px rgba(255, 242, 0, 0.4))
    drop-shadow(0 0 60px rgba(255, 242, 0, 0.15))
    drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.78));

  animation:
    wm-charge   3.6s linear infinite,
    wm-flicker  7.4s ease-in-out infinite;
}

/* a brief, synced surge when JS fires a lightning strike */
.wordmark.is-charged {
  filter:
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 90px rgba(255, 242, 0, 0.7))
    drop-shadow(6px 6px 0 rgba(0, 0, 0, 0.78))
    brightness(1.7) contrast(1.1);
}

.wordmark__line { display: block; }
.wordmark__line--by {
  font-size: 0.42em;
  letter-spacing: 0.3em;
  padding: 0.6em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  /* opt out of the gradient — keep this line as solid ink */
  -webkit-text-fill-color: var(--ink);
          color: var(--ink);
}
.wordmark__line--by .wordmark__bolt {
  -webkit-text-fill-color: var(--volt);
          color: var(--volt);
}

@keyframes wm-charge {
  from { background-position: -130% 0%, -160% 0%, 0% 0%; }
  to   { background-position:  230% 0%,  260% 0%, 0% 0%; }
}

@keyframes wm-flicker {
  0%, 87%, 100% { opacity: 1; }
  88%           { opacity: 0.55; }
  89%           { opacity: 1; }
  90%           { opacity: 0.3; }
  91%           { opacity: 1; }
}
.wordmark__bolt {
  color: var(--volt);
  display: inline-flex;
  animation: hover-bolt 4s ease-in-out infinite;
}
@keyframes hover-bolt {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-6px) rotate(8deg); }
}

.hero__tag {
  font-family: var(--mono);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-dim);
  max-width: 38ch;
  margin: 2.2rem auto 0;
  line-height: 1.5;
}
.hero__tag strong {
  color: var(--volt);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: center;
  margin: 2.6rem auto 0;
}

/* CONTRACT ADDRESS PILL */
.ca {
  display: inline-flex;
  align-items: stretch;
  margin: 2.4rem auto 0;
  max-width: min(640px, 100%);
  border: 2px solid var(--volt);
  background: rgba(0,0,0,0.55);
  font-family: var(--mono);
  font-size: 0.85rem;
  position: relative;
}
.ca::before {
  content: ''; position: absolute; inset: -6px;
  border: 1px dashed var(--volt-deep);
  pointer-events: none;
  opacity: 0.5;
}
.ca__tag {
  display: inline-grid; place-items: center;
  padding: 0 1rem;
  background: var(--volt);
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}
.ca__addr {
  flex: 1;
  padding: 0.85rem 1rem;
  overflow-x: auto;
  white-space: nowrap;
  color: var(--volt-soft);
  letter-spacing: 0.02em;
  scrollbar-width: thin;
  scrollbar-color: var(--volt-deep) transparent;
}
.ca__copy {
  padding: 0 1.2rem;
  background: var(--bg);
  color: var(--volt);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  border-left: 2px solid var(--volt);
  transition: background 0.15s, color 0.15s;
}
.ca__copy:hover { background: var(--volt); color: var(--bg); }
.ca__copy.is-copied { background: var(--volt); color: var(--bg); }

/* HERO QUICK STATS */
.hero__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 4rem auto 0;
  max-width: 880px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero__stats li {
  padding: 1.25rem 0.5rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.hero__stats li:last-child { border-right: 0; }
.hero__stats b {
  display: block;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--volt);
  letter-spacing: 0.05em;
}
.hero__stats span {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 640px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats li:nth-child(2n) { border-right: 0; }
  .hero__stats li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* =====================================================================
   CAUTION TAPE DIVIDER
   ===================================================================== */

.tape {
  margin: clamp(2rem, 5vw, 4rem) 0;
  transform: rotate(-1.2deg);
  position: relative;
  z-index: 5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.tape__stripes {
  height: 18px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--volt) 0 24px,
    var(--bg) 24px 48px
  );
}
.tape__text {
  background: var(--bg);
  color: var(--volt);
  border-block: 2px solid var(--volt);
  overflow: hidden;
}
.tape__text .marquee__track {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  animation-duration: 26s;
}

/* =====================================================================
   GENERIC SECTION
   ===================================================================== */

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad);
}
.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num title"
    ".   kicker";
  gap: 0.4rem 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--volt);
  padding-bottom: 1.5rem;
  position: relative;
}
.section__head::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 80px;
  background: var(--danger);
}
.section__num {
  grid-area: num;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--bg);
  background: var(--volt);
  padding: 0.4rem 0.7rem;
  letter-spacing: 0.18em;
  align-self: start;
  margin-top: 0.5rem;
}
.section__title {
  grid-area: title;
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
}
.section__title .slash { color: var(--volt); }
.section__kicker {
  grid-area: kicker;
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--ink-dim);
  margin-top: 0.6rem;
  max-width: 50ch;
}

/* =====================================================================
   TOKENOMICS
   ===================================================================== */

.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--volt);
  background: rgba(0,0,0,0.4);
}
.tg-cell {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tg-cell:nth-child(4n) { border-right: 0; }
.tg-cell:last-child   { border-bottom: 0; }
.tg-cell--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 2.5rem 2rem;
  background:
    radial-gradient(ellipse at top right, rgba(255,242,0,0.10), transparent 60%),
    rgba(0,0,0,0.4);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tg-cell--hero::before {
  content: '⚡';
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 2rem;
  color: var(--volt);
  opacity: 0.5;
}
.tg-cell--wide {
  grid-column: span 4;
  border-right: 0;
  border-bottom: 0;
  padding: 2rem 2rem 2.4rem;
}
.tg-num {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: var(--volt);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.tg-num--small {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.tg-cell--hero .tg-num {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}
.tg-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 0.6rem;
}
.tg-sub {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--ink-dim);
  margin-top: 1.2rem;
  line-height: 1.55;
  max-width: 40ch;
}

.tg-bar {
  display: flex;
  height: 28px;
  border: 1px solid var(--volt);
  background: var(--bg);
  margin-bottom: 1rem;
}
.tg-bar__seg { height: 100%; }
.tg-bar__seg:nth-child(1) {
  background-image: repeating-linear-gradient(
    -45deg,
    var(--volt) 0 8px,
    rgba(0,0,0,0.18) 8px 16px
  );
}
.tg-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.tg-legend i {
  display: inline-block;
  width: 12px; height: 12px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

@media (max-width: 880px) {
  .tokenomics-grid { grid-template-columns: repeat(2, 1fr); }
  .tg-cell:nth-child(4n) { border-right: 1px solid var(--line); }
  .tg-cell:nth-child(2n) { border-right: 0; }
  .tg-cell--hero { grid-column: span 2; grid-row: auto; }
  .tg-cell--wide { grid-column: span 2; }
}

/* =====================================================================
   ROADMAP / PHASES
   ===================================================================== */

.phases {
  list-style: none;
  display: grid;
  gap: 0;
  border-left: 4px solid var(--volt);
  margin-left: 1rem;
  position: relative;
}
.phases::before {
  /* fake "bolt" zigzag along the line */
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: -4px;
  width: 4px;
  background-image: linear-gradient(180deg, var(--volt), var(--volt-deep), var(--volt));
  opacity: 0.6;
}
.phase {
  position: relative;
  padding: 2.4rem 1rem 2.4rem 3rem;
  border-bottom: 1px dashed var(--line);
}
.phase:last-child { border-bottom: 0; }
.phase::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 2.4rem;
  width: 24px; height: 24px;
  background: var(--volt);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 16px var(--volt);
}
.phase__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.phase__num {
  color: var(--volt);
  font-weight: 800;
}
.phase__chip {
  padding: 0.2rem 0.55rem;
  background: var(--volt);
  color: var(--bg);
  font-weight: 800;
}
.phase__chip--queued {
  background: transparent;
  color: var(--ink-dim);
  border: 1px solid var(--ink-mute);
}
.phase__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.phase__body {
  font-family: var(--mono);
  font-size: 0.97rem;
  color: var(--ink-dim);
  max-width: 60ch;
}

/* =====================================================================
   HOW TO BUY / STEPS
   ===================================================================== */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--volt);
}
.step {
  padding: 2rem 1.6rem 2.2rem;
  border-right: 1px solid var(--line);
  position: relative;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,242,0,0.025) 100%);
  transition: background 0.2s;
}
.step:hover {
  background: rgba(255, 242, 0, 0.06);
}
.step:last-child { border-right: 0; }
.step__num {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 4.5rem;
  color: var(--volt);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  text-shadow: 4px 4px 0 var(--bg);
}
.step__title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.step p {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--ink-dim);
  line-height: 1.6;
}
.step code {
  color: var(--volt);
  background: rgba(255, 242, 0, 0.08);
  padding: 0 0.3rem;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
}

/* =====================================================================
   SOCIALS
   ===================================================================== */

.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
/* odd number of cards: let the lone trailing card span the full row */
.socials-grid > .social:last-child:nth-child(odd) { grid-column: 1 / -1; }
.social {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "label arrow"
    "handle arrow";
  align-items: center;
  padding: 1.8rem 1.6rem;
  border: 2px solid var(--volt);
  background: rgba(0,0,0,0.35);
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.social::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--volt);
  transform: translateY(101%);
  transition: transform 0.25s cubic-bezier(.7,0,.2,1);
  z-index: 0;
}
.social > * { position: relative; z-index: 1; }
.social:hover {
  box-shadow: 8px 8px 0 0 var(--volt-deep);
  transform: translate(-4px, -4px);
}
.social:hover::before { transform: translateY(0); }
.social:hover .social__label,
.social:hover .social__handle,
.social:hover .social__arrow { color: var(--bg); }

.social__label {
  grid-area: label;
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.social__handle {
  grid-area: handle;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 0.25rem;
}
.social__arrow {
  grid-area: arrow;
  font-family: var(--sans);
  font-size: 2.4rem;
  color: var(--volt);
  align-self: center;
  transition: transform 0.2s;
}
.social:hover .social__arrow { transform: rotate(45deg) translate(2px, -2px); }

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

/* =====================================================================
   FAQ
   ===================================================================== */

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.qa {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.qa[open] { background: rgba(255, 242, 0, 0.035); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.qa summary::-webkit-details-marker { display: none; }
.qa[open] summary { color: var(--volt); }

.qa__plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.qa__plus::before,
.qa__plus::after {
  content: ''; position: absolute;
  background: var(--volt);
}
.qa__plus::before { left: 0; right: 0; top: 50%; height: 3px; transform: translateY(-50%); }
.qa__plus::after  { top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); transition: transform 0.25s ease; }
.qa[open] .qa__plus::after { transform: translateX(-50%) scaleY(0); }

.qa p {
  padding: 0 0.25rem 1.4rem;
  font-family: var(--mono);
  font-size: 0.95rem;
  color: var(--ink-dim);
  max-width: 70ch;
  line-height: 1.65;
}
.qa[open] p {
  animation: faq-in 0.3s ease both;
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.foot {
  border-top: 2px solid var(--volt);
  margin-top: 4rem;
  background: rgba(0,0,0,0.5);
}
.foot__row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.6rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  flex-wrap: wrap;
}
.foot__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--volt);
  font-weight: 800;
}
.foot__legal {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.4rem var(--pad) 2.4rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-mute);
  line-height: 1.7;
  max-width: 80ch;
}

/* =====================================================================
   AUDIO TOGGLE
   ===================================================================== */

.audio-toggle {
  position: fixed;
  bottom: 1.4rem;
  left: 1.4rem;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.9rem;
  background: rgba(10, 10, 15, 0.85);
  color: var(--volt);
  border: 2px solid var(--volt);
  font-family: var(--mono);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s;
  backdrop-filter: blur(4px);
}
.audio-toggle:hover {
  background: var(--volt);
  color: var(--bg);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--volt-deep);
}
.audio-toggle__icon { display: inline-flex; }
.audio-toggle .audio-toggle__icon--on  { display: none; }
.audio-toggle .audio-toggle__icon--off { display: inline-flex; }
.audio-toggle[aria-pressed="true"] .audio-toggle__icon--on  { display: inline-flex; }
.audio-toggle[aria-pressed="true"] .audio-toggle__icon--off { display: none; }
.audio-toggle[aria-pressed="true"] {
  background: var(--volt);
  color: var(--bg);
}
.audio-toggle[aria-pressed="true"]:hover {
  background: var(--bg);
  color: var(--volt);
}

@media (max-width: 480px) {
  .audio-toggle {
    bottom: 1rem;
    left: 1rem;
    padding: 0.55rem 0.7rem;
    font-size: 0.62rem;
  }
  .audio-toggle__label { display: none; }
}

/* =====================================================================
   TOAST
   ===================================================================== */

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--volt);
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid var(--bg);
  box-shadow: 6px 6px 0 0 var(--ink);
  z-index: 200;
  transition: transform 0.25s cubic-bezier(.7,0,.2,1);
  pointer-events: none;
}
.toast.is-show {
  transform: translateX(-50%) translateY(0);
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
  .marquee__track,
  .wordmark__bolt,
  .hero__eyebrow .dot,
  .lightning-flash { animation: none !important; }
  html { scroll-behavior: auto; }
}
