.site-splash {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-splash.is-done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-splash-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    animation: splash-logo-in 0.7s ease both;
}

.site-splash-inner img {
    width: 96px;
    height: 98px;
    display: block;
}

.site-splash-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: #211F1F;
}

body.is-splash-loading {
    overflow: hidden;
}

@keyframes splash-logo-in {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-splash-inner {
        animation: none;
    }

    .site-splash {
        transition-duration: 0.15s;
    }
}
