:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #edf4f1;
    background: #07110f;
}

* { box-sizing: border-box; }

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 85% 8%, rgba(73, 230, 169, .12), transparent 27rem),
        radial-gradient(circle at 5% 95%, rgba(78, 132, 255, .10), transparent 30rem),
        #07110f;
}

main {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 48px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #a9b9b4;
    font-size: .75rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border: 1px solid #4be6a9;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #4be6a9;
}

.brand-mark::after {
    content: "雪";
    font-size: .85rem;
}

header {
    max-width: 720px;
    margin: 52px 0 46px;
}

.eyebrow {
    margin: 0 0 10px;
    color: #72e8ba;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 8vw, 5.4rem);
    font-weight: 650;
    line-height: .96;
    letter-spacing: -.06em;
}

header > p {
    margin: 24px 0 0;
    color: #98aaa5;
    font-size: 1.05rem;
    line-height: 1.65;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.service-card {
    min-height: 245px;
    padding: 24px;
    border: 1px solid #1b312b;
    border-radius: 18px;
    background: rgba(12, 28, 24, .72);
    box-shadow: inset 0 1px rgba(255, 255, 255, .025);
    display: flex;
    flex-direction: column;
}

.service-loading {
    grid-column: 1 / -1;
    min-height: 160px;
    justify-content: center;
}

.service-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

h2 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -.02em;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 9px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: .68rem;
    font-weight: 700;
}

.status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 9px currentColor;
}

.status-ready {
    color: #64e6b2;
    background: rgba(75, 230, 169, .09);
}

.status-down {
    color: #ff8b86;
    background: rgba(255, 92, 86, .09);
}

.service-card > p:not(.eyebrow) {
    color: #8ea19b;
    font-size: .88rem;
    line-height: 1.55;
}

.service-card footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 10px;
    color: #647a73;
    font-size: .72rem;
}

code {
    color: #b5c5c0;
    font-family: "SFMono-Regular", Consolas, monospace;
}

.meta {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #60756f;
    font-size: .75rem;
}

.meta a,
.service-card footer a {
    color: #84a69b;
    text-decoration: none;
}

.meta a:hover,
.service-card footer a:hover { color: #72e8ba; }

noscript {
    display: block;
    margin-top: 24px;
    color: #ffb3ae;
}

@media (max-width: 800px) {
    main { padding-top: 40px; }
    header { margin: 40px 0 34px; }
    .services { grid-template-columns: 1fr; }
    .service-card { min-height: 210px; }
    .meta { flex-direction: column; }
}
