:root {
  --bg: #080b12;
  --bg-surface: #0e1420;
  --bg-elevated: #141c2b;
  --fg: #e8e6de;
  --fg-muted: #7a8196;
  --accent: #d4a04a;
  --accent-dim: rgba(212, 160, 74, 0.12);
  --border: rgba(232, 230, 222, 0.08);
}

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

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 11, 18, 0.9);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ── MANIFESTO ── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,160,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 0 48px;
  align-items: start;
}
.manifesto-bar {
  width: 3px;
  min-height: 200px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 2px;
}
.manifesto-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.manifesto-overline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.manifesto-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.manifesto-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.75;
}
.manifesto-stats {
  display: flex;
  gap: 48px;
  margin-top: 16px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.cta-btn:hover { opacity: 0.85; }

/* ── SHARED LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 56px;
}

/* ── FEATURES ── */
.features { padding: 120px 40px; background: var(--bg-surface); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feature-card {
  padding: 48px 44px;
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.25s;
}
.feature-card:hover { background: #1a2436; }
.feature-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.feature-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── PROCESS ── */
.process { padding: 120px 40px; background: var(--bg); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 48px;
  margin-left: 4px;
}
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}
.step-content { display: flex; flex-direction: column; gap: 12px; padding-top: 4px; }
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
}
.step-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ── CLOSING ── */
.closing {
  padding: 140px 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-meta { font-size: 11px; color: var(--fg-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .manifesto { padding: 100px 24px 80px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 0 24px; }
  .manifesto-bar { min-height: 60px; width: 3px; }
  .manifesto-stats { gap: 28px; flex-wrap: wrap; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 36px 28px; }
  .process { padding: 80px 24px; }
  .process-steps { padding-left: 24px; }
  .step { grid-template-columns: 60px 1fr; gap: 16px; }
  .step-num { font-size: 36px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 36px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}