@charset "utf-8";

.privacy_page {
    min-height: 70vh;
    color: var(--brand-navy);
    background:
        radial-gradient(circle at 86% 8%, rgba(134, 209, 202, 0.24), transparent 30rem),
        var(--brand-page-bg);
}

.privacy_hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--brand-hero-gradient);
}

.privacy_hero::after {
    content: "";
    position: absolute;
    top: -11rem;
    right: -7rem;
    width: 30rem;
    height: 30rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    box-shadow:
        0 0 0 4rem rgba(255, 255, 255, 0.06),
        0 0 0 9rem rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.privacy_hero_inner {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: min(100% - 4rem, 1080px);
    margin: 0 auto;
    padding: 8rem 0 7rem;
}

.privacy_eyebrow {
    margin: 0 0 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    font: 700 1.3rem/1 "Roboto Condensed", sans-serif;
    letter-spacing: 0.22em;
}

.privacy_hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3.6rem, 7vw, 6.6rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.privacy_intro {
    max-width: 780px;
    margin: 2.4rem 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.7rem;
    line-height: 1.9;
}

.privacy_updated {
    margin: 2.4rem 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.25rem;
}

.privacy_content {
    box-sizing: border-box;
    width: min(100% - 4rem, 980px);
    margin: 0 auto;
    padding: 7rem 0 9rem;
}

.privacy_section {
    display: grid;
    grid-template-columns: 5.5rem 1fr;
    gap: 2.4rem;
    padding: 3.4rem 0;
    border-bottom: 1px solid rgba(15, 29, 74, 0.16);
}

.privacy_section:first-child {
    padding-top: 0;
}

.privacy_section_number {
    margin: 0.35rem 0 0;
    color: var(--brand-cyan);
    font: 700 1.5rem/1 "Roboto Condensed", sans-serif;
    letter-spacing: 0.08em;
}

.privacy_section h2 {
    margin: 0 0 1.2rem;
    color: var(--brand-navy);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 750;
    line-height: 1.35;
    letter-spacing: 0;
}

.privacy_section p {
    max-width: 800px;
    margin: 0;
    color: #44536d;
    font-size: 1.55rem;
    line-height: 1.95;
    letter-spacing: 0;
}

.privacy_contact {
    margin-top: 3rem;
    padding: 3.4rem;
    border: 0;
    border-left: 5px solid var(--brand-gold);
    border-radius: 0.8rem;
    background: #fff;
    box-shadow: 0 18px 50px rgba(15, 29, 74, 0.08);
}

.privacy_email {
    display: inline-block;
    margin-top: 1.8rem;
    color: var(--brand-deep-cyan);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.3em;
}

.privacy_email:hover,
.privacy_email:focus-visible {
    color: var(--brand-gold);
}

.privacy_change_note {
    max-width: 800px;
    margin: 3rem 0 0 7.9rem;
    color: #65738b;
    font-size: 1.3rem;
    line-height: 1.8;
}

.privacy_page a:focus-visible {
    outline: 3px solid var(--brand-gold);
    outline-offset: 4px;
}

@media (max-width: 680px) {
    .privacy_hero_inner {
        width: min(100% - 3.2rem, 1080px);
        padding: 5.8rem 0 5rem;
    }

    .privacy_content {
        width: min(100% - 3.2rem, 980px);
        padding: 5rem 0 6.5rem;
    }

    .privacy_section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2.8rem 0;
    }

    .privacy_contact {
        padding: 2.6rem 2.2rem;
    }

    .privacy_change_note {
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .privacy_page *,
    .privacy_page *::before,
    .privacy_page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
