:root {
  --bg: #faf9f7;
  --fg: #1a1a2e;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --muted: #6b7280;
  --border: #e5e4e0;
  --card-bg: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 28px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}
.proof-label {
  font-size: 0.72rem;
  color: var(--muted);
  max-width: 120px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* BILL CARD */
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06), 0 1px 4px rgba(26, 26, 46, 0.04);
}
.bill-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.bill-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.bill-card-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}
.bill-audit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #f0f0ed;
}
.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.badge-green {
  background: #dcfce7;
  color: #15803d;
}
.bill-result {
  margin-top: 20px;
  background: var(--accent-dim);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.bill-result-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}
.bill-result-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
}
.bill-result-amount span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}
.bill-result-breakdown {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted);
}
.breakdown-item span:last-child {
  font-weight: 600;
  color: #15803d;
}

/* SECTION COMMONS */
.section-header {
  margin-bottom: 48px;
}
.section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* THE PROBLEM */
.the-problem {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 48px;
}
.the-problem .section-tag { color: var(--accent); }
.the-problem .section-title { color: #ffffff; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.problem-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
}
.problem-icon {
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.problem-quote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.problem-quote blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.problem-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
}
.step {
  flex: 1;
  padding: 0 28px;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}
.step-connector {
  width: 48px;
  height: 2px;
  background: var(--border);
  margin-top: 20px;
  flex-shrink: 0;
}
.privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
  background: #f5f5f2;
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 520px;
}

/* WHAT YOU GET */
.what-you-get {
  background: #fff;
  padding: 96px 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.feature-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: box-shadow 0.2s;
}
.feature-card:hover {
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.06);
}
.feature-icon { margin-bottom: 14px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--fg);
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.pricing-strip {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 28px 32px;
  background: var(--fg);
  border-radius: 12px;
  color: #fff;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
}
.price-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-right: 8px;
}
.price-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* THE PROMISE */
.the-promise {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.promise-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.promise-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 48px;
}
.promise-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.pillar p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 40px 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-note, .footer-legal {
  font-size: 0.75rem;
  line-height: 1.6;
  max-width: 560px;
}
.footer-note { margin-bottom: 8px; }
.footer-legal { opacity: 0.4; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 32px 80px;
  }
  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-row {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector { display: none; }
  .step { padding: 0; }
  .navbar { padding: 16px 32px; }
  .the-problem,
  .how-it-works,
  .what-you-get,
  .the-promise,
  .site-footer { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 600px) {
  .problem-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { display: none; }
  .pricing-strip { flex-direction: column; gap: 8px; }
  .navbar { padding: 14px 20px; }
  .hero, .the-problem, .how-it-works, .what-you-get, .the-promise, .site-footer { padding-left: 20px; padding-right: 20px; }
}