:root {
  --bg: #111110;
  --surface: #1c1b19;
  --surface-raised: #252420;
  --fg: #f5f0e8;
  --fg-muted: #a09a8e;
  --fg-subtle: #6b6560;
  --accent: #c9893a;
  --accent-warm: #e8a94f;
  --border: #2e2c28;
  --border-subtle: #232220;
}

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

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

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

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-subtle);
  font-weight: 500;
}

.nav-note {
  font-size: 0.8rem;
  color: var(--fg-subtle);
  letter-spacing: 0.03em;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 96px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

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

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  font-weight: 300;
}

.hero-visual {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: brightness(0.9) saturate(0.85);
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 17, 16, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  border-top: 1px solid var(--border-subtle);
  max-width: 1280px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.outcome-card {
  background: var(--surface);
  padding: 40px 32px;
  transition: background 0.2s;
}

.outcome-card:hover {
  background: var(--surface-raised);
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
}

.outcome-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.outcome-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.manifesto-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-subtle);
  font-weight: 500;
  margin-bottom: 20px;
}

.manifesto-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.manifesto-body:last-child { margin-bottom: 0; }

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

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

.closing-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.35;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 36px;
  font-style: italic;
}

.closing-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 560px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--fg);
}

.footer-role {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-subtle);
}

.footer-note {
  font-size: 0.75rem;
  color: var(--fg-subtle);
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 72px; }
  .hero-visual { order: -1; }
  .hero-image { height: 280px; }
  .hero-lede { max-width: 100%; }
  .outcomes { padding: 60px 24px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .manifesto { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .footer { flex-direction: column; gap: 16px; padding: 32px 24px; }
}

@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto-statement { font-size: 1.6rem; }
}