.privacy-page {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    padding: 24px 0 40px;
}

.privacy-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.privacy-brand {
    color: var(--text);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
}

.privacy-card {
    padding: clamp(28px, 6vw, 64px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    background:
        linear-gradient(180deg, var(--panelTop), transparent 28%),
        rgba(9, 12, 22, .92);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.privacy-intro {
    max-width: 760px;
    margin-bottom: 32px;
}

.eyebrow {
    margin: 0 0 8px;
    color: #83d9f4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.privacy-intro h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1;
    letter-spacing: -.04em;
}

.lead {
    margin: 0;
    color: rgba(245, 245, 247, .8);
    font-size: clamp(18px, 2.6vw, 22px);
    line-height: 1.65;
}

.updated {
    margin: 18px 0 0;
    color: rgba(245, 245, 247, .5);
    font-size: 13px;
}

.privacy-toc {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin: 0 0 48px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .04);
}

.privacy-toc a,
.privacy-card section a {
    color: #9ddff5;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.privacy-toc a {
    text-decoration: none;
}

.privacy-toc a:hover,
.privacy-card section a:hover {
    color: #fff;
    text-decoration: underline;
}

.privacy-card section {
    max-width: 780px;
    margin: 0 0 42px;
    scroll-margin-top: 24px;
}

.privacy-card section h2,
.privacy-contact h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.25;
    letter-spacing: -.02em;
}

.privacy-card section h3 {
    margin: 24px 0 6px;
    color: rgba(245, 245, 247, .92);
    font-size: 17px;
}

.privacy-card section p,
.privacy-card section li,
.privacy-contact p {
    color: rgba(245, 245, 247, .72);
    font-size: 16px;
    line-height: 1.75;
}

.privacy-card section p {
    margin: 0 0 14px;
}

.privacy-card section ul {
    margin: 10px 0 18px;
    padding-left: 22px;
}

.privacy-card section li {
    margin-bottom: 9px;
    padding-left: 5px;
}

.privacy-card strong {
    color: rgba(245, 245, 247, .94);
}

.privacy-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 56px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(76, 201, 240, .1), rgba(122, 79, 255, .12));
}

.privacy-contact h2,
.privacy-contact p {
    margin-top: 0;
}

.privacy-contact p {
    margin-bottom: 0;
}

.privacy-contact .btn {
    flex: 0 0 auto;
    height: 48px;
    padding: 0 24px;
}

.privacy-footer {
    margin-top: 22px;
}

@media (max-width: 680px) {
    .privacy-page {
        width: min(100% - 24px, 980px);
        padding-top: 14px;
    }

    .privacy-card {
        border-radius: 24px;
    }

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

    .privacy-contact {
        align-items: flex-start;
        flex-direction: column;
    }
}
