:root {
  --bg: #f5f2ed;
  --bg-dark: #1a1a1a;
  --fg: #1a1a1a;
  --fg-light: #6b6b6b;
  --accent: #c9a96e;
  --accent-dark: #a8884e;
  --white: #faf9f6;
  --border: #e0dbd3;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.site-nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-light);
  letter-spacing: 0.02em;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  overflow: hidden;
}
.hero-surface {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,169,110,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(250,249,246,0.65);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 6rem 2rem;
  background: var(--white);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3rem;
}
.step {
  padding: 0 1.5rem;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.step p {
  font-size: 0.875rem;
  color: var(--fg-light);
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 2.5rem;
  flex-shrink: 0;
}

/* ── PROTECTION ── */
.protection {
  background: var(--bg);
  padding: 6rem 2rem;
}
.protection-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.protection-text h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--fg);
}
.protection-text p {
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.protection-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat {}
.stat-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.2rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-light);
  line-height: 1.5;
}
.stat-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* ── VAULT CARD ── */
.vault-card {
  background: var(--bg-dark);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.vault-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.vault-top {
  margin-bottom: 1.5rem;
}
.vault-icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  position: relative;
}
.vault-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}
.vault-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.5);
}
.vault-bar {
  height: 6px;
  background: rgba(250,249,246,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.vault-bar-fill {
  height: 100%;
  width: 75%;
  background: var(--accent);
  border-radius: 4px;
}
.vault-parties {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.party {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(250,249,246,0.4);
}
.party-neutral {
  color: rgba(250,249,246,0.8);
}
.party-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(250,249,246,0.3);
}
.party-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}
.vault-status {
  font-size: 0.78rem;
  color: rgba(250,249,246,0.45);
  line-height: 1.5;
  border-top: 1px solid rgba(250,249,246,0.08);
  padding-top: 1.25rem;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg-dark);
  padding: 5rem 2rem;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}
.manifesto blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ── CLOSING ── */
.closing {
  background: var(--white);
  padding: 6rem 2rem;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.closing p {
  color: var(--fg-light);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.4rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-light);
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--fg-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .step-connector { display: none; }
  .step { padding: 0; }
  .protection-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner {
    flex-direction: column;
  }
  .hero { padding: 5rem 1.5rem 4rem; }
  .how-it-works { padding: 4rem 1.5rem; }
  .protection { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
}