:root {
    color-scheme: dark;
    background: #000;
}

html,
body {
    min-height: 100vh;
    margin: 0;
    color: #fff;
    background: #000;
}

@supports (min-height: 100dvh) {
    html,
    body {
        min-height: 100dvh;
    }
}

body > main {
    max-width: none;
    margin: 0;
    padding: 0;
    background: #000;
}

.noah-site {
    --noah-edge: clamp(18px, 3vw, 40px);
    min-height: 100vh;
    color: #fff;
    background: #000;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.noah-site,
.noah-site * {
    box-sizing: border-box;
}

.noah-hero {
    display: grid;
    place-items: center;
    min-height: 100svh;
    padding: var(--noah-edge);
    background: #000;
}

.noah-logo-stage {
    display: grid;
    place-items: center;
    width: 100%;
    margin: 0;
}

.noah-logo-stage img {
    display: block;
    width: auto;
    max-width: min(78vw, 720px);
    max-height: 82svh;
    object-fit: contain;
    filter: drop-shadow(0 24px 60px rgba(255, 255, 255, .08));
}

.noah-portrait-stage {
    display: grid;
    place-items: center;
    min-height: 100svh;
    padding: clamp(48px, 8vw, 96px) var(--noah-edge);
    background: #000;
}

.noah-portrait {
    display: block;
    width: auto;
    max-width: min(86vw, 720px);
    max-height: 88svh;
    object-fit: contain;
    background: #000;
    filter: drop-shadow(0 30px 70px rgba(255, 255, 255, .06));
}

.noah-sticky-logo {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    left: max(16px, env(safe-area-inset-left));
    z-index: 30;
    width: clamp(58px, 7vw, 92px);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease;
}

.noah-site.is-logo-compact .noah-sticky-logo {
    opacity: .92;
    pointer-events: auto;
    transform: translateY(0);
}

.noah-sticky-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.noah-footer {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 30;
}

.noah-socials {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.noah-social-link {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .84);
    background: rgba(0, 0, 0, .52);
    border: 1px solid rgba(255, 255, 255, .24);
    text-decoration: none;
    backdrop-filter: blur(12px);
    transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.noah-social-link:hover,
.noah-social-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .56);
    transform: translateY(-1px);
    outline: none;
}

.noah-social-link svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.noah-social-link:last-child svg {
    fill: currentColor;
    stroke: none;
}

.noah-social-dot {
    fill: currentColor;
    stroke: none;
}

@media (max-width: 680px) {
    .noah-site {
        --noah-edge: 18px;
    }

    .noah-logo-stage img {
        max-width: 88vw;
        max-height: 78svh;
    }

    .noah-portrait {
        max-width: 92vw;
        max-height: 84svh;
    }

    .noah-sticky-logo {
        width: 58px;
    }

    .noah-social-link {
        width: 42px;
        height: 42px;
    }
}
