:root {
    color-scheme: light;
    --surface: #ffffff;
    --surface-muted: #f7f7f8;
    --ink: #111111;
    --muted: #656565;
    --line: #d9d9dc;
    --accent: #002fa7;
    --content: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.18em;
}

a:hover {
    text-decoration-thickness: 2px;
}

a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
    padding: 8px 12px;
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.topbar {
    border-bottom: 1px solid var(--line);
}

.topbar__inner,
.page,
.footer__inner {
    width: min(calc(100% - 40px), var(--content));
    margin-inline: auto;
}

.topbar__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.language-link {
    font-size: 15px;
    font-weight: 600;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
    gap: 64px;
    padding: clamp(64px, 10vw, 136px) 0 72px;
    border-bottom: 1px solid var(--line);
}

.eyebrow,
.meta dt,
.summary dt,
.footer {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--accent);
}

h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(50px, 8.5vw, 116px);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.94;
}

.lead {
    max-width: 760px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: clamp(19px, 2.2vw, 25px);
    line-height: 1.5;
}

.meta {
    align-self: end;
    margin: 0;
    border-top: 1px solid var(--ink);
}

.meta__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.meta dt,
.meta dd {
    margin: 0;
}

.meta dd {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    background: var(--surface-muted);
    border-bottom: 1px solid var(--line);
}

.summary__item {
    min-height: 150px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

.summary__item:last-child {
    border-right: 0;
}

.summary dt,
.summary dd {
    margin: 0;
}

.summary dt {
    color: var(--muted);
}

.summary dd {
    margin-top: 30px;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.35;
}

.policy {
    counter-reset: policy-section;
}

.policy-section {
    display: grid;
    grid-template-columns: 150px minmax(0, 720px);
    gap: 34px;
    padding: 58px 0 64px;
    border-bottom: 1px solid var(--line);
}

.section-number {
    color: var(--accent);
    font-size: clamp(54px, 6vw, 88px);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.9;
    font-variant-numeric: tabular-nums;
}

.policy-section h2 {
    margin: 0 0 22px;
    font-size: clamp(27px, 3.1vw, 40px);
    letter-spacing: -0.035em;
    line-height: 1.14;
}

.policy-section p {
    margin: 0 0 18px;
}

.policy-section ul {
    margin: 0 0 20px;
    padding-left: 1.15em;
}

.policy-section li + li {
    margin-top: 8px;
}

.notice {
    margin-top: 28px;
    padding: 20px 22px;
    border-left: 5px solid var(--accent);
    background: var(--surface-muted);
}

.footer {
    margin-top: 80px;
    color: var(--muted);
    border-top: 1px solid var(--ink);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0 44px;
}

.footer p {
    margin: 0;
}

@media (max-width: 820px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .meta {
        max-width: 520px;
    }

    .summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summary__item:nth-child(2) {
        border-right: 0;
    }

    .summary__item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .policy-section {
        grid-template-columns: 96px minmax(0, 1fr);
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .topbar__inner,
    .page,
    .footer__inner {
        width: min(calc(100% - 28px), var(--content));
    }

    .topbar__inner {
        min-height: 60px;
    }

    .hero {
        padding: 54px 0 52px;
    }

    h1 {
        font-size: clamp(46px, 16vw, 72px);
    }

    .summary {
        grid-template-columns: 1fr;
    }

    .summary__item,
    .summary__item:nth-child(2) {
        min-height: 112px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .summary__item:last-child {
        border-bottom: 0;
    }

    .summary dd {
        margin-top: 16px;
    }

    .policy-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 44px 0 48px;
    }

    .section-number {
        font-size: 48px;
    }

    .footer__inner {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@media print {
    .topbar,
    .skip-link,
    .language-link {
        display: none;
    }

    .hero {
        padding-top: 24px;
    }

    .policy-section {
        break-inside: avoid;
    }
}
