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

:root {
  --green: #2D4A3E;
  --green-light: #3D6355;
  --gold: #C9A870;
  --gold-light: #D9BF93;
  --cream: #F6F3EE;
  --cream-dark: #EDE9E1;
  --ink: #1A1A18;
  --ink-light: #4A4A45;
  --white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 12px; color: var(--gold); }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.01em; color: var(--green); }
.nav-tagline { font-size: 0.8rem; color: var(--ink-light); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

/* ===== HERO ===== */
.hero {
  padding: 80px 48px 64px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-light);
  max-width: 480px;
}

/* Hero Card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 32px rgba(45,74,62,0.08);
}
.card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.card-review .stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.card-review .review-text {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 8px;
}
.card-review .review-meta { font-size: 0.78rem; color: var(--ink-light); }
.card-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 20px 0;
}
.response-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.response-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-light);
  margin-bottom: 16px;
}
.response-actions { display: flex; gap: 10px; }
.btn-approve {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  flex: 1;
}
.btn-edit {
  background: transparent;
  color: var(--ink-light);
  border: 1px solid var(--cream-dark);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--font-body);
}
.card-note {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 12px;
  font-style: italic;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--green);
  padding: 80px 48px;
}
.problem-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
}
.problem-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.problem-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 16px;
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.features-header { margin-bottom: 56px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.feature-card {
  border-top: 2px solid var(--gold);
  padding-top: 24px;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
}
.feature-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.feature-desc { font-size: 0.95rem; color: var(--ink-light); line-height: 1.7; }

.features-proof {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: var(--cream-dark);
  border-radius: 12px;
}
.proof-stat { text-align: center; flex: 1; }
.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-label { font-size: 0.8rem; color: var(--ink-light); line-height: 1.4; }
.proof-divider { width: 1px; height: 60px; background: var(--cream-dark); flex-shrink: 0; border: 1px solid var(--cream-dark); }

/* ===== MANIFESTO ===== */
.manifesto { padding: 64px 48px; }
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-rule { height: 1px; background: var(--gold); margin-bottom: 40px; }
.manifesto-rule:last-child { margin-bottom: 0; margin-top: 40px; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
  text-align: center;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--green);
  padding: 80px 48px;
}
.pricing-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
.pricing .section-label { color: var(--gold); }
.pricing-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}
.pricing-grid {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 40px 36px;
  text-align: left;
  min-width: 280px;
  max-width: 320px;
  flex: 1;
}
.pricing-card--intro {
  border-color: var(--gold);
  background: rgba(201,168,112,0.08);
}
.pricing-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,112,0.2);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.pricing-badge--full {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
}
.pricing-anchor-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.pricing-anchor-cross {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  line-height: 1;
}
.pricing-anchor-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-intro-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-intro-period {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-light);
}
.pricing-intro-note {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 4px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-amount-period {
  font-size: 1.5rem;
  font-weight: 400;
}
.pricing-period {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.pricing-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 24px 0; flex-grow: 1; }
.pricing-features { list-style: none; }
.pricing-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 16px; font-style: italic; }

/* ===== CLOSING ===== */
.closing { padding: 80px 48px; text-align: center; background: var(--cream); }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-body {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px;
  border-top: 1px solid var(--cream-dark);
  text-align: center;
}
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-copy { font-size: 0.9rem; color: var(--ink-light); margin-bottom: 4px; }
.footer-sub { font-size: 0.8rem; color: var(--ink-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; gap: 24px; }
  .features-proof { flex-direction: column; gap: 24px; }
  .proof-divider { width: 60px; height: 1px; }
  .problem-inner { grid-template-columns: 1fr; }
  .problem-number { display: none; }
  .hero, .features, .closing { padding: 48px 24px; }
  .problem, .pricing { padding: 56px 24px; }
  .manifesto { padding: 48px 24px; }
  .pricing-grid { flex-direction: column; align-items: center; gap: 20px; }
  .pricing-card { width: 100%; max-width: 360px; padding: 32px 28px; }
  .nav { padding: 20px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .nav-tagline { display: none; }
}