:root {
  --bg: #0e1520;
  --surface: #151e2d;
  --surface-raised: #1d2636;
  --fg: #e8e3d9;
  --fg-muted: #8a9ab5;
  --accent: #d4a843;
  --accent-dim: #a67c20;
  --border: #2a3548;
  --check-green: #4caf7d;
}

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

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

/* NAV */
nav {
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Crimson Pro', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 3rem 4rem;
  background: var(--bg);
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: 'Crimson Pro', serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.4rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
}

/* Report Visual */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.report-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.4rem;
  width: 100%;
  max-width: 380px;
}
.report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.report-status {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.report-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.report-sources {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.source-row {
  font-size: 0.8rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.source-row.active { color: var(--fg); }
.source-row.pending { color: #4a5568; }
.source-check {
  font-size: 0.7rem;
  width: 14px;
  text-align: center;
  color: var(--check-green);
}
.source-row.active .source-check { color: var(--accent); }
.source-row.pending .source-check { color: #3a4256; }
.report-progress { }
.progress-label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}
.progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.manifesto-statement {
  font-family: 'Crimson Pro', serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.manifesto-body p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* HOW */
.how {
  padding: 5rem 3rem;
  background: var(--bg);
}
.how-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Crimson Pro', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.phase-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.phase-card {
  padding: 2.2rem 2rem;
  background: var(--surface);
}
.phase-num {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.phase-card h3 {
  font-family: 'Crimson Pro', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}
.phase-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* OUTPUT */
.output {
  padding: 5rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.output-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.output-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.output-title {
  font-family: 'Crimson Pro', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.output-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.output-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.output-icon {
  width: 40px;
  height: 40px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.output-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
}
.output-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 6rem 3rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Crimson Pro', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.4rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { justify-content: flex-start; }
  .hero-headline { font-size: 2.8rem; }
  .report-frame { max-width: 100%; }
  .manifesto { padding: 3.5rem 1.5rem; }
  .manifesto-statement { font-size: 1.8rem; }
  .how { padding: 3.5rem 1.5rem; }
  .section-title { font-size: 1.8rem; }
  .phase-grid { grid-template-columns: 1fr; }
  .output { padding: 3.5rem 1.5rem; }
  .output-title { font-size: 1.8rem; }
  .output-grid { grid-template-columns: 1fr; }
  .closing { padding: 4rem 1.5rem; }
  .closing-headline { font-size: 2.1rem; }
  footer { padding: 1.5rem; }
}