:root {
  --bg: #0d1b2a;
  --surface: #152235;
  --surface-raised: #1c2e42;
  --fg: #f0ebe3;
  --fg-muted: #9aa3ad;
  --accent: #c9a84c;
  --accent-dim: #8a6f2e;
  --border: rgba(201,168,76,0.18);
}

*, *::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', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Manifesto ── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 80px;
  background: var(--bg);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.manifesto-inner {
  max-width: 800px;
  position: relative;
}

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

.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.manifesto-accent {
  color: var(--fg);
  font-weight: 300;
  font-size: 1.1rem;
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  gap: 0;
  padding: 48px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Section shared ── */
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.65;
}

/* ── Trust Engine ── */
.engine {
  padding: 96px 48px;
  background: var(--bg);
}

.engine-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.engine-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.engine-step {
  background: var(--bg);
  padding: 36px 32px;
  position: relative;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Sectors ── */
.sectors {
  padding: 96px 48px;
  background: var(--surface);
}

.sectors-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.sector-card {
  background: var(--surface-raised);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.sector-card:hover {
  border-color: var(--accent-dim);
}

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

.sector-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Outcomes ── */
.outcomes {
  padding: 96px 48px;
  background: var(--bg);
}

.outcomes-inner {
  max-width: 1100px;
}

.outcomes .section-title {
  margin-bottom: 56px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.outcome {
  padding: 48px 40px;
  border: 1px solid var(--border);
}

.outcome h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}

.outcome p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  padding: 120px 48px;
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--border);
}

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

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
}

.closing-headline em {
  font-style: italic;
  color: var(--accent);
}

/* ── Footer ── */
.footer {
  padding: 64px 48px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 500;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .manifesto { padding: 64px 24px; }
  .stats-row { padding: 40px 24px; grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-divider { display: none; }
  .engine { padding: 64px 24px; }
  .engine-steps { grid-template-columns: 1fr; }
  .sectors { padding: 64px 24px; }
  .sector-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 48px 24px 32px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat { padding: 0; }
}