/* ===== Manifesto Sections ===== */
.manifesto {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.manifesto-headline {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.manifesto-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 520px;
    font-weight: 400;
}

/* 1. Opening */
.manifesto-opening {
    overflow: hidden;
}

.manifesto-opening .manifesto-headline {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--white-bright);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.manifesto-opening .manifesto-sub {
    color: var(--muted-light);
    position: relative;
    z-index: 2;
}

/* Hero CTA */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
    background: var(--amber);
    border-radius: var(--radius-md);
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
}

.hero-cta:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 168, 56, 0.25);
}

.hero-cta svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta:hover svg {
    transform: translateX(3px);
}

/* Floating hero cards */
.hero-cards {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-card {
    position: absolute;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--black-card);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
    opacity: 0;
    animation: heroCardFloat 18s linear infinite;
}

.hero-card span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

@keyframes heroCardFloat {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    8% {
        opacity: 0.35;
    }
    50% {
        opacity: 0.35;
    }
    85% {
        opacity: 0.15;
    }
    100% {
        opacity: 0;
        transform: translateY(-110vh) rotate(3deg);
    }
}

/* Card positions - scattered across the viewport */
.hero-card-1  { left: 8%;  bottom: -8%;  animation-delay: 0s;    animation-duration: 20s; }
.hero-card-2  { left: 72%; bottom: -12%; animation-delay: -3s;   animation-duration: 22s; }
.hero-card-3  { left: 85%; bottom: -5%;  animation-delay: -7s;   animation-duration: 19s; }
.hero-card-4  { left: 20%; bottom: -15%; animation-delay: -10s;  animation-duration: 24s; }
.hero-card-5  { left: 55%; bottom: -10%; animation-delay: -5s;   animation-duration: 21s; }
.hero-card-6  { left: 3%;  bottom: -18%; animation-delay: -13s;  animation-duration: 23s; }
.hero-card-7  { left: 40%; bottom: -6%;  animation-delay: -16s;  animation-duration: 20s; }
.hero-card-8  { left: 90%; bottom: -14%; animation-delay: -9s;   animation-duration: 25s; }
.hero-card-9  { left: 30%; bottom: -20%; animation-delay: -18s;  animation-duration: 22s; }
.hero-card-10 { left: 65%; bottom: -3%;  animation-delay: -1.5s; animation-duration: 21s; }

@media (prefers-reduced-motion: reduce) {
    .hero-card { animation: none; opacity: 0.15; }
    .hero-card-1  { bottom: 15%; }
    .hero-card-2  { bottom: 70%; }
    .hero-card-3  { bottom: 45%; }
    .hero-card-4  { bottom: 25%; }
    .hero-card-5  { bottom: 80%; }
    .hero-card-6  { bottom: 55%; }
    .hero-card-7  { bottom: 35%; }
    .hero-card-8  { bottom: 65%; }
    .hero-card-9  { bottom: 10%; }
    .hero-card-10 { bottom: 50%; }
}

/* 2. DIY Agitation */
.manifesto-diy {
    background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(100, 80, 80, 0.04) 0%, transparent 70%);
}

.manifesto-diy .manifesto-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    opacity: 0.75;
    max-width: 700px;
    margin-bottom: 2rem;
}

.manifesto-diy .manifesto-headline em {
    font-style: italic;
    color: var(--white-bright);
    opacity: 1;
}

.diy-stages {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.diy-stage {
    font-size: 0.85rem;
    color: var(--muted);
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    white-space: nowrap;
}

.diy-stage.struck {
    text-decoration: line-through;
    opacity: 0.4;
}

.diy-arrow {
    color: var(--muted);
    opacity: 0.3;
}

.manifesto-punchline {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-style: italic;
    color: var(--white);
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* 3. Agency Agitation */
.manifesto-agency .manifesto-headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    opacity: 0.75;
    max-width: 700px;
    margin-bottom: 2rem;
}

.manifesto-agency .manifesto-headline em {
    font-style: italic;
    color: var(--white-bright);
    opacity: 1;
}

.agency-price {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    opacity: 0.2;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.agency-items {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.agency-item {
    font-size: 0.95rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.agency-item::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--muted);
    opacity: 0.4;
}

/* 4. The Turn */
.manifesto-turn {
    position: relative;
}

.manifesto-turn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, var(--amber-dim) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 1.5s ease;
}

.manifesto-turn.in-view::before {
    opacity: 1;
}

.manifesto-turn .manifesto-headline {
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--amber);
    position: relative;
    z-index: 1;
    text-shadow: 0 0 80px var(--amber-glow);
}

.turn-line {
    width: 60px;
    height: 2px;
    background: var(--amber);
    margin: 0 auto 2rem;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.manifesto-turn.in-view .turn-line {
    opacity: 1;
    transform: scaleX(1);
}

.manifesto-turn .manifesto-sub {
    position: relative;
    z-index: 1;
    color: var(--muted-light);
}

/* 5. Solution */
.manifesto-solution {
    background: radial-gradient(ellipse 60% 40% at 50% 30%, rgba(232, 168, 56, 0.03) 0%, transparent 70%);
}

.manifesto-solution .manifesto-headline {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    max-width: 750px;
    margin-bottom: 2rem;
}

.manifesto-solution .manifesto-headline em {
    color: var(--amber);
    font-style: italic;
}

.solution-steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.solution-step {
    font-size: 0.9rem;
    color: var(--white);
    padding: 0.55rem 1.3rem;
    border: 1px solid var(--amber-dim);
    background: rgba(232, 168, 56, 0.05);
    border-radius: 100px;
    white-space: nowrap;
}

.solution-arrow { color: var(--amber); opacity: 0.4; }

.solution-desc {
    font-size: 1.05rem;
    color: var(--muted-light);
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .manifesto { padding: 5rem 1.5rem; }
    .diy-stages, .solution-steps { flex-direction: column; }
    .diy-arrow, .solution-arrow { display: none; }
    .agency-items { align-items: flex-start; padding-left: 2rem; }
    .hero-card-6, .hero-card-8, .hero-card-9, .hero-card-10 { display: none; }
}
