:root {
  --bg: #111115;
  --surface: #1a1a22;
  --surface2: #22222e;
  --fg: #f0ece0;
  --fg-muted: #9a9488;
  --accent: #e8930a;
  --accent-dim: rgba(232, 147, 10, 0.15);
  --border: rgba(240, 236, 224, 0.08);
  --border-bright: rgba(240, 236, 224, 0.16);
  --radius: 6px;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 21, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  padding: 80px 24px 72px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.hero-stat-block {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.stat-row {
  display: flex;
  gap: 24px;
}

.stat + .stat {
  border-left: 1px solid var(--border-bright);
  padding-left: 24px;
}

.stat-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.stat-divider { display: none; }

.stat-footnote {
  margin-top: 16px;
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-style: italic;
  opacity: 0.7;
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--fg);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-services span {
  background: var(--surface2);
  border: 1px solid var(--border-bright);
  color: var(--fg-muted);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
}

/* ── PROOF ── */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}

.proof-inner { max-width: 1100px; margin: 0 auto; }

.proof-headline {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 32px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.proof-item {
  padding: 32px 40px 32px 0;
  border-right: 1px solid var(--border-bright);
}

.proof-item:last-child { border-right: none; }

.proof-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── FEATURES ── */
.features {
  padding: 88px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 56px;
}

.features-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.features-header p {
  font-size: 1rem;
  color: var(--fg-muted);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature {
  background: var(--surface);
  padding: 36px 32px;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.feature h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 88px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}

.how-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.how-header p {
  font-size: 1rem;
  color: var(--fg-muted);
}

.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.step {
  display: flex;
  gap: 20px;
  flex: 1;
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.step-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.step-arrow {
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 88px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.outcome-number {
  font-family: 'Sora', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.outcome-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.outcome-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 24px;
}

.pricing-inner { max-width: 1100px; margin: 0 auto; }

.pricing-header {
  margin-bottom: 48px;
}

.pricing-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.pricing-header p {
  font-size: 1rem;
  color: var(--fg-muted);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 36px;
}

.pricing-card.featured {
  border-color: var(--accent);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #111115;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 4px 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.card-price {
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}

.per-mo {
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.card-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.pricing-guarantee {
  background: var(--accent-dim);
  border: 1px solid rgba(232, 147, 10, 0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
}

.guarantee-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── CLOSING ── */
.closing {
  padding: 96px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-inner p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

.closing-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.closing-services span {
  background: var(--surface2);
  border: 1px solid var(--border-bright);
  color: var(--fg-muted);
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.logo-sm {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  max-width: 280px;
}

.footer-links span {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-stat-block {
    padding: 20px 20px;
  }

  .stat-row {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .proof-grid,
  .features-grid,
  .outcomes-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .how-steps {
    flex-direction: column;
    align-items: start;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  .proof-item {
    border-right: none;
    border-bottom: 1px solid var(--border-bright);
    padding: 24px 0;
  }

  .proof-item:last-child {
    border-bottom: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer-brand p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero { padding: 56px 20px 48px; }
  .features { padding: 56px 20px; }
  .howitworks { padding: 56px 20px; }
  .outcomes { padding: 56px 20px; }
  .pricing { padding: 56px 20px; }
  .closing { padding: 64px 20px; }
}