:root {
  --bg: #FAF9F6;
  --surface: #F0EDE8;
  --green: #1B4332;
  --green-light: #2D6A4F;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --text: #1A1A18;
  --text-secondary: #5C5C58;
  --text-muted: #9C9C98;
  --border: #E0DDD8;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 460px;
}

/* Inbox mock */
.inbox-mock {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(27,67,50,0.08), 0 1px 4px rgba(0,0,0,0.04);
}
.inbox-header {
  background: var(--green);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inbox-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
}
.inbox-count {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}
.inbox-email {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.inbox-email:last-child { border-bottom: none; }
.email-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: #22C55E; }
.dot-amber { background: var(--amber); }
.dot-muted { background: var(--text-muted); }
.email-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.email-sender {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-subject {
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.email-status {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.status-drafted { background: #DCFCE7; color: #166534; }
.status-escalated { background: #FEF3C7; color: #92400E; }
.status-archived { background: var(--surface); color: var(--text-muted); }
.inbox-email--archived { opacity: 0.5; }

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 60px 48px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--green);
  display: block;
  letter-spacing: -1.5px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 6px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--green);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* HOW IT WORKS */
.how {
  padding: 100px 48px;
  background: var(--bg);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 64px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--surface);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
  background: var(--surface);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.outcome-card {
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
}
.outcome-card--after {
  border-color: var(--green);
  border-width: 2px;
}
.outcome-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.outcome-card--after .outcome-label { color: var(--green); }
.outcome-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outcome-list li {
  font-size: 16px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.outcome-card--before .outcome-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
}
.outcome-card--after .outcome-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; }
  .hero-headline { font-size: 44px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 40px; height: 1px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .nav { padding: 20px 24px; }
  .manifesto, .how, .outcomes, .closing { padding: 60px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .stat-number { font-size: 36px; }
}