:root {
    color-scheme: light;
    --ink: #172033;
    --muted: #5d6678;
    --line: #dfe4ec;
    --paper: #ffffff;
    --wash: #f4f7fb;
    --brand: #2457d6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--wash);
    font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--brand); }

.site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.site-header .inner,
main,
.site-footer .inner {
    width: min(100% - 2rem, 880px);
    margin-inline: auto;
}

.site-header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 64px;
}

.brand {
    color: var(--ink);
    font-weight: 750;
    text-decoration: none;
}

.legal-nav { display: flex; gap: 1rem; }

main {
    margin-block: 2rem;
    padding: clamp(1.25rem, 3vw, 3rem);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgb(23 32 51 / 7%);
}

h1, h2, h3 { line-height: 1.25; }
h1 { margin-top: 0; font-size: clamp(2rem, 5vw, 3rem); }
h2 { margin-top: 2.5rem; padding-top: .25rem; font-size: 1.45rem; }
h3 { margin-top: 1.5rem; font-size: 1.08rem; }
p, li { max-width: 75ch; }
li + li { margin-top: .45rem; }

.meta,
.lede,
.note { color: var(--muted); }

.lede { font-size: 1.08rem; }

.notice {
    margin: 1.5rem 0;
    padding: 1rem 1.15rem;
    border-left: 4px solid var(--brand);
    background: #eef3ff;
    border-radius: 8px;
}

.table-wrap { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .94rem;
}

th, td {
    padding: .75rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th { background: var(--wash); }

.site-footer {
    padding: 0 0 2.5rem;
    color: var(--muted);
    font-size: .9rem;
}

@media (max-width: 620px) {
    .site-header .inner { align-items: flex-start; flex-direction: column; padding-block: .8rem; }
    main { width: min(100% - 1rem, 880px); margin-block: .5rem 1.5rem; border-radius: 12px; }
}
