:root {
  --bg: #f7f4ef;
  --bg-alt: #eee9e0;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --accent: #b8922a;
  --accent-light: #d4af55;
  --green: #1a3a2a;
  --green-light: #2d5440;
  --white: #ffffff;
  --border: #d4cfc6;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 0 0 0;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: 520px;
}

.hero-left {
  background: var(--bg);
  color: var(--fg);
  padding: 60px 40px 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
}

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

.hero-rule {
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
}

.hero-founders {
  margin-bottom: 40px;
}

.founder-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-name {
  font-family: 'Bitter', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}

.founder-title {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Bitter', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.hero-right {
  padding: 64px 60px 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline {
  font-family: 'Bitter', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-lede {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.hero-bottom-bar {
  background: var(--accent);
  padding: 12px 48px;
}

.hero-bottom-text {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* MANIFESTO */
.manifesto {
  background: var(--bg);
  padding: 80px 48px;
}

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

.manifesto-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.manifesto-quote {
  font-family: 'Bitter', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.45;
  color: var(--green);
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-attribution {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 28px;
  margin-bottom: 40px;
}

.manifesto-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 600px;
}

.manifesto-body strong { font-weight: 600; color: var(--green); }

/* SYSTEM */
.system {
  background: var(--green);
  padding: 80px 48px;
  color: var(--white);
}

.system-inner {
  max-width: 960px;
}

.system-header {
  margin-bottom: 56px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.system-title {
  font-family: 'Bitter', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 48px;
}

.system-card {
  background: var(--green);
  padding: 40px 36px;
}

.system-card-icon {
  margin-bottom: 20px;
}

.system-card-title {
  font-family: 'Bitter', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

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

.system-course-cta {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.course-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
}

.course-name {
  font-family: 'Bitter', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.course-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

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

/* OUTCOMES */
.outcomes {
  background: var(--bg-alt);
  padding: 80px 48px;
}

.outcomes-header {
  margin-bottom: 48px;
}

.outcomes-title {
  font-family: 'Bitter', serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--green);
}

.outcomes-table {
  background: var(--white);
  border: 1px solid var(--border);
  max-width: 800px;
  margin-bottom: 48px;
}

.outcome-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 0;
}

.outcome-label {
  padding: 24px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
  padding-top: 28px;
}

.outcome-before .outcome-label {
  background: #f0ece4;
  color: var(--fg-muted);
}

.outcome-after .outcome-label {
  background: var(--green);
  color: var(--white);
}

.outcome-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 28px;
}

.outcome-desc span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg);
}

.outcome-divider {
  height: 1px;
  background: var(--border);
}

.outcomes-quote {
  max-width: 680px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.quote-mark {
  font-family: 'Bitter', serif;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

.outcomes-quote p {
  font-family: 'Bitter', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--green);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 96px 48px;
  text-align: center;
}

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

.closing-title {
  font-family: 'Bitter', serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 64px;
}

.closing-brand-mark {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.brand-mark-text {
  font-family: 'Bitter', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.brand-mark-sub {
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  padding: 28px 48px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-name {
  font-family: 'Bitter', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

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

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

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

  .hero-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 40px 28px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }

  .hero-eyebrow, .hero-rule { display: none; }
  .hero-founders { margin-bottom: 0; }
  .hero-stat-row { gap: 16px; }

  .hero-right {
    padding: 48px 28px;
  }

  .hero-bottom-bar { padding: 12px 28px; }

  .manifesto { padding: 60px 28px; }
  .system { padding: 60px 28px; }
  .outcomes { padding: 60px 28px; }
  .closing { padding: 72px 28px; }
  .site-footer { padding: 24px 28px; }

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

  .system-course-cta {
    flex-direction: column;
    gap: 16px;
  }

  .outcomes-table {
    margin-left: -28px;
    margin-right: -28px;
    width: calc(100% + 56px);
    max-width: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-stat-row { flex-wrap: wrap; }
  .footer-meta { flex-direction: column; gap: 4px; }
}
