/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:       #050810;
  --bg2:      #080d1a;
  --surface:  #0d1525;
  --surface2: #111d30;
  --border:   rgba(0,200,255,.12);
  --border2:  rgba(0,200,255,.22);
  --accent:   #00c8ff;
  --accent2:  #00ffa3;
  --warn:     #ffaa00;
  --danger:   #ff4466;
  --text:     #e8f4ff;
  --muted:    #7090b0;
  --mono:     'Space Mono', monospace;
  --sans:     'Syne', sans-serif;
  --glow:     0 0 24px rgba(0,200,255,.35);
  --glow2:    0 0 40px rgba(0,200,255,.2);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: default;
}

/* ─── GRID BACKGROUND ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ─── NOISE OVERLAY ───────────────────────────────────────── */
body::after {
  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='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
  z-index: 0;
}

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--sans); font-weight: 800; line-height: 1.1; }
.mono { font-family: var(--mono); }

/* ─── LAYOUT UTILITIES ────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 4px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  padding: 16px 32px;
  box-shadow: 0 0 0 0 rgba(0,200,255,.5);
  animation: pulse-btn 3s infinite;
}
.btn-primary:hover {
  background: #20d4ff;
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 14px 28px;
  border: 1px solid var(--border2);
}
.btn-secondary:hover {
  border-color: var(--accent);
  box-shadow: inset 0 0 20px rgba(0,200,255,.08), var(--glow2);
  transform: translateY(-2px);
}

.btn-lg { padding: 20px 44px; font-size: .95rem; }

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,200,255,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(0,200,255,0); }
}

/* ─── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(5,8,16,.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 28px;
  width: auto;
  opacity: .92;
  transition: opacity .2s;
}
.nav-logo:hover img { opacity: 1; }

.nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 8px var(--accent2);
  animation: blink-dot 2s ease-in-out infinite;
}
@keyframes blink-dot { 0%,100%{opacity:1;} 50%{opacity:.3;} }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all .3s;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid rgba(0,255,163,.25);
  background: rgba(0,255,163,.05);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
  animation: fadeInDown .8s ease both;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 6px var(--accent2);
  animation: blink-dot 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  animation: fadeInUp .8s ease .1s both;
}

.hero-title .accent  { color: var(--accent); }
.hero-title .accent2 { color: var(--accent2); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp .8s ease .2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeInUp .8s ease .3s both;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp .8s ease .4s both;
}
.hero-social-proof .avatars { display: flex; }
.hero-social-proof .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  font-size: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.hero-social-proof .av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg,#1a6cf5,#0ac); }
.av-2 { background: linear-gradient(135deg,#9333ea,#4f46e5); }
.av-3 { background: linear-gradient(135deg,#f59e0b,#ef4444); }
.av-4 { background: linear-gradient(135deg,#10b981,#0891b2); }
.sp-text { font-family: var(--mono); font-size: .72rem; color: var(--muted); line-height: 1.4; }
.sp-text strong { color: var(--text); }

/* ─── HERO RIGHT: LIVE ALERT MOCKUP ──────────────────────── */
.hero-visual {
  position: relative;
  animation: fadeInRight .8s ease .2s both;
}

.tg-phone {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(0,200,255,.08), var(--glow2);
  max-width: 340px;
  margin: 0 auto;
}

.tg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.tg-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #0d1525;
  border: 1px solid rgba(0,200,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}
.tg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tg-name { font-family: var(--mono); font-size: .8rem; font-weight: 700; }
.tg-status {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tg-status::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 5px var(--accent2);
  animation: blink-dot 1.5s ease-in-out infinite;
}

.alert-bubble {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: .75rem;
  line-height: 1.6;
  position: relative;
  transform-origin: bottom left;
}

.alert-bubble.long  { border-left: 3px solid var(--accent2); }
.alert-bubble.short { border-left: 3px solid var(--danger); }

.alert-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 2px 7px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.badge-long  { background: rgba(0,255,163,.15); color: var(--accent2); }
.badge-short { background: rgba(255,68,102,.15); color: var(--danger); }
.badge-close { background: rgba(255,170,0,.12);  color: var(--warn); }

.alert-asset  { font-size: .9rem; font-weight: 700; color: var(--text); }
.alert-detail { color: var(--muted); }
.alert-size   { color: var(--text); font-weight: 700; }
.alert-price  { color: var(--accent); }
.alert-pnl-pos { color: var(--accent2); }
.alert-pnl-neg { color: var(--danger); }
.alert-time { font-size: .6rem; color: var(--muted); margin-top: 6px; text-align: right; }

.tg-typing { display: flex; align-items: center; gap: 6px; padding: 10px 0 4px; }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); }
.typing-dot:nth-child(1) { animation: bounce .8s ease .0s  infinite; }
.typing-dot:nth-child(2) { animation: bounce .8s ease .15s infinite; }
.typing-dot:nth-child(3) { animation: bounce .8s ease .3s  infinite; }
@keyframes bounce {
  0%,100%{transform:translateY(0);opacity:.4;}
  50%{transform:translateY(-5px);opacity:1;}
}

.hero-float {
  position: absolute;
  top: -16px; right: -20px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: .7rem;
  box-shadow: var(--glow2);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
.hero-float .hf-num { font-size: 1.1rem; font-weight: 700; color: var(--accent2); display: block; }

/* ─── URGENCY BANNER ──────────────────────────────────────── */
.urgency-bar {
  background: linear-gradient(90deg, rgba(0,200,255,.07), rgba(0,255,163,.07), rgba(0,200,255,.07));
  border-top: 1px solid rgba(0,255,163,.15);
  border-bottom: 1px solid rgba(0,255,163,.15);
  padding: 14px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.urgency-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(0,255,163,.05) 50%, transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer { 0%{transform:translateX(-100%)} 100%{transform:translateX(100%)} }

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: .78rem;
  position: relative;
  z-index: 1;
}
.urgency-tag {
  background: var(--accent2);
  color: #000;
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .1em;
  padding: 3px 9px;
  border-radius: 2px;
}
.urgency-text { color: var(--text); }
.urgency-text strong { color: var(--accent2); }
.urgency-slots { display: flex; gap: 4px; align-items: center; }
.slot { width: 10px; height: 10px; border-radius: 2px; }
.slot-taken { background: var(--accent2); box-shadow: 0 0 4px var(--accent2); }
.slot-free  { background: var(--surface2); border: 1px solid var(--border2); }

/* ─── SECTION LABELS ──────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.section-sub   { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.7; }

/* ─── PROBLEM SECTION ─────────────────────────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,68,102,.6), transparent);
}
.problem-card:hover { border-color: rgba(255,68,102,.3); transform: translateY(-4px); }
.problem-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--danger);
  opacity: .7;
  transition: opacity .25s, transform .25s, color .25s;
}
.problem-card:hover .problem-icon { opacity: 1; transform: scale(1.12); color: var(--danger); }
.problem-label { font-family: var(--mono); font-size: .65rem; letter-spacing: .1em; color: var(--danger); text-transform: uppercase; margin-bottom: 8px; }
.problem-card h3 { font-size: 1rem; margin-bottom: 8px; }
.problem-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
}
.how-step { padding: 0 24px; text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: var(--glow2);
}
.how-step h3 { font-size: .95rem; margin-bottom: 10px; }
.how-step p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ─── FEATURES ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,255,.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover { border-color: var(--border2); box-shadow: var(--glow2), 0 20px 40px rgba(0,0,0,.3); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-card.featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface2) 100%);
  border-color: var(--border2);
}
.feature-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,200,255,.15), rgba(0,200,255,.05));
  border: 1px solid rgba(0,200,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background .25s, box-shadow .25s, color .25s, transform .25s;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(0,200,255,.25), rgba(0,200,255,.1));
  box-shadow: 0 0 16px rgba(0,200,255,.25);
  transform: scale(1.08);
}
.feature-icon-lg { width: 64px; height: 64px; }
.feature-card.featured .feature-icon { color: var(--accent2); border-color: rgba(0,255,163,.3); background: linear-gradient(135deg, rgba(0,255,163,.15), rgba(0,255,163,.05)); }
.feature-card.featured:hover .feature-icon { background: linear-gradient(135deg, rgba(0,255,163,.25), rgba(0,255,163,.1)); box-shadow: 0 0 16px rgba(0,255,163,.25); }
.feature-card h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-card p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0,255,163,.1);
  color: var(--accent2);
  border: 1px solid rgba(0,255,163,.2);
  padding: 3px 8px;
  border-radius: 2px;
  margin-top: 10px;
}

/* ─── XP SECTION ─────────────────────────────────────────── */
#earn {
  scroll-margin-top: 80px;
}

/* ── XP Section (Earn XP. Level Up.) ── */
.xp-section {
  margin-top: 52px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
}

.xp-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,170,0,.7), rgba(255,170,0,.4), transparent);
}

.xp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.xp-title {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 6px 0 8px;
  letter-spacing: -.01em;
}

.xp-subtitle {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  max-width: 400px;
}

.xp-header-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,170,0,.07);
  border: 1px solid rgba(255,170,0,.2);
  border-radius: 10px;
  padding: 10px 16px;
  color: var(--warn);
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: .72rem;
  line-height: 1.4;
}

.xp-header-badge small {
  display: block;
  color: var(--muted);
  font-size: .62rem;
}

.xp-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

/* XP earn list */
.xp-earn-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.xp-earn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.xp-earn-row:last-child { border-bottom: none; }

.xp-earn-action {
  font-size: .76rem;
  color: var(--muted);
}

.xp-earn-val {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 700;
  color: var(--accent2);
  flex-shrink: 0;
  margin-left: 12px;
}

.xp-earn-val-accent2 { color: var(--accent2); font-size: .82rem; }

.xp-earn-highlight {
  background: rgba(0,255,163,.04);
  border-radius: 6px;
  padding: 8px 10px;
  margin: 0 -10px 2px;
  border-bottom: none;
}

.xp-earn-streak .xp-earn-action { font-size: .68rem; }
.xp-earn-streak .xp-earn-val { font-size: .66rem; color: var(--warn); }

/* Boost tiers */
.xp-boosts-wrap {
  padding: 0 0;
}

.xp-boost-label {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.xp-boost-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.xp-boost-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
  transition: border-color .25s, transform .2s;
}

.xp-boost-card:hover { transform: translateX(3px); }

.xp-boost-plan {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--muted);
  width: 52px;
  flex-shrink: 0;
}

.xp-boost-mult {
  font-family: var(--mono);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
  flex-shrink: 0;
}

.xp-boost-note {
  font-size: .73rem;
  color: var(--muted);
  line-height: 1.3;
}

/* Pro boost card */
.xp-boost-card-pro { border-color: rgba(0,200,255,.2); background: rgba(0,200,255,.03); }
.xp-boost-card-pro:hover { border-color: rgba(0,200,255,.35); }
.xp-boost-badge-pro {
  font-family: var(--mono); font-size: .68rem;
  color: var(--accent); width: 52px; flex-shrink: 0;
}
.xp-boost-mult-pro { color: var(--accent); }
.xp-boost-card-pro .xp-boost-note { color: var(--accent); opacity: .8; }

/* Founder boost card */
.xp-boost-card-founder { border-color: rgba(255,170,0,.22); background: rgba(255,170,0,.03); }
.xp-boost-card-founder:hover { border-color: rgba(255,170,0,.4); }
.xp-boost-badge-founder {
  font-family: var(--mono); font-size: .68rem;
  color: var(--warn); width: 52px; flex-shrink: 0;
}
.xp-boost-mult-founder { color: var(--warn); }
.xp-boost-card-founder .xp-boost-note { color: var(--warn); opacity: .8; }

/* Vertical divider */
.xp-divider {
  width: 1px;
  background: var(--border);
  margin: 0 36px;
  align-self: stretch;
}

/* Unlocks */
.xp-unlocks-wrap {}

.xp-unlocks-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.xp-unlock-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.xp-unlock-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,170,0,.08);
  border: 1px solid rgba(255,170,0,.18);
  color: var(--warn);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.xp-unlock-icon-mystery {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.1);
  color: var(--muted);
}

.xp-unlock-text {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.5;
  padding-top: 6px;
}

.xp-tba {
  color: var(--muted);
  font-style: italic;
}

.xp-mystery-note {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin: 0;
  padding: 12px 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 7px;
}

/* ─── WHITELIST ──────────────────────────────────────────── */
.whitelist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.whitelist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
}
.whitelist-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin: 12px 0 16px;
  letter-spacing: -.02em;
}
.whitelist-sub {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.whitelist-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.whitelist-perks-row {
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.whitelist-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: var(--muted);
}
.whitelist-perks li svg { color: var(--accent2); flex-shrink: 0; }

.wl-cta-btn {
  margin-top: 24px;
  padding: 16px 40px;
  font-size: .92rem;
}

/* ─── ROADMAP ─────────────────────────────────────────────── */
.roadmap-section {
  margin-top: 64px;
  padding: 48px 40px 52px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  position: relative;
  /* roadmap section container */
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), var(--accent), transparent);
}

.roadmap-header { margin-bottom: 40px; }

.roadmap-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 800;
  margin-top: 12px;
  letter-spacing: -.01em;
}

/* ── Roadmap track + progress line ── */
.roadmap-track {
  position: relative;
  margin-bottom: 14px;
  padding: 0 40px;
}

.roadmap-track-2 { margin-top: 28px; }

.roadmap-track-line {
  position: absolute;
  top: 5px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(112,144,176,.15);
  border-radius: 2px;
  z-index: 0;
}

.roadmap-track-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  box-shadow: 0 0 8px rgba(0,255,163,.3), 0 0 16px rgba(0,255,163,.15);
  position: relative;
  animation: track-glow 3s ease-in-out infinite;
}

.roadmap-track-fill-future { width: 0 !important; }

@keyframes track-glow {
  0%,100% { box-shadow: 0 0 6px rgba(0,255,163,.25), 0 0 12px rgba(0,255,163,.1); }
  50%      { box-shadow: 0 0 12px rgba(0,255,163,.4), 0 0 24px rgba(0,255,163,.2); }
}

.roadmap-track-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.roadmap-node-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.roadmap-node-label {
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
}

.node-done .roadmap-node-label { color: var(--accent2); opacity: 1; }
.node-active .roadmap-node-label { color: var(--accent); opacity: 1; }

/* Node dot */
.roadmap-node {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 8px var(--accent2), 0 0 16px rgba(0,255,163,.3);
  flex-shrink: 0;
}

.node-current {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(0,200,255,.4);
  animation: node-pulse 2s ease-in-out infinite;
}
@keyframes node-pulse {
  0%,100% { box-shadow: 0 0 8px var(--accent), 0 0 0 0 rgba(0,200,255,.4); }
  50%     { box-shadow: 0 0 14px var(--accent), 0 0 0 8px rgba(0,200,255,.0); }
}

.node-future {
  background: var(--surface2);
  box-shadow: none;
  border: 2px solid rgba(112,144,176,.3);
}

/* Card row below the track */
.roadmap-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
}

/* Each card */
.roadmap-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  transition: border-color .3s, transform .25s, box-shadow .3s;
}

.roadmap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.roadmap-card.live { border-color: rgba(0,255,163,.2); }
.roadmap-card.live:hover { border-color: rgba(0,255,163,.4); box-shadow: 0 12px 28px rgba(0,0,0,.35), 0 0 20px rgba(0,255,163,.06); }

.roadmap-card.current {
  border-color: rgba(0,200,255,.3);
  background: linear-gradient(135deg, var(--bg2), rgba(0,200,255,.03));
}
.roadmap-card.current:hover { border-color: rgba(0,200,255,.5); box-shadow: 0 12px 28px rgba(0,0,0,.35), 0 0 24px rgba(0,200,255,.08); }

.roadmap-card.soon { border-color: rgba(255,255,255,.07); }

.roadmap-status-row { margin-bottom: 10px; }

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}

.live-badge    { background: rgba(0,255,163,.1);  color: var(--accent2); border: 1px solid rgba(0,255,163,.25); }
.current-badge { background: rgba(0,200,255,.1);  color: var(--accent);  border: 1px solid rgba(0,200,255,.25); animation: pulse-current 2.5s ease-in-out infinite; }
.current-badge svg { animation: blink-dot 1.5s ease-in-out infinite; }
@keyframes pulse-current {
  0%,100% { box-shadow: none; }
  50%      { box-shadow: 0 0 0 3px rgba(0,200,255,.1); }
}
.soon-badge    { background: rgba(255,255,255,.04); color: var(--muted); border: 1px solid rgba(255,255,255,.08); }
.beta-badge    { background: rgba(255,170,0,.1);  color: var(--warn);  border: 1px solid rgba(255,170,0,.25); }
.planned-badge { background: rgba(112,144,176,.07); color: var(--muted); border: 1px solid rgba(112,144,176,.15); }

.roadmap-card-title {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.roadmap-card.live    .roadmap-card-title { color: var(--accent2); }
.roadmap-card.current .roadmap-card-title { color: var(--accent); }
.roadmap-card.soon    .roadmap-card-title,
.roadmap-card.planned .roadmap-card-title { color: var(--muted); }

.roadmap-card-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── LEADERBOARD PREVIEW ─────────────────────────────────── */
.leaderboard-preview {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
  box-shadow: var(--glow2), 0 40px 80px rgba(0,0,0,.4);
}
.lb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono);
  font-size: .75rem;
}
.lb-title { font-weight: 700; color: var(--text); }
.lb-meta  { color: var(--muted); }
.lb-tag {
  background: rgba(0,200,255,.1);
  border: 1px solid rgba(0,200,255,.2);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
}
.lb-row {
  display: grid;
  grid-template-columns: 40px 1fr 110px 110px 110px 100px;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(0,200,255,.05);
  font-family: var(--mono);
  font-size: .75rem;
  transition: background .2s;
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: rgba(0,200,255,.03); }
.lb-row.lb-head { color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; background: rgba(0,200,255,.04); }
.lb-rank      { color: var(--muted); font-weight: 700; }
.lb-rank.top3 { color: var(--warn); }
.lb-addr      { color: var(--accent); }
.lb-pos       { color: var(--accent2); font-weight: 700; }
.lb-neg       { color: var(--danger);  font-weight: 700; }
.lb-neutral   { color: var(--text); }
.lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0,200,255,.08);
  border: 1px solid rgba(0,200,255,.15);
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--mono);
}
.lb-btn:hover { background: rgba(0,200,255,.15); box-shadow: var(--glow2); }

/* ─── COMPARISON ──────────────────────────────────────────── */
.comparison-wrap { margin-top: 48px; overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--mono);
  font-size: .78rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border); }
.comparison-table th { background: var(--surface); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.comparison-table th.hl-col { background: rgba(0,200,255,.06); color: var(--accent); border-bottom-color: rgba(0,200,255,.2); }
.comparison-table td { background: var(--bg2); }
.comparison-table td.hl-col { background: rgba(0,200,255,.04); border-left: 1px solid rgba(0,200,255,.15); border-right: 1px solid rgba(0,200,255,.15); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .row-label { text-align: left; color: var(--text); font-weight: 700; }
.check   { color: var(--accent2); font-size: 1rem; }
.cross   { color: var(--danger);  font-size: 1rem; }
.partial { color: var(--warn);    font-size: .75rem; }

/* ─── PRICING ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1060px; margin: 48px auto 0; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); }
.price-card .price-features { flex: 1; }
.price-card.featured { border-color: var(--accent); box-shadow: var(--glow), 0 30px 60px rgba(0,0,0,.4); background: linear-gradient(135deg, var(--surface) 0%, rgba(0,200,255,.06) 100%); }
.price-card.founder {
  border-color: rgba(255,170,0,.4);
  box-shadow: 0 0 40px rgba(255,170,0,.12), 0 30px 60px rgba(0,0,0,.4);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255,170,0,.05) 100%);
}
.price-card.founder:hover {
  box-shadow: 0 0 56px rgba(255,170,0,.18), 0 30px 60px rgba(0,0,0,.5);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.founder-badge {
  background: var(--warn) !important;
  color: #000 !important;
}
.founder-spots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--warn);
  background: rgba(255,170,0,.08);
  border: 1px solid rgba(255,170,0,.2);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.btn-founder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  padding: 16px 32px;
  background: var(--warn);
  color: #000;
  border: none;
  transition: all .25s ease;
  box-shadow: 0 0 0 0 rgba(255,170,0,.4);
  animation: pulse-founder 3s infinite;
}
.btn-founder:hover {
  background: #ffbe22;
  box-shadow: 0 0 24px rgba(255,170,0,.4);
  transform: translateY(-2px);
}
@keyframes pulse-founder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,170,0,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(255,170,0,0); }
}
.price-plan   { font-family: var(--mono); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.price-amount { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; }
.price-period { font-family: var(--mono); font-size: .75rem; color: var(--muted); margin-bottom: 32px; }
.price-features { list-style: none; margin-bottom: 36px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: .85rem; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,.04); }
.price-features li:last-child { border-bottom: none; }
.price-features li .ok { color: var(--accent2); flex-shrink: 0; }
.price-features li .no { color: var(--muted); opacity: .4; flex-shrink: 0; }
.price-features li.active { color: var(--text); }

/* ─── FINAL CTA ───────────────────────────────────────────── */
.cta-section { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,255,.06) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px; }
.cta-sub   { font-size: 1rem; color: var(--muted); margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--muted); font-family: var(--mono); font-size: .8rem; }
.footer-brand img { height: 20px; width: auto; opacity: .75; transition: opacity .2s; }
.footer-brand:hover img { opacity: 1; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-family: var(--mono); font-size: .72rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-legal { font-family: var(--mono); font-size: .65rem; color: var(--muted); opacity: .5; }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-20px);}  to{opacity:1;transform:translateY(0);} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(24px);}   to{opacity:1;transform:translateY(0);} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px);}   to{opacity:1;transform:translateX(0);} }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── MOBILE NAV ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,8,16,.98);
  backdrop-filter: blur(24px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--sans); font-size: 1.4rem; font-weight: 700; color: var(--text); text-decoration: none; letter-spacing: -.01em; transition: color .2s; }
.mobile-menu a:active { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 1.2rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 201;
}
.mobile-close:active { background: var(--accent); color: #000; border-color: var(--accent); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  /* nav */
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .hamburger { display: flex; }

  /* hero */
  .hero { min-height: auto; padding: 120px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
  .hero-sub { font-size: .95rem; max-width: 100%; }
  .hero-visual { display: flex; justify-content: center; }
  .tg-phone { max-width: 340px; width: 100%; }
  .hero-float { top: -12px; right: -8px; }

  /* urgency */
  .urgency-inner { gap: 10px; font-size: .72rem; }
  .urgency-slots { display: none; }

  /* problem */
  .problems-grid { grid-template-columns: repeat(2, 1fr); }

  /* how it works */
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .how-steps::before { display: none; }
  .how-step { padding: 0 12px; }

  /* features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { flex-direction: row; }
  .feature-card { padding: 24px; }

  /* xp section — tablet */
  .xp-section { padding: 28px 28px 26px; }
  .xp-body { grid-template-columns: 1fr; }
  .xp-divider { width: 100%; height: 1px; margin: 24px 0; }
  .xp-boosts-wrap { padding-right: 0; }

  /* roadmap — tablet */
  .roadmap-section { padding: 36px 24px 40px; }
  .roadmap-track { padding: 0 16px; }
  .roadmap-track-line { left: 16px; right: 16px; }
  .roadmap-cards-row { grid-template-columns: repeat(3, 1fr); gap: 14px 14px; }
  .roadmap-node-label { font-size: .48rem; }
  .roadmap-card { padding: 16px; }
  .roadmap-card-title { font-size: .82rem; }
  .roadmap-card-desc { font-size: .72rem; }
  .whitelist-card { padding: 36px 32px; }

  /* leaderboard */
  .lb-header { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 20px; }
  .lb-row { grid-template-columns: 36px 1fr 90px 90px; gap: 8px; padding: 12px 20px; }
  .lb-row .lb-vol { display: none; }

  /* comparison */
  .comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 560px; font-size: .72rem; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }

  /* pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .price-card { padding: 36px 28px; }
  .founder-spots { margin-bottom: 20px; }

  /* footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 600px) {
  /* layout */
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .container { padding: 0 20px; }

  /* nav */
  nav { padding: 14px 0; }
  .nav-cta .btn-primary { padding: 10px 18px; font-size: .72rem; }

  /* hero */
  .hero { padding: 90px 0 48px; }
  .hero-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .hero-badge { font-size: .6rem; padding: 5px 10px; margin-bottom: 20px; }
  .hero-sub { font-size: .88rem; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 28px; }
  .btn-lg { width: 100%; justify-content: center; padding: 15px 20px; font-size: .82rem; }
  .hero-social-proof { flex-direction: row; align-items: center; gap: 10px; }
  .hero-social-proof .av { width: 28px; height: 28px; font-size: .55rem; }
  .sp-text { font-size: .65rem; }
  .hero-float { display: none; }
  .tg-phone { max-width: 100%; border-radius: 14px; padding: 14px; }

  /* urgency */
  .urgency-bar { padding: 10px 0; }
  .urgency-inner { flex-direction: column; gap: 6px; text-align: center; }

  .whitelist-card { padding: 28px 20px; }
  .whitelist-perks-row { flex-direction: column; align-items: center; gap: 10px; }
  .wl-cta-btn { width: 100%; justify-content: center; padding: 14px 24px; }

  /* section headings */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub { font-size: .88rem; }

  /* problem */
  .problems-grid { grid-template-columns: 1fr; gap: 14px; }
  .problem-card { padding: 20px; }

  /* how it works */
  .how-steps { grid-template-columns: 1fr; gap: 0; }
  .how-step {
    padding: 20px 0;
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0 16px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .how-step:last-child { border-bottom: none; }
  .step-num {
    width: 40px; height: 40px;
    flex-shrink: 0;
    margin: 0;
    font-size: .68rem;
    grid-row: 1 / 3;
    align-self: start;
  }
  .how-step h3 { font-size: .9rem; margin-bottom: 6px; }
  .how-step p { font-size: .8rem; line-height: 1.55; }

  /* features */
  .feature-card { padding: 20px; gap: 14px; }
  .feature-card.featured { flex-direction: row; }
  .feature-icon-lg { width: 48px; height: 48px; }
  .feature-icon-lg svg { width: 22px; height: 22px; }

  /* xp section — mobile */
  .xp-section { padding: 22px 18px 20px; margin-top: 32px; }
  .xp-header { flex-direction: column; gap: 14px; }
  .xp-header-badge { align-self: flex-start; }
  .xp-title { font-size: 1.15rem; }
  .xp-boost-card { padding: 10px 12px; gap: 10px; }
  .xp-boost-mult { font-size: 1.1rem; }
  .xp-unlock-icon { width: 28px; height: 28px; }

  /* roadmap — mobile: vertical timeline */
  .roadmap-section { padding: 24px 20px 28px; margin-top: 40px; }

  /* Hide horizontal tracks */
  .roadmap-track { display: none; }

  /* Stack all cards vertically with left-side timeline */
  .roadmap-cards-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 28px;
    position: relative;
  }

  /* Vertical timeline line */
  .roadmap-cards-row::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(112,144,176,.15);
  }

  .roadmap-card {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
  }
  .roadmap-card:last-child { margin-bottom: 0; }

  /* Node dot on the left timeline */
  .roadmap-card::after {
    content: '';
    position: absolute;
    left: -27px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--surface2);
    border: 2px solid rgba(112,144,176,.3);
  }

  .roadmap-card.live::after {
    background: var(--accent2);
    border: none;
    box-shadow: 0 0 8px var(--accent2);
  }

  .roadmap-card.current::after {
    background: var(--accent);
    border: none;
    box-shadow: 0 0 8px var(--accent);
    animation: node-pulse 2s ease-in-out infinite;
  }

  .roadmap-track-2 { margin-top: 0; }

  /* leaderboard */
  .lb-header { padding: 14px 16px; }
  .lb-row {
    grid-template-columns: 28px 1fr 72px 60px;
    gap: 8px;
    padding: 11px 16px;
    font-size: .72rem;
  }
  .lb-row > div:nth-child(4),
  .lb-row > div:nth-child(5) { display: none; }
  .lb-row > div:nth-child(6) { display: flex; justify-content: flex-end; }
  .lb-btn { padding: 5px 9px; font-size: .62rem; white-space: nowrap; }

  /* comparison */
  .comparison-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 480px; font-size: .65rem; }
  .comparison-table th, .comparison-table td { padding: 10px 8px; }

  /* pricing */
  .pricing-grid { max-width: 100%; gap: 20px; }
  .price-card { padding: 28px 20px; }
  .price-amount { font-size: 2.4rem; }
  .price-features li { font-size: .8rem; padding: 7px 0; }
  .price-features li .ok, .price-features li .no { font-size: .85rem; }
  .founder-spots { font-size: .68rem; }
  .price-badge { font-size: .6rem; padding: 4px 12px; top: -12px; }

  /* cta */
  .cta-section { padding: 64px 0; }
  .cta-title { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
  .cta-sub { font-size: .9rem; margin-bottom: 36px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* footer */
  .footer-inner { gap: 16px; text-align: center; align-items: center; }
  .footer-brand { font-size: .72rem; justify-content: center; }
  .footer-links { gap: 14px; justify-content: center; flex-wrap: wrap; }
  .footer-legal { font-size: .58rem; text-align: center; }
}
