/* =============================================
   PRIVACY POLICY — Page Styles
   Extracted from privacy.html's inline <style> block.
   Built on the tokens defined in base.css (loaded before this file).
   ============================================= */

.priv-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 1.5rem;
    background: rgba(7, 8, 15, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.priv-logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.04em;
    background: linear-gradient(130deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.priv-back {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.priv-back:hover {
    color: var(--text-1);
}

.priv-main {
    max-width: 740px;
    margin: 0 auto;
    padding: 3rem 1.5rem 6rem;
}

.priv-hero {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.priv-hero h1 {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.15;
    margin-bottom: 8px;
}

.priv-updated {
    font-size: .75rem;
    color: var(--text-3);
    margin-bottom: 16px;
}

.priv-intro {
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.75;
}

.callout {
    background: var(--accent-soft);
    border: 1px solid rgba(61, 127, 255, .25);
    border-radius: 14px;
    padding: 16px 20px;
    margin: 0 0 2.5rem;
    font-size: .875rem;
    color: var(--text-1);
    line-height: 1.65;
}

.priv-section {
    margin-bottom: 2.4rem;
}

.priv-section h2 {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.priv-section h2 .ico {
    font-size: 1.15rem;
}

.priv-section p {
    font-size: .875rem;
    color: var(--text-2);
    line-height: 1.8;
}

.priv-section p+p {
    margin-top: 10px;
}

.priv-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 12px;
}

.priv-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.priv-card li {
    font-size: .875rem;
    color: var(--text-2);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.priv-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: .8rem;
    top: 1px;
}

.priv-card li strong {
    color: var(--text-1);
    font-weight: 600;
}

a.priv-link {
    color: var(--accent);
    text-decoration: none;
}

a.priv-link:hover {
    text-decoration: underline;
}

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

.contact-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.contact-item .label {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 6px;
}

.contact-item a {
    font-size: .8rem;
    color: var(--accent);
    text-decoration: none;
    word-break: break-all;
}

.contact-item a:hover {
    text-decoration: underline;
}

.platform-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
    vertical-align: middle;
}

.badge-web {
    background: rgba(61, 127, 255, .15);
    color: var(--accent);
    border: 1px solid rgba(61, 127, 255, .3);
}

.badge-mobile {
    background: rgba(52, 199, 89, .12);
    color: #34c759;
    border: 1px solid rgba(52, 199, 89, .3);
}

.badge-both {
    background: rgba(255, 255, 255, .07);
    color: var(--text-3);
    border: 1px solid var(--border);
}

.badge-optional {
    background: rgba(255, 180, 0, .12);
    color: #ffb400;
    border: 1px solid rgba(255, 180, 0, .3);
}

@media (max-width: 600px) {
    .priv-main {
        padding: 2rem 1rem 4rem;
    }

    .priv-hero h1 {
        font-size: 1.6rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}