:root {
  --bg: #F9F6F0;
  --bg-dark: #1A1A2E;
  --fg: #1A1A2E;
  --fg-light: #6B6B6B;
  --fg-on-dark: #F9F6F0;
  --accent: #0D5C4B;
  --accent-light: #0D8A74;
  --gold: #B8935A;
  --gold-light: #D4AD7A;
  --border: rgba(26,26,46,0.1);
  --border-dark: rgba(249,246,240,0.12);
}

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

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

/* ── Navigation ── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,246,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-light);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg-on-dark);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 18px;
  color: rgba(249,246,240,0.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  overflow: hidden;
  width: fit-content;
}

.stat {
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-val {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--fg-on-dark);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(249,246,240,0.45);
  font-weight: 400;
}

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

/* ── Proof bar ── */
.proof {
  background: var(--fg);
  padding: 28px 40px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.proof-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249,246,240,0.4);
  white-space: nowrap;
}

.proof-pillars {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-on-dark);
}

.pillar-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Features ── */
.features {
  padding: 120px 40px;
  background: var(--bg);
}

.features-header {
  max-width: 700px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 300;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}

.feature-card {
  padding: 44px 36px;
  background: #FDFCF9;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.feature-card:hover {
  background: #fff;
}

.feature-icon-wrap {
  margin-bottom: 24px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
}

.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ── How it Works ── */
.howitworks {
  padding: 100px 40px;
  background: #F3EFE8;
}

.howitworks-inner {
  max-width: 900px;
  margin: 0 auto;
}

.howitworks-inner .section-headline {
  margin-bottom: 60px;
}

.phase-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phase {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(26,26,46,0.1);
}

.phase:first-child {
  border-top: 1px solid rgba(26,26,46,0.1);
}

.phase-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.03em;
  width: 60px;
}

.phase-body {
  padding-top: 4px;
}

.phase-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.phase-desc {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 300;
  max-width: 580px;
}

/* ── Manifesto ── */
.manifesto {
  padding: 120px 40px;
  background: var(--fg);
}

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

.manifesto-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  font-style: italic;
  color: var(--fg-on-dark);
  line-height: 1.2;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.manifesto-body {
  font-size: 17px;
  color: rgba(249,246,240,0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 72px;
  max-width: 680px;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--border-dark);
  padding-top: 48px;
}

.mstat {}

.mstat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.mstat-desc {
  font-size: 12px;
  color: rgba(249,246,240,0.35);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Closing ── */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  text-align: center;
}

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

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 300;
}

.closing-divider {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 48px auto;
  opacity: 0.4;
}

.closing-note {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 300;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-on-dark);
  display: block;
  margin-bottom: 4px;
}

.footer-tag {
  font-size: 12px;
  color: rgba(249,246,240,0.35);
  font-weight: 300;
}

.footer-meta {
  font-size: 12px;
  color: rgba(249,246,240,0.3);
}

.footer-sep {
  margin: 0 8px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .manifesto-stats {
    grid-template-columns: 1fr;
  }
  .proof-pillars {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .nav-inner { padding: 16px 24px; }
  .hero-content { padding: 72px 24px 60px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .features, .howitworks, .manifesto, .closing { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .proof { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}