* {
    box-sizing: border-box;
}

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

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background: #f7f7f5;
    color: #181818;
}

.page {
    min-height: calc(100vh - 70px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 24px;
}

.content {
    width: 100%;
    max-width: 720px;

    text-align: center;
}

.logo {
    margin-bottom: 45px;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: 4px;

    color: #111;
}

.logo span {
    font-weight: 300;
}

.status {
    display: inline-block;

    margin-bottom: 28px;
    padding: 8px 15px;

    border: 1px solid #c8c8c3;
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.5);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #686864;
}

h1 {
    margin: 0;

    font-size: clamp(42px, 8vw, 76px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 650;
}

h1 span {
    color: #8a8a84;
    font-weight: 400;
}

.lead {
    max-width: 620px;

    margin: 35px auto 0;

    font-size: 21px;
    line-height: 1.6;

    color: #494946;
}

.divider {
    width: 50px;
    height: 1px;

    margin: 38px auto;

    background: #c9c9c4;
}

.info {
    max-width: 560px;

    margin: 0 auto;

    font-size: 15px;
    line-height: 1.8;

    color: #777771;
}

nav {
    margin-top: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    font-size: 14px;
}

nav a {
    color: #353532;
    text-decoration: none;

    border-bottom: 1px solid transparent;

    transition: border-color 0.2s ease;
}

nav a:hover {
    border-bottom-color: #353532;
}

nav span {
    color: #b6b6b0;
}

footer {
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    font-size: 12px;
    color: #999993;
}

/* Mobile */

@media (max-width: 600px) {

    .page {
        padding: 45px 22px;
    }

    .logo {
        margin-bottom: 35px;
    }

    h1 {
        letter-spacing: -2px;
    }

    .lead {
        margin-top: 28px;
        font-size: 18px;
    }

    .info {
        font-size: 14px;
    }
}
.legal-page {
    min-height: 100vh;
    padding: 70px 24px;
}

.legal-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h1 {
    margin: 35px 0 45px;
    font-size: 48px;
    letter-spacing: -2px;
}

.legal-content h2 {
    margin: 38px 0 10px;
    font-size: 16px;
    font-weight: 650;
}

.legal-content p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.75;
    color: #555550;
}

.legal-content a {
    color: #222;
}

.back {
    font-size: 14px;
    text-decoration: none;
    color: #777 !important;
}

.back:hover {
    color: #111 !important;
}