/* Base */
:root {
  --bg: #F8F6F1;
  --fg: #1A1814;
  --muted: #8A857D;
  --accent: #D45B12;
  --accent-light: #F5E9DC;
  --surface: #EFEBE3;
}

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

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

/* Hero */
.hero {
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-btn:hover { background: #b84d0f; }

.cta-sub {
  font-size: 13px;
  color: var(--muted);
}

/* Dashboard card */
.hero-dashboard {
  display: flex;
  align-items: center;
}

.dash-card {
  background: #fff;
  border: 1.5px solid #DDD8CF;
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(26,24,20,0.06);
}

.dash-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.dash-rows { margin-bottom: 20px; }

.dash-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F0EDE6;
}

.dash-row:last-child { border-bottom: none; }

.dash-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}

.dash-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

.dash-status.done { background: #E6F4EA; color: #1B7A3C; }
.dash-status.working { background: #FEF3E2; color: #B45309; }
.dash-status.ready { background: #EEF2FF; color: #3B5BDB; }

.dash-footer {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #F0EDE6;
}

.dash-stat {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.dash-stat.accent { color: var(--accent); font-weight: 600; }

/* Features */
.features {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1.5px solid #DDD8CF;
  border-bottom: 1.5px solid #DDD8CF;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.feat {}

.feat-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.feat-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}

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

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1.5px solid #DDD8CF;
}

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

.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.55;
  color: var(--fg);
  margin-bottom: 36px;
}

.manifesto-text:last-child {
  color: var(--muted);
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-weight: 400;
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  background: var(--fg);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.outcome { text-align: center; }

.outcome-val {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.outcome-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Closing */
.closing {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
}

/* Footer */
footer {
  padding: 32px 48px;
  border-top: 1.5px solid #DDD8CF;
}

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

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-dashboard { order: -1; }
  .features { padding: 64px 24px; }
  .features-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 64px 24px; }
  .outcomes { padding: 64px 24px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 64px 24px; }
  footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}