:root {
    --bg: #f4f5f6;
    --surface: #ffffff;
    --text: #202326;
    --muted: #6b7177;
    --border: #e1e4e7;
    --accent: #285c4d;
    --ok: #34845f;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    font-family: Arial, "Helvetica Neue", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--accent);
}

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

header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: var(--text);
    font-size: 17px;
    font-weight: 600;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--accent);
    color: white;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 700;
}

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

nav a {
    text-decoration: none;
    color: #50565c;
    font-size: 14px;
}

nav a:hover {
    color: #111;
}

main {
    padding: 54px 0 72px;
}

.page-head {
    margin-bottom: 38px;
}

h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
}

h2 {
    font-size: 19px;
    margin: 0 0 18px;
}

.lead {
    color: var(--muted);
    max-width: 680px;
    margin: 0;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 20px;
}

.panel-head {
    padding: 17px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.panel-body {
    padding: 20px;
}

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.service-row:first-child {
    padding-top: 0;
}

.service-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.service-name {
    font-weight: 500;
}

.service-desc {
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.status {
    white-space: nowrap;
    color: var(--ok);
    font-size: 13px;
}

.status::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ok);
    margin-right: 7px;
    vertical-align: 1px;
}

.note {
    color: var(--muted);
    font-size: 13px;
}

footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    font-size: 13px;
}

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

.footer-links {
    display: flex;
    gap: 18px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 650px) {
    .header-inner,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    nav {
        gap: 16px;
        flex-wrap: wrap;
    }

    main {
        padding-top: 36px;
    }

    .service-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}
