:root {
  --bg: #0B0B0E;
  --surface: #141418;
  --surface-raised: #1C1C21;
  --fg: #E8E3D8;
  --fg-muted: #8A8680;
  --accent: #E89B3A;
  --accent-dim: rgba(232, 155, 58, 0.12);
  --border: rgba(232, 227, 216, 0.08);
}

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

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

/* HERO */
.hero {
  padding: 120px 48px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.eyebrow-text {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
}

.hero-stat {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.hero-vs {
  display: inline-flex;
  align-items: center;
  margin: 0 24px;
  color: var(--fg-muted);
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  vertical-align: middle;
}

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

.hero-stat-accent .stat-number {
  color: var(--accent);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* FEATURES */
.features {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 48px;
  background: var(--bg);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 18px;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 56px;
}

.pricing-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-right: 8px;
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 14px;
  color: var(--fg-muted);
  margin-left: 4px;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

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

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.closing-cta {
  font-size: 16px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-link-divider {
  color: var(--border);
}

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 80px 24px 72px; }
  .features { padding: 60px 24px; }
  .howitworks { padding: 60px 24px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 40px 24px; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .step-connector {
    width: 1px;
    height: 32px;
    margin-top: 0;
    background: repeating-linear-gradient(
      to bottom,
      var(--border) 0,
      var(--border) 4px,
      transparent 4px,
      transparent 8px
    );
  }

  .hero-vs {
    display: block;
    text-align: center;
    margin: 8px 0;
  }

  .stat-number { font-size: 38px; }
  .footer-links { flex-direction: column; gap: 6px; }
  .footer-link-divider { display: none; }
}