:root {
    --background: #0b0c0f;
    --surface: #111318;
    --text: #f2f3f5;
    --muted: #9297a3;
    --border: #242832;
    --accent: #ffffff;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--background);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    width: min(1100px, calc(100% - 48px));
    min-height: 100vh;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
}

/* Brand */

.hero {
    padding: 48px 0 120px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 10px;

    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.brand-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.legal-name {
    margin: 12px 0 0 56px;

    color: var(--muted);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
}

/* Content */

.content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;

    padding-bottom: 120px;
}

.section {
    border-top: 1px solid var(--border);
    padding-top: 22px;
}

.label {
    margin: 0 0 42px;

    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
}

h1 {
    max-width: 700px;
    margin: 0;

    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 600;
}

.description {
    max-width: 560px;
    margin: 32px 0 0;

    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

/* Contact */

.contacts {
    display: flex;
    flex-direction: column;
}

.contacts a {
    display: flex;
    flex-direction: column;
    gap: 6px;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);

    font-size: 15px;

    transition:
        color 160ms ease,
        padding-left 160ms ease;
}

.contacts a:first-child {
    border-top: 1px solid var(--border);
}

.contacts a:hover {
    padding-left: 8px;
}

.contacts span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Footer */

footer {
    margin-top: auto;
    padding: 24px 0;

    border-top: 1px solid var(--border);

    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.04em;
}

/* Mobile */

@media (max-width: 700px) {
    .page {
        width: min(100% - 32px, 1100px);
    }

    .hero {
        padding: 32px 0 80px;
    }

    .content {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-bottom: 80px;
    }

    .brand-name {
        font-size: 13px;
    }

    .legal-name {
        margin-left: 0;
    }

    h1 {
        font-size: clamp(42px, 13vw, 64px);
    }
}