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

:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DC;
  --fg: #1A1A18;
  --fg-muted: #5C5A54;
  --accent: #C26A2B;
  --accent-warm: #D97706;
  --green: #1B4332;
  --green-mid: #2D6A4F;
  --cream: #FAF7F2;
  --border: rgba(27, 67, 50, 0.15);
  --radius: 4px;
}

html { font-size: 16px; }

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

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; font-family: 'DM Sans', sans-serif; font-weight: 600; }

/* === NAV === */
.nav {
  background: var(--green);
  color: var(--cream);
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.65);
  font-weight: 300;
}

/* === HERO === */
.hero {
  background: var(--green);
  color: var(--cream);
  padding: 5rem 2rem 6rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.6);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-warm);
}
.hero-lede {
  font-size: 1.1rem;
  color: rgba(250,247,242,0.8);
  line-height: 1.7;
  max-width: 44ch;
}

/* Phone widget */
.phone-frame {
  background: #111;
  border-radius: 28px;
  padding: 2rem 1.5rem;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
}
.phone-header {
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.25rem;
}
.phone-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.phone-body { padding: 0 0.25rem; }
.rep-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}
.rep-prompt {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(250,247,242,0.9);
  margin-bottom: 1.25rem;
}
.rep-actions {
  display: flex;
  gap: 0.5rem;
}
.rep-reflect, .rep-save {
  flex: 1;
  font-size: 0.72rem;
  padding: 0.45rem 0.5rem;
  border-radius: 6px;
  text-align: center;
  background: rgba(255,255,255,0.08);
  color: rgba(250,247,242,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.manifesto-stat {
  text-align: center;
}
.manifesto-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.manifesto-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 18ch;
  line-height: 1.5;
}
.manifesto-text h2 {
  color: var(--green);
  margin-bottom: 1rem;
}
.manifesto-text p {
  color: var(--fg-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* === DAILYREP === */
.dailyrep {
  padding: 5rem 2rem;
  background: var(--bg);
}
.dailyrep-inner { max-width: 1100px; margin: 0 auto; }
.section-heading {
  color: var(--green);
  margin-bottom: 3rem;
  font-size: 2rem;
}
.rep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.rep-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.75rem;
}
.rep-card-icon {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.rep-card h3 { color: var(--green); margin-bottom: 0.6rem; }
.rep-card p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.7; }

/* === WHY === */
.why {
  background: var(--green);
  color: var(--cream);
  padding: 5rem 2rem;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-inner .section-heading {
  color: var(--cream);
  margin-bottom: 2.5rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-warm);
  margin-bottom: 1rem;
}
.why-attribution { font-size: 0.85rem; color: rgba(250,247,242,0.5); }
.why-insight p {
  color: rgba(250,247,242,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.why-insight strong { color: var(--accent-warm); }

/* === CLOSING === */
.closing {
  background: var(--accent);
  color: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  color: var(--cream);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(250,247,242,0.75);
  letter-spacing: 0.05em;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 0.4rem;
}
.footer-desc {
  font-size: 0.8rem;
  max-width: 36ch;
  line-height: 1.6;
}
.footer-note {
  font-size: 0.78rem;
  text-align: right;
}

/* === NAV CTA === */
.nav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-cta-link {
  font-size: 0.875rem;
  color: rgba(250,247,242,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-cta-link:hover { color: rgba(250,247,242,0.9); }
.nav-cta-btn {
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--green);
  padding: 0.4rem 1rem;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.nav-cta-btn:hover { opacity: 0.88; }

/* === HERO CTA === */
.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: var(--cream);
  color: var(--green);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
  letter-spacing: 0.01em;
}
.hero-cta:hover { opacity: 0.88; }

/* === PRICING LANDING === */
.pricing-landing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.pricing-landing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.pricing-landing-inner .section-heading {
  color: var(--green);
  margin-bottom: 0.5rem;
}
.pricing-landing-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.pricing-landing-card {
  background: var(--cream);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 24px rgba(27,67,50,0.10);
}
.pl-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pl-name {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.pl-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pl-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}
.pl-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.pl-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pl-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.pl-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pl-cta {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--accent);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-bottom: 0.75rem;
}
.pl-cta:hover { opacity: 0.88; }
.pl-terms {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.pricing-annual-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.pricing-annual-note a { color: var(--green); font-weight: 500; }
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .manifesto-num { font-size: 3rem; }
  .rep-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-note { text-align: center; }
  .nav-inner { flex-direction: column; gap: 0.25rem; }
  .nav-cta { margin-left: 0; justify-content: center; }
  .pricing-landing-inner { padding: 0 0.5rem; }
  .pricing-landing-card { padding: 2.5rem 1.5rem; }
}
}