#home {
    min-height: 100%;
    padding: 0 10vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-lock {
    width: fit-content;
    max-width: 100%;
}

.manifesto-line {
    margin: 0;
    font-size: clamp(2.75rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #1d1d1fcd;
    animation: pageReveal 0.45s ease-out forwards;
    animation-delay: 0.1s;
    white-space: nowrap;
}

.manifesto-author {
    width: 100%;
    margin-top: 14px;
    font-size: clamp(0.9rem, 1.2vw, 1.15rem);
    color: #1d1d1fc7;
    font-weight: 800;
    letter-spacing: 0.10em;
    opacity: 0.35;
    text-transform: uppercase;
    text-align: right;
}

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@media (max-width: 640px) {
    #home {
        min-height: calc(100svh - 120px);
        padding: 0 24px;
    }

    .manifesto-lock {
        width: fit-content;
        max-width: 100%;
    }

    .manifesto-line {
        white-space: nowrap;
        font-size: clamp(36px, 7.4vw, 48px);
    }

    .manifesto-author {
        width: 100%;
        text-align: right;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}