:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DD;
  --fg: #0D1B2A;
  --fg-muted: #5A6577;
  --accent: #D4A853;
  --accent-dark: #B8892E;
  --nav-h: 64px;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* ── HERO ──────────────────────────────────────── */
.hero {
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* beam visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.beam-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beam {
  position: absolute;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  opacity: 0.25;
}
.beam-1 { transform: rotate(0deg); }
.beam-2 { transform: rotate(60deg); }
.beam-3 { transform: rotate(120deg); }
.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0.18;
}
.ring-1 { width: 80px; height: 80px; }
.ring-2 { width: 160px; height: 160px; opacity: 0.12; }
.ring-3 { width: 240px; height: 240px; opacity: 0.07; }
.core-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 40px 12px rgba(212, 168, 83, 0.35);
}

/* stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
  padding-top: 48px;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--fg-muted); font-weight: 400; }
.stat-divider { width: 1px; height: 48px; background: rgba(13, 27, 42, 0.1); flex-shrink: 0; }

/* ── PROOF ─────────────────────────────────────── */
.proof {
  background: var(--bg-alt);
  padding: 56px 40px;
  text-align: center;
}
.proof-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.proof-types {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.proof-type {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.proof-icon {
  width: 36px;
  height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FEATURES ──────────────────────────────────── */
.features {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
  margin-bottom: 20px;
}
.section-sub { font-size: 18px; color: var(--fg-muted); max-width: 520px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(13, 27, 42, 0.08);
  border: 1px solid rgba(13, 27, 42, 0.08);
}
.feature-card {
  background: var(--bg);
  padding: 48px;
  transition: background 0.2s;
}
.feature-card:hover { background: #FAF7F0; }
.feature-art { margin-bottom: 24px; }
.fa-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 168, 83, 0.2);
}
.feature-card h3 {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
  font-family: 'DM Serif Display', serif;
}
.feature-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* ── MANIFESTO ─────────────────────────────────── */
.manifesto {
  background: var(--fg);
  padding: 120px 40px;
}
.manifesto-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.manifesto-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  color: #FAF7F0;
  line-height: 1.4;
  margin-bottom: 24px;
}
.manifesto-source { font-size: 13px; color: rgba(245, 240, 232, 0.4); margin-bottom: 64px; }
.manifesto-rule {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 64px;
}
.manifesto-rule-line { flex: 1; height: 1px; background: rgba(245, 240, 232, 0.12); }
.manifesto-answer {
  font-size: 20px;
  color: var(--accent);
  font-weight: 500;
}

/* ── CLOSING ───────────────────────────────────── */
.closing {
  background: var(--bg-alt);
  padding: 120px 40px;
  text-align: center;
}
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 56px;
}
.cta-text { font-size: 15px; color: var(--fg-muted); }

/* ── FOOTER ────────────────────────────────────── */
.footer {
  background: var(--fg);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FAF7F0;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: rgba(245, 240, 232, 0.4); max-width: 280px; }
.footer-meta p { font-size: 12px; color: rgba(245, 240, 232, 0.3); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero { padding: 72px 24px 60px; }
  .nav-inner { padding: 0 24px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-types { gap: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
