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

:root {
  --cream: #F9F8F5;
  --cream-dark: #F1EFE8;
  --sage: #3D6B4F;
  --sage-light: #5A8F6E;
  --amber: #D4823A;
  --amber-light: #E8A060;
  --charcoal: #1C1C1E;
  --charcoal-light: #3A3A3C;
  --muted: #7A7A7A;
  --border: #E5E3DC;
}

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--charcoal); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--sage);
  top: -150px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--amber);
  bottom: 0;
  left: -80px;
}

.hero-loop-art {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: min(480px, 42vw);
  height: min(480px, 42vw);
  opacity: 0.7;
}

.loop-svg { width: 100%; height: 100%; }

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
}

.hero-text { max-width: 640px; }

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--charcoal-light);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal-light);
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 48px 0 0;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 180px;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}

/* ===== HOW ===== */
.how {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 560px;
}

.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--charcoal-light);
  max-width: 560px;
  margin-bottom: 64px;
  line-height: 1.7;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  margin-bottom: 64px;
}

.how-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.how-step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.how-step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.how-step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.how-quote {
  border-left: 3px solid var(--sage);
  padding-left: 28px;
}

.how-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

.how-quote cite {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===== DIFFERENCE ===== */
.difference {
  background: var(--cream-dark);
  padding: 100px 24px 80px;
}

.diff-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.diff-card {
  background: white;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
}

.diff-card-header { margin-bottom: 24px; }

.diff-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.diff-badge-old {
  background: #F0EDE6;
  color: var(--charcoal-light);
}

.diff-badge-new {
  background: var(--sage);
  color: white;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diff-list li {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  padding-left: 20px;
  position: relative;
}

.diff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.diff-card-old .diff-list li::before { background: #C8C4BB; }
.diff-card-new .diff-list li::before { background: var(--sage); }

.diff-context {
  max-width: 1100px;
  margin: 0 auto;
}

.diff-context p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ===== MANIFESTO ===== */
.manifesto {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px 80px;
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-text p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.manifesto-pull {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem !important;
  font-style: italic;
  color: var(--charcoal) !important;
  font-weight: 300;
  line-height: 1.4 !important;
}

.manifesto-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 96px;
}

.mstat {
  border-left: 3px solid var(--sage);
  padding-left: 24px;
}

.mstat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.mstat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 4px;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--charcoal);
  padding: 100px 24px;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-loop-icon {
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
}

.closing-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: white;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--muted);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-loop-art { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .diff-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-stat-stack { position: static; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .hero-stat-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .section-heading { font-size: 1.8rem; }
  .manifesto-pull { font-size: 1.3rem !important; }
}