/* OPS-01 — the abuse page.
 *
 * PingFleet's look, but built for reading rather than for atmosphere: a real
 * measure, generous line height, and no animation. Someone lands here mid-
 * incident wanting an answer, not a mood.
 *
 * Self-contained, no tokens, no build step — same reasoning as /tv. This page
 * has to render on whatever the abuse desk happens to be using.
 */

:root {
    color-scheme: dark;
}

html, body {
    margin: 0;
    padding: 0;
    background: #050a14;
    color: #d6f5ec;
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    line-height: 1.65;
}

.grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(0deg, rgba(16, 242, 178, 0.04) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(90deg, rgba(16, 242, 178, 0.04) 0 1px, transparent 1px 80px);
}

main {
    position: relative;
    z-index: 1;
    max-width: 68ch;          /* a measure, not a viewport */
    margin: 0 auto;
    padding: 32px 20px 64px;
}

.brand {
    font-family: 'Consolas', ui-monospace, monospace;
    letter-spacing: 6px;
    color: #10f2b2;
    font-size: 14px;
    margin-bottom: 20px;
}

h1 { font-size: 26px; margin: 0 0 12px; font-weight: 600; line-height: 1.25; }
h2 {
    font-size: 17px;
    margin: 40px 0 10px;
    color: #10f2b2;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.lede { font-size: 17px; color: #a9cfc5; margin: 0; }

p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 4px; }

a { color: #4df3ff; }
a:hover { color: #8af8ff; }

code {
    font-family: 'Consolas', ui-monospace, monospace;
    font-size: 14px;
    background: rgba(11, 18, 32, 0.9);
    border: 1px solid rgba(16, 242, 178, 0.2);
    border-radius: 3px;
    padding: 1px 6px;
}

.note {
    font-size: 15px;
    color: #a9cfc5;
    border-left: 2px solid rgba(16, 242, 178, 0.35);
    padding: 8px 0 8px 14px;
    margin: 16px 0;
}

/* ---- probe list ---- */
.ips { margin: 16px 0; }
.ip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 242, 178, 0.12);
}
.ip-name { font-weight: 600; min-width: 12ch; }
.ip-addrs { display: flex; flex-wrap: wrap; gap: 8px; }
.ip-prov { color: #7fa79c; font-size: 14px; }

footer {
    margin-top: 56px;
    padding-top: 16px;
    border-top: 1px solid rgba(16, 242, 178, 0.15);
    font-size: 14px;
    color: #7fa79c;
}

@media (min-width: 700px) {
    main { padding: 56px 24px 80px; }
    h1 { font-size: 32px; }
}
