.cl-intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.cl-intro-overlay.fade-out {
    opacity: 0;
}

.cl-intro-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    color: #2d7ff9;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: scale(0.92);
    position: relative;
    overflow: hidden;
}

.cl-intro-text.animate-in {
    animation: clIntroFadeIn 1.5s ease-out forwards;
}

@keyframes clIntroFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.92);
        text-shadow: none;
    }
    60% {
        opacity: 1;
        transform: scale(0.98);
        text-shadow: 0 0 40px rgba(45, 127, 249, 0.6), 0 0 80px rgba(45, 127, 249, 0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        text-shadow: 0 0 30px rgba(45, 127, 249, 0.4), 0 0 60px rgba(45, 127, 249, 0.2);
    }
}

.cl-intro-text::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.15) 55%,
        transparent 70%
    );
    transform: skewX(-15deg);
    opacity: 0;
}

.cl-intro-text.sweep::after {
    animation: clIntroSweep 0.5s ease-in-out forwards;
}

@keyframes clIntroSweep {
    0% {
        left: -100%;
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 1;
    }
}

.cl-intro-text.glow-peak {
    text-shadow: 0 0 60px rgba(45, 127, 249, 0.8), 0 0 120px rgba(45, 127, 249, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
}
