* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: #10110f;
}

body {
    min-height: 100vh;
    margin: 0;
    color: #f4f2e9;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(ellipse at 50% 46%, #22251c 0, #161712 38%, #10110f 74%);
}

.coming-soon {
    width: min(100% - 48px, 1120px);
    min-height: 100vh;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}

.wordmark {
    align-self: flex-start;
    margin-top: 42px;
    color: inherit;
    font-size: 1.45rem;
    font-weight: 750;
    letter-spacing: -0.09em;
    text-decoration: none;
}

.wordmark span {
    color: #c3ed75;
}

.message {
    width: 100%;
    margin: auto 0;
    padding: 100px 0 120px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 28px;
    color: #c3ed75;
    font-size: 0.75rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 16px #c3ed75a6;
}

h1 {
    margin: 0;
    font-size: clamp(3.4rem, 9vw, 7.6rem);
    font-weight: 550;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

h1 em {
    color: #c3ed75;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.description {
    max-width: 390px;
    margin: 28px auto 0;
    color: #aaa99f;
    font-size: 1rem;
    line-height: 1.7;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 22px 0 28px;
    border-top: 1px solid #ffffff19;
    color: #77786e;
    font-size: 0.65rem;
    font-weight: 650;
    letter-spacing: 0.15em;
}

@media (max-width: 600px) {
    .coming-soon {
        width: min(100% - 36px, 1120px);
    }

    .wordmark {
        margin-top: 28px;
    }

    .message {
        padding-block: 80px;
    }

    .eyebrow {
        margin-bottom: 22px;
        font-size: 0.65rem;
    }

    .description {
        max-width: 300px;
        font-size: 0.92rem;
    }
}
