/* ============================================================
   Manifesto / quote band
   ============================================================ */
.manifesto {
    position: relative;
    padding: 84px 0;
    overflow: hidden;
    background:
        radial-gradient(700px 300px at 50% 0%, rgba(245,199,106,0.12), transparent 60%),
        linear-gradient(180deg, var(--bg-alt), var(--bg));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.manifesto__inner {
    max-width: 880px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.manifesto__mark { color: var(--gold); font-size: 2rem; opacity: .6; margin-bottom: 18px; }
.manifesto__quote {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.18;
    font-size: clamp(1.5rem, 3.4vw, 2.7rem);
    max-width: 18ch;
}
.manifesto__divider {
    width: 90px; height: 2px; margin: 26px 0 20px;
    background: var(--gold-grad);
    border-radius: 2px;
}
.manifesto__sub {
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    margin-bottom: 28px;
}
.manifesto__sub strong { font-weight: 700; }
