/* ============================================================
   manifesto.css — "Art of Information" statement on the homepage,
   flows directly from the hero rather than reading as a new section
   ============================================================ */

.manifesto {
  border-top: none;
  padding-top: 1rem;
}

.manifesto-lede {
  font-family: var(--sans);
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  max-width: 44ch;
  margin-bottom: 1rem;
}

.manifesto-body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.7;
  max-width: 62ch;
  margin-bottom: 1rem;
}

.manifesto-body:last-child {
  margin-bottom: 0;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

.scroll-cue:hover {
  color: var(--accent);
}

.scroll-cue-arrow {
  font-size: 1rem;
  animation: scroll-cue-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.manifesto-secondary {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
}

.manifesto-links {
  margin-top: 0.65rem;
}
