/* ===== VARIABLES ===== */
:root {
  --bg: #FAF6F0;
  --bg-alt: #F2EDE3;
  --green: #1C3A2B;
  --green-light: #2D5A42;
  --amber: #D4842A;
  --amber-light: #F0A94D;
  --text: #2A2A2A;
  --text-muted: #6B6B5E;
  --border: #DDD8CE;
  --white: #FFFFFF;
  --card-shadow: 0 4px 24px rgba(28, 58, 43, 0.08);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Fraunces', serif; line-height: 1.15; font-weight: 600; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--green);
  margin-bottom: 28px;
  font-weight: 700;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== HERO CARD STACK ===== */
.hero-visual {
  position: relative;
  height: 420px;
}
.hero-card-stack { position: relative; height: 100%; }
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--card-shadow);
}
.hero-card-1 { top: 20px; left: 20px; right: 60px; }
.hero-card-2 { top: 100px; left: 60px; right: 20px; z-index: 2; border-left: 3px solid var(--amber); }
.hero-card-3 { top: 190px; left: 20px; right: 40px; z-index: 1; }
.card-label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.card-value { font-size: 0.95rem; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 6px; }
.card-done { color: var(--green); }
.card-meta { font-size: 0.75rem; color: var(--text-muted); }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb-1 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(212,132,42,0.15) 0%, transparent 70%);
  bottom: 0; left: 0;
}
.hero-orb-2 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(28,58,43,0.1) 0%, transparent 70%);
  top: 20px; right: 20px;
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--green);
  margin-bottom: 48px;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  background: var(--green);
  color: var(--white);
  padding: 80px 40px;
}
.howitworks .section-eyebrow { color: var(--amber); }
.howitworks .section-headline { color: var(--white); }
.howitworks .section-header { max-width: 1200px; margin: 0 auto 60px; }
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 32px; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 12px; }
.step-body { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.step-connector {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-top: 40px;
}

/* ===== HUMAN DIFFERENCE ===== */
.humandiff {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.humandiff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.humandiff-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--green);
  margin-bottom: 24px;
}
.humandiff-headline em { font-style: italic; color: var(--amber); }
.humandiff-body { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.humandiff-list { display: flex; flex-direction: column; gap: 16px; }
.humandiff-item { display: flex; align-items: center; gap: 14px; font-size: 0.95rem; font-weight: 500; color: var(--text); }
.humandiff-icon { flex-shrink: 0; }
.quote-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.quote-mark { margin-bottom: 16px; }
.quote-text { font-size: 1.05rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.quote-attr { font-size: 0.8rem; color: var(--text-muted); }
.vs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.vs-item {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vs-item:last-child { border-bottom: none; }
.vs-item-village { background: rgba(28,58,43,0.04); }
.vs-label { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.vs-status { font-size: 0.8rem; }
.vs-no { color: #999; }
.vs-maybe { color: var(--text-muted); }
.vs-yes { color: var(--green); font-weight: 600; }

/* ===== WHAT YOU GET ===== */
.whatyouget {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.whatyouget .section-header { margin-bottom: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature:hover {
  box-shadow: var(--card-shadow);
  transform: translateY(-2px);
}
.feature-icon { margin-bottom: 20px; }
.feature-title { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.feature-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== WHO ITS FOR ===== */
.whoitsfor {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.whoitsfor-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.whoitsfor-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--green);
  margin-bottom: 16px;
}
.whoitsfor-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 56px; line-height: 1.7; }
.personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.persona {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.persona-icon { margin-bottom: 20px; display: flex; justify-content: center; }
.persona-title { font-family: 'Fraunces', serif; font-size: 1.2rem; font-weight: 600; color: var(--green); margin-bottom: 12px; }
.persona-body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ===== CLOSING ===== */
.closing {
  background: var(--green);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}
.closing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 48px;
}
.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 12px; }
.pricing-num {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.pricing-period { font-size: 1.2rem; color: rgba(255,255,255,0.6); }
.pricing-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 40px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; color: var(--green); margin-bottom: 12px; display: block; }
.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.footer-col span { font-size: 0.875rem; color: var(--text); cursor: pointer; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 280px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .humandiff-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .personas { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 48px 24px; }
  .howitworks, .humandiff, .whatyouget, .whoitsfor { padding: 60px 24px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 48px 24px 24px; }
  .nav { padding: 0 24px; }
}