/* ═══════════════════════════════════════════════════
   MANIFESTO — The three beliefs, stated plainly
   Dossier treatment: clinical, high-contrast, authoritative
   ═══════════════════════════════════════════════════ */

.manifesto {
  padding: clamp(5rem, 10vh, 8rem) clamp(1.5rem, 6vw, 5rem);
  border-top: 1px solid var(--border-faint);
}

.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto__header {
  margin-bottom: 3.5rem;
}

.manifesto__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.manifesto__eyebrow::after {
  content: '';
  height: 1px;
  width: 60px;
  background: oklch(62% 0.18 35 / 0.3);
}

/* ── Belief entries ── */
.manifesto__beliefs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.manifesto__belief {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2rem;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border-faint);
}

.manifesto__belief:last-child {
  border-bottom: none;
}

.manifesto__belief-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.7rem;
  opacity: 0.7;
}

.manifesto__belief-body {}

.manifesto__belief-statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.9rem;
  font-style: normal;
}

.manifesto__belief-statement em {
  font-style: italic;
  color: var(--accent);
}

/* "Proved by" — authority label, mimics scientific paper structure */
.manifesto__belief-proof {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.manifesto__proof-label {
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0.7;
  margin-right: 0.5rem;
}

/* ── Light mode ── */
[data-theme="light"] .manifesto {
  border-top-color: var(--ink-faint);
}

[data-theme="light"] .manifesto__belief {
  border-bottom-color: var(--ink-faint);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .manifesto__belief {
    grid-template-columns: 2.5rem 1fr;
    gap: 1.25rem;
    padding: 2rem 0;
  }

  .manifesto__belief-statement {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }
}
