:root {
    --navy: #002450;
    --sky: #00b7ff;
    --brand-blue: #0176ff;
    --link: #007eae;
    --ink: #172033;
    --muted: #5d6677;
    --surface: #ffffff;
    --background: #f1f6fa;
    --border: #d9e5ee;
    --focus: #ffd54f;
}

* {
    box-sizing: border-box;
}

[v-cloak] {
    display: none;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--background);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

a {
    color: var(--link);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--navy);
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 10px 16px;
    color: var(--navy);
    background: var(--surface);
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 36, 80, 0.24);
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--navy);
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 36, 80, 0.14);
}

.header-inner,
.content-width {
    width: min(100% - 40px, 1120px);
    margin-inline: auto;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-weight: 750;
    text-decoration: none;
}

.brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.back-link {
    padding: 12px 4px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover {
    color: var(--sky);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 4px;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.language-switch:hover {
    background: rgba(0, 183, 255, 0.1);
}

.language-switch img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.policy-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(64px, 10vw, 108px) 0 clamp(78px, 11vw, 126px);
    color: #ffffff;
    background: #00b7ff;
    background: linear-gradient(to right, var(--sky), var(--brand-blue));
}

.policy-hero .particles-js-canvas-el {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    height: 100% !important;
}

.policy-hero .content-width {
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.eyebrow {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--navy);
    line-height: 1.25;
}

.policy-hero h1 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(42px, 7vw, 72px);
    letter-spacing: -0.04em;
}

.effective-date {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
}

.policy-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    margin-top: -52px;
    padding-bottom: 80px;
}

.policy-toc,
.policy-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(0, 36, 80, 0.09);
}

.policy-toc {
    position: sticky;
    top: 24px;
    padding: 24px;
}

.policy-toc h2 {
    margin-bottom: 14px;
    font-size: 18px;
}

.policy-toc ol {
    margin: 0;
    padding-left: 22px;
}

.policy-toc li {
    margin: 8px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.policy-card {
    padding: clamp(28px, 6vw, 64px);
}

.policy-intro {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.policy-intro h2 {
    font-size: clamp(27px, 4vw, 38px);
}

.policy-card section {
    padding-top: 34px;
    scroll-margin-top: 28px;
}

.policy-card section + section {
    margin-top: 8px;
    border-top: 1px solid var(--border);
}

.policy-card h2 {
    margin-bottom: 12px;
    font-size: clamp(24px, 3vw, 30px);
}

.policy-card h3 {
    margin: 24px 0 8px;
    font-size: 19px;
}

.policy-card p {
    margin: 0 0 16px;
}

.policy-card ul {
    margin: 10px 0 18px;
    padding-left: 24px;
}

.policy-card li {
    margin: 7px 0;
}

.contact-card {
    margin-top: 38px;
    padding: 30px !important;
    color: #ffffff;
    background: #00b7ff;
    background: linear-gradient(to right, var(--sky), var(--brand-blue));
    border: 0 !important;
    border-radius: 14px;
}

.contact-card h2,
.contact-card a {
    color: #ffffff;
}

.contact-card address {
    display: grid;
    gap: 8px;
    font-style: normal;
}

.contact-card address span {
    overflow-wrap: anywhere;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    padding: 30px 20px;
    color: #dcecf6;
    background: var(--navy);
    text-align: center;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #ffffff;
}

@media (max-width: 820px) {
    .policy-layout {
        grid-template-columns: 1fr;
        margin-top: -42px;
    }

    .policy-toc {
        position: static;
    }

    .policy-toc ol {
        columns: 2;
        column-gap: 32px;
    }
}

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

    .header-inner,
    .content-width {
        width: min(100% - 28px, 1120px);
    }

    .header-inner {
        min-height: 82px;
    }

    .brand img {
        width: 58px;
        height: 58px;
    }

    .back-link {
        font-size: 13px;
    }

    .header-actions {
        gap: 8px;
    }

    .language-switch {
        width: 44px;
        height: 44px;
    }

    .language-switch img {
        width: 36px;
        height: 36px;
    }

    .policy-toc ol {
        columns: 1;
    }

    .policy-card {
        border-radius: 14px;
    }

    .contact-card {
        margin-inline: -8px;
        padding: 24px !important;
    }
}

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

@media print {
    .skip-link,
    .site-header,
    .policy-toc,
    .site-footer {
        display: none;
    }

    body {
        color: #000000;
        background: #ffffff;
        font-size: 11pt;
    }

    .policy-hero {
        padding: 0 0 20px;
        color: #000000;
        background: none;
    }

    .policy-hero h1,
    .effective-date {
        color: #000000;
    }

    .policy-layout {
        display: block;
        margin: 0;
        padding: 0;
    }

    .policy-card {
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .contact-card {
        color: #000000;
        background: none;
        border: 1px solid #000000 !important;
    }

    .contact-card h2,
    .contact-card a {
        color: #000000;
    }
}
