@font-face {
    font-family: "Arial Narrow Fallback";
    src: local("Arial Narrow");
}

:root {
    --white: #ffffff;
    --ink: #0d1114;
    --line: rgba(255, 255, 255, 0.82);
    --muted: rgba(255, 255, 255, 0.84);
}

* {
    box-sizing: border-box;
}

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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--white);
    background: #20282d;
}

.page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #20282d;
}

.page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(93, 99, 101, 0.38), rgba(11, 18, 23, 0.2)),
        url("hero-mountain.jpg");
    background-size: cover;
    background-position: center;
}

.page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(128, 132, 132, 0.2), rgba(10, 17, 22, 0.24));
}

.shell {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100% - 48px));
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 1fr auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(430px, 1fr) 1px minmax(360px, 0.9fr);
    align-items: center;
    align-self: center;
    gap: 64px;
    padding: 48px 0;
}

.divider {
    width: 1px;
    height: 526px;
    background: var(--line);
}

.headline {
    position: relative;
    margin: 0;
    font-family: "Arial Narrow Fallback", "Arial Narrow", Impact, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(68px, 6.8vw, 94px);
    line-height: 0.94;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    width: max-content;
    max-width: 100%;
}

.headline::after {
    content: "";
    position: absolute;
    width: 106px;
    height: 208px;
    left: 74%;
    top: -18px;
    background: rgba(255, 255, 255, 0.58);
    z-index: -1;
}

.headline span {
    display: block;
}

.headline .wide {
    letter-spacing: 0.12em;
}

.headline .soon {
    letter-spacing: 0.1em;
}

.content {
    max-width: 470px;
    text-align: center;
    justify-self: start;
}

.message {
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.52;
    text-align: left;
    text-wrap: pretty;
}

.domain-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(334px, 100%);
    min-height: 60px;
    padding: 18px 24px;
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.footer {
    padding: 0 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 860px) {
    .shell {
        width: min(680px, calc(100% - 34px));
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        align-content: center;
        padding-bottom: 54px;
    }

    .divider {
        display: none;
    }

    .headline {
        font-size: clamp(54px, 13.5vw, 80px);
        line-height: 0.94;
    }

    .headline .wide,
    .headline .soon {
        letter-spacing: 0.08em;
    }

    .headline::after {
        width: 74px;
        height: 148px;
        left: 74%;
        top: -10px;
    }

    .content {
        justify-self: start;
        text-align: left;
    }

    .message {
        font-size: 17px;
    }
}

@media (max-width: 560px) {
    .shell {
        width: min(100% - 28px, 430px);
    }

    .headline {
        font-size: clamp(44px, 14vw, 62px);
    }

    .headline .wide,
    .headline .soon {
        letter-spacing: 0.05em;
    }

    .message {
        font-size: 16px;
    }

    .domain-badge {
        width: 100%;
    }

    .footer {
        padding-bottom: 22px;
        font-size: 12px;
    }
}
