/* ============================================================
   TenDayTurtle · $10TURT
   Slow shell. Fast countdown.
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  background: #030603;
  color: #F5F7F2;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- TOKENS ---------- */
:root {
  --bg: #030603;
  --bg-2: #050805;
  --bg-card: #0B120B;
  --bg-elev: #0E1A0E;

  --neon: #7CFF00;
  --neon-2: #1FD655;
  --gold: #FFC857;
  --orange: #FF8A00;
  --red: #FF3D55;

  --text: #F5F7F2;
  --text-muted: #AEB8AA;
  --text-dim: #6B7568;

  --border: rgba(124, 255, 0, 0.22);
  --border-strong: rgba(124, 255, 0, 0.5);

  --glow-neon: 0 0 24px rgba(124, 255, 0, 0.35), 0 0 60px rgba(124, 255, 0, 0.15);
  --glow-gold: 0 0 24px rgba(255, 200, 87, 0.35);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 60px -30px rgba(0,0,0,0.8);

  --radius: 14px;
  --radius-lg: 22px;

  --font-display: 'Bungee', 'Bungee Inline', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-body: 'Outfit', system-ui, sans-serif;

  --container: 1200px;
  --nav-h: 72px;
}

.text-neon { color: var(--neon); text-shadow: 0 0 18px rgba(124, 255, 0, 0.45); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- BACKGROUND LAYERS ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31, 214, 85, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 138, 0, 0.08), transparent 50%),
    linear-gradient(180deg, #030603 0%, #050805 100%);
}
.bg-grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
}
.bg-grid::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.49 0 0 0 0 1 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
}
#particle-canvas {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
}
.bg-glow {
  position: fixed; z-index: -1;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.bg-glow--1 { top: -200px; right: -200px; width: 600px; height: 600px; background: rgba(124, 255, 0, 0.12); }
.bg-glow--2 { bottom: -200px; left: -200px; width: 600px; height: 600px; background: rgba(255, 138, 0, 0.08); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
.btn--lg { padding: 14px 24px; font-size: 14px; }
.btn--primary {
  background: var(--neon);
  color: #061004;
  box-shadow: 0 8px 30px -8px rgba(124, 255, 0, 0.6), 0 0 0 1px rgba(124, 255, 0, 0.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px -8px rgba(124, 255, 0, 0.75), 0 0 0 1px rgba(124, 255, 0, 0.6); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--border-strong);
}
.btn--ghost:hover { background: rgba(124, 255, 0, 0.08); transform: translateY(-2px); }
.btn--text {
  background: transparent; color: var(--text-muted);
  text-transform: none; font-family: var(--font-body); letter-spacing: 0;
  font-weight: 500;
}
.btn--text:hover { color: var(--neon); }
.btn__dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #061004;
  box-shadow: 0 0 0 2px rgba(6,16,4,0.3), 0 0 8px var(--neon);
  animation: pulse 1.8s ease-in-out infinite;
}
.btn__arrow { transition: transform 0.2s ease; }
.btn:hover .btn__arrow { transform: translateX(3px); }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(3, 6, 3, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav--scrolled { background: rgba(3, 6, 3, 0.85); border-bottom-color: var(--border-strong); }
.nav__inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { font-size: 28px; filter: drop-shadow(0 0 6px rgba(124,255,0,0.4)); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--font-display); font-size: 16px; letter-spacing: 0.02em; }
.nav__brand-ticker { font-family: var(--font-mono); font-size: 11px; color: var(--neon); letter-spacing: 0.08em; margin-top: 4px; }

.nav__links {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover { color: var(--text); background: rgba(124, 255, 0, 0.06); }
.nav__links a.active { color: var(--neon); background: rgba(124, 255, 0, 0.08); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--neon); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--neon); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__left { display: flex; flex-direction: column; gap: 24px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(124, 255, 0, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--neon);
  width: max-content;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon);
  animation: pulse 1.8s infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  gap: 6px;
}
.hero__title-line { display: block; }
.hero__title-line--neon {
  color: var(--neon);
  text-shadow:
    0 0 16px rgba(124, 255, 0, 0.5),
    0 0 60px rgba(124, 255, 0, 0.2);
  position: relative;
}
.hero__title-line--neon::after {
  content: '';
  position: absolute; left: 0; right: 30%;
  bottom: -8px; height: 4px;
  background: linear-gradient(90deg, var(--neon), transparent);
  border-radius: 2px;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 480px;
}
.hero__countdown {
  display: flex; align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  padding: 18px 22px;
  background: rgba(11, 18, 11, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}
.hero__countdown-item {
  display: flex; flex-direction: column; align-items: center;
  min-width: 50px;
}
.hero__countdown-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
.hero__countdown-num--accent { color: var(--neon); text-shadow: 0 0 16px rgba(124,255,0,0.5); }
.hero__countdown-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
}
.hero__countdown-sep { font-size: 28px; color: var(--text-dim); padding-bottom: 14px; }

.hero__cta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 8px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(11, 18, 11, 0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}
.hero__badge span { font-size: 14px; }

/* ---------- MASCOT ---------- */
.hero__right { display: flex; justify-content: center; }
.mascot {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(124, 255, 0, 0.18), transparent 60%);
  cursor: pointer;
  user-select: none;
}
.mascot::before {
  content: '';
  position: absolute; inset: 12%;
  border: 1.5px dashed rgba(124, 255, 0, 0.25);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.mascot::after {
  content: '';
  position: absolute; inset: 5%;
  border: 1px solid rgba(255, 200, 87, 0.15);
  border-radius: 50%;
  animation: spin 60s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mascot__svg {
  width: 80%; height: 80%;
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(124, 255, 0, 0.3));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-1.5deg); }
}
.mascot__flame { animation: flicker 0.2s steps(2) infinite; transform-origin: 160px 270px; }
@keyframes flicker {
  0% { transform: scaleY(1) scaleX(1); opacity: 0.95; }
  100% { transform: scaleY(0.85) scaleX(1.1); opacity: 1; }
}
.mascot__rocket { animation: tilt 4s ease-in-out infinite; transform-origin: 160px 130px; }
@keyframes tilt {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}
.mascot__head { transform-origin: 160px 130px; animation: bob 3s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.mascot__pupil { animation: blink 5s infinite; transform-origin: center; }
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}
.mascot.tapped .mascot__svg { animation: zoom 0.4s ease; }
@keyframes zoom { 50% { transform: scale(1.06); } }

.mascot__caption {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  background: rgba(11, 18, 11, 0.8);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  z-index: 3;
}
.mascot__tap-counter {
  position: absolute; top: 8px; right: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  background: rgba(11, 18, 11, 0.8);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 87, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.mascot__tap-counter.visible { opacity: 1; }

.hero__scroll-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--neon), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- SECTION COMMON ---------- */
section { position: relative; padding: 100px 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-bottom: 16px;
}
.eyebrow-dash { width: 32px; height: 1px; background: var(--neon); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

/* ---------- COUNTDOWN SECTION ---------- */
.countdown-section { padding-top: 60px; }
.big-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.big-countdown__cell {
  position: relative;
  padding: 32px 16px;
  background: linear-gradient(180deg, rgba(11, 18, 11, 0.8), rgba(5, 8, 5, 0.6));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.big-countdown__cell::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(124, 255, 0, 0.1), transparent 60%);
  pointer-events: none;
}
.big-countdown__cell:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.big-countdown__cell--accent { border-color: rgba(255, 200, 87, 0.3); }
.big-countdown__cell--accent::before { background: radial-gradient(circle at 50% 0%, rgba(255, 200, 87, 0.15), transparent 60%); }

.big-countdown__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 100px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.big-countdown__cell--accent .big-countdown__num {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(255, 200, 87, 0.4);
}
.big-countdown__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 12px;
}

.countdown-progress {
  margin-top: 32px;
}
.countdown-progress__bar {
  height: 6px;
  background: var(--bg-card);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.countdown-progress__bar::after {
  content: '';
  position: absolute; inset: 0;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--neon-2), var(--neon));
  box-shadow: 0 0 16px var(--neon);
  border-radius: 999px;
  transition: width 1s ease;
}
.countdown-progress__caption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- ABOUT CARDS ---------- */
.about__lead { max-width: 720px; }
.about__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.card {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, rgba(14, 26, 14, 0.7), rgba(5, 8, 5, 0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(124, 255, 0, 0.08), transparent 60%);
  pointer-events: none;
}
.card--tilt:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.card__icon { font-size: 36px; margin-bottom: 16px; }
.card__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.card__body { color: var(--text-muted); font-size: 15px; }
.card__corner {
  position: absolute; top: 14px; right: 14px;
  width: 16px; height: 16px;
  border-top: 1.5px solid var(--neon);
  border-right: 1.5px solid var(--neon);
  opacity: 0.5;
}

/* ---------- TOKEN ---------- */
.token__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.token__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  background: var(--bg-card);
  gap: 16px;
}
.token__row:hover { background: var(--bg-elev); }
.token__key {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.token__val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text);
  text-align: right;
}
.token__val--accent { color: var(--neon); text-shadow: 0 0 12px rgba(124, 255, 0, 0.4); }

.token__ca {
  padding: 32px;
  background: linear-gradient(180deg, rgba(11, 18, 11, 0.9), rgba(5, 8, 5, 0.7));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}
.token__ca-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.token__ca-value {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ca-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 1.8s infinite;
}
.token__ca-warning {
  font-size: 14px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 200, 87, 0.15);
  padding-top: 16px;
  margin-top: 4px;
}

/* ---------- ROADMAP ---------- */
.roadmap__track {
  position: relative;
  display: flex; flex-direction: column;
  gap: 32px;
}
.roadmap__line {
  position: absolute;
  left: 24px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--neon), var(--neon-2), rgba(124,255,0,0.2));
  box-shadow: 0 0 8px var(--neon);
}
.phase {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.phase__marker {
  position: relative;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--bg-card);
  border: 2px solid var(--neon);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--neon);
  z-index: 2;
  box-shadow: 0 0 18px rgba(124, 255, 0, 0.3);
}
.phase__marker--accent {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 24px rgba(255, 200, 87, 0.5);
}
.phase__content {
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(11, 18, 11, 0.7), rgba(5, 8, 5, 0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.phase__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--neon);
  background: rgba(124, 255, 0, 0.08);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.phase__tag--accent { color: var(--gold); background: rgba(255, 200, 87, 0.08); border-color: rgba(255, 200, 87, 0.3); }
.phase__title {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.phase__list { display: flex; flex-direction: column; gap: 6px; }
.phase__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--text-muted);
}
.phase__list li::before {
  content: '▸';
  position: absolute; left: 4px;
  color: var(--neon);
}

/* ---------- GAMES ---------- */
.games__tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.games__tab {
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.25s ease;
}
.games__tab:hover { color: var(--text); border-color: var(--border-strong); }
.games__tab--active {
  background: rgba(124, 255, 0, 0.08);
  border-color: var(--neon);
  color: var(--neon);
  box-shadow: 0 0 16px rgba(124, 255, 0, 0.2);
}

.game { display: none; }
.game--active { display: block; }
.game__layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  background: linear-gradient(180deg, rgba(11, 18, 11, 0.7), rgba(5, 8, 5, 0.5));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.game__title {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.game__desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.game__desc kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--neon);
}
.game__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.game__stat {
  padding: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.game__stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.game__stat-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
.game__stat-value--accent { color: var(--neon); text-shadow: 0 0 10px rgba(124,255,0,0.4); }
.game__controls { display: flex; gap: 8px; flex-wrap: wrap; }
.game__rank {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  min-height: 20px;
}
.game__stage {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(124, 255, 0, 0.05), transparent 70%),
    var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  min-height: 360px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* TAP GAME */
.tap-arena {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  user-select: none;
}
.tap-shell {
  position: relative;
  width: 240px; height: 240px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(124, 255, 0, 0.15), transparent 60%);
  transition: transform 0.1s ease;
  cursor: pointer;
}
.tap-shell:disabled { opacity: 0.45; cursor: not-allowed; filter: grayscale(0.4); }
.tap-shell:not(:disabled):hover { transform: scale(1.04); }
.tap-shell:not(:disabled):active { transform: scale(0.93); }
.tap-shell:not(:disabled)::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1.5px dashed rgba(124, 255, 0, 0.4);
  border-radius: 50%;
  animation: spin 8s linear infinite;
}
.tap-shell svg { width: 80%; height: 80%; filter: drop-shadow(0 8px 20px rgba(124, 255, 0, 0.3)); }
.tap-shell__plus {
  position: absolute;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon);
  pointer-events: none;
  opacity: 0;
  font-weight: 700;
}
.tap-shell__plus.show {
  animation: floatUp 0.6s ease forwards;
}
@keyframes floatUp {
  0% { opacity: 1; transform: translateY(0) scale(0.8); }
  100% { opacity: 0; transform: translateY(-80px) scale(1.2); }
}

.tap-ripple {
  position: absolute;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--neon);
  text-shadow: 0 0 8px var(--neon);
  animation: rippleOut 0.7s ease forwards;
  z-index: 5;
}
@keyframes rippleOut {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-50px) scale(1.4); }
}

/* RUNNER GAME */
.runner-arena {
  position: relative;
  width: 100%;
  max-width: 640px;
}
#runner-canvas {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #050805 0%, #0B120B 70%, #050805 100%);
  border: 1px solid var(--border);
  display: block;
}
.runner-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: rgba(3, 6, 3, 0.7);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.runner-overlay.hidden { opacity: 0; }
.runner-overlay__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--neon);
  text-shadow: 0 0 16px rgba(124, 255, 0, 0.5);
  margin-bottom: 8px;
}
.runner-overlay__sub {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 20px;
}

/* ---------- COMMUNITY ---------- */
.community__stats {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 32px;
}
.stat-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
}
.stat-pill__dot {
  width: 8px; height: 8px;
  background: var(--text-dim);
  border-radius: 50%;
}
.stat-pill__dot--live { background: var(--neon); box-shadow: 0 0 10px var(--neon); animation: pulse 1.8s infinite; }
.stat-pill__dot--accent { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.community__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* ---------- RULES ---------- */
.rules__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.rule {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.rule:hover { border-color: var(--border-strong); transform: translateX(4px); }
.rule__num {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--neon);
  min-width: 36px;
}

/* ---------- FAQ ---------- */
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 24px;
  color: var(--neon);
  transition: transform 0.3s ease;
}
.faq__item[open] summary { color: var(--neon); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
}
.faq__item p strong { color: var(--neon); }

/* ---------- DISCLAIMER ---------- */
.disclaimer { padding: 60px 0 80px; }
.disclaimer__box {
  display: flex; gap: 20px;
  padding: 32px;
  background: rgba(255, 61, 85, 0.05);
  border: 1px solid rgba(255, 61, 85, 0.25);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--red);
}
.disclaimer__icon { font-size: 32px; flex-shrink: 0; }
.disclaimer__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--red);
}
.disclaimer__content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 12px;
}
.disclaimer__warn {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 61, 85, 0.2);
  color: var(--gold) !important;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(124, 255, 0, 0.02));
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.footer__logo { font-family: var(--font-display); font-size: 24px; margin-bottom: 4px; }
.footer__ticker { font-family: var(--font-mono); font-size: 13px; color: var(--neon); margin-bottom: 16px; }
.footer__tag { font-size: 15px; color: var(--text-muted); margin-bottom: 6px; }
.footer__date { font-family: var(--font-mono); font-size: 13px; color: var(--gold); }
.footer__links {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.footer__links a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--neon); }
.footer__bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
}
.footer__heart { color: var(--text-muted); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  box-shadow: var(--glow-neon);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- MOBILE ---------- */
@media (max-width: 980px) {
  .hero__container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero__eyebrow, .hero__countdown, .hero__cta-row, .hero__badges { margin-left: auto; margin-right: auto; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__title { align-items: center; }
  .hero__title-line--neon::after { left: 50%; transform: translateX(-50%); right: auto; width: 60%; }
  .mascot { width: min(360px, 80vw); }
  .game__layout { grid-template-columns: 1fr; padding: 20px; }
  .game__stage { min-height: 320px; }
  .footer__top { grid-template-columns: 1fr; }
  .token__grid { grid-template-columns: 1fr; }
  .big-countdown { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(3, 6, 3, 0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px; text-align: center; border-radius: var(--radius); }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .hero { padding-top: calc(var(--nav-h) + 24px); }
  .hero__title { font-size: clamp(40px, 12vw, 56px); }
  .hero__countdown { padding: 14px 18px; gap: 8px; }
  .hero__countdown-num { font-size: 24px; }
  .hero__countdown-sep { font-size: 22px; padding-bottom: 12px; }
  .phase { grid-template-columns: 44px 1fr; gap: 16px; }
  .phase__marker { width: 44px; height: 44px; font-size: 16px; }
  .roadmap__line { left: 21px; }
  .phase__content { padding: 18px; }
  .phase__title { font-size: 20px; }
  .disclaimer__box { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll-hint { display: none; }
}
@media (max-width: 480px) {
  .big-countdown__num { font-size: 48px; }
  .game__stats { grid-template-columns: 1fr 1fr; }
  .game__stats .game__stat:last-child { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .mascot__svg, .pulse-dot, .ca-dot, .hero__scroll-line, .mascot::before, .mascot::after { animation: none !important; }
}
