:root {
  --bg: #f8f5ef;
  --bg-alt: #eee9df;
  --fg: #1a1a1a;
  --fg-muted: #5a5a52;
  --green-deep: #1a3a2a;
  --green-mid: #2d5a3f;
  --green-light: #3d7a56;
  --accent: #d4a853;
  --accent-light: #e8c97a;
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === HERO === */
.hero {
  background: var(--green-deep);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}

.niche-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.niche-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
}

.niche-card:hover {
  transform: translateX(8px);
  background: rgba(255,255,255,0.1);
}

.niche-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  text-align: center;
}

.niche-1 { border-left: 3px solid #e67e22; }
.niche-2 { border-left: 3px solid #9b59b6; }
.niche-3 { border-left: 3px solid #27ae60; }
.niche-4 { border-left: 3px solid #3498db; }
.niche-5 { border-left: 3px solid var(--accent); }

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 2rem;
  background: var(--bg);
}

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

.manifesto h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.manifesto-body {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 650px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat {
  border-top: 2px solid var(--accent);
  padding-top: 1.5rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* === VERTICALS === */
.verticals {
  padding: 6rem 2rem 8rem;
  background: var(--green-deep);
  color: var(--white);
}

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

.verticals h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 3.5rem;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.vertical-item {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.vertical-item:hover {
  background: rgba(255,255,255,0.07);
}

.vertical-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.vertical-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.vertical-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* === PLAYBOOK === */
.playbook {
  padding: 8rem 2rem;
  background: var(--bg);
}

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

.playbook h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 3.5rem;
}

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

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.step:last-child { padding-bottom: 0; }

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-line {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(to bottom, var(--accent), rgba(212,168,83,0.15));
}

.step:last-child .step-line { display: none; }

.step-content h3 {
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === PROOF === */
.proof {
  padding: 6rem 2rem 8rem;
  background: var(--bg-alt);
}

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

.proof h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  margin-bottom: 3rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.proof-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(26,58,42,0.08);
  transition: transform 0.3s;
}

.proof-card:hover {
  transform: translateY(-4px);
}

.proof-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.proof-path {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.proof-insight {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 700px;
  font-style: italic;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 4rem;
  align-items: start;
}

.philosophy-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--green-deep);
  position: sticky;
  top: 2rem;
}

.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.philosophy-point {
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}

.philosophy-point h3 {
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.philosophy-point p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  background: var(--green-deep);
  color: var(--white);
  text-align: center;
}

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

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
  padding: 3rem 2rem;
  background: #111;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .manifesto-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-left h2 {
    position: static;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .niche-stack {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .niche-card {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .niche-icon {
    font-size: 1.1rem;
    width: 1.8rem;
  }

  section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
}