/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e14;
  --surface: #16161f;
  --surface-alt: #1e1e2a;
  --text: #e8e0d0;
  --text-muted: #8a8070;
  --accent: #c9a84c;
  --accent-dim: #8a6e30;
  --border: #2a2a38;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Barlow', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* --- Navigation --- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 52px;
  width: auto;
  display: block;
}

.nav-meta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--accent);
}

/* --- Hero --- */
.hero {
  padding: 100px 60px 120px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.03) 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 40px;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 40px;
}

.hero-body {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  gap: 60px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Manifesto --- */
.manifesto {
  background: var(--surface);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 780px;
}

.manifesto-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  font-weight: 500;
}

.manifesto-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 44px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}

/* --- Structure --- */
.structure {
  padding: 100px 60px;
}

.structure-inner {
  max-width: 900px;
}

.structure-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 64px;
  font-weight: 500;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 4px;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.step-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.structure-callout {
  margin-top: 60px;
  padding: 40px 48px;
  border: 1px solid var(--accent-dim);
  background: rgba(201,168,76,0.03);
}

.callout-text {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  text-align: center;
  letter-spacing: 0.02em;
}

/* --- Terms --- */
.terms {
  background: var(--surface);
  padding: 100px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.terms-inner {
  max-width: 900px;
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.terms-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 20px;
}

.terms-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* --- Closing --- */
.closing {
  padding: 100px 60px;
}

.closing-inner {
  max-width: 720px;
}

.closing-rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 60px;
}

.closing-rule:last-child {
  margin-bottom: 0;
  margin-top: 60px;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 36px;
}

.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-legal {
  font-size: 0.7rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.6;
  margin-top: 24px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .nav { padding: 20px 28px; }
  .hero { padding: 60px 28px 80px; }
  .manifesto { padding: 60px 28px; }
  .structure { padding: 60px 28px; }
  .terms { padding: 60px 28px; }
  .closing { padding: 60px 28px; }
  .footer { padding: 40px 28px; }
  
  .hero-meta {
    flex-direction: column;
    gap: 32px;
  }
  
  .step {
    grid-template-columns: 48px 1fr;
    gap: 24px;
  }
  
  .terms-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .callout-text { font-size: 1.4rem; }
}
