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

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dim:    #7a5f28;
  --bg:          #080b10;
  --bg2:         #0d1117;
  --bg3:         #111820;
  --panel:       #0f1922;
  --border:      rgba(201,168,76,0.18);
  --border-soft: rgba(255,255,255,0.06);
  --text:        #d6dde8;
  --muted:       #6b7a8d;
  --red:         #e05252;
  --blue-accent: #4a9eff;
  --green:       #4ecf7c;
  --radius:      8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 999;
}

/* ── GRID BG ── */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,158,255,0.06) 0%, transparent 70%);
  bottom: 10%; right: -150px;
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(78,207,124,0.04) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation: orbFloat 20s ease-in-out infinite;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
}

/* ── PARTICLES CANVAS ── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── LAYOUT ── */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.50s; }

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(8,11,16,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
header.scrolled {
  border-color: var(--border-soft);
  background: rgba(8,11,16,0.85);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.03));
  flex-shrink: 0;
  transition: box-shadow 0.3s;
}
.logo-mark:hover { box-shadow: 0 0 20px rgba(201,168,76,0.3); }
.logo-mark span {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
}
.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.12em;
}
.logo-text small {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { transform: scaleX(1); }

.socials {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--border);
  color: var(--gold-light);
  background: rgba(201,168,76,0.05);
}

/* ── HERO ── */
.hero {
  padding: 100px 0 70px;
  position: relative;
}
.hero-content {
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  max-width: 580px;
  letter-spacing: 0.02em;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(78,207,124,0.08);
  border: 1px solid rgba(78,207,124,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--green);
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* STAT STRIP */
.stat-strip {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  flex: 1;
  min-width: 120px;
}
.stat-val {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border-soft);
  flex-shrink: 0;
}

/* ── DIVIDER ── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  position: relative;
  z-index: 1;
}

/* ── SHARED ── */
.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 6px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.section-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 36px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #a87c2a);
  color: #0a0700;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── COUNTDOWN ── */
.countdown-section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(201,168,76,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 48px;
}
.countdown-left { flex: 1; min-width: 220px; }
.countdown-title {
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 10px;
}
.countdown-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}
.countdown-right { flex-shrink: 0; }
.timer-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 16px 20px;
  min-width: 72px;
}
.timer-val {
  font-family: 'Share Tech Mono', monospace;
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.timer-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.timer-colon {
  font-family: 'Share Tech Mono', monospace;
  font-size: 30px;
  color: var(--gold-dim);
  padding-bottom: 16px;
}
.timer-target {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-top: 10px;
}

/* ── TOKEN SECTION ── */
.token-section { padding: 64px 0; }
.token-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.token-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.token-main-left h3 {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.token-main-left p { color: var(--muted); font-size: 15px; max-width: 440px; }
.token-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.token-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s;
}
.token-card:hover { border-color: var(--border); }
.token-card-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 10px 14px;
}
.address-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--gold-light);
  flex: 1;
  word-break: break-all;
}
.copy-btn {
  background: none;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  color: var(--muted);
  cursor: pointer;
  padding: 3px 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  white-space: nowrap;
}
.copy-btn:hover { color: var(--gold); border-color: var(--border); }
.copy-btn.copied { color: var(--green); border-color: rgba(78,207,124,0.3); }

.dex-links { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.dex-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
.dex-pill:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  background: rgba(201,168,76,0.05);
}
.dex-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 5px var(--green);
}

.checklist { list-style: none; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '○'; font-size: 10px; color: rgba(255,255,255,0.1); flex-shrink: 0; }
.checklist li.done { color: var(--text); }
.checklist li.done::before { content: '◆'; color: var(--gold); }

/* ── TOKENOMICS ── */
.tokenomics-section { padding: 64px 0; }
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.tnom-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.tnom-card:hover { border-color: var(--border); transform: translateY(-3px); }
.tnom-icon {
  font-size: 24px;
  color: var(--gold-dim);
  margin-bottom: 12px;
}
.tnom-val {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
  word-break: break-word;
}
.tnom-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.tnom-note { font-size: 12px; color: rgba(107,122,141,0.7); }

/* DISTRIBUTION */
.distro-block { margin-top: 36px; }
.distro-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.distro-bar {
  display: flex;
  height: 12px;
  border-radius: 100px;
  overflow: hidden;
  gap: 2px;
}
.distro-seg {
  height: 100%;
  border-radius: 2px;
  cursor: default;
  position: relative;
  transition: opacity 0.2s;
}
.distro-seg:hover { opacity: 0.8; }
.distro-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── PLATFORMS ── */
.sections-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.section-panel {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  transition: border-color 0.3s;
}
.section-panel:hover { border-color: var(--border); }
.section-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-panel-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.section-panel-title.gold { color: var(--gold-light); }
.section-panel-title.blue { color: var(--blue-accent); }
.under-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(224,82,82,0.1);
  border: 1px solid rgba(224,82,82,0.3);
  color: var(--red);
}
.section-panel-body { padding: 24px; }
.section-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.75;
}
.feature-card {
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 4px;
}
.feature-card.vanguard-card {
  background: linear-gradient(135deg, rgba(74,158,255,0.06), rgba(74,158,255,0.01));
  border: 1px solid rgba(74,158,255,0.2);
}
.feature-card.soundflare-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.01));
  border: 1px solid rgba(201,168,76,0.22);
}
.feature-card-eyebrow { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 5px; }
.blue-txt { color: rgba(74,158,255,0.75); }
.gold-txt { color: var(--gold-dim); }
.feature-card-name {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}
.feature-card-name.blue-name { color: var(--blue-accent); }
.feature-card-name.gold-name { color: var(--gold-light); }
.feature-card-sub { font-size: 13px; color: var(--muted); }
.feature-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag {
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag.blue  { background: rgba(74,158,255,0.1); color: var(--blue-accent); }
.tag.gold  { background: rgba(201,168,76,0.1); color: var(--gold); }
.tag.green { background: rgba(78,207,124,0.1); color: var(--green); }
.tag.muted { background: rgba(255,255,255,0.05); color: var(--muted); }
.stripe {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(224,82,82,0.5) 0px, rgba(224,82,82,0.5) 10px,
    transparent 10px, transparent 20px
  );
}

/* ── ROADMAP ── */
.roadmap-section { padding: 64px 0; }
.roadmap-track {
  margin-top: 40px;
  position: relative;
  padding-left: 32px;
}
.roadmap-track::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dim), rgba(255,255,255,0.06));
}
.roadmap-item {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.roadmap-item:last-child { margin-bottom: 0; }
.rm-marker {
  position: absolute;
  left: -29px;
  top: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.15);
  background: var(--bg);
  padding: 2px 0;
  line-height: 1;
}
.done-marker { color: var(--gold); }
.active-marker { color: var(--green); position: relative; }
.rm-pulse {
  position: absolute;
  top: -4px; left: -4px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(78,207,124,0.15);
  animation: rmPulse 2s ease-in-out infinite;
}
@keyframes rmPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.5); opacity: 0; }
}
.rm-content {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex: 1;
  transition: border-color 0.3s;
}
.roadmap-item.done .rm-content { border-color: rgba(201,168,76,0.15); }
.roadmap-item.active .rm-content { border-color: rgba(78,207,124,0.2); }
.rm-phase {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.roadmap-item.done .rm-phase { color: var(--gold-dim); }
.roadmap-item.active .rm-phase { color: rgba(78,207,124,0.7); }
.rm-title {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.rm-list { list-style: none; }
.rm-list li {
  font-size: 14px;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rm-list li::before { content: '—'; color: rgba(255,255,255,0.1); flex-shrink: 0; }
.roadmap-item.done .rm-list li { color: var(--text); }
.roadmap-item.done .rm-list li::before { content: '◆'; color: var(--gold); font-size: 8px; }
.roadmap-item.active .rm-list li::before { content: '▸'; color: var(--green); }

/* ── STORY ── */
.story-section { padding: 80px 0; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
}
.story-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 8px 0 20px;
}
.story-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 500px;
}
.story-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}
.story-badge-card {
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-direction: column;
  transition: transform 0.3s;
}
.story-badge-card:hover { transform: translateX(4px); }
.gold-card {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.25);
}
.blue-card {
  background: linear-gradient(135deg, rgba(74,158,255,0.08), rgba(74,158,255,0.02));
  border: 1px solid rgba(74,158,255,0.2);
}
.muted-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
}
.sbc-icon { font-size: 22px; }
.sbc-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-top: -6px;
}
.sbc-sub { font-size: 12px; color: var(--muted); }

/* ── CTA ── */
.cta-section {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 10px 0 16px;
  letter-spacing: -0.01em;
}
.cta-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Share */
.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.share-label { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Rajdhani', sans-serif;
}
.share-btn:hover {
  border-color: var(--border);
  color: var(--gold-light);
  background: rgba(201,168,76,0.05);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-soft);
  padding: 40px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 0.25em;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--gold-light); }
.footer-note { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.footer-network { font-size: 11px; color: var(--muted); opacity: 0.45; }
.footer-disclaimer {
  font-size: 11px;
  color: rgba(107,122,141,0.4);
  max-width: 400px;
  text-align: center;
  line-height: 1.6;
}

/* ── TOAST ── */
#toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--gold-light);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 1000;
  transition: transform 0.3s ease;
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); }

/* ── MOBILE ── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .tokenomics-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .sections-row { grid-template-columns: 1fr; }
  .token-grid { grid-template-columns: 1fr; }
  .token-main { flex-direction: column; align-items: flex-start; }
  .header-inner { gap: 12px; }
  .logo-text { font-size: 18px; }
  .countdown-inner { flex-direction: column; gap: 28px; padding: 28px 24px; }
  .timer-val { font-size: 28px; }
  .timer-block { padding: 12px 14px; min-width: 58px; }
  .story-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-card-stack { flex-direction: row; flex-wrap: wrap; }
  .story-badge-card { min-width: 160px; flex: 1; }
  .stat-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-div { display: none; }
  .roadmap-track { padding-left: 24px; }
  .distro-label-row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 500px) {
  .tokenomics-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 16px; }
  .socials { gap: 6px; }
  .social-link { padding: 6px 10px; font-size: 12px; }
}


/* ══════════════════════════════════════════════════════════════
   NEW ADDITIONS — roadmap.js, vanguard.js, soundflare.js,
                   tokenomics.js enhancements
   ══════════════════════════════════════════════════════════════ */

/* ── SHARED UTILITIES ── */
.blue-text  { color: var(--blue-accent) !important; }
.gold-text  { color: var(--gold-light)  !important; }
.green-text { color: var(--green)       !important; }
.mt-12      { margin-top: 12px; }
.btn-sm     { padding: 7px 16px; font-size: 13px; }

/* ── ROADMAP V2 ─────────────────────────────────────────────── */
.rm2-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.rm2-hint {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.6;
  margin-left: 6px;
}
.rm2-reset {
  background: none;
  border: 1px solid rgba(224,82,82,0.35);
  border-radius: 4px;
  color: var(--red);
  cursor: pointer;
  padding: 6px 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.rm2-reset:hover { background: rgba(224,82,82,0.08); }

.rm2-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rm2-phase {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.rm2-phase[data-status="complete"] { border-color: rgba(201,168,76,0.2); }
.rm2-phase[data-status="active"]   { border-color: rgba(78,207,124,0.2); }

.rm2-phase-head {
  display: flex;
  gap: 0;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
  align-items: center;
}

.rm2-marker-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
}
.rm2-connector-line {
  display: none; /* handled by track gap */
}
.rm2-marker {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
  background: var(--bg3);
  color: var(--muted);
}
.rm2-marker.complete {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
  color: var(--gold);
}
.rm2-marker.active {
  border-color: var(--green);
  background: rgba(78,207,124,0.1);
  color: var(--green);
}
.rm2-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(78,207,124,0.12);
  animation: rmPulse 2.5s ease-in-out infinite;
}
@keyframes rmPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.4); opacity: 0; }
}

.rm2-phase-info { flex: 1; min-width: 0; }

.rm2-phase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
.rm2-phase-titles {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rm2-phase-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.rm2-eta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.rm2-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.rm-badge-complete { background: rgba(201,168,76,0.12); color: var(--gold);       border: 1px solid rgba(201,168,76,0.3); }
.rm-badge-active   { background: rgba(78,207,124,0.1);  color: var(--green);      border: 1px solid rgba(78,207,124,0.3); }
.rm-badge-upcoming { background: rgba(255,255,255,0.04); color: var(--muted);     border: 1px solid rgba(255,255,255,0.08); }

.rm2-pct-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 18px;
  color: var(--muted);
  flex-shrink: 0;
}
.rm2-phase[data-status="complete"] .rm2-pct-badge { color: var(--gold); }
.rm2-phase[data-status="active"]   .rm2-pct-badge { color: var(--green); }

.rm2-phase-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.rm2-phase-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rm2-phase-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.rm2-phase-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.6s ease;
}
.rm2-phase-fill.complete { background: var(--gold); }
.rm2-phase-fill.active   { background: var(--green); }
.rm2-phase-fill.upcoming { background: var(--muted); }
.rm2-bar-label { font-size: 11px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }

.rm2-milestones {
  padding: 16px 24px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.rm2-milestone {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 5px;
  border: 1px solid transparent;
  user-select: none;
}
.rm2-m-icon {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
  margin-top: 2px;
  transition: color 0.2s;
}
.rm2-milestone.done .rm2-m-icon { color: var(--gold); }
.rm2-m-body { flex: 1; min-width: 0; }
.rm2-m-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  transition: color 0.2s;
}
.rm2-milestone.done .rm2-m-text { color: var(--text); }
.rm2-m-bar-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}
.rm2-m-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.rm2-m-fill {
  height: 100%;
  background: var(--blue-accent);
  border-radius: 100px;
}
.rm2-m-pct { font-size: 10px; color: var(--blue-accent); font-family: 'Share Tech Mono', monospace; }
.rm2-m-toggle { display: none; }

/* ── PLATFORM PANELS (shared between Vanguard & Soundflare) ─── */
.sections-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
#vanguard-root, #soundflare-root { display: block; min-width: 0; }

.platform-panel {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
  width: 100%;
}
.vanguard-panel  { border-color: rgba(74,158,255,0.15);  }
.soundflare-panel{ border-color: rgba(201,168,76,0.15); }

.pp-accent-bar { height: 3px; }
.blue-bar { background: linear-gradient(90deg, var(--blue-accent), rgba(74,158,255,0.2)); }
.gold-bar { background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2)); }

.pp-header {
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pp-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pp-icon { font-size: 22px; }
.blue-icon { filter: drop-shadow(0 0 8px rgba(74,158,255,0.4)); }
.gold-icon { filter: drop-shadow(0 0 8px rgba(201,168,76,0.4)); }
.pp-title {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.blue-text { color: var(--blue-accent); }
.gold-text { color: var(--gold-light); }
.pp-subtitle { font-size: 11px; color: var(--muted); letter-spacing: 0.1em; margin-top: 1px; }

.pp-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.pp-under-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(224,82,82,0.1);
  border: 1px solid rgba(224,82,82,0.25);
  color: var(--red);
}
.pp-overall-progress {
  display: flex;
  align-items: center;
  gap: 7px;
}
.pp-overall-label { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; }
.pp-overall-bar {
  width: 80px; height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.pp-overall-fill { height: 100%; border-radius: 100px; transition: width 0.6s ease; }
.blue-fill { background: var(--blue-accent); }
.gold-fill { background: var(--gold); }
.pp-overall-pct { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--muted); }

/* Tabs */
.pp-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(0,0,0,0.15);
  overflow-x: auto;
}
.pp-tab {
  flex: 1;
  padding: 10px 12px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pp-tab:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.pp-tab.active.blue-tab {
  color: var(--blue-accent);
  border-bottom-color: var(--blue-accent);
  background: rgba(74,158,255,0.05);
}
.pp-tab.active.gold-tab {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

/* Tab content */
.pp-body { padding: 20px; flex: 1; overflow: hidden; }
.pp-tab-content { display: none; }
.pp-tab-content.active { display: block; }

.pp-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Featured cards inside panels */
.pp-featured-card {
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 4px;
}
.blue-featured { background: linear-gradient(135deg, rgba(74,158,255,0.07),rgba(74,158,255,0.01)); border: 1px solid rgba(74,158,255,0.2); }
.gold-featured { background: linear-gradient(135deg, rgba(201,168,76,0.09),rgba(201,168,76,0.01)); border: 1px solid rgba(201,168,76,0.22); }

.pfc-eyebrow { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; margin-bottom: 4px; }
.blue-txt { color: rgba(74,158,255,0.7); }
.gold-txt { color: var(--gold-dim); }
.pfc-name { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.blue-name { color: var(--blue-accent); }
.gold-name { color: var(--gold-light); }
.pfc-sub { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.pfc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.pfc-body { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* Development categories */
.dev-overall-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.dev-overall-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.dev-overall-pct { font-family: 'Share Tech Mono', monospace; font-size: 16px; }

.dev-cats { display: flex; flex-direction: column; gap: 10px; }

.dev-cat {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 10px 12px;
  transition: border-color 0.2s;
}
.dev-cat:hover { border-color: rgba(255,255,255,0.12); }
.dev-cat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.dev-cat-icon { font-size: 14px; flex-shrink: 0; }
.dev-cat-name { font-size: 13px; font-weight: 600; color: var(--text); flex: 1; }
.dev-cat-badge {
  padding: 1px 7px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.dev-cat-pct { font-family: 'Share Tech Mono', monospace; font-size: 12px; color: var(--muted); flex-shrink: 0; }
.dev-cat-bar {
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.dev-cat-fill { height: 100%; border-radius: 100px; transition: width 0.5s ease; }
.dev-cat-detail { font-size: 11px; color: var(--muted); line-height: 1.5; margin: 0; }

/* Status badge colors (shared for both panels) */
.vg-status-active, .sf-status-confirmed { background:rgba(78,207,124,0.1);  color:var(--green);      border:1px solid rgba(78,207,124,0.3); }
.vg-status-recruiting                   { background:rgba(201,168,76,0.1);  color:var(--gold);       border:1px solid rgba(201,168,76,0.3); }
.vg-status-planned, .sf-status-invited  { background:rgba(74,158,255,0.1);  color:var(--blue-accent);border:1px solid rgba(74,158,255,0.3); }
.vg-status-done, .sf-status-done        { background:rgba(78,207,124,0.08); color:var(--green);      border:1px solid rgba(78,207,124,0.2); }
.vg-status-progress, .sf-status-progress{ background:rgba(201,168,76,0.08); color:var(--gold-dim);   border:1px solid rgba(201,168,76,0.2); }
.vg-status-considering                  { background:rgba(255,255,255,0.04);color:var(--muted);      border:1px solid rgba(255,255,255,0.08); }
.vg-status-not-started                  { background:rgba(255,255,255,0.03);color:rgba(107,122,141,0.5); border:1px solid rgba(255,255,255,0.05); }
.sf-status-open                         { background:rgba(201,168,76,0.06); color:var(--gold-dim);   border:1px solid rgba(201,168,76,0.15); }

/* Games grid (Vanguard) */
.games-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.games-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}
.games-legend .legend-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.games-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
}
.games-grid::-webkit-scrollbar { width: 4px; }
.games-grid::-webkit-scrollbar-track { background: transparent; }
.games-grid::-webkit-scrollbar-thumb { background: var(--border-soft); border-radius: 2px; }

.game-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(0,0,0,0.18);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  transition: border-color 0.2s, background 0.2s;
}
.game-card:hover { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.1); }
.game-card.game-active { border-color: rgba(78,207,124,0.25); background: rgba(78,207,124,0.04); }
.game-icon { font-size: 18px; flex-shrink: 0; width: 26px; text-align: center; }
.game-info { flex: 1; min-width: 0; }
.game-name { font-size: 13px; font-weight: 600; color: var(--text); }
.game-genre { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; margin-top: 1px; }
.game-note  { font-size: 10px; color: rgba(107,122,141,0.6); margin-top: 1px; }
.game-badge {
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Artist roster (Soundflare) */
.artist-roster { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.artist-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(0,0,0,0.18);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  transition: all 0.2s;
}
.artist-card.artist-confirmed { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.artist-card.artist-open { opacity: 0.55; border-style: dashed; }
.artist-icon { font-size: 18px; flex-shrink: 0; width: 26px; text-align: center; }
.artist-info { flex: 1; }
.artist-name  { font-size: 13px; font-weight: 600; color: var(--text); }
.artist-genre { font-size: 10px; color: var(--muted); margin-top: 1px; }
.artist-note  { font-size: 10px; color: rgba(107,122,141,0.6); margin-top: 1px; }
.artist-badge {
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.artist-join-box {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  padding: 14px;
}

/* Milestones tab (shared) */
.ms-summary {
  text-align: center;
  margin-bottom: 14px;
  padding: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 5px;
}
.ms-count { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 700; }
.ms-total { font-size: 13px; color: var(--muted); }

.ms-list { display: flex; flex-direction: column; gap: 4px; }
.ms-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  background: rgba(0,0,0,0.15);
  border: 1px solid transparent;
  border-radius: 4px;
}
.ms-icon { font-size: 10px; color: rgba(255,255,255,0.15); flex-shrink: 0; }
.ms-item.done .ms-icon { color: var(--gold); }
.ms-text { flex: 1; font-size: 12px; color: var(--muted); }
.ms-item.done .ms-text { color: var(--text); }
.ms-date { font-size: 10px; color: rgba(107,122,141,0.4); letter-spacing: 0.1em; flex-shrink: 0; }

/* ── TOKENOMICS CHART SECTION ────────────────────────────────── */
.tnom-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 40px;
}
.tnom-stat-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.tnom-stat-card:hover { border-color: var(--border); transform: translateY(-2px); }
.tnom-stat-val   { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700; color: var(--gold-light); margin-bottom: 4px; }
.tnom-stat-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.tnom-stat-sub   { font-size: 11px; color: rgba(107,122,141,0.6); }

.tnom-chart-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.tnom-chart-wrap {
  position: relative;
  flex-shrink: 0;
  width: 260px;
  height: 260px;
}
#zeni-donut {
  display: block;
  cursor: crosshair;
}
.tnom-chart-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  padding: 20px;
}
.tnom-center-symbol { font-size: 22px; color: var(--gold-dim); margin-bottom: 2px; }
.tnom-center-label  { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 700; color: var(--gold-light); }
.tnom-center-sub    { font-size: 10px; color: var(--muted); letter-spacing: 0.2em; margin-top: 2px; }
.tnom-center-pct    { font-family: 'Share Tech Mono', monospace; font-size: 26px; font-weight: 700; margin-bottom: 2px; }

.tnom-legend-wrap { }
.tnom-legend-title {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.tnom-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 6px;
}
.tnom-legend-item:hover, .tnom-legend-item.legend-hl {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-soft);
}
.tnom-legend-swatch {
  width: 10px; height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}
.tnom-legend-info { flex: 1; }
.tnom-legend-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 1px; }
.tnom-legend-pct   { font-family: 'Share Tech Mono', monospace; font-size: 14px; font-weight: 700; }
.tnom-legend-detail { font-size: 11px; color: var(--muted); line-height: 1.5; margin-top: 3px; }

/* Utility cards */
.tnom-utility-section { margin-top: 36px; }
.tnom-utility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.tnom-utility-card {
  background: var(--panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 18px 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.tnom-utility-card:hover { border-color: var(--border); transform: translateY(-2px); }
.tnom-utility-icon  { font-size: 20px; margin-bottom: 8px; }
.tnom-utility-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 5px; letter-spacing: 0.03em; }
.tnom-utility-desc  { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── RESPONSIVE UPDATES ──────────────────────────────────────── */
@media (max-width: 900px) {
  .tnom-chart-section { grid-template-columns: 1fr; justify-items: center; gap: 24px; }
  .tnom-legend-wrap   { width: 100%; }
}
@media (max-width: 760px) {
  .sections-row       { grid-template-columns: 1fr; }
  .rm2-milestones     { grid-template-columns: 1fr; }
  .tnom-stats-row     { grid-template-columns: 1fr 1fr; }
  .tnom-utility-grid  { grid-template-columns: 1fr 1fr; }
  .rm2-phase-head     { flex-wrap: wrap; gap: 12px; }
  .rm2-phase-top      { flex-wrap: wrap; }
  .games-header-row   { flex-direction: column; align-items: flex-start; }
  .pp-header          { flex-direction: column; align-items: flex-start; }
  .pp-header-right    { align-items: flex-start; }
}
@media (max-width: 500px) {
  .tnom-stats-row     { grid-template-columns: 1fr 1fr; }
  .tnom-utility-grid  { grid-template-columns: 1fr; }
  .tnom-chart-wrap    { width: 220px; height: 220px; }
  #zeni-donut         { width: 220px !important; height: 220px !important; }
  .rm2-phase-head     { padding: 14px 14px; }
  .rm2-milestones     { padding: 12px 14px; }
}
