/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAFAF8;
  --fg: #0F172A;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --slate: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --card-bg: #FFFFFF;
  --warm-gray: #F8F6F1;
}

html { scroll-behavior: smooth; }

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: var(--bg);
}

.hero-bg-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(245,158,11,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--slate);
}

.headline-accent {
  color: var(--accent);
}

.headline-accent em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.7;
}

/* Hero stat card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
}

.stat-card-hero {
  min-width: 220px;
  border-top: 3px solid var(--accent);
}

.stars-display {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.stat-big {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.stat-bar {
  background: #E2E8F0;
  border-radius: 4px;
  height: 6px;
  margin-bottom: 8px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--accent), #FBBF24);
  border-radius: 4px;
}

.stat-meta {
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 600;
}

/* === STATS SECTION === */
.stats-section {
  padding: 64px 0;
  background: var(--slate);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}

.stat-block {
  padding: 36px 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.stat-block:last-child { border-right: none; }

.stat-block .stat-number {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-block .stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.stats-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stats-callout {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* === HOW IT WORKS === */
.how-section {
  padding: 80px 0;
  background: var(--warm-gray);
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s;
}

.step-card:hover {
  box-shadow: 0 8px 32px rgba(15,23,42,0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--slate);
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.step-title {
  font-size: 20px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--slate);
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.step-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  opacity: 0.25;
}

/* === PRICING === */
.pricing-section {
  padding: 80px 0;
  background: var(--bg);
}

.pricing-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
  margin-top: 16px;
}

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

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
}

.plan-featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 4px;
}

.plan-per {
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
}

.plan-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

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

.plan-features li {
  font-size: 14px;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-features li.dimmed {
  color: #CBD5E1;
}

.check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.dash { color: #CBD5E1; }

.pricing-note {
  text-align: center;
  background: var(--warm-gray);
  border-radius: 12px;
  padding: 20px 32px;
  font-size: 15px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.pricing-note strong { color: var(--slate); }

/* === WHO IT'S FOR === */
.who-section {
  padding: 80px 0;
  background: var(--warm-gray);
}

.who-sub {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 48px;
  margin-top: 12px;
}

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

.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.who-card:hover {
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 4px 16px rgba(245,158,11,0.08);
}

.who-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.who-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
}

.who-target {
  margin-top: 40px;
  text-align: center;
  background: var(--slate);
  border-radius: 12px;
  padding: 20px 32px;
}

.who-target p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* === CLOSING === */
.closing-section {
  padding: 100px 0;
  background: var(--accent);
}

.closing-content {
  max-width: 680px;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--slate);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 17px;
  color: rgba(15,23,42,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-tagline {
  font-size: 15px;
  color: rgba(15,23,42,0.6);
  font-style: italic;
}

/* === FOOTER === */
.site-footer {
  background: var(--slate);
  padding: 48px 0;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

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

  .hero-visual {
    justify-content: flex-start;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-block { border-bottom: 1px solid rgba(255,255,255,0.1); }

  .steps-grid,
  .pricing-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 60px 0 48px; }
  .stats-section, .how-section, .pricing-section, .who-section { padding: 60px 0; }
  .closing-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none; }
}