:root {
  --cream: #FDF6EE;
  --peach: #F4C7A8;
  --peach-deep: #E8A88A;
  --teal: #2D6A6A;
  --teal-light: #9ECFC4;
  --sage: #C5DFD8;
  --charcoal: #2A2A2A;
  --muted: #6B6B6B;
  --border: #E8DDD4;
  --navy: #1A3A3A;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Nunito Sans', 'Nunito', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--muted);
}

/* HERO */
.hero {
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(158,207,196,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,199,168,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Nunito', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
}
.hero-circle-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 40% 40%, rgba(158,207,196,0.25) 0%, rgba(158,207,196,0.05) 100%);
  border: 1px solid rgba(158,207,196,0.2);
}
.hero-circle-2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 50% 50%, rgba(244,199,168,0.3) 0%, transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-circle-3 {
  width: 120px;
  height: 120px;
  background: rgba(244,199,168,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-plush-placeholder {
  position: relative;
  z-index: 2;
}
.plush-illustration {
  width: 200px;
  height: 240px;
  filter: drop-shadow(0 8px 32px rgba(100,80,60,0.12));
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.hero-stat-num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
}
.hero-stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* PROBLEM */
.problem {
  background: var(--navy);
  padding: 96px 48px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.problem-headline {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 56px;
  max-width: 640px;
}
.problem-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem-text {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}
.problem-facts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}
.problem-fact-icon {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(158,207,196,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--teal-light);
  flex-shrink: 0;
  font-weight: 700;
}

/* HOW IT WORKS */
.how {
  padding: 96px 48px;
  background: var(--cream);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-align: center;
}
.how-headline {
  font-family: 'Nunito', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.8px;
  margin-bottom: 72px;
}
.how-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.how-pillar {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: box-shadow 0.3s ease;
}
.how-pillar:hover {
  box-shadow: 0 8px 40px rgba(45,106,106,0.08);
}
.how-pillar-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}
.how-pillar-icon svg {
  width: 100%;
  height: 100%;
}
.how-pillar-title {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.how-pillar-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* EVIDENCE */
.evidence {
  padding: 96px 48px;
  background: linear-gradient(135deg, #F0F7F5 0%, var(--cream) 100%);
}
.evidence-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.evidence-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.evidence-headline {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}
.evidence-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.evidence-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.evidence-badge {
  background: var(--teal);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
}
.evidence-badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.evidence-quote {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.evidence-quote-text {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}
.evidence-quote-source {
  font-size: 12px;
  color: var(--muted);
}
.evidence-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.evidence-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.evidence-stat-n {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -1px;
}
.evidence-stat-l {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* MANIFESTO */
.manifesto {
  background: var(--peach-deep);
  padding: 96px 48px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.5px;
  font-style: normal;
  margin-bottom: 24px;
}
.manifesto-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 38px; }
  .hero-visual { height: 280px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat-divider { width: 48px; height: 1px; }
  .problem-columns { grid-template-columns: 1fr; }
  .how-pillars { grid-template-columns: 1fr; }
  .evidence-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-meta { align-items: flex-start; }
  .evidence-stat-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .problem { padding: 64px 24px; }
  .problem-headline { font-size: 30px; }
  .how { padding: 64px 24px; }
  .how-headline { font-size: 28px; }
  .manifesto { padding: 64px 24px; }
  .manifesto-quote { font-size: 26px; }
  .footer { padding: 32px 24px; }
  .evidence { padding: 64px 24px; }
  .evidence-headline { font-size: 28px; }
}