/* ─── Privacy page ─────────────────────────────────────────── */

.privacy-page {
    background: var(--bg-alt);
    padding: clamp(4rem, 10vw, 7rem) 0 clamp(4rem, 8vw, 6rem);
    border-top: 1px solid var(--border);
}

.privacy-container {
    max-width: 760px;
}

.privacy-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.privacy-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.privacy-updated {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ─── Body ────────────────────────────────────────────────── */
.privacy-body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.privacy-section h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.875rem;
}

.privacy-section p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

.privacy-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.75rem 0;
    padding-left: 0.25rem;
}

.privacy-section ul li {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 1.25rem;
    position: relative;
}

.privacy-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-section a:hover {
    color: var(--accent-hover);
}
