/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F8F5EE;
  --cream-dark: #EDE9DF;
  --green-dark: #1A3A2A;
  --green-mid: #2D5A41;
  --amber: #D4850A;
  --amber-light: #F0A832;
  --ink: #1C1C1C;
  --ink-light: #4A4A4A;
  --ink-faint: #8A8A8A;
}

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

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

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}

.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── Hero ─── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 4rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  color: var(--green-dark);
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero-line-1 { display: block; }
.hero-line-2 { display: block; font-style: italic; font-weight: 300; color: var(--ink-light); }
.hero-line-3 { display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-light);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* Pulse grid visual */
.hero-visual {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
}

.pulse-grid {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  opacity: 0.25;
  animation: pulse-expand 3s ease-out infinite;
}

.pulse-ring--2 {
  animation-delay: 1.5s;
  width: 140px;
  height: 140px;
  opacity: 0.4;
}

@keyframes pulse-expand {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}

.pulse-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
}

.pulse-dot--1 { width: 14px; height: 14px; }
.pulse-dot--2 { width: 8px; height: 8px; }
.pulse-dot--3 { width: 6px; height: 6px; }

/* ─── Problem Section ─── */
.problem {
  background: var(--green-dark);
  color: var(--cream);
  padding: 6rem 3rem;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.problem-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 2rem;
}

.problem-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 4rem;
}

.problem-stat {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.04em;
}

.problem-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(248,245,238,0.85);
  max-width: 560px;
  align-self: center;
}

.problem-contrast, .problem-gap {
  margin-bottom: 2.5rem;
}

.contrast-label, .gap-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 0.75rem;
}

.contrast-text, .gap-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(248,245,238,0.75);
  max-width: 680px;
}

/* ─── What Section ─── */
.what {
  background: var(--cream);
  padding: 7rem 3rem;
}

.what-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.what-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.what-sub {
  font-size: 1.1rem;
  color: var(--ink-light);
  line-height: 1.65;
}

.what-cards {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.what-card {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 2.25rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.what-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.card-icon {
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ─── How Section ─── */
.how {
  background: var(--cream-dark);
  padding: 7rem 3rem;
}

.how-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.how-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.03em;
}

.how-channels {
  max-width: 900px;
  margin: 0 auto;
}

.channel {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(26,58,42,0.12);
  align-items: start;
}

.channel:last-child { border-bottom: none; }

.channel-number {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.35;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.25rem;
}

.channel-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.channel-desc {
  font-size: 1rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ─── Outcomes Section ─── */
.outcomes {
  background: var(--green-dark);
  padding: 6rem 3rem;
}

.outcomes-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.outcome {
  text-align: center;
}

.outcome-value {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.outcome-label {
  font-size: 0.95rem;
  color: rgba(248,245,238,0.7);
  line-height: 1.55;
}

/* ─── Manifesto Section ─── */
.manifesto {
  background: var(--cream);
  padding: 7rem 3rem;
  border-top: 1px solid var(--cream-dark);
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto-pull {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1.45;
  margin-bottom: 1rem;
}

.manifesto-attr {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 3rem;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ─── Closing Section ─── */
.closing {
  background: var(--green-dark);
  padding: 8rem 3rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.closing-sub {
  font-size: 1.15rem;
  color: rgba(248,245,238,0.65);
  line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
  background: var(--cream-dark);
  padding: 3rem 3rem 4rem;
  border-top: 1px solid rgba(26,58,42,0.1);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 4rem; min-height: 80vh; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 3rem; }
  .problem { padding: 4rem 1.5rem; }
  .problem-content { grid-template-columns: 1fr; gap: 0.5rem; }
  .problem-stat { font-size: 3.5rem; }
  .what { padding: 4rem 1.5rem; }
  .what-cards { grid-template-columns: 1fr; gap: 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  .channel { grid-template-columns: 1fr; gap: 0.5rem; }
  .channel-number { font-size: 2rem; }
  .outcomes { padding: 4rem 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 2rem; }
  .outcomes-grid .outcome { text-align: left; }
  .manifesto { padding: 4rem 1.5rem; }
  .closing { padding: 5rem 1.5rem; }
  .closing-headline { font-size: 3rem; }
  .footer { padding: 2rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
}