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

:root {
  --bg: #0D0D0F;
  --bg-alt: #111115;
  --fg: #F0EDE8;
  --fg-muted: #8A8A8A;
  --accent: #2AFF8C;
  --accent-dim: rgba(42,255,140,0.12);
  --border: rgba(240,237,232,0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Typography ─── */
.section__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* ─── Manifesto ─── */
.manifesto {
  position: relative;
  padding: 96px 48px 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.manifesto__inner { position: relative; z-index: 1; max-width: 860px; }

.manifesto__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

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

.manifesto__body {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* Stats row */
.manifesto__stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 24px 40px 24px 0;
  border-right: 1px solid var(--border);
  min-width: 120px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Grid lines decoration */
.manifesto__grid-lines {
  position: absolute;
  top: 0; right: 0;
  bottom: 0;
  width: 40%;
  display: flex;
  gap: 1px;
  pointer-events: none;
}

.grid-line {
  flex: 1;
  background: var(--border);
  transform: skewX(-15deg);
  transform-origin: right;
}

/* ─── Process ─── */
.process {
  padding: 96px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.process__inner { max-width: 900px; }

.process__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

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

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.step__desc {
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── Proof ─── */
.proof { padding: 96px 48px; border-bottom: 1px solid var(--border); }
.proof__inner { max-width: 900px; }

.proof__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 3.5rem;
}

.proof-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}

.proof-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.proof-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.proof-card__author {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.proof-card__author strong {
  font-size: 0.9rem;
  color: var(--fg);
}

.proof-card__author span {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.proof-card__metric {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
}

/* Bar chart */
.proof__bar { display: flex; flex-direction: column; gap: 20px; margin-bottom: 1.5rem; }

.bar__item {
  display: grid;
  grid-template-columns: 1fr 200px 48px;
  align-items: center;
  gap: 16px;
}

.bar__label { font-size: 0.85rem; color: var(--fg-muted); }

.bar__track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

.bar__val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
}

.proof__sources {
  font-size: 0.72rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ─── Pillars ─── */
.pillars { padding: 96px 48px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.pillars__inner { max-width: 1100px; }

.pillars__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pillar {
  padding: 40px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.pillar--accent { border-color: var(--accent); background: var(--accent-dim); }

.pillar__icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar__body {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar__list li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}

.pillar__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* ─── Closing ─── */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
}

.closing__inner { max-width: 680px; margin: 0 auto; }

.closing__badge {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--fg);
}

.closing__body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.closing__contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.closing__contact span {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

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

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__brand { display: flex; flex-direction: column; }
.footer__name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.footer__sub { font-size: 0.72rem; color: var(--fg-muted); margin-top: 2px; }
.footer__copy { font-size: 0.72rem; color: var(--fg-muted); opacity: 0.5; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .manifesto, .process, .proof, .pillars, .closing { padding: 64px 24px; }
  .manifesto__stats { gap: 0; flex-wrap: wrap; }
  .stat { padding: 16px 20px 16px 0; min-width: 90px; }
  .manifesto__headline { font-size: 2.2rem; }
  .proof__cards { grid-template-columns: 1fr; }
  .pillars__grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .step__num { font-size: 1.8rem; }
  .closing__contact { flex-direction: column; gap: 12px; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
  .bar__item { grid-template-columns: 1fr 80px 40px; }
}

@media (max-width: 480px) {
  .manifesto__stats { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat:last-child { border-bottom: none; }
  .manifesto__grid-lines { display: none; }
}