* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    overscroll-behavior: none;
    background: #000;
}

body {
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.page {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 50% 42%,
                    rgba(255, 255, 255, 0.035),
                    transparent 30%
            ),
            #000;
}

.hero {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 48px 24px 110px;
    overflow: hidden;
}

.logo {
    display: block;
    width: min(620px, 72vw);
    max-width: 100%;
    max-height: calc(100dvh - 180px);
    height: auto;
    object-fit: contain;
}

.contact-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: max(30px, env(safe-area-inset-bottom));
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding-right: max(24px, env(safe-area-inset-right));
    padding-left: max(24px, env(safe-area-inset-left));
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-bar a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 180ms ease;
}

.contact-bar a:hover,
.contact-bar a:focus-visible {
    color: #fff;
}

.separator {
    color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 700px) {
    .hero {
        padding: 24px 24px 150px;
    }

    .logo {
        width: min(78vw, 460px);
        max-height: calc(100dvh - 210px);
    }

    .contact-bar {
        bottom: max(24px, env(safe-area-inset-bottom));
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
        letter-spacing: 0.12em;
    }

    .separator {
        display: none;
    }
}

@media (max-height: 450px) {
    .hero {
        padding: 20px 24px 80px;
    }

    .logo {
        max-height: calc(100dvh - 110px);
    }

    .contact-bar {
        bottom: max(12px, env(safe-area-inset-bottom));
        flex-direction: row;
        gap: 8px;
        font-size: 9px;
    }

    .separator {
        display: inline;
    }
}