:root {
  --bg: #0c1a14;
  --bg-surface: #111f1a;
  --fg: #e8e4d9;
  --fg-muted: #8a8577;
  --accent: #c9a84c;
  --accent-dim: #9a7d35;
  --border: #1e3028;
  --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; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* MANIFESTO */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 48px 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, #1a3a2f 0%, var(--bg) 70%);
}
.manifesto__inner { max-width: 760px; position: relative; z-index: 1; }
.manifesto__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto__headline em {
  font-style: italic;
  color: var(--accent);
}
.manifesto__sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}
.manifesto__bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 700;
  color: var(--border);
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* WHAT IS IT */
.whatitis {
  padding: 100px 48px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.whatitis__inner { max-width: 1100px; margin: 0 auto; }
.whatitis__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 600px;
}
.whatitis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.whatitis__card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.whatitis__icon { margin-bottom: 20px; }
.whatitis__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.whatitis__card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PILLARS */
.pillars {
  padding: 100px 48px;
  background: var(--bg);
}
.pillars__inner { max-width: 1100px; margin: 0 auto; }
.pillars__header { margin-bottom: 64px; }
.pillars__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pillars__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
}
.pillars__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}
.pillar {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 20px;
  line-height: 1;
}
.pillar__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
}
.pillar__desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ROADMAP */
.roadmap {
  padding: 100px 48px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.roadmap__inner { max-width: 720px; margin: 0 auto; }
.roadmap__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 56px;
}
.roadmap__steps {
  position: relative;
  padding-left: 40px;
}
.roadmap__steps::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--border);
}
.roadmap__step {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}
.roadmap__step:last-child { margin-bottom: 0; }
.roadmap__dot {
  position: absolute;
  left: -40px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  flex-shrink: 0;
}
.roadmap__content h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.roadmap__content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, #1a3a2f 0%, var(--bg) 70%);
}
.closing__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.closing__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 32px;
}
.closing__headline em { font-style: italic; color: var(--accent); }
.closing__body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer__inner { max-width: 1100px; margin: 0 auto; }
.footer__brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .manifesto { padding: 100px 24px 60px; }
  .manifesto__bg-text { display: none; }
  .whatitis, .pillars, .roadmap, .closing { padding: 72px 24px; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .roadmap__steps { padding-left: 32px; }
  .roadmap__dot { left: -32px; }
  .footer { padding: 36px 24px; }
}