/* ══════════════════════════════════════════════════════════════════════
   PumpPulse — Splash Page Styles
   ══════════════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #0a0a1a;
  --bg-card: #111128;
  --bg-card-hover: #161640;
  --bg-card-border: rgba(0, 255, 170, 0.08);
  --text-primary: #e0e0f0;
  --text-secondary: #8888aa;
  --text-muted: #555577;
  --accent: #00ffaa;
  --accent-dim: rgba(0, 255, 170, 0.15);
  --cyan: #00d4ff;
  --purple: #8855ff;
  --green: #00cc88;
  --red: #ff4466;
  --orange: #ff8844;
  --yellow: #ffcc00;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Glow Orbs ─────────────────────────────────────────────────────── */

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 170, 0.12), transparent 70%);
  top: -10%; left: -5%;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
  top: 40%; right: -8%;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(136, 85, 255, 0.1), transparent 70%);
  bottom: -5%; left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-15px, 40px) scale(0.95); }
  75% { transform: translate(20px, 15px) scale(1.02); }
}

/* ── Particle Canvas ───────────────────────────────────────────────── */

#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ── Navigation ────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 26, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link-cta {
  color: var(--bg);
  background: var(--accent);
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-link-cta:hover {
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 170, 0.3);
}

/* ── Container ─────────────────────────────────────────────────────── */

.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Fade-up animation ─────────────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #0a0a1a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 170, 0.3);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--bg-card-border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 255, 170, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(0, 255, 170, 0.3);
}

.btn-outline:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-arrow {
  transition: transform 0.2s;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── Spinner ───────────────────────────────────────────────────────── */

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 68, 102, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-green {
  border-color: rgba(0, 204, 136, 0.2);
  border-top-color: var(--green);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════ */

.hero {
  text-align: center;
  padding: 140px 0 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(52px, 10vw, 80px);
  font-weight: 800;
  letter-spacing: -3px;
  background: linear-gradient(135deg, var(--accent), var(--cyan), var(--purple));
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.05;
}

.pulse-text {
  display: inline-block;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.03); }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-tagline {
  font-size: clamp(16px, 3vw, 22px);
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ── Live Stats ────────────────────────────────────────────────────── */

.live-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 16px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.stat-value {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
}

/* ══════════════════════════════════════════════════════════════════════
   SECTIONS (shared)
   ══════════════════════════════════════════════════════════════════════ */

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-disclaimer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 32px;
  font-style: italic;
}

.section-cta {
  text-align: center;
  margin-top: 32px;
}

/* ══════════════════════════════════════════════════════════════════════
   RUG HALL OF SHAME
   ══════════════════════════════════════════════════════════════════════ */

.shame-title {
  background: linear-gradient(135deg, var(--red), var(--orange)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.shame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  transition: opacity 0.15s ease;
}

.shame-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.shame-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 68, 102, 0.15);
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.shame-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange));
}

.shame-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 68, 102, 0.3);
}

.shame-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.shame-token-info {
  display: flex;
  flex-direction: column;
}

.shame-token-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.shame-token-symbol {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--mono);
}

.shame-score {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.shame-score-small {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.shame-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shame-flag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  background: rgba(255, 68, 102, 0.1);
  color: var(--red);
  border: 1px solid rgba(255, 68, 102, 0.15);
}

.shame-flag-warn {
  background: rgba(255, 136, 68, 0.1);
  color: var(--orange);
  border-color: rgba(255, 136, 68, 0.15);
}

.shame-tier {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  background: rgba(255, 68, 102, 0.1);
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════════════════
   TOP PERFORMERS
   ══════════════════════════════════════════════════════════════════════ */

.top-title {
  background: linear-gradient(135deg, var(--green), var(--cyan)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.top-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.15s ease;
}

.top-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 204, 136, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  transition: transform 0.2s, border-color 0.2s;
}

.top-card:hover {
  transform: translateX(4px);
  border-color: rgba(0, 204, 136, 0.25);
}

.top-rank {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.top-rank-1 { color: var(--yellow); }
.top-rank-2 { color: #c0c0c0; }
.top-rank-3 { color: #cd7f32; }

.top-token-info {
  flex: 1;
  min-width: 0;
}

.top-token-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-token-symbol {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--mono);
}

.top-score {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.top-score-strong { color: var(--green); }
.top-score-moderate { color: var(--yellow); }
.top-score-caution { color: var(--orange); }

.top-tier-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.badge-strong {
  background: rgba(0, 204, 136, 0.1);
  color: var(--green);
}

.badge-moderate {
  background: rgba(255, 204, 0, 0.1);
  color: var(--yellow);
}

.badge-caution {
  background: rgba(255, 136, 68, 0.1);
  color: var(--orange);
}

.badge-avoid {
  background: rgba(255, 68, 102, 0.1);
  color: var(--red);
}

/* ── Blurred token names (paywall teaser) ─────────────────────────── */

.blurred-text {
  filter: blur(6px);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  transition: filter 0.3s;
}

.top-list {
  position: relative;
}

.top-subscribe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.top-subscribe-cta {
  background: rgba(10, 10, 26, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--accent-dim);
  border-radius: 12px;
  padding: 16px 28px;
  text-align: center;
  pointer-events: auto;
}

.top-subscribe-cta p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 10px;
}

.top-subscribe-cta a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.top-subscribe-cta a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════════
   HOW SCORING WORKS
   ══════════════════════════════════════════════════════════════════════ */

.score-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.formula-box {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 24px 32px;
  text-align: center;
  min-width: 140px;
  transition: transform 0.2s;
}

.formula-box:hover {
  transform: translateY(-4px);
}

.formula-safety {
  border-color: rgba(0, 204, 136, 0.2);
}

.formula-momentum {
  border-color: rgba(0, 212, 255, 0.2);
}

.formula-total {
  border-color: rgba(0, 255, 170, 0.2);
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.08);
}

.formula-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.formula-box h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.formula-range {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-muted);
}

.formula-plus, .formula-equals {
  font-family: var(--mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ── Factor Cards ──────────────────────────────────────────────────── */

.factors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.factor-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  overflow: hidden;
}

.factor-header {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.safety-header {
  background: rgba(0, 204, 136, 0.08);
  color: var(--green);
  border-bottom: 1px solid rgba(0, 204, 136, 0.1);
}

.momentum-header {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.factor-list {
  list-style: none;
  padding: 8px 0;
}

.factor-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.factor-list li:last-child {
  border-bottom: none;
}

.factor-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  margin-top: 1px;
}

.factor-list strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.factor-list span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Tier Strip ────────────────────────────────────────────────────── */

.tier-strip {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.tier-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  min-width: 100px;
}

.tier-score {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.tier-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.tier-strong {
  background: rgba(0, 204, 136, 0.1);
  border: 1px solid rgba(0, 204, 136, 0.2);
  color: var(--green);
}

.tier-moderate {
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid rgba(255, 204, 0, 0.2);
  color: var(--yellow);
}

.tier-caution {
  background: rgba(255, 136, 68, 0.1);
  border: 1px solid rgba(255, 136, 68, 0.2);
  color: var(--orange);
}

.tier-avoid {
  background: rgba(255, 68, 102, 0.1);
  border: 1px solid rgba(255, 68, 102, 0.2);
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════════ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 170, 0.15);
}

.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(0, 255, 170, 0.1);
}

.price-card-featured:hover {
  border-color: var(--accent);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: #0a0a1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.price-tier {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.price-amount {
  margin-bottom: 20px;
}

.price-value {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
}

.price-features {
  list-style: none;
  margin-bottom: 24px;
}

.price-features li {
  font-size: 13px;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
}

.feature-included {
  color: var(--text-secondary);
}

.feature-included::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.feature-excluded {
  color: var(--text-muted);
  opacity: 0.5;
}

.feature-excluded::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════ */

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-link:not(.nav-link-cta) {
    display: none;
  }

  .live-stats {
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
  }

  .stat {
    padding: 10px 0;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .shame-grid {
    grid-template-columns: 1fr;
  }

  .factors-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .score-formula {
    gap: 10px;
  }

  .formula-box {
    padding: 16px 20px;
    min-width: 100px;
  }

  .formula-plus, .formula-equals {
    font-size: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .top-card {
    flex-wrap: wrap;
    gap: 10px;
  }

  .top-score {
    font-size: 20px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    letter-spacing: -2px;
  }

  .tier-strip {
    gap: 8px;
  }

  .tier-badge {
    padding: 8px 16px;
    min-width: 80px;
  }

  .score-formula {
    flex-direction: column;
    gap: 8px;
  }

  .formula-plus, .formula-equals {
    transform: rotate(90deg);
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   WHAT IS PUMP.FUN? EXPLAINER
   ══════════════════════════════════════════════════════════════════════ */

.explainer-title {
  background: linear-gradient(135deg, var(--accent), var(--yellow)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.explainer-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.explainer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 170, 0.15);
}

.explainer-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.explainer-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.explainer-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.explainer-cta {
  text-align: center;
  margin-top: 8px;
}

.explainer-honest {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 24px;
  background: rgba(255, 68, 102, 0.06);
  border: 1px solid rgba(255, 68, 102, 0.12);
  border-radius: 10px;
}

.explainer-honest strong {
  color: var(--red);
}

.explainer-honest em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

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

/* ══════════════════════════════════════════════════════════════════════
   FOOTER DISCLAIMER OVERRIDE
   ══════════════════════════════════════════════════════════════════════ */

.footer-disclaimer {
  font-size: 16px !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-style: normal !important;
  line-height: 1.7 !important;
  max-width: 700px !important;
  margin: 0 auto !important;
  padding: 16px 0 !important;
}

/* ══════════════════════════════════════════════════════════════════════
   KONAMI HINT
   ══════════════════════════════════════════════════════════════════════ */

.konami-hint {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(255, 255, 255, 0.018);
  letter-spacing: 0.15em;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
}

/* ══════════════════════════════════════════════════════════════════════
   SECRET SIGNAL OVERLAY
   ══════════════════════════════════════════════════════════════════════ */

.secret-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.secret-overlay.active {
  display: flex;
}

.secret-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 170, 0.2);
  border-radius: 16px;
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 0 60px rgba(0, 255, 170, 0.1), 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.4s ease;
  overflow: hidden;
}

.secret-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-family: var(--mono);
  font-size: 48px;
  font-weight: 700;
  color: rgba(0, 255, 170, 0.04);
  letter-spacing: 8px;
  pointer-events: none;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.secret-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.secret-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

.secret-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}

.secret-close:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.secret-body {
  position: relative;
  z-index: 1;
}

.secret-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.secret-token-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.secret-mint {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 20px;
  word-break: break-all;
}

.secret-scores {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.secret-score-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.secret-score-box.total {
  border-color: rgba(0, 255, 170, 0.2);
  background: rgba(0, 255, 170, 0.05);
}

.secret-score-box.safety {
  border-color: rgba(0, 204, 136, 0.15);
}

.secret-score-box.momentum {
  border-color: rgba(0, 212, 255, 0.15);
}

.secret-score-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.secret-score-value {
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.secret-score-box.safety .secret-score-value {
  color: var(--green);
}

.secret-score-box.momentum .secret-score-value {
  color: var(--cyan);
}

.secret-age {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.secret-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.secret-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.secret-timer {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
}

.secret-burned {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: 32px 0;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════
   VIRTUAL KONAMI KEYBOARD (mobile)
   ══════════════════════════════════════════════════════════════════════ */

.konami-kb-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.konami-kb-overlay.active {
  display: flex;
}

.konami-kb {
  background: var(--bg-card);
  border: 1px solid rgba(0, 255, 170, 0.15);
  border-radius: 16px 16px 0 0;
  padding: 20px 24px 28px;
  width: 100%;
  max-width: 360px;
  animation: kbPop 0.3s ease;
}

.konami-kb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
}

.konami-kb-hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
}

.konami-kb-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  padding: 0 4px;
}

.konami-kb-display {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 16px;
  min-height: 28px;
  flex-wrap: wrap;
}

.kb-input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(0, 255, 170, 0.1);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.konami-kb-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.konami-kb-row {
  display: flex;
  gap: 8px;
}

.konami-btn {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 20px;
  font-family: var(--mono);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
  -webkit-user-select: none;
  user-select: none;
}

.konami-btn:active {
  transform: scale(0.92);
}

.konami-btn-letter {
  font-size: 18px;
  font-weight: 700;
}

.konami-btn.correct {
  background: rgba(0, 255, 170, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.konami-btn.wrong {
  background: rgba(255, 68, 102, 0.2);
  border-color: var(--red);
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════════════════
   CRT GLITCH
   ══════════════════════════════════════════════════════════════════════ */

.crt-glitch {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 255, 170, 0.03) 0px,
    rgba(0, 255, 170, 0.03) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: screen;
}

.crt-glitch.active {
  display: block;
  animation: glitch 0.3s linear;
}

/* ══════════════════════════════════════════════════════════════════════
   KEYFRAMES — Easter Egg
   ══════════════════════════════════════════════════════════════════════ */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes kbPop {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glitch {
  0% { opacity: 0; }
  10% { opacity: 1; }
  20% { opacity: 0.6; transform: translateX(-2px); }
  30% { opacity: 1; transform: translateX(3px); }
  40% { opacity: 0.4; transform: translateX(-1px) skewX(1deg); }
  50% { opacity: 1; transform: translateX(0); }
  60% { opacity: 0.7; transform: translateX(2px) skewX(-0.5deg); }
  70% { opacity: 1; transform: translateX(-3px); }
  80% { opacity: 0.5; transform: translateX(1px); }
  90% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; }
}

