:root {
    color-scheme: dark;
    --pink: #ff00ff;
    --green: #39ff14;
    --red: #ff4d67;
    --ink: #070707;
    --panel: #111;
    --line: #292929;
    --text: #f5f5f5;
    --muted: #b0b0b0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}
a { color: var(--pink); }
a:focus-visible, button:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 12px;
    background: var(--green);
    color: #000;
    padding: 10px 14px;
    z-index: 10;
}
.skip-link:focus { left: 12px; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(7, 7, 7, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}
.header-inner, main, .footer-inner {
    width: min(100% - 32px, 900px);
    margin-inline: auto;
}
.header-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    color: var(--pink);
    text-decoration: none;
    font-weight: 950;
    letter-spacing: .22em;
    font-size: 1.3rem;
}
.policy-home {
    color: var(--text);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 800;
}
main { padding: 58px 0 80px; }
.eyebrow {
    color: var(--green);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}
h1 {
    margin: 8px 0 14px;
    font-size: clamp(2.1rem, 7vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -.035em;
}
.lede {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 720px;
}
.effective {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: .8rem;
}
.notice {
    margin: 28px 0;
    border-left: 4px solid var(--green);
    background: #101510;
    padding: 18px 20px;
    border-radius: 0 12px 12px 0;
}
.notice.warning {
    border-color: var(--red);
    background: #180d10;
}
.toc, section, .card {
    margin-top: 26px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(20px, 5vw, 34px);
}
.toc h2, section h2 { margin-top: 0; }
.toc ul, .link-grid {
    margin: 0;
    padding-left: 20px;
}
section h2 {
    color: var(--pink);
    font-size: 1.35rem;
}
h3 { margin: 26px 0 6px; font-size: 1.05rem; }
li + li { margin-top: 8px; }
.link-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.link-grid a {
    display: block;
    height: 100%;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 850;
}
.link-grid a:hover { border-color: var(--pink); }
.action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 0;
    border-radius: 10px;
    background: var(--pink);
    color: #000;
    text-decoration: none;
    font-weight: 950;
}
.action.secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.site-footer { border-top: 1px solid var(--line); }
.footer-inner { padding: 28px 0 40px; color: var(--muted); font-size: .82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 12px; }
.footer-links a { color: var(--muted); }
code { color: var(--green); }

@media (max-width: 560px) {
    .header-inner { min-height: 58px; }
    main { padding-top: 38px; }
    .policy-home { font-size: .72rem; }
}
