:root { --ground:#f3f6fb; --surface:#fff; --line:#d3dde9; --ink:#0b1f3a; --ink-2:#33475f; --muted:#5d6f87; --sos:#e8303f; color-scheme: light; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) { --ground:#0b1f3a; --surface:#12305a; --line:rgba(255,255,255,.1); --ink:#f2f6fb; --ink-2:#d4deea; --muted:#a3b6cf; --sos:#ff4757; color-scheme: dark; } }
:root[data-theme="dark"] { --ground:#0b1f3a; --surface:#12305a; --line:rgba(255,255,255,.1); --ink:#f2f6fb; --ink-2:#d4deea; --muted:#a3b6cf; --sos:#ff4757; color-scheme: dark; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--ground); color: var(--ink); font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif; font-size: 1.0625rem; line-height: 1.6; }
.wrap { width: min(760px, 100%); margin-inline: auto; padding: 24px clamp(16px, 4vw, 40px) 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: Manrope, system-ui, sans-serif; font-size: 1.2rem; text-decoration: none; color: inherit; margin-bottom: 36px; }
.brand b { font-weight: 800; } .brand img { width: 30px; }
h1 { font-family: Manrope, system-ui, sans-serif; font-size: clamp(1.9rem, 5vw, 2.6rem); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 6px; text-wrap: balance; }
h2 { font-family: Manrope, system-ui, sans-serif; font-size: 1.3rem; margin: 34px 0 8px; }
.meta { color: var(--muted); margin: 0 0 28px; }
p, li { color: var(--ink-2); } p { margin: 0 0 12px; }
ul { padding-left: 22px; } li { margin-bottom: 6px; }
table { border-collapse: collapse; width: 100%; font-size: .95rem; margin: 8px 0 16px; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: Manrope, system-ui, sans-serif; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.box { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; margin: 16px 0; }
a { color: var(--sos); }
footer { margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; display: flex; flex-wrap: wrap; gap: 8px 22px; }
footer a { color: var(--ink-2); text-decoration: none; }
