:root {
    --ink: #080c24;
    --muted: #596174;
    --page: #f7f8ff;
    --line: #dfe3f2;
    --accent: #6f45ff;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

a {
    color: inherit;
}

.section-inner,
.site-header__inner,
.site-footer__inner {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.site-header__inner,
.site-footer__inner {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header__brand,
.site-footer__brand {
    margin: 0;
    font-weight: 800;
    text-decoration: none;
}

.site-nav__list,
.site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__list a,
.site-footer__menu a {
    text-decoration: none;
}

.empty-page {
    background: var(--page);
    padding: 112px 0;
}

.empty-page .section-inner {
    max-width: 760px;
}

.empty-page__eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.empty-page h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 1.06;
}

.empty-page p:last-child {
    max-width: 620px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #ffffff;
}

@media (max-width: 760px) {
    .section-inner,
    .site-header__inner,
    .site-footer__inner {
        width: min(100% - 28px, var(--container));
    }

    .site-header__inner,
    .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        padding: 18px 0;
    }

    .empty-page {
        padding: 72px 0;
    }

    .empty-page h1 {
        font-size: 2.3rem;
    }
}
