:root {
    --brand: #d82027;
    --brand-dark: #a90f19;
    --ink: #17202a;
    --muted: #5f6f80;
    --line: #dce3ea;
    --surface: #ffffff;
    --soft: #f5f8fb;
    --accent: #0071ed;
    --accent-soft: #e8f2ff;
    --success: #16875d;
    --shadow: 0 18px 45px rgba(23, 32, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(216, 32, 39, 0.06), transparent 420px),
        var(--soft);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.65;
}

a {
    color: var(--accent);
    font-weight: 650;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(220, 227, 234, 0.9);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(23, 32, 42, 0.08);
}

.header-inner {
    width: min(1120px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 800;
}

.brand:hover {
    text-decoration: none;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #fff2f3;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.94rem;
}

.nav a {
    color: var(--muted);
}

.nav a:hover {
    color: var(--brand);
}

.language-control select {
    min-height: 36px;
    padding: 0 36px 0 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    font-size: 0.94rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(125, 11, 20, 0.98), rgba(216, 32, 39, 0.94)),
        var(--brand);
}

.hero-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 78px 0 64px;
}

.eyebrow {
    width: fit-content;
    margin: 0 0 18px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 750;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 760px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.last-updated {
    color: rgba(255, 255, 255, 0.82);
}

.last-updated strong {
    color: #ffffff;
}

.content-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 36px auto 68px;
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.summary-panel {
    position: sticky;
    top: 96px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.summary-panel h2 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.summary-panel ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.94rem;
}

.summary-panel li {
    margin: 0 0 10px;
}

.policy-document {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.policy-section {
    scroll-margin-top: 92px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.policy-section h2 {
    margin-bottom: 14px;
    color: var(--ink);
    font-size: 1.55rem;
    line-height: 1.25;
}

.policy-section h3 {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.35;
}

.policy-section p,
.policy-section li {
    color: var(--muted);
}

.policy-section p:last-child,
.policy-section ul:last-child {
    margin-bottom: 0;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.data-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfdff;
}

.data-card p {
    margin-bottom: 0;
    font-size: 0.96rem;
}

.check-list {
    padding-left: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--success);
}

.check-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 0.65em;
    width: 4px;
    height: 7px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

.contact-section {
    padding: 26px;
    border: 1px solid #cbe1ff;
    border-radius: 8px;
    background: var(--accent-soft);
}

address {
    font-style: normal;
    color: var(--muted);
}

.footer {
    padding: 28px 16px 42px;
    color: var(--muted);
    text-align: center;
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--brand);
    box-shadow: 0 12px 24px rgba(216, 32, 39, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 180ms ease;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .header-inner {
        min-height: 64px;
    }

    .nav {
        display: none;
    }

    .hero-inner {
        padding: 52px 0 44px;
    }

    .content-shell {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .summary-panel {
        position: static;
    }

    .policy-document {
        padding: 24px 18px;
    }

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

@media (max-width: 460px) {
    .header-inner,
    .hero-inner,
    .content-shell {
        width: min(100% - 24px, 1120px);
    }

    .brand {
        font-size: 1rem;
    }

    .language-control select {
        max-width: 122px;
    }

    h1 {
        font-size: 2.25rem;
    }
}
