:root {
    color-scheme: dark;
    --text: #ffffff;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #091117 0%, #030608 100%);
    color: var(--text);
    font-family: "Instrument Sans", sans-serif;
}

@keyframes introFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-shell {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.video-layer,
.background-video {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noscript-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 5;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.82);
    color: #fff;
    font: 400 0.92rem/1.4 "Instrument Sans", sans-serif;
}

.page-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;

    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 80px;
        flex-grow: 1;
        padding: 40px;
        text-align: center;

        .texts {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        h1 {
            font-weight: 600;
            font-size: 24px;
            line-height: 130%;
            margin: 0;
        }

        p {
            font-weight: 400;
            font-size: 16px;
            line-height: 170%;
            letter-spacing: 0.1em;
            margin: 0;
        }
    }

    .footer {
        padding: 40px;
        font-weight: 400;
        font-size: 12px;
        line-height: 150%;
        text-align: center;
        letter-spacing: 0.1em;
    }
}

.footer a {
    color: inherit;
}

.logo {
    height: 160px;
    opacity: 0;
    animation: introFadeUp 1s ease-out 0.5s forwards;
}

.page-content .content h1,
.page-content .content p,
.page-content .footer {
    opacity: 0;
    animation: introFadeUp 1s ease-out forwards;
}

.page-content .content h1 {
    animation-delay: 0.8s;
}

.page-content .content p,
.page-content .footer {
    animation-delay: 1s;
}

@media (max-width: 768px) {
    .logo {
        width: 300px;
        height: auto;
    }
}
