/* ============================================================
   VITALEDGE - Porn Killer & NoFap Protocol™ V1.0
   $100M SaaS Product Design System (Linear / Stripe / Raycast / Vercel style)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg: #030102;
  --surface: #070204;
  --card-bg: #0d0608;
  --card-hover: #14090c;

  --accent: #D90429;
  --accent-hover: #EF233C;
  --accent-glow: rgba(217, 4, 41, 0.22);
  --accent-glow-strong: rgba(217, 4, 41, 0.45);
  --accent-soft: rgba(217, 4, 41, 0.08);
  --accent-gradient: linear-gradient(135deg, #D90429 0%, #ff4b2b 100%);

  --text-primary: #FFFFFF;
  --text-secondary: #c0c7d6;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  --border-light: rgba(255, 255, 255, 0.06);
  --border-lighter: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(217, 4, 41, 0.25);

  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

.mono-val {
  font-family: var(--font-mono);
  font-weight: 600;
}

.text-red { color: #ff5050; }
.text-green { color: #10b981; }

/* Status LED Dots */
.status-led {
  width: 7px; height: 7px;
  border-radius: 50%; display: inline-block;
}
.status-led.green {
  background: #10b981; box-shadow: 0 0 8px #10b981;
}
.status-led.red {
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: ledPulse 2s infinite;
}

@keyframes ledPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ════════════════════════════════════════════
   AMBIENT GLOW & TECH GRID
   ════════════════════════════════════════════ */
.ambient-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.3;
}

.orb-1 { width: 500px; height: 700px; background: radial-gradient(circle, rgba(30, 64, 175, 0.15) 0%, transparent 70%); left: -200px; top: 20%; }
.orb-2 { width: 500px; height: 700px; background: radial-gradient(circle, rgba(217, 4, 41, 0.15) 0%, transparent 70%); right: -200px; top: 40%; }
.orb-3 { width: 700px; height: 500px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); left: 50%; top: 0; transform: translateX(-50%); }

.grid-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(217, 4, 41, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 4, 41, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
}

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

/* ════════════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════════════ */
.container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  position: relative; z-index: 1;
}

.section { padding: 6rem 0; position: relative; }
.section--surface { background: var(--surface); }
.text-center { text-align: center; }

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.02em;
}

.headline-hero {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem); line-height: 1.05; font-weight: 900;
}

.headline-lg {
  font-size: clamp(1.8rem, 3.8vw, 2.5rem); line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-fade { color: var(--text-muted); }

/* Eyebrow Pill */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1.15rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-primary);
  background: var(--accent-soft); border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill); margin-bottom: 1.5rem;
}

/* ════════════════════════════════════════════
   FLOATING PILL NAVBAR
   ════════════════════════════════════════════ */
.navbar-wrapper {
  position: fixed; top: 1.25rem; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: center; padding: 0 1rem;
}

.navbar {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  background: rgba(13, 6, 8, 0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light); border-radius: var(--radius-pill);
  transition: all var(--transition); max-width: 760px; width: 100%;
  justify-content: space-between;
}

.navbar-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.05em;
}

.version-tag {
  font-size: 0.62rem; font-weight: 700; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--border-accent);
  padding: 0.1rem 0.4rem; border-radius: 4px; margin-left: 0.4rem;
}

.navbar-links {
  display: flex; align-items: center; gap: 1.25rem;
}

.navbar-links a {
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  transition: color var(--transition);
}

.navbar-links a:hover { color: var(--text-primary); }

.navbar-cta {
  background: var(--text-primary); color: #000 !important;
  padding: 0.5rem 1.2rem; border-radius: var(--radius-pill);
  font-size: 0.8rem !important; font-weight: 700 !important;
}

/* Mobile Toggle */
.nav-toggle {
  display: flex; position: fixed; top: 1.25rem; right: 1.25rem; z-index: 1002;
  flex-direction: column; gap: 4px; cursor: pointer; padding: 8px;
  background: rgba(13, 6, 8, 0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border-light); border-radius: 8px;
}

.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text-primary); }

@media (min-width: 769px) { .nav-toggle { display: none; } }
@media (max-width: 768px) { .navbar-links { display: none; } }

.nav-mobile {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(3, 1, 2, 0.98); backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-mobile.active { display: flex; }
.nav-mobile a { font-size: 1.3rem; font-weight: 700; color: var(--text-muted); }

/* ════════════════════════════════════════════
   HERO & SAAS OS WINDOW WIDGET
   ════════════════════════════════════════════ */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding: 8rem 0 5rem; position: relative;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center;
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-description {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  max-width: 520px; margin-bottom: 2.25rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }

.hero-social-proof { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.proof-avatars { display: flex; }
.proof-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: #fff;
  border: 2px solid var(--bg); margin-left: -7px;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-avatar-count { background: var(--accent-soft) !important; color: var(--accent) !important; }
.proof-text { font-size: 0.82rem; color: var(--text-muted); }
.proof-text strong { color: var(--accent); }

.hero-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding-top: 1.75rem; border-top: 1px solid var(--border-light); max-width: 480px;
}

.stat-box {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 0.85rem 1rem; text-align: center;
}

.stat-box-number {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-primary); line-height: 1;
}

.stat-box-label {
  font-size: 0.68rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem; font-weight: 600;
}

/* OS Window Card Widget */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.os-window-card {
  width: 380px; max-width: 86vw;
  background: #0d0608; border: 1px solid var(--border-accent);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 30px var(--accent-glow);
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.os-window-card:hover {
  transform: rotateY(-2deg) rotateX(1deg) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 45px var(--accent-glow-strong);
}

.os-window-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border-light);
}

.os-dots { display: flex; gap: 6px; }
.os-dots .dot { width: 8px; height: 8px; border-radius: 50%; }
.os-dots .dot.red { background: #ff5f57; }
.os-dots .dot.yellow { background: #ffbd2e; }
.os-dots .dot.green { background: #28ca42; }

.os-title { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 0.4rem; }
.os-status-tag { font-size: 0.62rem; font-weight: 700; color: #10b981; display: flex; align-items: center; gap: 0.35rem; }

.os-window-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }

.os-metric-row { display: flex; flex-direction: column; gap: 0.35rem; }
.os-metric-meta { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-secondary); }

.os-progress-track { width: 100%; height: 6px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.os-progress-fill { height: 100%; border-radius: 3px; }
.os-progress-fill.green { background: linear-gradient(90deg, #059669, #10b981); }
.os-progress-fill.red { background: linear-gradient(90deg, #ff0844, #ff5050); }

.os-dashboard-widget {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
  padding: 0.85rem; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
}

.widget-col { display: flex; flex-direction: column; gap: 0.2rem; }
.widget-label { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.widget-value { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }

.os-footer-note { font-size: 0.72rem; color: #10b981; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; justify-content: center; }

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 1.75rem;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border: none; cursor: pointer; transition: all var(--transition);
  border-radius: var(--radius-sm); white-space: nowrap;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04); color: var(--text-primary);
  border: 1px solid var(--border-lighter);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08); transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-gradient); color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow); border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-accent:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 30px var(--accent-glow-strong);
}

.btn-glow { animation: btnPulse 3s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px var(--accent-glow); }
  50% { box-shadow: 0 4px 30px var(--accent-glow-strong); }
}

.btn-full { width: 100%; }
.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ════════════════════════════════════════════
   DIAGNOSTICS & DASHBOARD WIDGETS
   ════════════════════════════════════════════ */
.diagnostics-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}

.diag-widget {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: var(--transition);
}

.diag-widget:hover {
  border-color: var(--border-accent); transform: translateY(-3px);
}

.diag-widget-header {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}

.widget-icon { font-size: 1.3rem; }
.diag-widget-header h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }

.status-pill {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem; border-radius: 4px;
}
.status-pill.red { background: rgba(255, 50, 50, 0.1); color: #ff5050; border: 1px solid rgba(255, 50, 50, 0.2); }

.loop-flow {
  display: flex; align-items: center; justify-content: space-between; gap: 0.3rem;
  background: rgba(255,255,255,0.02); padding: 0.75rem 0.5rem; border-radius: 6px;
}

.flow-node { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); }
.flow-node.highlight { color: var(--accent); font-weight: 800; }
.flow-arrow { font-size: 0.6rem; color: var(--text-dim); }

.diag-subtext { font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; }

.gauge-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.gauge-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-muted); }
.gauge-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.05); border-radius: 3px; overflow: hidden; }
.gauge-fill { height: 100%; border-radius: 3px; }
.gauge-fill.red { background: #ff5050; }

.trigger-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.trig-tag { font-size: 0.72rem; font-weight: 600; color: #ff5050; background: rgba(255, 50, 50, 0.06); border: 1px solid rgba(255, 50, 50, 0.15); padding: 0.3rem 0.6rem; border-radius: 4px; }

.aura-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.aura-stat-item { background: rgba(255,255,255,0.02); padding: 0.75rem; border-radius: 6px; display: flex; flex-direction: column; gap: 0.2rem; }
.aura-label { font-size: 0.68rem; color: var(--text-dim); }
.aura-val { font-size: 0.85rem; font-weight: 700; }

/* ════════════════════════════════════════════
   TARGET PROFILES
   ════════════════════════════════════════════ */
.who-boxes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}

.who-box {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem 1.25rem; transition: var(--transition);
}

.who-box:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.who-box-header { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.who-box-icon { font-size: 1.3rem; }
.who-box-header h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.who-focus-pill { font-size: 0.68rem; font-weight: 700; color: var(--accent); margin-bottom: 0.6rem; }
.who-box p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ════════════════════════════════════════════
   BENTO GRID (9 SYSTEMS)
   ════════════════════════════════════════════ */
.bento-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}

.bento-card {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem 1.25rem;
  transition: var(--transition); display: flex; flex-direction: column;
}

.bento-card:hover {
  border-color: var(--border-accent); transform: translateY(-3px);
}

.bento-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.bento-icon { font-size: 1.5rem; }

.part-pill {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--border-accent);
  padding: 0.2rem 0.5rem; border-radius: 4px;
}

.bento-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.6rem; color: var(--text-primary); }

.bento-meta { display: flex; gap: 0.75rem; margin-bottom: 0.85rem; }
.meta-tag { font-size: 0.7rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; }
.meta-tag i { color: var(--accent); font-size: 0.68rem; }

.bento-preview-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.feat-badge {
  font-size: 0.68rem; font-weight: 600; color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-light);
  padding: 0.2rem 0.55rem; border-radius: 4px;
}

.bento-toggle-btn {
  width: 100%; background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem; font-size: 0.75rem; font-weight: 700;
  color: var(--text-muted); cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition); font-family: var(--font-body); margin-top: auto;
}

.bento-toggle-btn:hover { background: var(--accent-soft); border-color: var(--border-accent); color: var(--text-primary); }
.bento-toggle-btn i { font-size: 0.7rem; transition: transform 0.3s ease; }
.bento-card.active .bento-toggle-btn i { transform: rotate(180deg); }

.bento-chapters-drawer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.bento-card.active .bento-chapters-drawer { max-height: 250px; padding-top: 0.85rem; }

.chapter-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.chapter-list li { font-size: 0.78rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.35; }
.chapter-list li span { font-size: 0.68rem; font-weight: 800; color: var(--accent); background: var(--accent-soft); padding: 0.1rem 0.35rem; border-radius: 3px; flex-shrink: 0; }

.mid-cta-box { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.mid-cta-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.25rem; }

/* ════════════════════════════════════════════
   BEFORE vs AFTER METRIC DASHBOARD
   ════════════════════════════════════════════ */
.ba-boxes-wrapper {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.5rem; margin-top: 2.5rem; align-items: center;
}

.ba-card { background: var(--card-bg); border-radius: var(--radius-md); padding: 1.75rem 1.5rem; border: 1px solid var(--border-light); }
.ba-card-before { border-color: rgba(255, 50, 50, 0.25); }
.ba-card-after { border-color: rgba(16, 185, 129, 0.25); }

.ba-card-badge { display: inline-block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; padding: 0.25rem 0.6rem; border-radius: 4px; margin-bottom: 1.25rem; }
.ba-card-badge.red { background: rgba(255, 50, 50, 0.1); color: #ff5050; border: 1px solid rgba(255, 50, 50, 0.25); }
.ba-card-badge.green { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.25); }

.meter-group { margin-bottom: 1rem; }
.meter-label { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.35rem; }

.meter-bar { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.05); border-radius: 3px; overflow: hidden; }
.meter-fill { height: 100%; border-radius: 3px; transition: width 1s ease-in-out; }
.meter-fill.red { background: linear-gradient(90deg, #ff0844, #ff5050); }
.meter-fill.green { background: linear-gradient(90deg, #059669, #10b981); }

.symptom-tags { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.sym-tag { font-size: 0.78rem; font-weight: 600; padding: 0.35rem 0.65rem; border-radius: 4px; }
.sym-tag.red { color: #ff5050; background: rgba(255, 50, 50, 0.06); border: 1px solid rgba(255, 50, 50, 0.15); }
.sym-tag.green { color: #10b981; background: rgba(16, 185, 129, 0.06); border: 1px solid rgba(16, 185, 129, 0.15); }

.ba-card-connector { display: flex; align-items: center; justify-content: center; }
.connector-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.95rem; box-shadow: 0 0 20px var(--accent-glow);
}

@media (max-width: 768px) {
  .ba-boxes-wrapper { grid-template-columns: 1fr; }
  .ba-card-connector { transform: rotate(90deg); margin: 0.5rem 0; }
}

/* ════════════════════════════════════════════
   ROADMAP & SPOTLIGHT
   ════════════════════════════════════════════ */
.roadmap-boxes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}

.roadmap-box {
  background: var(--card-bg); border: 1px solid var(--border-light);
  border-radius: var(--radius-md); padding: 1.5rem 1.25rem; transition: var(--transition);
}

.roadmap-box:hover { border-color: var(--border-accent); }

.roadmap-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.phase-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--accent); opacity: 0.85; }
.roadmap-phase-tag { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; color: var(--text-dim); }
.roadmap-box h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text-primary); }
.roadmap-box p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.spotlight-card {
  background: var(--card-bg); border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.spotlight-badge { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; margin-bottom: 1rem; }
.spotlight-body { display: flex; gap: 1.5rem; align-items: flex-start; }
@media (max-width: 640px) { .spotlight-body { flex-direction: column; } }

.spotlight-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #D90429, #ff4b2b);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 800; color: #fff; flex-shrink: 0;
}

.spotlight-rating { color: #ffbd2e; font-size: 0.85rem; margin-bottom: 0.5rem; }
.spotlight-tag { color: var(--text-dim); font-size: 0.72rem; font-weight: 600; margin-left: 0.5rem; }
.spotlight-quote { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.spotlight-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; }
.spotlight-name { font-weight: 700; color: var(--text-primary); }
.spotlight-verified { color: #10b981; }

/* Ticker Marquee */
.ticker-wrapper { overflow: hidden; }
.ticker-row { display: flex; width: max-content; }
.ticker-track { display: flex; gap: 1.25rem; animation: tickerScroll 30s linear infinite; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.crimson-card { width: 320px; background: var(--card-bg); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1.25rem; flex-shrink: 0; }
.card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.user-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: #fff; }
.crimson-name { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.crimson-loc { font-size: 0.7rem; color: var(--text-dim); }
.verified-badge { color: #10b981; }
.crimson-stars { color: #ffbd2e; font-size: 0.75rem; margin-bottom: 0.5rem; }
.crimson-quote { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.45; }

/* ════════════════════════════════════════════
   FAQ ACCORDION & CHECKOUT CARD
   ════════════════════════════════════════════ */
.faq-container { max-width: 700px; margin: 2.5rem auto 0; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 0.65rem; overflow: hidden; background: var(--card-bg); transition: var(--transition); }
.faq-item:hover { border-color: var(--border-lighter); }
.faq-item.active { border-color: var(--border-accent); box-shadow: 0 0 15px var(--accent-glow); }
.faq-question { width: 100%; padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; font-size: 0.9rem; font-weight: 700; color: var(--text-primary); background: none; border: none; cursor: pointer; font-family: var(--font-body); }
.faq-icon { font-size: 0.75rem; color: var(--accent); transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1.25rem 1.1rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

.checkout-box-card {
  max-width: 580px; margin: 2.5rem auto 0; background: var(--card-bg);
  border: 1px solid var(--border-accent); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 35px var(--accent-glow-strong);
  text-align: center; position: relative;
}

.countdown-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--accent-soft); border: 1px solid var(--border-accent);
  padding: 0.35rem 0.9rem; border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 600; color: var(--text-primary); margin-bottom: 1.25rem;
}

.countdown-pill i { color: var(--accent); }
#countdown-timer { color: var(--accent); }

.checkout-badge { font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; }
.checkout-title { font-size: 1.35rem; font-weight: 900; margin: 0.4rem 0 0.25rem; }
.checkout-subtitle { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 1.5rem; }

.checkout-price-row { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.price-strikethrough { font-size: 1.1rem; color: var(--text-dim); text-decoration: line-through; }
.price-hero { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--text-primary); }

.price-tag-discount {
  font-size: 0.72rem; font-weight: 800; color: #10b981;
  background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.2rem 0.5rem; border-radius: 4px;
}

.checkout-features-list {
  display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; text-align: left;
  background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border-light);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
}

.ch-feat-item { font-size: 0.82rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }
.ch-feat-item i { color: #10b981; font-size: 0.85rem; }

.privacy-note-box {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1.25rem; font-size: 0.75rem; color: #10b981; font-weight: 600;
}

.payment-methods-row { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }



.upi-badge {
  font-size: 0.7rem; font-weight: 700; color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-light);
  padding: 4px 8px; border-radius: 6px; display: inline-flex; align-items: center; gap: 4px;
}

/* Purchase Toast */
.purchase-toast {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 999;
  background: rgba(13, 6, 8, 0.94); backdrop-filter: blur(15px);
  border: 1px solid var(--border-accent); border-radius: var(--radius-md);
  padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px var(--accent-glow);
  transform: translateY(120%); opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); max-width: 320px;
}

.purchase-toast.active { transform: translateY(0); opacity: 1; }

.purchase-toast-icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.75rem; flex-shrink: 0;
}

.purchase-toast-title { font-size: 0.78rem; color: var(--text-primary); line-height: 1.3; }
.purchase-toast-meta { font-size: 0.68rem; color: var(--text-dim); display: flex; gap: 0.5rem; margin-top: 0.15rem; }
.purchase-toast-verified { color: #10b981; }

.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  padding: 0.75rem 1rem; background: rgba(3, 1, 2, 0.95);
  backdrop-filter: blur(15px); border-top: 1px solid var(--border-accent);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Footer */
.footer { padding: 3rem 0; border-top: 1px solid var(--border-light); text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 800; margin-bottom: 1rem; }
.footer-brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer-social-link {
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.85rem; transition: var(--transition);
}
.footer-social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-copy { font-size: 0.75rem; color: var(--text-dim); }
