:root {
  --bg: #0D0D0F;
  --bg-alt: #111114;
  --fg: #F0EBE0;
  --fg-muted: rgba(240, 235, 224, 0.45);
  --accent: #E8780A;
  --accent-dim: rgba(232, 120, 10, 0.12);
  --border: rgba(240, 235, 224, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* NAV */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* MANIFESTO HERO */
.manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 140px 48px 100px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-inner { max-width: 640px; }
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 500px;
}
.manifesto-atom {
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  animation: rotate 60s linear infinite;
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* FEATURES */
.features {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}
.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  max-width: 600px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
}
.feature-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}
.feature-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* PROCESS */
.process {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 64px;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
}
.step-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 260px;
}
.process-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin: 30px 24px 0;
  flex-shrink: 0;
}

/* OUTCOMES */
.outcomes {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.outcomes-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.outcome-stat {
  flex: 1;
  padding: 0 48px 0 0;
}
.outcome-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  color: var(--fg);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.outcomes-footnote {
  margin-top: 48px;
  font-size: 12px;
  color: rgba(240, 235, 224, 0.25);
  font-style: italic;
  max-width: 500px;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--fg-muted);
  max-width: 760px;
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .manifesto {
    grid-template-columns: 1fr;
    padding: 120px 24px 80px;
    gap: 48px;
  }
  .manifesto-atom { display: none; }
  .features, .process, .outcomes, .closing { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; gap: 40px; }
  .process-connector { width: 40px; height: 1px; margin: 0; }
  .outcomes-grid { flex-direction: column; gap: 32px; }
  .outcome-divider { display: none; }
  .outcome-stat { padding: 0; }
  .site-footer { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .manifesto-headline { font-size: 38px; }
  .closing-statement { font-size: 22px; }
}