@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
    --primary: #5865f2;
    --primary-light: #838dfa;
    --secondary: #2ed573;
    --bg-dark: #0a0b10;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* --- STRUCTURE ANTI-GAP --- */
html, body {
    height: 100%;
    margin: 0;
    background-color: var(--bg-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.privacy-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

main.page-offset {
    flex: 1 0 auto;
    padding-top: clamp(80px, 12vh, 140px);
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
}

footer { flex-shrink: 0; }

/* --- DÉCORATIONS --- */
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; z-index: 0; pointer-events: none; }
.orb-1 { top: -10%; right: -10%; width: 600px; height: 600px; background: var(--primary); }
.orb-2 { bottom: 10%; left: -5%; width: 400px; height: 400px; background: var(--secondary); }
.grid-pattern {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* --- HERO SECTION --- */
.hero { text-align: center; margin-bottom: 5rem; }
.badge {
    background: rgba(88, 101, 242, 0.1);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(88, 101, 242, 0.2);
}
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 850;
    margin: 1.5rem 0;
    color: #fff;
    letter-spacing: -2px;
}
.hero h1 span {
    background: linear-gradient(135deg, #fff 30%, var(--primary) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p { color: var(--text-muted); max-width: 650px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; }

/* --- CARTES ÉQUIPE --- */
.leader-wrapper { display: flex; justify-content: center; margin-bottom: 5rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Spécificités Leader */
.team-card.leader {
    max-width: 550px; width: 100%;
    padding: 4rem 3rem;
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.2);
}
.card-glow {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(88, 101, 242, 0.2), transparent 70%);
}

.founder-tag {
    display: inline-block; margin-top: 15px;
    padding: 5px 15px; border-radius: 50px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: #fff;
}

/* AVATARS */
.team-avatar {
    width: 110px; height: 110px;
    margin: 0 auto 1.5rem;
    border-radius: 28px;
    padding: 5px;
    background: linear-gradient(135deg, var(--glass-border), transparent);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: transform 0.4s ease;
}
.team-card:hover .team-avatar { transform: scale(1.05) rotate(3deg); }

.team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 24px;
}

.leader .team-avatar {
    width: 140px; height: 140px;
    border-color: rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

/* TEXTES */
.team-name { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.team-role {
    font-size: 0.85rem; font-weight: 700; color: var(--primary-light);
    text-transform: uppercase; letter-spacing: 1px;
}

/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card { padding: 2.5rem 1.5rem; }
}

.dropdown-header{
    color: white;
}
