:root {
  --bg: #08090f;
  --bg-card: #0e1120;
  --bg-card-hover: #131728;
  --fg: #e8eaf2;
  --fg-muted: #8b90a8;
  --accent: #00e87b;
  --accent-dim: rgba(0,232,123,0.12);
  --accent-text: #00e87b;
  --border: rgba(255,255,255,0.07);
  --border-accent: rgba(0,232,123,0.25);
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --section-pad: 100px 24px;
}

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

html { scroll-behavior: smooth; }

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(8,9,15,0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* Hero */
.hero {
  padding: 100px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-text);
  font-weight: 500;
  margin-bottom: 32px;
}
.hero-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.hero-big-number {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 800;
  color: var(--accent-text);
  line-height: 0.9;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.hero-stat-label {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-top: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.6;
}

/* Proof strip */
.proof {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 24px;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.proof-stat {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Features */
.features {
  padding: var(--section-pad);
  max-width: 1100px;
  margin: 0 auto;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-card-hover); }
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .feature-card:last-child { border-bottom: none !important; }
}
.feature-icon {
  color: var(--accent-text);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How */
.how {
  padding: var(--section-pad);
  max-width: 1100px;
  margin: 0 auto;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-text);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 4px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 600px;
}

/* Pricing */
.pricing {
  padding: var(--section-pad);
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.pricing-card-accent {
  border-color: var(--border-accent);
  background: linear-gradient(180deg, rgba(0,232,123,0.06) 0%, var(--bg-card) 100%);
}
.pricing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-text);
  font-weight: 600;
  margin-bottom: 8px;
}
.pricing-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.4;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  line-height: 1;
}
.pricing-per {
  font-size: 20px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-features {
  list-style: none;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Closing */
.closing {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-stat {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  font-weight: 800;
  color: var(--accent-text);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.closing-vibe {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--fg-muted);
  font-style: italic;
}

/* Footer */
.footer {
  padding: 64px 24px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stat-row { flex-direction: column; gap: 20px; }
  .hero { padding: 60px 24px 60px; }
  .proof-inner { gap: 0; }
  .proof-item { padding: 16px; }
  .proof-divider { display: none; }
  .nav { padding: 16px 20px; }
  .step { gap: 20px; }
}
