/* ═══════════════════════════════════════════════════
   BitLens — Landing Page  (Dark-first premium theme)
   ═══════════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg: #06060a;
  --bg-2: #0c0c14;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.07);
  --text: #f0f0f5;
  --text-muted: #a0a0b8;
  --text-dim: #6a6a80;
  --accent: #d6a056;
  --accent-light: #e4b97c;
  --accent-rgb: 214, 160, 86;
  --accent-glow: rgba(var(--accent-rgb), 0.24);
  --accent-dim: rgba(var(--accent-rgb), 0.08);
  --price-glow-from: 0 0 20px rgba(var(--accent-rgb), 0.08);
  --price-glow-to: 0 0 14px rgba(10, 10, 10, 0.06);
  --border: rgba(255, 255, 255, 0.07);
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
  --radius-lg: 24px;
  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.8125rem;
  --text-base: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  color-scheme: dark;
}
html.light {
  --bg: #ffffff;
  --bg-2: #f5f5f7;
  --text: #111119;
  --text-muted: #555570;
  --text-dim: #77778a;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-2: rgba(255, 255, 255, 1);
  --border: rgba(0, 0, 0, 0.08);
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-border: rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(0, 0, 0, 0.06);
  color-scheme: light;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
body.launching { opacity: 0; transform: scale(0.98); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Animated background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(var(--accent-rgb), 0.035) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 5% 85%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.008) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}
html.light body::after {
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(6, 6, 10, 0.72);
  border-bottom: 1px solid var(--glass-border);
  z-index: 100;
}
html.light .site-header {
  background: rgba(248, 248, 252, 0.75);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  position: relative;
  z-index: 1;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: var(--text-2xl);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.brand-logo {
  -webkit-text-fill-color: initial;
  flex-shrink: 0;
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--accent);
  font-weight: 600;
  font-size: var(--text-md);
  text-align: center;
  transition: all 0.25s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #000;
  border: none;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
  text-decoration: none;
}
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  text-decoration: none;
}
.btn-lg {
  padding: 0.85rem 2.25rem;
  font-size: var(--text-md);
  border-radius: 14px;
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
}
.btn-ghost:hover {
  background: var(--accent-dim);
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  display: grid;
  gap: 3rem;
  padding: 6rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
  background: var(--text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-pills {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.pill {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: var(--text-base);
  background: var(--glass);
  backdrop-filter: blur(8px);
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}
.pill-signal {
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  border: 1px solid rgba(0,212,170,0.3);
  transition: all 0.3s ease;
}
.pill-price {
  border-color: rgba(var(--accent-rgb), 0.3);
  font-weight: 700;
  font-size: var(--text-md);
  padding: 0.45rem 1.25rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 50%, var(--text) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  box-shadow: var(--price-glow-from);
  animation: priceGlow 3s ease-in-out infinite, gradientShift 6s ease-in-out infinite;
}
/* ── Product Mockup (hero-visual) ── */
.hero-visual {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 80px rgba(139,92,246,0.05);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
}
.hero-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4), 0 0 100px rgba(139,92,246,0.08);
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent);
}
.hero-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.06), transparent);
  pointer-events: none;
}
html.light .hero-visual {
  background: rgba(255,255,255,0.8);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
html.light .hero-visual:hover {
  box-shadow: 0 16px 60px rgba(0,0,0,0.12);
}
.mv-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}
html.light .mv-bar {
  border-bottom-color: rgba(0,0,0,0.06);
}
.mv-dot { width: 5px; height: 5px; border-radius: 50%; }
.mv-brand { font-size: 10px; font-weight: 700; color: #8b5cf6; margin-left: 6px; }
.mv-tabs { display: flex; gap: 12px; margin-left: auto; }
.mv-tab { font-size: 8px; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 1px; }
.mv-tab.active { color: #a78bfa; }
html.light .mv-tab { color: rgba(0,0,0,0.25); }
html.light .mv-tab.active { color: #7c3aed; }
.mv-body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 8px; }
.mv-signal {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(139,92,246,0.04), rgba(139,92,246,0.01));
  border: 1px solid rgba(139,92,246,0.08);
  border-radius: 10px;
}
.mv-signal-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1;
}
.mv-signal-meta { display: flex; flex-direction: column; gap: 2px; }
.mv-signal-label {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
  font-weight: 600;
}
html.light .mv-signal-label { color: rgba(0,0,0,0.3); }
.mv-signal-zone { font-size: 12px; color: #f59e0b; font-weight: 500; }
.mv-analyst {
  background: rgba(139,92,246,0.025);
  border: 1px solid rgba(139,92,246,0.07);
  border-radius: 10px;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}
.mv-analyst::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.25), transparent);
}
.mv-analyst-h { display: flex; align-items: center; gap: 5px; margin-bottom: 5px; }
.mv-analyst-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8b5cf6;
  animation: breathe 4s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(139,92,246,0.4);
}
@keyframes breathe {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 4px rgba(139,92,246,0.2); }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(139,92,246,0.5); }
}
.mv-analyst-label {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8b5cf6;
  font-weight: 600;
}
.mv-analyst-time {
  font-size: 7px;
  color: rgba(255,255,255,0.2);
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
}
html.light .mv-analyst-time { color: rgba(0,0,0,0.25); }
.mv-analyst-hl {
  font-size: 10px;
  font-weight: 600;
  color: #f0f0f2;
  line-height: 1.4;
}
html.light .mv-analyst-hl { color: #1a1a2e; }
.mv-chips { display: flex; gap: 3px; margin-top: 5px; }
.mv-chip { font-size: 7px; padding: 2px 6px; border-radius: 8px; font-weight: 600; }
.c-bull { background: rgba(16,185,129,0.1); color: #10b981; }
.c-bear { background: rgba(239,68,68,0.1); color: #ef4444; }
.mv-btc {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html.light .mv-btc {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.06);
}
.mv-btc-lbl {
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.2);
  font-weight: 600;
}
html.light .mv-btc-lbl { color: rgba(0,0,0,0.3); }
.mv-btc-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #f5f5f8;
}
html.light .mv-btc-price { color: #1a1a2e; }
.mv-btc-chg { font-size: 10px; font-weight: 600; color: #10b981; margin-left: 6px; }
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.mv-tile {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 8px;
}
html.light .mv-tile {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.05);
}
.mv-tile-lbl {
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.2);
  font-weight: 600;
}
html.light .mv-tile-lbl { color: rgba(0,0,0,0.3); }
.mv-tile-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #f0f0f2;
  margin-top: 2px;
}
html.light .mv-tile-val { color: #1a1a2e; }
.mv-tile-chg { font-size: 8px; font-weight: 500; margin-top: 1px; }
.green { color: #10b981; }
.red { color: #ef4444; }
.amber { color: #f59e0b; }
@keyframes priceGlow {
  0%, 100% { box-shadow: var(--price-glow-from); }
  50% { box-shadow: var(--price-glow-to); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Signal Hero Block ── */
.signal-hero {
  max-width: 800px;
  margin: -20px auto 40px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.signal-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}
.signal-hero-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--signal-glow, rgba(16,185,129,0.15)), transparent 70%);
  pointer-events: none;
}
.signal-hero-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.signal-hero-score {
  font-size: 64px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
  margin: 4px 0;
  color: var(--signal-color, #10b981);
}
.signal-hero-zone {
  font-size: 16px;
  font-weight: 600;
  color: var(--signal-color, #10b981);
}
.signal-hero-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.signal-hero-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  transition: opacity 0.2s;
}
.signal-hero-footer:hover {
  opacity: 0.8;
  text-decoration: none;
}
.signal-hero-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.signal-hero-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--signal-color, #10b981);
  white-space: nowrap;
}
.feature-item-highlight {
  border-color: rgba(16, 185, 129, 0.2) !important;
  background: rgba(16, 185, 129, 0.03) !important;
}

@media (max-width: 600px) {
  .signal-hero-inner {
    text-align: center;
  }
  .signal-hero-score {
    font-size: 48px;
  }
}

/* Light mode overrides for signal hero */
html.light .signal-hero-inner {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}
html.light .signal-hero-label {
  color: rgba(0,0,0,0.4);
}
html.light .signal-hero-subtitle {
  color: rgba(0,0,0,0.35);
}
html.light .signal-hero-tagline {
  color: rgba(0,0,0,0.35);
}
html.light .signal-hero-footer {
  border-top-color: rgba(0,0,0,0.05);
}
html.light .signal-hero-inner::before {
  background: radial-gradient(circle, var(--signal-glow, rgba(16,185,129,0.1)), transparent 70%);
}

/* ── Command Center Showcase ── */
.command-center-showcase {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.showcase-content {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}
.showcase-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 9px;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.showcase-content h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.showcase-subtitle {
  font-size: var(--text-lg);
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}
.showcase-desc {
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.showcase-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.showcase-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-base);
  color: var(--text);
  font-weight: 500;
  justify-content: center;
}
.showcase-feat-icon {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .showcase-features {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }
}

/* ── How It Works ── */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-it-works h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.how-it-works > p.how-subtitle {
  color: var(--text-muted);
  font-size: var(--text-md);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(var(--accent-rgb), 0.08);
}
.step:hover::before {
  opacity: 1;
}
.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  color: var(--accent);
  font-weight: 800;
  font-size: var(--text-lg);
  flex-shrink: 0;
}
.step-icon {
  font-size: 1.5rem;
}
.step h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}
.step p {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
html.light .step:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(var(--accent-rgb), 0.1);
}

/* ── Live Stats ── */
.live-stats {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.stats-container {
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% -10%, rgba(var(--accent-rgb), 0.05) 0%, transparent 70%);
  pointer-events: none;
}
html.light .stats-container {
  background: rgba(245, 245, 247, 0.8);
  border-color: rgba(0, 0, 0, 0.06);
}
.stats-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.stats-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: live-pulse 2s ease-in-out infinite;
}
.stats-header h2 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .stats-container { padding: 2rem 1.25rem; }
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem 0.5rem;
  border-radius: var(--radius);
  transition: transform 0.3s;
}
.stat:hover {
  transform: scale(1.05);
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  color: var(--text-dim);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Frameworks Showcase ── */
.frameworks-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}
.fw-container {
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fw-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(var(--accent-rgb), 0.04) 0%, transparent 60%);
  pointer-events: none;
}
html.light .fw-container {
  background: rgba(245, 245, 247, 0.8);
  border-color: rgba(0, 0, 0, 0.06);
}
.fw-container h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.fw-container > p {
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}
.fw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .fw-grid { grid-template-columns: repeat(2, 1fr); }
  .fw-container { padding: 2.5rem 1.5rem; }
}
@media (max-width: 600px) {
  .fw-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .fw-container { padding: 2rem 1.25rem; }
}
.fw-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.fw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.fw-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(var(--accent-rgb), 0.06);
}
.fw-card:hover::before {
  opacity: 1;
}
html.light .fw-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.06);
}
html.light .fw-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
}
.fw-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.fw-icon {
  font-size: 1.25rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.fw-card:hover .fw-icon {
  opacity: 1;
}
.fw-phase {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
}
/* Late phase pulse — fase > 50% voortgang */
.fw-phase-late {
  border-color: rgba(var(--accent-rgb), 0.35);
  animation: phase-pulse 3s ease-in-out infinite;
}
@keyframes phase-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.15); }
  50% { box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0); }
}
.fw-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin: 0 0 0.35rem;
  position: relative;
  z-index: 1;
}
.fw-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── Learn Section ── */
.learn-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  position: relative;
  z-index: 1;
}
.learn-container {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}
.learn-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(var(--accent-rgb), 0.04) 0%, transparent 60%);
  pointer-events: none;
}
html.light .learn-container {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.06);
}
.learn-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.learn-icon {
  font-size: 1.75rem;
}
.learn-container h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.learn-container p {
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.learn-modules-hint {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  font-size: 1.5rem;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}
.learn-modules-hint span {
  transition: opacity 0.3s, transform 0.3s;
}
.learn-container:hover .learn-modules-hint span {
  opacity: 1;
}
.learn-container:hover .learn-modules-hint span:nth-child(1) { transition-delay: 0s; transform: translateY(-2px); }
.learn-container:hover .learn-modules-hint span:nth-child(2) { transition-delay: 0.05s; transform: translateY(-2px); }
.learn-container:hover .learn-modules-hint span:nth-child(3) { transition-delay: 0.1s; transform: translateY(-2px); }
.learn-container:hover .learn-modules-hint span:nth-child(4) { transition-delay: 0.15s; transform: translateY(-2px); }
.learn-container:hover .learn-modules-hint span:nth-child(5) { transition-delay: 0.2s; transform: translateY(-2px); }
.learn-container:hover .learn-modules-hint span:nth-child(6) { transition-delay: 0.25s; transform: translateY(-2px); }

/* ── Feature Section Highlight ── */
.feature-section-highlight {
  background: rgba(var(--accent-rgb), 0.03);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.feature-section-highlight .feature-section-title {
  border-bottom-color: rgba(var(--accent-rgb), 0.25);
}

/* ── LIVE Badge ── */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65em;
  font-weight: 700;
  color: #d4a017;
  letter-spacing: 0.08em;
  vertical-align: middle;
  margin-left: 10px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ── Value Props ── */
.value-props {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.value-props .card {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.value-props .card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-dim) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.value-props .card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(var(--accent-rgb), 0.08);
}
.value-props .card:hover::before {
  opacity: 1;
}
html.light .value-props .card {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.card-icon {
  font-size: var(--text-3xl);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.value-props .card h2 {
  font-size: var(--text-xl);
  margin: 0 0 0.5rem;
  position: relative;
  z-index: 1;
}
.value-props .card p {
  color: var(--text-muted);
  font-size: var(--text-md);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ── Features ── */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}
.features > h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.feature-section {
  margin-bottom: 2.5rem;
}
.feature-section:last-child {
  margin-bottom: 0;
}
.feature-section-title {
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.features .grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature-item {
  display: block;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.feature-item:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-decoration: none;
}
.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 0.6rem;
  display: block;
}
.feature-item h3 {
  margin: 0 0 0.4rem;
  font-size: var(--text-md);
  font-weight: 700;
}
.feature-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-base);
}

/* ── Highlights Section ── */
.highlights {
  padding: 60px 24px 40px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.highlights h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.highlights > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.highlights-grid,
.highlights .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.highlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.highlight-card::after {
  content: '\2192';
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 1.25rem;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  text-decoration: none;
}
.highlight-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.highlight-emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.highlight-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0 0 8px;
}
.highlight-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin: 0;
}
/* Primary highlight card (Command Center) */
.highlight-primary {
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 32px;
  background: rgba(var(--accent-rgb), 0.04);
  box-shadow: 0 4px 24px rgba(var(--accent-rgb), 0.08);
}
.highlight-primary:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 8px 40px rgba(var(--accent-rgb), 0.15), 0 0 0 1px rgba(var(--accent-rgb), 0.12);
}
.highlight-primary::after {
  color: var(--accent);
}
/* LIVE badge */
.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #22c55e;
  margin-bottom: 12px;
}
.highlight-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* Light mode: highlight cards */
html.light .highlight-card {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
}
html.light .highlight-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
}
html.light .highlight-primary {
  background: rgba(var(--accent-rgb), 0.06);
  border-color: rgba(var(--accent-rgb), 0.3);
}
html.light .highlight-primary:hover {
  border-color: rgba(var(--accent-rgb), 0.5);
}

/* ── Features subtitle ── */
.features-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-md);
  margin: -2rem 0 3rem;
  line-height: 1.7;
}

/* ── Community Cards ── */
.community-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.community-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 32px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  color: var(--text);
  min-width: 160px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.community-card:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--accent-rgb), 0.3);
  text-decoration: none;
}
.community-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.community-label {
  font-weight: 700;
  font-size: var(--text-base);
}
.community-sub {
  color: var(--text-muted);
  font-size: var(--text-sm);
  margin-top: 4px;
}

/* ── Sections ── */
.community, .big-cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.community h2, .big-cta h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.community p {
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
}

/* ── Why Section (Bitcoin-only + Privacy-first) ── */
.why-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.6;
}

.why-card:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 16px;
  filter: grayscale(0.2);
}

.why-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.why-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-points li {
  font-size: var(--text-xs);
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.why-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
}

.why-link {
  font-size: var(--text-xs);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.why-link:hover {
  opacity: 1;
  text-decoration: none;
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    padding: 2rem 1.5rem;
  }
}
.community-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.big-cta {
  padding: 5rem 1.5rem;
}
.big-cta h2 {
  font-size: var(--text-3xl);
  background: linear-gradient(135deg, var(--text) 40%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.big-cta .btn {
  margin-top: 1.5rem;
}

/* ── Footer ── */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: var(--text-base);
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.footer-left {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ── Ambient Mesh ── */
.ambient-mesh {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient-mesh::before,
.ambient-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.045;
}
.ambient-mesh::before {
  width: 800px;
  height: 800px;
  top: -150px;
  right: -50px;
  background: #8b5cf6;
  animation: mesh-drift-1 25s ease-in-out infinite;
}
.ambient-mesh::after {
  width: 700px;
  height: 700px;
  bottom: -100px;
  left: -30px;
  background: #a78bfa;
  animation: mesh-drift-2 30s ease-in-out infinite;
}
html.light .ambient-mesh::before,
html.light .ambient-mesh::after {
  opacity: 0.025;
}
@keyframes mesh-drift-1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.1); }
  66% { transform: translate(-20px,15px) scale(0.95); }
}
@keyframes mesh-drift-2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-25px,25px) scale(1.05); }
  66% { transform: translate(20px,-10px) scale(1.1); }
}

/* ── Section Label ── */
.section-label {
  display: inline-block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(139,92,246,0.4);
  font-weight: 600;
  margin-bottom: 28px;
}

/* ── Replaces Heading (bigger) ── */
.replaces-heading {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

/* ── Features Section (new compact 8-card) ── */
.features-section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}
.features-header {
  text-align: center;
  margin-bottom: 40px;
}
.features-header h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.features-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139,92,246,0.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.feature-card:hover::after {
  opacity: 1;
}
html.light .feature-card {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.06);
}
html.light .feature-card:hover {
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.feature-card .feature-icon {
  font-size: 20px;
  margin-bottom: 10px;
}
.feature-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
}
html.light .feature-desc {
  color: rgba(0,0,0,0.4);
}

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

/* ── Entrance Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.8s ease-out both; }
.hero-visual { animation: fadeUp 0.8s ease-out 0.2s both; }
.features-section { animation: fadeUp 0.6s ease-out 0.4s both; }

/* Staggered feature card reveals */
.feature-card:nth-child(1) { animation: fadeUp 0.4s ease-out 0.5s both; }
.feature-card:nth-child(2) { animation: fadeUp 0.4s ease-out 0.56s both; }
.feature-card:nth-child(3) { animation: fadeUp 0.4s ease-out 0.62s both; }
.feature-card:nth-child(4) { animation: fadeUp 0.4s ease-out 0.68s both; }
.feature-card:nth-child(5) { animation: fadeUp 0.4s ease-out 0.74s both; }
.feature-card:nth-child(6) { animation: fadeUp 0.4s ease-out 0.80s both; }
.feature-card:nth-child(7) { animation: fadeUp 0.4s ease-out 0.86s both; }
.feature-card:nth-child(8) { animation: fadeUp 0.4s ease-out 0.92s both; }

/* ── Responsive ── */
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    padding: 8rem 1.5rem 6rem;
  }
}
@media (max-width: 640px) {
  .hero { padding: 4rem 1rem 3rem; }
  .highlights-grid,
  .highlights .grid { grid-template-columns: 1fr; }
  .highlight-card { padding: 24px 20px; }
  .highlight-card::after { bottom: 12px; right: 14px; }
  .site-footer { flex-direction: column; text-align: center; }
  .header-actions {
    gap: 6px;
  }
  .header-actions .btn {
    font-size: 12px;
    padding: 6px 12px;
    white-space: nowrap;
  }
}

/* ── Privacy Page ── */
.privacy-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.privacy-page h1 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
}
.privacy-updated {
  color: var(--text-muted);
  font-size: var(--text-base);
  margin: 0 0 2.5rem;
}
.privacy-page h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.privacy-page p,
.privacy-page li {
  color: var(--text-muted);
  font-size: var(--text-md);
  line-height: 1.7;
}
.privacy-page ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}
.privacy-page li {
  margin-bottom: 0.35rem;
}
.privacy-page code {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.15rem 0.4rem;
  font-size: 0.88em;
}


/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Module Cards (compact feature overview) ── */
.modules-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.module-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.15s;
}

.module-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: translateY(-1px);
  text-decoration: none;
}

.module-card-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

.module-card-content {
  flex: 1;
  min-width: 0;
}

.module-card-content h4 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.module-card-content p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.module-card-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.modules-cta {
  text-align: center;
  margin-top: 20px;
}

/* Mobile: stack cards vertically */
@media (max-width: 480px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
}

/* ── "What It Replaces" Section ── */
.replaces-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s ease-out 0.55s both;
}

.replaces-container {
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.replaces-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(var(--accent-rgb), 0.04) 0%, transparent 60%);
  pointer-events: none;
}

html.light .replaces-container {
  background: rgba(245, 245, 247, 0.8);
  border-color: rgba(0, 0, 0, 0.06);
}

.replaces-section h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
}

.replaces-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.replaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .replaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .replaces-container {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .replaces-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.replaces-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.replaces-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}

.replaces-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.25);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(var(--accent-rgb), 0.06);
}

.replaces-card:hover::before {
  opacity: 1;
}

html.light .replaces-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(0, 0, 0, 0.06);
}

html.light .replaces-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
}

.replaces-icon {
  font-size: 1.75rem;
  margin-bottom: 10px;
  filter: grayscale(0.2);
  position: relative;
}

.replaces-price {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.12);
}

.replaces-card h3 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  position: relative;
}

.replaces-card p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
}

/* ── Total comparison bar ── */
.replaces-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', monospace;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

html.light .replaces-total {
  background: rgba(255, 255, 255, 0.5);
}

.replaces-total-old {
  font-size: var(--text-base);
  color: var(--text-dim);
  text-decoration: line-through;
  opacity: 0.6;
}

.replaces-total-arrow {
  font-size: 1.2rem;
  color: var(--accent);
}

.replaces-total-new {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--accent);
}

.replaces-bottom {
  font-size: var(--text-xs);
  color: var(--text-dim);
  letter-spacing: 0.3px;
  margin-top: 16px;
}

/* ── Staggered card reveals ── */
.replaces-card:nth-child(1) { animation: fadeUp 0.4s ease-out 0.6s both; }
.replaces-card:nth-child(2) { animation: fadeUp 0.4s ease-out 0.68s both; }
.replaces-card:nth-child(3) { animation: fadeUp 0.4s ease-out 0.76s both; }
.replaces-card:nth-child(4) { animation: fadeUp 0.4s ease-out 0.84s both; }
.replaces-card:nth-child(5) { animation: fadeUp 0.4s ease-out 0.92s both; }
.replaces-card:nth-child(6) { animation: fadeUp 0.4s ease-out 1.0s both; }

/* ── Maven bottom mascot ── */
@keyframes maven-float {
  0%, 100% { transform: translateY(0px) rotate(-0.5deg); }
  50%       { transform: translateY(-7px) rotate(0.5deg); }
}
@keyframes maven-glow-breathe {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(201, 160, 220, 0.40)); }
  50%       { filter: drop-shadow(0 0 28px rgba(201, 160, 220, 0.85)); }
}
.maven-bottom-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 0 24px;
  margin-top: 24px;
}
.maven-bottom-mascot img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  will-change: transform, filter;
  animation: maven-float 4s ease-in-out infinite, maven-glow-breathe 3.5s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .maven-bottom-mascot img {
    animation: none;
    filter: drop-shadow(0 0 10px rgba(201, 160, 220, 0.40));
  }
}
