* {
    box-sizing: border-box;
}

html {
    color-scheme: dark;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, #17202d 0, transparent 35%),
        #0b0f14;
    color: #e8edf5;
    font-family:
        Inter, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

.page {
    width: min(980px, calc(100% - 36px));
    margin: 64px auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-bottom: 36px;
}

.eyebrow {
    color: #718097;
    font-size: 11px;
    letter-spacing: .19em;
}

h1 {
    margin: 6px 0 8px;
    font-size: clamp(32px, 5vw, 46px);
    letter-spacing: -.03em;
}

h2 {
    margin: 0 0 5px;
    font-size: 20px;
}

p {
    margin: 0;
    color: #7e899a;
}

.overall {
    flex: 0 0 auto;
    padding: 13px 17px;
    border: 1px solid #26303e;
    border-radius: 12px;
    background: #121820;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #45d394;
    box-shadow: 0 0 15px rgba(69, 211, 148, .45);
}

.summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-bottom: 38px;
    border: 1px solid #26303e;
    border-radius: 15px;
    background: #26303e;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 23px;
    background: #121820;
}

.metric span {
    color: #778394;
    font-size: 13px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

button {
    padding: 10px 15px;
    border: 0;
    border-radius: 9px;
    background: #e8edf5;
    color: #10151b;
    font-weight: 600;
    cursor: pointer;
}

button:hover {
    opacity: .9;
}

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

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 18px;
    border: 1px solid #26303e;
    border-radius: 12px;
    background: #121820;
}

.service small {
    color: #687586;
}

.latency {
    margin-left: 16px;
    color: #bec8d5;
    font-variant-numeric: tabular-nums;
}

footer {
    margin-top: 45px;
    color: #566273;
    font-size: 13px;
}

@media (max-width: 650px) {
    .page {
        margin-top: 36px;
    }

    header {
        align-items: flex-start;
        flex-direction: column;
    }

    .summary,
    .services {
        grid-template-columns: 1fr;
    }
}
