/* ─── CSS Animation Setup ─────────────────────────────────────────── */

/*
   No opacity:0 on [data-animate] — GSAP handles initial state.
   If JS fails entirely, content is visible by default.
*/

/* ─── Preloader ───────────────────────────────────────────────────── */

.proposal-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.proposal-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.proposal-preloader__text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ─── Scroll indicator bounce ─────────────────────────────────────── */

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

.scroll-indicator {
    animation: scroll-bounce 2s ease-in-out infinite;
}
