:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7DA;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --amber: #C2410C;
  --amber-light: #EA580C;
  --cream: #FAF7F2;
  --sage: #8B9E8B;
  --sage-light: #A8BEA8;
  --border: rgba(27, 67, 50, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(27, 67, 50, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

.meta-divider {
  color: var(--border);
  font-size: 16px;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 360px;
  height: 360px;
}

.pack-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.08;
}

.pack-orb--1 { width: 200px; height: 200px; top: 20px; left: 20px; background: var(--amber); opacity: 0.12; }
.pack-orb--2 { width: 140px; height: 140px; top: 80px; left: 180px; background: var(--green); opacity: 0.1; }
.pack-orb--3 { width: 100px; height: 100px; top: 200px; left: 60px; background: var(--sage); opacity: 0.15; }
.pack-orb--4 { width: 80px; height: 80px; top: 30px; left: 130px; background: var(--amber-light); opacity: 0.1; }
.pack-orb--5 { width: 120px; height: 120px; top: 160px; left: 160px; background: var(--green); opacity: 0.07; }
.pack-orb--6 { width: 60px; height: 60px; top: 220px; left: 200px; background: var(--amber); opacity: 0.08; }

.pack-label {
  position: absolute;
  bottom: 40px;
  right: 0;
  text-align: right;
  background: var(--green);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
}

.pack-label-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.pack-label-desc {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  margin-top: 4px;
  line-height: 1.4;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* MANIFESTO */
.manifesto {
  background: var(--green);
  color: #fff;
  padding: 100px 48px;
}

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

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 32px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 64px;
}

.manifesto-quote strong {
  color: var(--amber-light);
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* PACK NETWORK */
.pack-network {
  background: var(--cream);
  padding: 100px 48px;
}

.pack-network-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green);
  letter-spacing: -0.02em;
}

.section-headline em {
  font-style: italic;
  color: var(--amber);
}

.network-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.network-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.network-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.network-card--biz::before { background: var(--green); }
.network-card--amb::before { background: var(--amber); }
.network-card--dogs::before { background: var(--sage); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.network-card--biz .card-icon { background: rgba(27,67,50,0.08); color: var(--green); }
.network-card--amb .card-icon { background: rgba(194,65,12,0.08); color: var(--amber); }
.network-card--dogs .card-icon { background: rgba(139,158,139,0.15); color: var(--green); }

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  padding: 10px 14px;
  background: rgba(27,67,50,0.06);
  border-radius: 8px;
  letter-spacing: 0.02em;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--bg);
  padding: 100px 48px;
}

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  opacity: 0.15;
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-example {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
  align-self: center;
}

.example-tag {
  font-weight: 600;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* WHY NOW */
.why-now {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.why-now-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-now-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.why-stat {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
}

.why-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.why-connector {
  width: 2px;
  height: 32px;
  background: var(--border);
}

.why-now-text {
  padding-left: 16px;
}

.why-desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* FOUNDERS NOTE */
.founders-note {
  background: var(--green);
  color: #fff;
  padding: 100px 48px;
}

.founders-inner {
  max-width: 900px;
  margin: 0 auto;
}

.founders-mark {
  margin-bottom: 40px;
  color: rgba(255,255,255,0.4);
}

.founders-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.founders-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 16px;
}

.founder-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.value-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-light);
}

/* FOOTER */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--green);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-network-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 12px;
}

.footer-network-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-sep { color: var(--border); }

.footer-rule {
  height: 1px;
  background: var(--border);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 32px; }
  .network-cards { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .step-example { grid-column: 1 / -1; }
  .why-now-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 50px; }
  .manifesto, .pack-network, .how-it-works, .why-now, .founders-note { padding: 80px 24px; }
  .footer { padding: 48px 24px 32px; }
}

@media (max-width: 600px) {
  .step { grid-template-columns: 1fr; }
  .step-num { font-size: 36px; margin-bottom: 8px; }
}
