/* PIXELBLOOM — feuille de style commune aux pages légales */
:root {
    --black: #06050b;
    --dark: #0c0a14;
    --card: #12101e;
    --border: rgba(255,255,255,0.06);
    --text-muted: #7a7591;
    --text-secondary: #a8a3bd;
    --text-primary: #e2dff0;
    --white: #f8f6ff;
    --violet: #8b5cf6;
    --violet-light: #a78bfa;
    --orange: #f97316;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 90px; }
body {
    background: var(--black);
    color: var(--text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(6,5,11,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo img { width: 32px; height: 32px; border-radius: 50%; }
.nav-logo span {
    font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.05rem;
    color: var(--white); letter-spacing: .04em;
}
.nav-back {
    color: var(--violet-light); text-decoration: none; font-size: .9rem; font-weight: 600;
}
.nav-back:hover { color: var(--white); }
main { max-width: 800px; margin: 0 auto; padding: 9rem 2rem 5rem; }
.overline {
    font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--violet-light); font-weight: 600; margin-bottom: 1rem;
}
h1 {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.15; letter-spacing: -0.02em;
    color: var(--white); margin-bottom: .8rem;
}
.intro { color: var(--text-muted); font-size: .95rem; margin-bottom: 3rem; }
article { margin-bottom: 2.2rem; }
h2 {
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.15rem;
    color: var(--text-primary); margin-bottom: .6rem;
}
h2 .num { color: var(--orange); margin-right: .35rem; }
article p, article li { font-size: .95rem; color: var(--text-secondary); }
article ul { padding-left: 1.3rem; margin-top: .5rem; }
article a { color: var(--violet-light); }
article a:hover { color: var(--white); }
.legal-nav {
    margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border);
    display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; font-size: .88rem;
}
.legal-nav a { color: var(--text-muted); text-decoration: none; }
.legal-nav a:hover { color: var(--violet-light); }
footer {
    border-top: 1px solid var(--border);
    padding: 2rem; text-align: center;
    color: var(--text-muted); font-size: .82rem;
}
@media (max-width: 600px) {
    main { padding: 7.5rem 1.3rem 3rem; }
    nav { padding: .9rem 1.3rem; }
}
