:root { color-scheme: dark; --ink: #e7eef9; --muted: #b5c7de; --navy: #07182d; --panel: #102642; --blue: #0989e8; --line: #274d76; }
* { box-sizing: border-box; }
body { margin: 0; background: var(--navy); color: var(--ink); font: 18px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: #83c9ff; } a:hover { color: #c7e7ff; }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header { border-bottom: 1px solid var(--line); background: #081e38; }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: white; font-weight: 750; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.button { display: inline-block; padding: 11px 18px; border: 1px solid #45aeff; border-radius: 8px; background: var(--blue); color: white; font-weight: 700; text-decoration: none; }
.button.secondary { background: transparent; color: #bde1ff; }
main { padding: 70px 0 46px; }
.eyebrow { margin: 0; color: #7dceff; font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1 { max-width: 850px; margin: 12px 0 18px; font-size: clamp(2.2rem, 5vw, 4.3rem); line-height: 1.08; }
h2 { margin-top: 0; font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.2; }
.lead { max-width: 760px; margin: 0; color: var(--muted); font-size: 1.2rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 52px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 30px 0; }
.fact { border: 1px solid var(--line); border-radius: 10px; padding: 15px; background: #0b213b; }
.fact strong { display: block; color: #86ceff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.fact span { display: block; margin-top: 4px; color: #fff; font-weight: 700; }
.card { border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: var(--panel); }
.card p { margin-bottom: 0; color: var(--muted); }
.article { max-width: 820px; }
.article section { margin: 42px 0; }
.article li { margin: 12px 0; color: var(--muted); }
.notice { border-left: 4px solid #43b4ff; padding: 16px 20px; background: #0d2b4a; color: var(--muted); }
details { border: 1px solid var(--line); border-radius: 10px; margin: 12px 0; padding: 16px 18px; background: var(--panel); }
summary { cursor: pointer; color: #fff; font-weight: 750; }
details p { margin: 14px 0 0; color: var(--muted); }
footer { border-top: 1px solid var(--line); padding: 28px 0 42px; color: var(--muted); font-size: .92rem; }
footer nav { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
@media (max-width: 760px) { .nav { padding: 12px 0; } .grid, .facts { grid-template-columns: 1fr; } main { padding-top: 48px; } .button { width: 100%; text-align: center; } }
