*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Owners";
    src: url("OwnersXXWide-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #212126;
    --text: #ffffff;
    --muted: #d7d7d7;
    --yellow: #ccc953;
    --orange: #fb6522;
    --blue: #545ba8;
    --line: rgba(204, 201, 83, 0.88);
    --font: "Owners", Arial, Helvetica, sans-serif;
    --left: clamp(32px, 18.5vw, 380px);
    --right: clamp(56px, 2.5vw, 110px);
    --content-shift: clamp(0px, 24vw, 500px);
}

html {
    min-height: 100%;
    background: var(--bg);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    padding: clamp(80px, 18vh, 228px) 0 clamp(56px, 7vh, 90px) var(--left);
}

.page {
    min-height: calc(100vh - clamp(136px, 25vh, 318px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(46px, 7vh, 92px);
}

.icons {
    position: fixed;
    top: clamp(28px, 5vh, 56px);
    right: clamp(28px, 3vw, 70px);
    display: block;
    width: clamp(34px, 2.6vw, 54px);
    height: auto;
    opacity: 0.92;
}

.hero {
    padding-right: var(--right);
}

h1 {
    max-width: 960px;
    color: var(--yellow);
    font-size: clamp(28px, 2.2vw, 44px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: lowercase;
}

h1 strong {
    text-transform: uppercase;
    font-weight: 400;
}

.domain {
    display: inline-block;
    margin-top: clamp(58px, 8vh, 92px);
    color: var(--orange);
    font-size: clamp(15px, 0.9vw, 20px);
    line-height: 1.4;
    text-decoration: none;
}

.domain:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
}

hr {
    width: calc(100vw - var(--left));
    border: 0;
    border-top: 1px solid var(--line);
}

.content {
    width: min(1120px, calc(100vw - var(--left) - var(--content-shift) - var(--right)));
    margin-left: var(--content-shift);
    padding-right: var(--right);
    display: grid;
    gap: clamp(52px, 8vh, 86px);
}

.status,
.company,
.thanks {
    font-size: clamp(14px, 0.86vw, 18px);
    line-height: 1.55;
    letter-spacing: 0;
}

.status {
    color: var(--text);
}

.logo {
    display: block;
    width: min(600px, 100%);
    height: auto;
    margin: 0 0 18px;
    filter: invert(1);
}

.company {
    max-width: 1120px;
}

.company a {
    color: var(--text);
    text-decoration: none;
}

.company a:hover {
    color: var(--yellow);
}

footer {
    width: calc(100vw - var(--left));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-right: var(--right);
}

.langs {
    display: flex;
    gap: 22px;
}

.langs a {
    color: var(--muted);
    text-decoration: none;
    font-size: clamp(14px, 0.82vw, 17px);
}

.langs a[aria-current="page"],
.langs a:hover {
    color: var(--text);
}

.thanks {
    color: var(--blue);
    text-align: right;
}

@media (max-width: 1100px) {
    :root {
        --left: clamp(28px, 8vw, 92px);
        --right: 32px;
        --content-shift: clamp(0px, 18vw, 180px);
    }

    body {
        padding-top: 88px;
    }
}

@media (max-width: 760px) {
    :root {
        --left: 24px;
        --right: 24px;
        --content-shift: 0px;
    }

    body {
        padding-top: 32px;
    }

    .page {
        min-height: auto;
        justify-content: flex-start;
        gap: 36px;
    }

    .icons {
        position: static;
        display: block;
        margin-left: auto;
        margin-right: var(--right);
        margin-bottom: 28px;
    }

    h1 {
        font-size: clamp(24px, 7.6vw, 34px);
    }

    .content {
        width: calc(100vw - var(--left) - var(--right));
        gap: 34px;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .thanks {
        text-align: left;
    }
}
