:root {
  --bg: #0d1b2a;
  --bg-alt: #0a1520;
  --fg: #f0f4f8;
  --fg-muted: #8899a8;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --surface: #162032;
  --surface-2: #1e2e44;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

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

h1, h2, h3, .stat-number, .card-price, .nav-logo {
  font-family: 'Fraunces', serif;
}

/* ─── Navbar ─────────────────────────────────────────── */
.navbar {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* ─── Shared ─────────────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.65;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.3;
}
.hero-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ─── Problem ─────────────────────────────────────────── */
.problem {
  background: var(--bg-alt);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.015em;
  max-width: 600px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.problem-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 2px;
}
.problem-text {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── How ─────────────────────────────────────────────── */
.how {
  padding: 100px 40px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 64px;
  letter-spacing: -0.015em;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.925rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Pricing ─────────────────────────────────────────── */
.pricing {
  background: var(--bg-alt);
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.015em;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.pricing-card--featured {
  border-color: var(--accent);
  background: var(--surface-2);
}
.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-header {
  margin-bottom: 28px;
}
.card-name {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-price {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.card-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 300;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Closing ─────────────────────────────────────────── */
.closing {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.closing-tagline {
  font-size: 0.875rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 12px;
  display: block;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 280px;
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar { padding: 20px 24px; }
  .hero { padding: 60px 24px; min-height: auto; }
  .problem { padding: 72px 24px; }
  .how { padding: 72px 24px; }
  .pricing { padding: 72px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
  .hero-stats { gap: 24px; }
  .hero-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .card-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .stat-number { font-size: 1.6rem; }
  .pricing-cards { grid-template-columns: 1fr; }
}