:root {
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #18181f;
  --fg: #f0f0f5;
  --fg-muted: #8888a0;
  --accent: #c8f135;
  --accent-dim: rgba(200, 241, 53, 0.08);
  --border: rgba(255,255,255,0.07);
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}

/* ── HERO ── */
.hero {
  padding: 96px 48px 80px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(200,241,53,0.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.eyebrow-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  background: var(--accent);
  color: #0a0a0f;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hero-btn-primary:hover { opacity: 0.85; }
.hero-btn-secondary {
  color: var(--fg-muted);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-btn-secondary:hover { color: var(--fg); border-color: var(--fg-muted); }
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  background: var(--accent);
  color: #0a0a0f;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--fg-muted); }
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── VELOCITY RING ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 320px;
}
.velocity-ring {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.25;
}
.ring-1 { width: 260px; height: 260px; opacity: 0.3; animation: spin-slow 12s linear infinite; }
.ring-2 { width: 190px; height: 190px; opacity: 0.5; animation: spin-slow 8s linear infinite reverse; }
.ring-3 { width: 120px; height: 120px; opacity: 0.7; animation: spin-slow 5s linear infinite; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ring-center {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.ring-v { font-family: var(--font-mono); font-weight: 700; font-size: 24px; color: var(--bg); }
.scan-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.08;
  animation: scan 4s ease-in-out infinite;
}
.scan-line:nth-child(1) { top: 15%; animation-delay: 0s; }
.scan-line:nth-child(2) { top: 32%; animation-delay: 0.6s; }
.scan-line:nth-child(3) { top: 49%; animation-delay: 1.2s; }
.scan-line:nth-child(4) { top: 66%; animation-delay: 1.8s; }
.scan-line:nth-child(5) { top: 78%; animation-delay: 2.4s; }
.scan-line:nth-child(6) { top: 90%; animation-delay: 3s; }
@keyframes scan {
  0% { opacity: 0; transform: translateX(-10px); }
  30% { opacity: 0.15; }
  70% { opacity: 0.15; }
  100% { opacity: 0; transform: translateX(10px); }
}

/* ── SECTION SHARED ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 48px;
}

/* ── HOW ── */
.how {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.how-header { max-width: 1200px; margin: 0 auto 56px; }
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.step-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-connector {
  padding: 0 16px;
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.features-header { max-width: 1200px; margin: 0 auto 48px; }
.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(200, 241, 53, 0.2);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-title { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ── OUTCOMES ── */
.outcomes {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcome-title {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.outcome-body { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 12px; }
.outcome-quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
}
.quote-mark {
  font-size: 80px;
  color: var(--accent);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 28px;
  font-style: italic;
}
.quote-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 8px;
}
.quote-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%);
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--fg) 0%, var(--fg-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.closing-sub { font-size: 18px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 36px; }
.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.closing-cta:hover { opacity: 0.85; }

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-copy { font-size: 12px; color: var(--fg-muted); font-family: var(--font-mono); }
.footer-link { font-size: 13px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--fg); }

/* ── SOCIAL PROOF BAR ── */
.social-proof-bar {
  padding: 28px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.proof-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.proof-label { font-size: 12px; color: var(--fg-muted); text-align: center; }
.proof-divider { width: 1px; height: 36px; background: var(--border); }

/* ── TESTIMONIALS ── */
.testimonials { display: flex; flex-direction: column; gap: 16px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 28px;
}
.testimonial-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--fg); line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-size: 14px; font-weight: 600; }
.author-role { font-size: 12px; color: var(--fg-muted); font-family: var(--font-mono); }

/* ── FAQ ── */
.faq { padding: 80px 48px; border-top: 1px solid var(--border); }
.faq-header { max-width: 700px; margin: 0 auto 48px; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-body);
  transition: background 0.2s;
  min-height: 60px;
}
.faq-q:hover { background: var(--bg-card-hover); }
.faq-q svg { flex-shrink: 0; color: var(--fg-muted); transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--fg-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-a a { color: var(--accent); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ── HERO OR ── */
.hero-or { font-size: 13px; color: var(--fg-muted); padding: 0 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid, .outcomes-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { transform: rotate(90deg); }
  .nav { padding: 16px 24px; }
  .nav-cta { min-height: 44px; min-width: 80px; display: flex; align-items: center; justify-content: center; }
  .nav-link { min-height: 44px; display: flex; align-items: center; }
  .hero, .how, .features, .outcomes, .closing, .footer, .faq { padding: 60px 24px; }
  .social-proof-bar { padding: 24px; }
  .social-proof-inner { gap: 24px; }
  .proof-divider { display: none; }
  .proof-stat { min-width: 45%; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-or { display: none; }
}