/* Manifesto — reading column on the public site */

.manifesto {
  padding: clamp(48px, 8vw, 88px) 0 clamp(72px, 12vw, 120px);
}

.manifesto__col {
  width: 100%;
  max-width: 64rem; /* ~1024px — wider reading column within .wrap */
  margin: 0 auto;
}

.manifesto__eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary, #a1a1aa);
}

.manifesto__col > h1 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: clamp(28px, 5.5vw, 44px);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--text-primary, #fff);
}

.manifesto__lead {
  margin: 0 0 40px;
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary, #a1a1aa);
}

.manifesto__col > h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.3;
  margin: 40px 0 14px;
  color: var(--text-primary, #fff);
}

.manifesto__col > p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary, #a1a1aa);
}

.manifesto__col > p strong {
  color: var(--text-primary, #fff);
  font-weight: 700;
}

.manifesto__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color, #2e2e2e);
}

.manifesto__actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 560px) {
  .manifesto__actions {
    flex-direction: column;
  }

  .manifesto__actions .btn {
    width: 100%;
  }
}
