:root {
    color-scheme: light;
    --bg: #fff;
    --text: #000;
    --muted: rgba(0, 0, 0, 0.58);
    --line: rgba(0, 0, 0, 0.18);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: var(--bg) fixed;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem) 7rem;
    text-align: center;
}

.brand-panel {
    width: min(100%, 70rem);
    min-height: min(40rem, calc(100vh - 3rem));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 2.6vw, 2rem);
    padding: clamp(2rem, 7vw, 5.5rem) clamp(1rem, 5vw, 4rem);
}

.brand-mark {
    width: min(15rem, 56vw);
    max-height: 4.4rem;
    object-fit: contain;
    margin-bottom: clamp(0.75rem, 2vw, 1.5rem);
}

.status-pill {
    margin-top: clamp(0.75rem, 1.8vw, 1.25rem);
    padding: 0.7rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.35rem, 7.8vw, 6.75rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-indent: 0.16em;
}

.intro {
    max-width: 42rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.3rem);
    line-height: 1.65;
}

.site-footer {
    position: fixed;
    left: 50%;
    bottom: clamp(1.25rem, 3vw, 2rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    width: min(100% - 2rem, 34rem);
    transform: translateX(-50%);
}

.site-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.45rem;
    padding: 0.68rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
    outline: none;
}

@media (max-width: 640px) {
    .brand-panel {
        min-height: calc(100vh - 2.5rem);
    }

    .brand-mark {
        width: min(13rem, 72vw);
    }

    h1 {
        font-size: clamp(2rem, 13vw, 3.8rem);
        letter-spacing: 0.08em;
        text-indent: 0.08em;
    }

    .site-footer {
        position: static;
        width: auto;
        padding: 0 1rem 1.5rem;
        transform: none;
    }
}
