.splash-page {
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 46%, rgb(73 217 255 / 7%), transparent 38%),
        linear-gradient(145deg, #141f3a 0%, #101a31 52%, #0d172c 100%);
}

.splash-screen {
    display: grid;
    place-items: center;
    padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
}

.splash-logo {
    width: clamp(132px, 36vw, 180px);
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 28px;
    box-shadow:
        0 18px 48px rgb(0 5 23 / 38%),
        0 0 0 1px rgb(73 217 255 / 7%);
    animation: splashAppear 1.35s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes splashAppear {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    45% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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