/* === BASE === */
:root {
  --cream: #FAF7F4;
  --cream-dark: #F0EBE3;
  --forest: #2C4A3E;
  --forest-light: #3D6352;
  --rose: #C8907A;
  --rose-light: #D9B0A0;
  --ink: #1A1A18;
  --ink-light: #4A4A46;
  --ink-muted: #8A8A84;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

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

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

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

::selection { background: var(--rose); color: var(--white); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-sm);
}

/* === NAV === */
.nav {
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--cream-dark);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
}
.nav__tagline {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* === HERO === */
.hero {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(200, 144, 122, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}
.hero__headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--forest);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--ink-light);
  max-width: 480px;
  line-height: 1.7;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__orb {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--rose-light) 0%, var(--rose) 40%, var(--forest) 100%);
  opacity: 0.85;
  box-shadow: 0 40px 80px rgba(44, 74, 62, 0.25);
}
.hero__card {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 8px 32px rgba(26, 26, 24, 0.1);
  width: 240px;
  border: 1px solid var(--cream-dark);
}
.hero__card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}
.hero__card-status {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__card-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-light);
  padding: 3px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.hero__card-row:last-child { border-bottom: none; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.dot--on { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }

/* Badge row */
.hero__badge-row {
  max-width: 1200px;
  margin: var(--space-xl) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.badge {
  background: var(--cream-dark);
  color: var(--ink-light);
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

/* === PROOF === */
.proof {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--forest);
  color: var(--cream);
}
.proof__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof__statement {
  margin-bottom: var(--space-xl);
}
.proof__statement blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  max-width: 760px;
  margin-bottom: var(--space-sm);
}
.proof__statement cite {
  font-size: 0.9rem;
  color: var(--rose-light);
  font-style: normal;
}
.proof__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.pillar__icon {
  width: 40px;
  height: 40px;
  color: var(--rose-light);
  margin-bottom: var(--space-sm);
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.9rem;
  color: rgba(250,247,244,0.65);
  line-height: 1.6;
}

/* === HOW === */
.how {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--cream);
}
.how__inner { max-width: 1200px; margin: 0 auto; }
.how__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest);
  margin-bottom: var(--space-xl);
  max-width: 600px;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.step__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--cream-dark);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--cream-dark);
}
.manifesto__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.manifesto__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--forest);
  margin-bottom: var(--space-md);
  font-style: italic;
}
.manifesto__content p {
  font-size: 1rem;
  color: var(--ink-light);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}
.manifesto__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44, 74, 62, 0.1);
}
.manifesto__bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.manifesto__bar span {
  font-size: 0.8rem;
  color: var(--ink-light);
}
.manifesto__bar-fill {
  height: 6px;
  background: var(--forest);
  border-radius: 3px;
  width: var(--pct);
  transition: width 1s ease;
}
.manifesto__bar--muted .manifesto__bar-fill {
  background: var(--ink-muted);
}

/* === CLOSING === */
.closing {
  padding: var(--space-2xl) var(--space-xl);
  background: var(--forest);
  text-align: center;
}
.closing__headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: var(--space-md);
}
.closing__sub {
  font-size: 1.1rem;
  color: rgba(250,247,244,0.65);
}

/* === FOOTER === */
.footer {
  padding: var(--space-lg) var(--space-xl);
  border-top: 1px solid var(--cream-dark);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest);
  display: block;
  margin-bottom: 0.35rem;
}
.footer__brand p {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.footer__links span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .proof__pillars { grid-template-columns: 1fr; gap: var(--space-md); }
  .how__steps { grid-template-columns: repeat(2, 1fr); }
  .manifesto__inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero, .proof, .how, .manifesto, .closing { padding: var(--space-xl) var(--space-md); }
  .nav { padding: var(--space-sm) var(--space-md); }
  .how__steps { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .hero__badge-row { justify-content: center; }
}
