/* manifesto.css — Phase 7 */
.manifesto {
  position: relative;
  min-height: 130vh;
  background: #000206;
  align-items: center;
  overflow: hidden;
}

.manifesto__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(123, 47, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 47, 255, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at center, black, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 72%);
  animation: gridBreath 7s ease-in-out infinite;
}
@keyframes gridBreath {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.manifesto__lines {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 4vh, 2.8rem);
}

.manifesto__line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-2);
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
}

.manifesto__line.is-final {
  font-weight: 700;
  background: linear-gradient(110deg, var(--purple), var(--cyan) 40%, var(--magenta) 70%, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: finalShimmer 6s linear infinite;
}
@keyframes finalShimmer { to { background-position: 200% center; } }
