.intro--video {
    position: fixed; inset: 0; z-index: 10000;
    background: #050b1a;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    opacity: 1; visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.intro--video.is-leaving { opacity: 0; visibility: hidden; }
.intro--video.is-done { display: none; }

.intro__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    background: #050b1a;
}

.intro__video-overlay {
    position: absolute; inset: 0;
    background: #000;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.intro__video-overlay.is-active { opacity: 1; }

.intro__logo-reveal {
    position: absolute; inset: 0;
    z-index: 3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    padding: 2rem;
}
.intro__logo-reveal.is-active {
    opacity: 1; visibility: visible;
}
.intro__logo-reveal.is-leaving {
    opacity: 0;
    transition: opacity 0.5s ease;
}


.intro__logo-img {
    width: clamp(280px, 52vw, 680px);
    height: auto;
    transform: scale(0.85) translateY(20px);
    opacity: 0;
    animation: logo-rise 0.9s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)) 0.1s forwards;
}
.intro__logo-reveal.is-active .intro__logo-img { animation-play-state: running; }

@keyframes logo-rise {
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.intro__skip {
    position: absolute; top: 1.5rem; right: 1.5rem;
    z-index: 5;
    padding: 0.4rem 0.9rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s, color 0.3s, border-color 0.3s, background 0.3s;
}
.intro__skip:hover,
.intro--video:hover .intro__skip {
    opacity: 1;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(110, 198, 255, 0.3);
    background: rgba(10, 20, 40, 0.4);
}

.intro__loading {
    position: absolute;
    bottom: 3rem;
    left: 50%; transform: translateX(-50%);
    z-index: 4;
    display: flex; gap: 0.5rem;
    opacity: 1;
    transition: opacity 0.4s ease;
}
.intro__loading.is-hidden { opacity: 0; pointer-events: none; }
.intro__loading-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #6ec6ff;
    animation: loading-pulse 1.4s ease-in-out infinite;
}
.intro__loading-dot:nth-child(2) { animation-delay: 0.2s; }
.intro__loading-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes loading-pulse {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .intro__logo-img,
    .intro__name-1, .intro__name-2,
    .intro__logo-tagline,
    .intro__logo-glow,
    .intro__loading-dot {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
