/* ============================================================
 * Privacy Page – Dark UI
 * ============================================================ */

:root {
    --bg: #0f1115;
    --card: #171a21;
    --text: #e6e6eb;
    --muted: #9aa0a6;
    --accent: #5c7cfa;
    --border: #23262f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.65;
}

/* ------------------------------------------------------------
 * Header
 * ------------------------------------------------------------ */

header.top {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

header.top h1 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

header.top nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
}

header.top nav a:hover {
    color: var(--accent);
}

/* ------------------------------------------------------------
 * Main layout
 * ------------------------------------------------------------ */

main.privacy {
    max-width: 820px;
    margin: 2.5rem auto;
    padding: 0 1.2rem;
}

main h2 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

main h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

p {
    margin-top: 0;
    margin-bottom: 0.9rem;
    color: #d6d6dc;
}

p.intro {
    font-size: 1.05rem;
    color: var(--text);
}

/* ------------------------------------------------------------
 * Sections
 * ------------------------------------------------------------ */

section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.4rem;
}

section ul {
    padding-left: 1.2rem;
    margin-top: 0.4rem;
    margin-bottom: 0.9rem;
}

section li {
    margin-bottom: 0.35rem;
    color: #d0d0d5;
}

/* ------------------------------------------------------------
 * Callouts
 * ------------------------------------------------------------ */

p.why {
    margin-top: 0.8rem;
    padding-left: 0.6rem;
    border-left: 3px solid var(--accent);
    color: var(--muted);
    font-size: 0.9rem;
}

p.summary {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
}

/* ------------------------------------------------------------
 * Code / technical text
 * ------------------------------------------------------------ */

code {
    background: #111318;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-size: 0.85em;
    color: #cdd2ff;
}

/* ------------------------------------------------------------
 * Footer
 * ------------------------------------------------------------ */

footer.footer {
    border-top: 1px solid var(--border);
    margin-top: 3rem;
    padding: 1.2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

/* ------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------ */

@media (max-width: 700px) {
    main.privacy {
        margin-top: 1.5rem;
    }

    section {
        padding: 1rem;
    }
}
