:root {
    --primary: #103e63;
    --primary-dark: #082c49;
    --primary-soft: #eef8ff;
    --blue: #47b2ee;
    --accent: #ff8900;
    --accent-soft: #fff3e3;
    --text: #253746;
    --muted: #6b7c8a;
    --border: #e4edf4;
    --page: #f6f9fc;
    --white: #fff;
    --shadow: 0 24px 70px rgba(16,62,99,.09);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 5% 8%, rgba(71,178,238,.13), transparent 25%),
        radial-gradient(circle at 95% 15%, rgba(255,137,0,.08), transparent 23%),
        var(--page);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.75;
}

a { color: inherit; }

.skip-link {
    position: fixed;
    left: -9999px;
    top: 12px;
    z-index: 9999;
    padding: 10px 16px;
    color: #fff;
    background: var(--primary-dark);
    border-radius: 10px;
}

.skip-link:focus { left: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px,5vw,76px);
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(228,237,244,.9);
    box-shadow: 0 8px 30px rgba(16,62,99,.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 170px;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 17px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    transition: .22s ease;
}

.header-nav a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.header-nav .nav-cta {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.header-nav .nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 20px 76px;
    color: #fff;
    background:
        radial-gradient(circle at 82% 20%, rgba(71,178,238,.28), transparent 26%),
        radial-gradient(circle at 95% 90%, rgba(255,137,0,.18), transparent 25%),
        linear-gradient(135deg,#082c49,#103e63 60%,#15547e);
}

.privacy-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    right: -180px;
    top: -190px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(255,255,255,.025),
        0 0 0 70px rgba(255,255,255,.018);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px,100%);
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(280px,.7fr);
    gap: 60px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px rgba(255,137,0,.15);
}

.hero-inner h1 {
    margin: 15px 0 18px;
    color: #fff;
    font-size: clamp(44px,6vw,76px);
    line-height: .98;
    letter-spacing: -3px;
}

.hero-inner h1 strong { color: #8bd3fa; }

.hero-inner > div:first-child > p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.80);
    font-size: 17px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 27px;
}

.meta-row span {
    padding: 8px 12px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
}

.privacy-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    box-shadow: 0 20px 60px rgba(0,0,0,.12);
    backdrop-filter: blur(14px);
}

.privacy-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 900;
    border-radius: 14px;
    background: #fff;
}

.privacy-card strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 19px;
}

.privacy-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.privacy-layout {
    width: min(1180px,calc(100% - 40px));
    margin: 45px auto 80px;
    display: grid;
    grid-template-columns: 245px minmax(0,1fr);
    gap: 28px;
    align-items: start;
}

.toc {
    position: sticky;
    top: 98px;
    padding: 21px 14px;
    background: rgba(255,255,255,.90);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(16,62,99,.06);
}

.toc-title {
    padding: 0 10px 12px;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.toc a {
    display: block;
    padding: 8px 10px;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 650;
    text-decoration: none;
    border-radius: 9px;
    transition: .2s ease;
}

.toc a:hover {
    color: var(--primary);
    background: var(--primary-soft);
}

#privacy-content { min-width: 0; }

.policy-card {
    position: relative;
    overflow: hidden;
    padding: 48px 56px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.policy-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg,var(--primary),var(--blue),var(--accent));
}

.policy-section {
    position: relative;
    padding: 32px 0 37px;
    border-bottom: 1px solid #edf2f6;
}

.policy-section.first { padding-top: 5px; }

.policy-section h2,
.faq-section h2 {
    margin: 5px 0 15px;
    color: var(--primary-dark);
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: -.5px;
}

.policy-section p {
    margin: 0 0 17px;
    color: var(--text);
    font-size: 15.5px;
}

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

.policy-section strong { color: var(--primary-dark); }

.policy-section a,
.faq-section a {
    color: var(--primary);
    font-weight: 800;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.policy-section a:hover,
.faq-section a:hover { color: var(--accent); }

.section-number {
    display: inline-grid;
    place-items: center;
    width: 43px;
    height: 27px;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .8px;
    border-radius: 999px;
    background: var(--primary-soft);
}

.notice {
    display: flex;
    gap: 14px;
    margin-top: 25px;
    padding: 18px;
    background: linear-gradient(135deg,#f1faff,#fbfdff);
    border: 1px solid #dceef9;
    border-radius: 16px;
}

.notice-icon {
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 50%;
    background: var(--primary);
}

.notice strong {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-dark);
}

.notice p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 22px;
}

.info-box {
    padding: 19px;
    background: #fbfdff;
    border: 1px solid var(--border);
    border-radius: 15px;
}

.info-icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 24px;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 10px;
    font-weight: 900;
    border-radius: 999px;
    background: var(--primary-soft);
}

.info-box h3,
.share-grid h3 {
    margin: 0 0 7px;
    color: var(--primary-dark);
    font-size: 15px;
}

.info-box p,
.share-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.policy-section ul {
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.policy-section li {
    position: relative;
    margin: 9px 0;
    padding: 13px 15px 13px 40px;
    color: var(--text);
    font-size: 14px;
    background: #fbfdff;
    border: 1px solid #eaf0f5;
    border-radius: 12px;
}

.policy-section li::before {
    content: "✓";
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
}

.highlight-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 15px 17px;
    color: var(--primary-dark);
    background: #f1faff;
    border: 1px solid #dceef9;
    border-radius: 13px;
}

.check {
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    color: #fff;
    font-weight: 900;
    border-radius: 50%;
    background: var(--primary);
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 20px;
}

.share-grid > div {
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fbfdff;
}

.security-note {
    display: flex;
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
    border: 1px solid #f3dfbd;
    border-radius: 15px;
    background: #fffaf2;
}

.shield {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    border-radius: 11px;
    background: var(--accent);
}

.security-note strong {
    display: block;
    margin-bottom: 3px;
    color: #754600;
}

.security-note p {
    margin: 0;
    color: #715f48;
    font-size: 13.5px;
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 22px;
}

.rights-list div {
    padding: 17px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fbfdff;
}

.rights-list span {
    display: grid;
    place-items: center;
    width: 29px;
    height: 29px;
    margin-bottom: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    border-radius: 50%;
    background: var(--primary);
}

.rights-list strong,
.rights-list small {
    display: block;
}

.rights-list strong {
    margin-bottom: 3px;
    color: var(--primary-dark);
    font-size: 14px;
}

.rights-list small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.contact-section { border-bottom: 0; padding-bottom: 10px; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 24px;
}

.contact-item {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: var(--text);
    text-decoration: none;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fbfdff;
    transition: .22s ease;
}

a.contact-item:hover {
    border-color: #cfe4f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16,62,99,.07);
}

.contact-icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    border-radius: 11px;
    background: var(--primary-soft);
}

.contact-item small {
    display: block;
    margin-bottom: 1px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.contact-item strong {
    display: block;
    overflow-wrap: anywhere;
    color: var(--primary-dark);
    font-size: 12.5px;
}

.faq-section {
    margin-top: 38px;
    padding-top: 38px;
    border-top: 1px solid var(--border);
}

.faq-section h2 { margin-bottom: 19px; }

details {
    margin: 10px 0;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fbfdff;
    overflow: hidden;
}

summary {
    position: relative;
    cursor: pointer;
    padding: 16px 48px 16px 17px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: "+";
    position: absolute;
    right: 17px;
    top: 12px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 500;
}

details[open] summary::after { content: "−"; }

details p {
    margin: 0;
    padding: 0 17px 17px;
    color: var(--muted);
    font-size: 13px;
}

.bottom-note {
    margin-top: 28px;
    padding: 18px;
    color: #5e4a30;
    font-size: 13px;
    border: 1px solid #f3dfbd;
    border-radius: 14px;
    background: #fffaf2;
}

.bottom-note strong { color: #9a5a00; }

.site-footer {
    padding: 30px 20px;
    color: #dcebf4;
    background: var(--primary-dark);
    border-top: 4px solid var(--accent);
}

.footer-inner {
    width: min(1180px,100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    text-decoration: none;
}

.footer-brand span { color: var(--accent); }

.site-footer p {
    margin: 0;
    color: #b9d0df;
    font-size: 12px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 17px;
}

.footer-links a {
    color: #dcebf4;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.footer-links a:hover { color: var(--accent); }

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

    .privacy-card { max-width: 550px; }

    .privacy-layout { grid-template-columns: 1fr; }

    .toc {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 13px;
    }

    .toc-title { width: 100%; }

    .toc a { padding: 7px 9px; }
}

@media (max-width: 720px) {
    .site-header {
        height: 68px;
        padding: 0 17px;
    }

    .brand img {
        height: 37px;
        max-width: 145px;
    }

    .header-nav a {
        min-height: 37px;
        padding: 0 12px;
        font-size: 12px;
    }

    .header-nav a:first-child { display: none; }

    .privacy-hero { padding: 52px 18px 56px; }

    .hero-inner h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .hero-inner > div:first-child > p { font-size: 15px; }

    .privacy-layout {
        width: calc(100% - 24px);
        margin: 24px auto 50px;
    }

    .toc { display: none; }

    .policy-card {
        padding: 32px 20px;
        border-radius: 19px;
    }

    .policy-section { padding: 28px 0 31px; }

    .policy-section h2,
    .faq-section h2 { font-size: 21px; }

    .policy-section p { font-size: 14.5px; }

    .info-grid,
    .share-grid,
    .rights-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .meta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .footer-links { justify-content: center; }
}

@media (max-width: 430px) {
    .hero-inner h1 { font-size: 39px; }

    .privacy-card { padding: 22px; }

    .policy-card { padding: 27px 17px; }
}

@media print {
    .site-header,
    .toc,
    .privacy-card,
    .site-footer { display: none !important; }

    body { background: #fff; }

    .privacy-hero {
        padding: 0 0 30px;
        color: #000;
        background: #fff;
    }

    .hero-inner h1,
    .hero-inner h1 strong { color: #000; }

    .hero-inner > div:first-child > p,
    .meta-row span { color: #333; }

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

    .privacy-layout {
        width: 100%;
        margin: 0;
    }

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

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

    *, *::before { transition: none !important; }
}
