:root {
    color-scheme: light;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    background: #f3f6f8;
    color: #1e2b36;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(56, 128, 179, .14),
            transparent 34rem
        ),
        #f3f6f8;
}

a {
    color: #17659a;
}

.shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(760px, calc(100% - 40px));
}

.header {
    border-bottom: 1px solid #dfe7ec;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    color: #183b56;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #415563;
    font-weight: 600;
    text-decoration: none;
}

nav a:hover {
    color: #17659a;
}

.hero {
    padding: 105px 0 70px;
}

.eyebrow {
    margin-bottom: 18px;
    color: #2876a7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1 {
    max-width: 780px;
    margin: 0;
    color: #183b56;
    font-size: clamp(38px, 7vw, 67px);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.lead {
    max-width: 720px;
    margin: 28px 0;
    color: #516673;
    font-size: 21px;
    line-height: 1.65;
}

.status-card {
    max-width: 650px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 19px 21px;
    border: 1px solid #dce9df;
    border-radius: 14px;
    background: #f0f8f2;
}

.status-card p {
    margin: 5px 0 0;
    color: #52705a;
}

.status-dot {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
    margin-top: 5px;
    border-radius: 50%;
    background: #2b9b4a;
    box-shadow: 0 0 0 5px rgba(43, 155, 74, .12);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 33px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.primary {
    background: #183b56;
    color: #fff;
}

.primary:hover {
    background: #225475;
}

.secondary {
    border: 1px solid #cbd8df;
    background: #fff;
    color: #294657;
}

.information {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 0 0 90px;
}

.information article,
.page-card {
    padding: 31px;
    border: 1px solid #e0e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(24, 59, 86, .06);
}

.information h2 {
    margin-top: 0;
    color: #183b56;
    font-size: 20px;
}

.information p,
.page-card p {
    color: #5b6c76;
    line-height: 1.65;
}

.page-card {
    margin: 90px 0;
}

.page-card h1 {
    margin-bottom: 30px;
    font-size: clamp(34px, 6vw, 52px);
}

.service-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 18px 0;
    border-bottom: 1px solid #edf1f3;
}

.online {
    color: #287a3d;
}

.muted {
    margin-top: 28px;
    font-size: 14px;
}

.error-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
}

.error-code {
    color: #b4c3cc;
    font-size: 70px;
    font-weight: 800;
}

footer {
    padding: 27px 0;
    border-top: 1px solid #dfe7ec;
    color: #6e7e87;
    font-size: 14px;
}

@media (max-width: 760px) {
    .header-inner {
        min-height: 64px;
    }

    nav {
        gap: 14px;
        font-size: 14px;
    }

    .hero {
        padding: 70px 0 50px;
    }

    .information {
        grid-template-columns: 1fr;
        padding-bottom: 55px;
    }

    .information article,
    .page-card {
        padding: 24px;
    }
}
