/* =========================================================
   BIT & BEAT — pixel rap landing
   ========================================================= */

:root {
  /* palette: neon */
  --bg-0: #0a0620;
  --bg-1: #110a30;
  --bg-2: #1a0f42;
  --ink: #f5f0ff;
  --ink-dim: #b7a8e0;
  --ink-mute: #7766a8;

  --pink:   #ff4de2;
  --cyan:   #4dd8ff;
  --yellow: #ffd23f;
  --green:  #3dff9a;
  --red:    #ff3b6b;
  --violet: #8b4dff;

  --stroke: #2a1a60;
  --card:   #170c38;
  --card-2: #1e0f48;

  --shadow-hard: 0 6px 0 #000;
}

/* palette: sunset */
html[data-pal="sunset"] {
  --bg-0: #2a0a2f;
  --bg-1: #4a1236;
  --bg-2: #7a1d42;
  --pink: #ff7a4d;
  --cyan: #ffd23f;
  --yellow: #ffb84d;
  --violet: #ff4d8a;
  --stroke: #5a1a40;
  --card: #3a0d35;
  --card-2: #50133e;
  --ink-dim: #ffd0a8;
}
/* palette: underground */
html[data-pal="under"] {
  --bg-0: #070910;
  --bg-1: #0c1018;
  --bg-2: #141820;
  --pink: #ff3b3b;
  --cyan: #8affc1;
  --yellow: #f7c948;
  --violet: #6b6b6b;
  --stroke: #1a1f2a;
  --card: #10141c;
  --card-2: #171d28;
  --ink: #f0f2f5;
  --ink-dim: #9aa3ae;
}
/* palette: arcade */
html[data-pal="arcade"] {
  --bg-0: #000a1a;
  --bg-1: #001833;
  --bg-2: #002b5c;
  --pink: #ff00a8;
  --cyan: #00f0ff;
  --yellow: #fff200;
  --green: #00ff88;
  --violet: #7a00ff;
  --stroke: #0a2d5a;
  --card: #001530;
  --card-2: #002247;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img.pix, .pix {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

a { color: inherit; text-decoration: none; }

.n-pink   { color: var(--pink);   text-shadow: 0 0 16px color-mix(in oklab, var(--pink) 50%, transparent); }
.n-cyan   { color: var(--cyan);   text-shadow: 0 0 16px color-mix(in oklab, var(--cyan) 50%, transparent); }
.n-yellow { color: var(--yellow); text-shadow: 0 0 16px color-mix(in oklab, var(--yellow) 50%, transparent); }
.n-white  { color: #fff; }

/* ========== CRT overlay ========== */
.crt {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
  opacity: calc(var(--scan, 35) / 100);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0.25) 0px,
      rgba(0,0,0,0.25) 1px,
      transparent 1px,
      transparent 3px
    );
}
.crt::after {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
}

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  backdrop-filter: blur(8px);
  background: color-mix(in oklab, var(--bg-0) 70%, transparent);
  border-bottom: 2px solid var(--stroke);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { width: 38px; height: 38px; border-radius: 6px; border: 2px solid var(--stroke); }
.logo-wordmark {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex; gap: 2px;
}
.nav-links { display: flex; gap: 28px; font-size: 13px; letter-spacing: 1.5px; font-weight: 600; }
.nav-links a { color: var(--ink-dim); transition: color .15s; }
.nav-links a:hover { color: var(--cyan); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px; letter-spacing: 1px;
  padding: 14px 20px;
  border: 3px solid #000;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s, filter .15s;
  user-select: none;
  position: relative;
}
.btn-sm { padding: 10px 14px; font-size: 10px; }
.btn-lg { padding: 18px 26px; font-size: 14px; }
.btn-primary {
  background: var(--yellow);
  color: #110a30;
  box-shadow: 0 6px 0 #000, 0 0 24px color-mix(in oklab, var(--yellow) 40%, transparent);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 #000, 0 0 36px color-mix(in oklab, var(--yellow) 60%, transparent); }
.btn-primary:active { transform: translateY(4px); box-shadow: 0 2px 0 #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--cyan);
  box-shadow: 0 6px 0 color-mix(in oklab, var(--cyan) 60%, #000);
}
.btn-ghost:hover { background: color-mix(in oklab, var(--cyan) 10%, transparent); }
.btn-icon {
  width: 20px; height: 20px; display: inline-grid; place-items: center;
  background: #110a30; color: var(--yellow);
  border: 2px solid #000;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 80px 28px 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, color-mix(in oklab, var(--violet) 30%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 60%, var(--bg-2) 100%);
}
.sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, color-mix(in oklab, var(--pink) 18%, transparent), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 25%, color-mix(in oklab, var(--cyan) 18%, transparent), transparent 60%);
}
.stars { position: absolute; inset: 0; }
.stars i {
  position: absolute; width: 2px; height: 2px; background: #fff; opacity: .6;
  box-shadow: 0 0 4px #fff;
}
.skyline {
  position: absolute; left: 0; right: 0; bottom: 120px; height: 260px;
  background:
    /* buildings made from linear-gradients (pixel style) */
    repeating-linear-gradient(90deg,
      transparent 0 40px,
      rgba(255,77,226,.06) 40px 42px,
      transparent 42px 82px);
  pointer-events: none;
}
.street {
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background:
    linear-gradient(180deg, transparent, color-mix(in oklab, var(--bg-0) 80%, #000)),
    repeating-linear-gradient(90deg,
      color-mix(in oklab, var(--stroke) 80%, #000) 0 4px,
      transparent 4px 16px);
  border-top: 3px solid var(--stroke);
}
/* pixel buildings */
.skyline::before, .skyline::after {
  content:""; position: absolute; bottom: 0;
  width: 100%; height: 100%;
  background-repeat: repeat-x;
  background-size: 160px 240px;
}
.skyline::before {
  background-image:
    linear-gradient(180deg, transparent 30%, #1a0a40 30%),
    radial-gradient(4px 4px at 20px 50%, var(--yellow), transparent 70%),
    radial-gradient(4px 4px at 60px 60%, var(--cyan),  transparent 70%),
    radial-gradient(4px 4px at 100px 45%, var(--pink), transparent 70%),
    radial-gradient(4px 4px at 130px 70%, var(--yellow), transparent 70%);
  opacity: .7;
}
.skyline::after {
  background-image: linear-gradient(180deg, transparent 50%, #0a0420 50%);
  background-size: 90px 180px;
  opacity: .85;
}

/* graffiti tags */
.tag {
  position: absolute;
  font-family: 'Press Start 2P', monospace;
  font-size: 22px;
  color: var(--pink);
  text-shadow:
    3px 3px 0 #000,
    6px 6px 0 color-mix(in oklab, var(--pink) 40%, #000);
  transform: rotate(-6deg);
  opacity: .55;
  pointer-events: none;
  letter-spacing: 1px;
}
.tag-1 { top: 22%; left: 4%; color: var(--pink); }
.tag-2 { top: 60%; right: 5%; color: var(--cyan); transform: rotate(4deg); }
.tag-3 { top: 40%; right: 12%; color: var(--yellow); transform: rotate(-8deg); font-size: 16px; }
.tag-4 { top: 70%; left: 7%; color: var(--green); transform: rotate(3deg); font-size: 16px; }
@media (max-width: 820px) { .tag { display:none; } }

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px; align-items: center;
  padding: 40px 0 100px;
}
@media (max-width: 980px) {
  .hero { padding-top: 36px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 60px; }
  .eyebrow { display: none; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'VT323', monospace;
  font-size: 20px; letter-spacing: 2px;
  color: var(--cyan);
  background: color-mix(in oklab, var(--cyan) 12%, transparent);
  border: 2px solid color-mix(in oklab, var(--cyan) 40%, transparent);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.dot {
  width: 10px; height: 10px; background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: dot-pulse 1.2s infinite;
}
@keyframes dot-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(28px, 5.5vw, 64px);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: 1px;
}
.hero-title .line { display: block; }
.hero-title .line-1 {
  color: #fff;
  text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--violet);
}
.hero-title .line-2 {
  color: var(--yellow);
  text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--pink);
  margin-top: 8px;
}

.hero-sub {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-dim);
  max-width: 540px;
  margin: 0 0 32px;
}
@media (max-width: 980px) { .hero-sub { margin-inline: auto; } }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
@media (max-width: 980px) { .hero-ctas { justify-content: center; } }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 540px;
}
@media (max-width: 980px) { .hero-stats { max-width: 100%; margin-inline:auto; grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (max-width: 980px) { .hero-stats > div { padding: 8px 6px; } .hero-stats b { font-size: 13px; } .hero-stats span { font-size: 9px; } }
.hero-stats > div {
  padding: 12px;
  background: color-mix(in oklab, var(--card) 70%, transparent);
  border: 2px solid var(--stroke);
  text-align: left;
}
.hero-stats b {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  color: var(--cyan);
  margin-bottom: 4px;
}
.hero-stats span { font-size: 11px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 1px; }

/* ========== Hero phone ========== */
.hero-phone {
  position: relative;
  max-width: 380px;
  justify-self: center;
}
.phone-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(circle, color-mix(in oklab, var(--pink) 30%, transparent), transparent 65%);
  filter: blur(20px);
  z-index: -1;
  animation: pulse-glow 4s infinite;
}
@keyframes pulse-glow { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.08);opacity:1} }

.phone-frame {
  position: relative;
  border: 6px solid #000;
  border-radius: 44px;
  background: #000;
  padding: 10px;
  box-shadow:
    0 0 0 2px var(--stroke),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 80px color-mix(in oklab, var(--cyan) 30%, transparent);
  overflow: hidden;
}
.phone-frame::before {
  content:""; position:absolute; top: 14px; left:50%; transform:translateX(-50%);
  width: 90px; height: 20px; background: #000; border-radius: 12px; z-index: 2;
}
.phone-screen { display: block; width: 100%; border-radius: 34px; }

.float-char {
  position: absolute;
  height: 140px;
  filter: drop-shadow(0 6px 0 rgba(0,0,0,0.6)) drop-shadow(0 0 14px color-mix(in oklab, var(--cyan) 40%, transparent));
  animation: floaty 3s ease-in-out infinite;
  pointer-events: none;
}
.float-1 { left: -90px; bottom: 20px; animation-delay: 0s; }
.float-2 { right: -80px; top: 40px; animation-delay: 1s; }
@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.note {
  position: absolute;
  font-family: 'Press Start 2P', monospace;
  color: var(--yellow);
  font-size: 24px;
  text-shadow: 2px 2px 0 #000;
  opacity: 0;
  animation: note-float 3s infinite;
}
.note-1 { top: 10%; right: 10%; animation-delay: 0s; }
.note-2 { top: 30%; right: -10px; animation-delay: 1s; color: var(--pink); }
.note-3 { top: 20%; left: 20%; animation-delay: 2s; color: var(--cyan); }
@keyframes note-float {
  0% { opacity: 0; transform: translateY(0) rotate(-10deg); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-80px) rotate(20deg); }
}

/* ========== TICKER ========== */
.ticker {
  position: relative;
  border-top: 3px solid #000; border-bottom: 3px solid #000;
  background: var(--pink);
  color: #000;
  padding: 14px 0;
  overflow: hidden;
  font-family: 'Press Start 2P', monospace;
  font-size: 13px; letter-spacing: 2px;
  z-index: 2;
  transform: rotate(-1deg) translateY(20px);
  width: 100%;
  left: 0;
}
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
section { position: relative; }

.section-head {
  max-width: 1080px;
  margin: 0 auto 60px;
  padding: 100px 28px 0;
  text-align: center;
}
.kicker {
  font-family: 'VT323', monospace;
  color: var(--cyan);
  font-size: 22px; letter-spacing: 4px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(22px, 3.6vw, 42px);
  line-height: 1.25;
  margin: 0;
  text-shadow: 3px 3px 0 #000;
  letter-spacing: 1px;
}
.section-sub {
  color: var(--ink-dim);
  font-size: 17px;
  max-width: 580px;
  margin: 18px auto 0;
  line-height: 1.55;
}

/* ========== FEATURES ========== */
.features { padding: 0 28px 100px; }

/* bento grid */
.feat-bento {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}
.ft-hero { grid-column: span 2; grid-row: span 2; }
.ft-sq   { grid-column: span 1; grid-row: span 1; }
.ft-wide { grid-column: span 2; grid-row: span 1; }
@media (max-width: 980px) {
  .feat-bento { grid-template-columns: repeat(2, 1fr); }
  .ft-hero { grid-column: span 2; grid-row: span 2; }
  .ft-wide { grid-column: span 2; }
  .ft-sq { grid-column: span 1; }
}
@media (max-width: 560px) {
  .feat-bento { grid-template-columns: 1fr; }
  .ft-hero, .ft-wide, .ft-sq { grid-column: span 1; grid-row: auto; }
}

.ft {
  --c: var(--cyan);
  position: relative;
  background: var(--card);
  border: 3px solid #000;
  box-shadow: 0 6px 0 #000;
  padding: 18px 20px 20px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ft::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: var(--c);
}
.ft::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.02) 3px 4px);
  pointer-events: none;
}
.ft:hover {
  transform: translate(-3px, -5px);
  box-shadow: 0 11px 0 #000, 0 0 0 2px var(--c) inset;
}

.ft-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.ft-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 22px;
  color: var(--c);
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #000;
}
.ft-hero .ft-num { font-size: 34px; }
.ft-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px; letter-spacing: 1.5px;
  padding: 5px 8px;
  background: var(--bg-0);
  color: var(--c);
  border: 2px solid var(--c);
}

.ft-visual {
  display: grid; place-items: center;
  padding: 14px;
  margin-bottom: 14px;
  background: var(--bg-0);
  border: 2px solid #000;
  min-height: 90px;
  position: relative;
  overflow: hidden;
}
.ft-hero .ft-visual { min-height: 200px; padding: 22px; }
.ft-sq .ft-visual { min-height: 110px; }
.ft-wide .ft-visual { min-height: 110px; width: 140px; margin-bottom: 0; flex-shrink: 0; }
@media (max-width: 560px) {
  .ft-wide .ft-visual { width: 100%; margin-bottom: 14px; }
}

.ft-row {
  display: flex; gap: 16px; align-items: stretch;
}
@media (max-width: 560px) {
  .ft-row { flex-direction: column; }
}

.ft-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ft-body h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px; letter-spacing: 1px; margin: 0;
  color: var(--c);
}
.ft-hero .ft-body h3 { font-size: 16px; }
.ft-body p {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-dim);
  margin: 0;
}
.ft-hero .ft-body p { font-size: 15px; }

.ft-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 6px;
}
.ft-chips span {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px; letter-spacing: 1px;
  padding: 5px 7px;
  background: color-mix(in oklab, var(--c) 15%, transparent);
  color: var(--c);
  border: 2px solid color-mix(in oklab, var(--c) 50%, #000);
}

/* animated waveform inside hero visual */
.ft-waveform {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  display: flex; gap: 3px; align-items: flex-end;
  height: 30px;
}
.ft-waveform i {
  flex: 1; background: var(--pink);
  box-shadow: 0 0 6px color-mix(in oklab, var(--pink) 50%, transparent);
  animation: wave 1.2s ease-in-out infinite;
}
.ft-waveform i:nth-child(1){animation-delay:.0s}
.ft-waveform i:nth-child(2){animation-delay:.08s}
.ft-waveform i:nth-child(3){animation-delay:.16s}
.ft-waveform i:nth-child(4){animation-delay:.24s}
.ft-waveform i:nth-child(5){animation-delay:.32s}
.ft-waveform i:nth-child(6){animation-delay:.40s}
.ft-waveform i:nth-child(7){animation-delay:.48s}
.ft-waveform i:nth-child(8){animation-delay:.56s}
.ft-waveform i:nth-child(9){animation-delay:.48s}
.ft-waveform i:nth-child(10){animation-delay:.40s}
.ft-waveform i:nth-child(11){animation-delay:.32s}
.ft-waveform i:nth-child(12){animation-delay:.24s}
.ft-waveform i:nth-child(13){animation-delay:.16s}
.ft-waveform i:nth-child(14){animation-delay:.08s}
@keyframes wave {
  0%, 100% { height: 20%; }
  50% { height: 100%; }
}

/* enlarged pixel illustrations */
.mixer-lg { transform: scale(1.6); }
.battle-lg { transform: scale(1.4); }
.gear-lg { transform: scale(1.3); }
.ladder-lg { transform: scale(1.4); }
.stage-lg { transform: scale(1.2); }
.choicebox-lg { transform: scale(1.5); }

/* legacy feat-icon kept for other sections that may reference it */
.feat-icon {
  width: 80px; height: 80px;
  background: var(--bg-0);
  border: 2px solid var(--stroke);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}

/* mixer */
.mixer { display: flex; gap: 4px; padding: 6px; }
.fader {
  width: 8px; height: 50px; background: #000;
  border: 1px solid var(--stroke);
  position: relative;
}
.fader-knob {
  position: absolute; left: -4px; width: 16px; height: 8px;
  background: var(--pink);
  box-shadow: 0 0 6px var(--pink);
}

/* ladder (career) */
.ladder { width: 44px; height: 60px; position: relative; }
.ladder::before, .ladder::after {
  content:""; position: absolute; top: 0; bottom: 0; width: 3px; background: var(--cyan);
}
.ladder::before { left: 6px; }
.ladder::after { right: 6px; }
.rung { position: absolute; left: 4px; right: 4px; height: 3px; background: var(--cyan); }
.r1 { top: 8px; } .r2 { top: 22px; } .r3 { top: 36px; } .r4 { top: 50px; }
.ladder-star { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); color: var(--yellow); font-size: 14px; text-shadow: 0 0 8px var(--yellow); }

/* gear: cap + chain + sneaker */
.gear { position: relative; width: 60px; height: 60px; }
.cap {
  position: absolute; top: 2px; left: 10px; width: 32px; height: 14px;
  background: var(--red);
  border: 2px solid #000;
}
.cap::before {
  content:""; position: absolute; bottom: -4px; left: -8px; width: 20px; height: 4px;
  background: var(--red); border: 2px solid #000; border-top: none;
}
.chain {
  position: absolute; top: 28px; left: 6px; right: 6px;
  display: flex; justify-content: space-between;
}
.chain span { width: 4px; height: 4px; background: var(--yellow); box-shadow: 0 0 6px var(--yellow); }
.sneaker {
  position: absolute; bottom: 4px; left: 14px; width: 30px; height: 16px;
}
.sneaker-top { width: 22px; height: 8px; background: #fff; border: 2px solid #000; border-bottom: none; }
.sneaker-sole { width: 30px; height: 6px; background: var(--pink); border: 2px solid #000; margin-top: -1px; }

/* stage mini */
.stage-mini { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.speaker { width: 12px; height: 40px; background: #000; border: 2px solid var(--cyan); }
.mic { display: flex; flex-direction: column; align-items: center; }
.mic-head { width: 10px; height: 14px; background: #888; border: 2px solid #000; border-radius: 4px; }
.mic-stand { width: 2px; height: 26px; background: #444; }
.crowd {
  position: absolute; bottom: 8px; left: 12px; right: 12px; height: 6px;
  background:
    radial-gradient(3px 3px at 4px 0, #000, transparent 60%),
    radial-gradient(3px 3px at 12px 0, #000, transparent 60%),
    radial-gradient(3px 3px at 20px 0, #000, transparent 60%),
    radial-gradient(3px 3px at 28px 0, #000, transparent 60%),
    radial-gradient(3px 3px at 36px 0, #000, transparent 60%),
    radial-gradient(3px 3px at 44px 0, #000, transparent 60%);
}

/* battle */
.battle { position: relative; width: 60px; height: 60px; display: grid; place-items: center; }
.vs-l {
  font-family: 'Press Start 2P', monospace;
  color: var(--pink);
  font-size: 22px;
  text-shadow: 2px 2px 0 #000, 0 0 12px var(--pink);
}
.lightning {
  position: absolute; top: -8px; right: -8px; font-size: 18px;
  color: var(--yellow); text-shadow: 0 0 8px var(--yellow);
}

/* choicebox */
.choicebox { display: flex; gap: 6px; }
.chip {
  width: 24px; height: 24px; display: grid; place-items: center;
  background: var(--cyan); color: #000; font-family: 'Press Start 2P', monospace;
  font-size: 12px; border: 2px solid #000; box-shadow: 0 3px 0 #000;
}
.chip-b { background: var(--yellow); }

/* ========== CREW ========== */
.crew { padding: 0 0 120px; position: relative; }
.crew-stage {
  width: 100%; margin: 0;
  display: grid; grid-template-columns: 320px 1fr;
  gap: 40px;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--card) 60%, transparent), color-mix(in oklab, var(--card-2) 80%, transparent)),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.02) 3px 4px);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  box-shadow: 0 8px 0 #000;
  padding: 40px max(28px, calc((100% - 1100px) / 2 + 28px));
  position: relative;
  overflow: hidden;
}
.crew-stage::before {
  content: "STAGE · 01";
  position: absolute; top: 10px; right: 14px;
  font-family: 'Press Start 2P', monospace; font-size: 10px;
  color: var(--ink-mute); letter-spacing: 2px;
}
@media (max-width: 820px) {
  .crew-stage { grid-template-columns: 1fr; padding: 24px; }
}

.crew-spotlight {
  position: relative;
  display: grid; place-items: center;
  padding: 20px;
}
.spot-ring {
  position: absolute; inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--yellow) 30%, transparent), transparent 60%);
  animation: spot-rotate 8s linear infinite;
}
@keyframes spot-rotate {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}
.crew-active-img {
  height: 360px;
  filter: drop-shadow(6px 6px 0 #000) drop-shadow(0 0 24px color-mix(in oklab, var(--pink) 40%, transparent));
  position: relative;
  z-index: 2;
  animation: char-bob 2.4s ease-in-out infinite;
}
@keyframes char-bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.crew-info { display: flex; flex-direction: column; justify-content: center; }
.crew-name {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  text-shadow: 4px 4px 0 var(--pink);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.crew-tag {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--cyan);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.crew-bio {
  font-size: 17px; line-height: 1.6; color: var(--ink-dim);
  margin: 0 0 28px;
  max-width: 520px;
}

.crew-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 20px; max-width: 520px; }
.stat { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 10px; }
.stat span {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--ink-dim);
  letter-spacing: 1px;
}
.bar { height: 12px; background: #000; border: 2px solid var(--stroke); }
.bar i {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  width: 0;
  transition: width .6s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 8px color-mix(in oklab, var(--pink) 40%, transparent);
}

.crew-select {
  grid-column: 1 / -1;
  display: flex; justify-content: center; gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.crew-chip {
  width: 78px; height: 96px;
  background: var(--bg-0);
  border: 3px solid #000;
  box-shadow: 0 4px 0 #000;
  cursor: pointer;
  display: grid; place-items: end center;
  overflow: hidden;
  position: relative;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.crew-chip img { height: 90px; }
.crew-chip:hover { transform: translateY(-3px); box-shadow: 0 7px 0 #000; }
.crew-chip.active {
  border-color: var(--yellow);
  box-shadow: 0 4px 0 #000, 0 0 20px var(--yellow);
}
.crew-chip .chip-nm {
  position: absolute; left: 0; right: 0; top: 4px;
  text-align: center;
  font-family: 'Press Start 2P', monospace; font-size: 8px;
  color: var(--yellow); letter-spacing: 1px;
}

/* ========== WORLD RAIL — phone mockups ========== */
.world { padding: 0 28px 120px; }
.world-rail {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: end;
}
@media (max-width: 1024px) {
  .world-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    gap: 18px;
    scrollbar-width: thin;
  }
  .world-phone { flex: 0 0 220px; scroll-snap-align: center; }
}

.world-phone {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s ease;
}
.world-phone:nth-child(odd)  { transform: translateY(0); }
.world-phone:nth-child(even) { transform: translateY(18px); }
.world-phone:hover { transform: translateY(-6px) !important; }
@media (max-width: 1024px) {
  .world-phone:nth-child(even) { transform: translateY(0); }
}

.wp-frame {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  background: #000;
  border: 4px solid #000;
  border-radius: 28px;
  padding: 6px;
  box-shadow:
    0 0 0 2px var(--stroke),
    0 14px 0 #000,
    0 0 40px color-mix(in oklab, var(--cyan) 25%, transparent);
  position: relative;
  overflow: hidden;
}
.wp-frame::before {
  content:""; position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 12px;
  background: #000; border-radius: 8px; z-index: 2;
}
.wp-frame img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  border-radius: 22px;
}

.world-phone figcaption {
  margin-top: 22px;
  text-align: center;
  padding: 10px 6px;
}
.world-phone figcaption b {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 2px 2px 0 #000;
}
.world-phone figcaption span {
  font-size: 13px;
  color: var(--ink-dim);
  line-height: 1.4;
}

/* ========== CAREER PATH ========== */
.career { padding: 0 28px 140px; }
.path {
  position: relative;
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; padding: 40px 0 0;
}
@media (max-width: 780px) { .path { grid-template-columns: 1fr; gap: 30px; } }

.path-line {
  position: absolute; left: 10%; right: 10%; top: 60px;
  height: 4px;
  background: repeating-linear-gradient(90deg,
    var(--cyan) 0 10px,
    transparent 10px 20px);
}
@media (max-width: 780px) { .path-line { display: none; } }

.path-step {
  position: relative;
  text-align: center;
}
.path-step::before {
  content: attr(data-lvl);
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.path-node {
  width: 40px; height: 40px;
  background: var(--bg-0);
  border: 3px solid var(--cyan);
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 16px color-mix(in oklab, var(--cyan) 50%, transparent);
}
.path-node-star {
  background: var(--yellow);
  border-color: #000;
  color: #000;
  display: grid; place-items: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  box-shadow: 0 0 24px var(--yellow);
  animation: final-pulse 1.8s infinite;
}
@keyframes final-pulse {
  0%,100% { box-shadow: 0 0 24px var(--yellow); }
  50% { box-shadow: 0 0 40px var(--yellow); }
}
.path-card {
  background: var(--card);
  border: 3px solid #000;
  box-shadow: 0 5px 0 #000;
  padding: 14px 12px;
  margin: 0 10px;
  min-height: 100px;
}
.path-card b {
  display: block; margin-bottom: 6px;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 1px;
}
.path-card span { font-size: 13px; color: var(--ink-dim); line-height: 1.5; }
.path-card-final b { color: var(--pink); }

/* progress line fill */
.path-line-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 0%;
  background: repeating-linear-gradient(90deg,
    var(--yellow) 0 10px,
    transparent 10px 20px);
  box-shadow: 0 0 12px var(--yellow);
  transition: width .7s cubic-bezier(.2,.8,.2,1);
}

/* interactive step states */
.path-step {
  cursor: pointer;
  transition: transform .25s ease;
}
.path-step:hover { transform: translateY(-4px); }
.path-step .path-node {
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.path-step.active .path-node {
  transform: scale(1.25);
  background: var(--yellow);
  border-color: #000;
  box-shadow: 0 0 28px var(--yellow);
}
.path-step.active .path-card {
  border-color: var(--yellow);
  box-shadow: 0 5px 0 #000, 0 0 0 2px var(--yellow) inset;
}
.path-step.active .path-card b { color: var(--yellow); }
.path-step.active::before { color: var(--yellow); }
.path-step.done .path-node {
  background: var(--cyan);
  border-color: #000;
}

/* mini stat bars */
.path-stats {
  margin-top: 12px;
  display: grid; gap: 6px;
  padding-top: 10px;
  border-top: 2px dashed color-mix(in oklab, var(--ink-dim) 40%, transparent);
}
.path-stats > div {
  display: grid; grid-template-columns: 58px 1fr; align-items: center; gap: 8px;
}
.path-stats em {
  font-style: normal;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--ink-mute);
  letter-spacing: 1px;
}
.path-stats i {
  display: block; height: 6px; width: 0;
  background: var(--cyan);
  box-shadow: 0 0 6px color-mix(in oklab, var(--cyan) 60%, transparent);
  transition: width 1s cubic-bezier(.2,.8,.2,1);
}
.path-step.inview .path-stats i { width: var(--w); }
.path-step.active .path-stats i { background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.path-card-final .path-stats i { background: var(--pink); box-shadow: 0 0 8px var(--pink); }

/* HUD under the path */
.path-hud {
  max-width: 1000px; margin: 40px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 14px 18px;
  background: var(--card);
  border: 3px solid #000;
  box-shadow: 0 5px 0 #000;
  font-family: 'Press Start 2P', monospace;
}
.path-hud-left, .path-hud-right { display: flex; flex-direction: column; gap: 6px; }
.path-hud-right { text-align: right; }
.path-hud-lbl { font-size: 8px; color: var(--ink-mute); letter-spacing: 1px; }
.path-hud-title { font-size: 12px; color: var(--yellow); letter-spacing: 1px; transition: color .25s ease; }
.path-hud-num { font-size: 14px; color: var(--cyan); letter-spacing: 1px; }
.path-card-final ~ * .path-hud-title { color: var(--pink); }
@media (max-width: 780px) {
  .path-hud { margin-top: 20px; }
  .path-hud-title { font-size: 10px; }
  .path-hud-num { font-size: 11px; }
}

/* ========== SECTION DIVIDER ========== */
.divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.divider .d-line {
  flex: 1;
  height: 3px;
  background: repeating-linear-gradient(90deg,
    color-mix(in oklab, var(--ink-mute) 70%, transparent) 0 8px,
    transparent 8px 16px);
}
.divider .d-blocks {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.divider .d-blocks i {
  width: 10px; height: 10px;
  background: var(--cyan);
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  display: inline-block;
  animation: d-blink 2.4s infinite;
}
.divider .d-blocks i:nth-child(2) {
  background: var(--yellow);
  animation-delay: .4s;
  transform: rotate(45deg);
}
.divider .d-blocks i:nth-child(3) {
  background: var(--pink);
  animation-delay: .8s;
}
@keyframes d-blink {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%      { opacity: .6; transform: translateY(-2px); }
}
.divider .d-blocks i:nth-child(2) {
  animation-name: d-blink-rot;
}
@keyframes d-blink-rot {
  0%, 100% { opacity: 1; transform: rotate(45deg) translateY(0); }
  50%      { opacity: .6; transform: rotate(45deg) translateY(-2px); }
}
@media (max-width: 640px) {
  .divider { padding: 24px 28px; gap: 10px; }
  .divider .d-blocks i { width: 8px; height: 8px; }
}

/* ========== QUOTES ========== */
.quotes { padding: 0 28px 120px; }

/* live stats chips */
.quotes-stats {
  max-width: 1100px; margin: 0 auto 28px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 820px) { .quotes-stats { grid-template-columns: repeat(2, 1fr); } }
.qs-chip {
  background: var(--card);
  border: 3px solid #000;
  box-shadow: 0 5px 0 #000;
  padding: 14px 12px;
  text-align: center;
  display: grid; gap: 6px;
}
.qs-chip b {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px; color: var(--yellow); letter-spacing: 1px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.qs-chip em {
  font-style: normal;
  font-family: 'Press Start 2P', monospace;
  font-size: 8px; color: var(--ink-mute); letter-spacing: 1px;
}
.live-dot {
  width: 8px; height: 8px; background: #ff3b3b; display: inline-block;
  box-shadow: 0 0 8px #ff3b3b;
  animation: live-pulse 1.2s infinite;
}
@keyframes live-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.quotes-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .quotes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .quotes-grid { grid-template-columns: 1fr; } }

.quote {
  --accent: var(--cyan);
  position: relative;
  background: var(--card);
  border: 3px solid #000;
  box-shadow: 0 6px 0 #000;
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.quote::before {
  content: "";
  position: absolute; left: -3px; top: -3px; bottom: -3px;
  width: 6px; background: var(--accent);
}
.quote:hover {
  transform: translate(-2px, -4px);
  box-shadow: 0 10px 0 #000, 0 0 0 2px var(--accent);
  border-color: var(--accent);
}

.q-head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center; gap: 10px;
}
.q-avatar {
  width: 36px; height: 36px;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
}
.q-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.q-meta b {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px; color: var(--ink); letter-spacing: 1px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.q-meta em {
  font-style: normal;
  font-size: 11px; color: var(--ink-mute);
}
.q-stars {
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 0 8px color-mix(in oklab, var(--yellow) 50%, transparent);
}

.quote p {
  font-size: 15px; line-height: 1.6; color: var(--ink);
  margin: 0; flex: 1;
}

.q-foot {
  display: flex; align-items: center; gap: 12px;
  padding-top: 10px;
  border-top: 2px dashed color-mix(in oklab, var(--ink-dim) 40%, transparent);
  font-size: 11px; color: var(--ink-mute);
  flex-wrap: wrap;
}
.q-like, .q-reply {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px; letter-spacing: 1px;
  transition: color .25s ease, transform .25s ease;
}
.quote:hover .q-like { color: var(--pink); transform: scale(1.05); }
.q-badge {
  margin-left: auto;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px; letter-spacing: 1px;
  padding: 5px 8px;
  background: var(--bg-0);
  color: var(--accent);
  border: 2px solid var(--accent);
}

/* ========== CTA ========== */
.cta {
  padding: 100px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, color-mix(in oklab, var(--pink) 20%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  border-top: 4px solid var(--pink);
  border-bottom: 4px solid var(--cyan);
}
.cta-scan {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent 0 6px,
      color-mix(in oklab, var(--cyan) 10%, transparent) 6px 7px);
  pointer-events: none;
}
.cta-icon {
  width: 96px; height: 96px; border-radius: 16px;
  border: 3px solid #000;
  box-shadow: 0 8px 0 #000, 0 0 48px color-mix(in oklab, var(--pink) 50%, transparent);
  margin-bottom: 30px;
  animation: icon-dance 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes icon-dance {
  0%,100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.cta-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(28px, 5vw, 56px);
  margin: 0 0 14px;
  text-shadow: 4px 4px 0 #000, 8px 8px 0 var(--violet);
  position: relative; z-index: 2;
}
.cta-sub {
  font-size: 18px; color: var(--ink-dim); max-width: 540px; margin: 0 auto 40px;
  position: relative; z-index: 2;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  background: #000;
  border: 3px solid #fff;
  box-shadow: 0 6px 0 #fff, 0 0 30px color-mix(in oklab, var(--cyan) 30%, transparent);
  transition: transform .12s, box-shadow .12s;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 9px 0 #fff; }
.store-icon {
  width: 36px; height: 36px;
  background:
    radial-gradient(circle at 50% 50%, var(--cyan) 20%, transparent 60%),
    radial-gradient(circle at 50% 50%, #fff 30%, transparent 30%);
  border: 2px solid #fff;
  position: relative;
}
.store-icon-tf {
  background: var(--yellow);
}
.store-icon::after {
  content: "⏵"; position: absolute; inset: 0; display: grid; place-items: center; color: #000;
  font-size: 20px;
}
.store-icon-tf::after { content: "✈"; }
.store-txt small {
  font-family: 'VT323', monospace; font-size: 14px;
  display: block; color: var(--ink-mute); letter-spacing: 2px;
}
.store-txt b {
  font-family: 'Press Start 2P', monospace; font-size: 14px; color: #fff;
}
.cta-chars { margin-top: 50px; display: flex; justify-content: center; gap: 30px; align-items: flex-end; }
.cc { height: 160px; filter: drop-shadow(4px 4px 0 #000); }
.cc-1 { transform: translateY(10px) rotate(-4deg); }
.cc-3 { transform: translateY(10px) rotate(4deg); }
@media (max-width: 640px) { .cc-1, .cc-3 { display: none; } }

/* ========== FOOTER ========== */
.foot {
  background: #000;
  padding: 40px 28px 24px;
  border-top: 3px solid var(--stroke);
}
.foot-top {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--stroke);
}
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand b {
  display: block; font-family: 'Press Start 2P', monospace; font-size: 12px; color: var(--cyan);
}
.foot-brand span { font-size: 12px; color: var(--ink-mute); }
.foot-links { display: flex; gap: 22px; font-size: 13px; color: var(--ink-dim); }
.foot-links a:hover { color: var(--pink); }
.foot-bot {
  max-width: 1200px; margin: 20px auto 0;
  font-family: 'Press Start 2P', monospace;
  font-size: 11px; color: var(--ink-mute);
  letter-spacing: 2px; text-align: center;
}
.cursor-blink { animation: blink 1s infinite step-end; color: var(--green); }
@keyframes blink { 50% { opacity: 0; } }

/* ========== TWEAKS PANEL ========== */
.tweaks {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 1000;
  width: 280px;
  background: var(--card);
  border: 3px solid #000;
  box-shadow: 0 6px 0 #000;
  padding: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
}
.tweaks-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.tweaks-head b {
  font-family: 'Press Start 2P', monospace; font-size: 12px; color: var(--yellow);
}
#tweaks-close {
  background: #000; color: var(--ink); border: 2px solid var(--stroke);
  width: 24px; height: 24px; cursor: pointer;
}
.tweaks-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
  border-top: 1px dashed var(--stroke);
}
.tweaks-row label { color: var(--ink-dim); text-transform: uppercase; letter-spacing: 1px; font-size: 11px; }
.tweaks-swatches { display: flex; gap: 6px; }
.sw {
  width: 28px; height: 28px; border: 2px solid #000; cursor: pointer;
  box-shadow: 0 3px 0 #000;
}
.sw-neon   { background: linear-gradient(135deg, #ff4de2, #4dd8ff); }
.sw-sunset { background: linear-gradient(135deg, #ff7a4d, #ff4d8a); }
.sw-under  { background: linear-gradient(135deg, #8affc1, #2a2a2a); }
.sw-arcade { background: linear-gradient(135deg, #ff00a8, #00f0ff); }
.tweaks-segmented { display: flex; border: 2px solid #000; }
.seg {
  background: #000; color: var(--ink-dim);
  border: none; padding: 4px 10px; font-size: 12px; cursor: pointer;
  font-family: 'Press Start 2P', monospace;
}
.seg.on { background: var(--yellow); color: #000; }

/* ========== UTILITIES / SCROLL ========== */
html { scroll-behavior: smooth; }
::selection { background: var(--pink); color: #000; }
