/* ============================================================
   BRILLE — Feuille de style principale
   La Plateforme Internationale des Leaders qui Inspirent
   ============================================================ */

:root {
    --navy-deep:  #07091A;
    --navy:       #0D1229;
    --navy-mid:   #111635;
    --navy-light: #1A2050;
    --gold:       #C9A84C;
    --gold-light: #E5C97A;
    --gold-pale:  #F5E6C0;
    --gold-dark:  #9A7228;
    --white:      #FFFFFF;
    --off-white:  #F5F4EF;
    --text-body:  #C8CDD8;
    --text-muted: #7A88A0;
    --border-gold:   rgba(201,168,76,0.25);
    --border-subtle: rgba(255,255,255,0.06);
    --glass: rgba(13,18,41,0.75);

    --font-display: 'Cinzel', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body:    'Montserrat', sans-serif;

    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
    --shadow-card: 0 20px 60px rgba(0,0,0,0.4);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
    background: var(--navy-deep);
    color: var(--text-body);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Layout helpers ─────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section   { padding: 120px 0; }

/* ── Typography ─────────────────────────────────────────── */
.label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
}

.title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 0.04em;
}
.title--xl { font-size: clamp(2.8rem, 6vw, 5rem); }
.title--sm { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.85;
    font-style: italic;
}

.text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.9;
}

.gold  { color: var(--gold); }
.white { color: var(--white); }

.divider {
    width: 56px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 22px auto;
}
.divider--left { margin-left: 0; }

/* ── Boutons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}
.btn--gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--navy-deep);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,168,76,0.38); }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.28);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
}
.btn--outline-gold:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}
.nav.scrolled {
    background: rgba(7,9,26,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid var(--border-gold);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo { display: flex; flex-direction: column; gap: 2px; }
.nav__logo-name {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.14em;
    line-height: 1;
}
.nav__logo-name span { color: var(--gold); }
.nav__logo-tagline {
    font-size: 7.5px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav__link {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-body);
    transition: var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    padding: 10px 22px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy-deep);
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.nav__cta:hover { box-shadow: 0 6px 24px rgba(201,168,76,0.38); transform: translateY(-1px); }

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.nav__hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--white);
    transition: var(--transition);
}

/* Menu mobile */
.nav__mobile {
    display: none;
    position: fixed; inset: 0;
    background: rgba(7,9,26,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    backdrop-filter: blur(20px);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-close {
    position: absolute; top: 28px; right: 28px;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    transition: var(--transition);
}
.nav__mobile-close:hover { color: var(--gold); }

/* ── Héros ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    /* Fond CSS pur — responsive tous écrans, sans photo */
    background:
        radial-gradient(ellipse 90% 45% at 50% 100%,
            rgba(255, 185, 35, 0.15)  0%,
            rgba(20,  45, 130, 0.35)  38%,
            transparent               65%
        ),
        radial-gradient(ellipse 70% 55% at 50% 42%,
            rgba(6, 14, 55, 0.0)   0%,
            rgba(6, 14, 55, 0.85)  60%,
            rgba(2,  5, 18, 1.0)   100%
        ),
        linear-gradient(180deg,
            #010310  0%,
            #020618  30%,
            #030922  60%,
            #040b28  85%,
            #060e2e  100%
        );
}

/* Canvas étoilé — z-index 1 */
#hero-canvas {
    position: absolute; inset: 0;
    z-index: 1;
    width: 100%; height: 100%;
    opacity: 0.70;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Terre CSS — masquée, remplacée par la photo */
.hero__earth  { display: none; }

/* ── TERRE CSS PURE ───────────────────────────────────────── */
.hero__earth {
    position: absolute;
    /* Formule : horizon toujours à 40% depuis le bas (= 60% depuis le haut) */
    bottom: calc(40vh - min(110vw, 1320px));
    left: 50%;
    transform: translateX(-50%);
    width: min(110vw, 1320px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    /* Atmosphère bleue lumineuse */
    box-shadow:
        0 0 0 2px  rgba(80,160,255,0.60),
        0 0 16px 6px rgba(50,125,245,0.42),
        0 0 50px 24px rgba(25,85,210,0.24),
        0 0 100px 65px rgba(255,170,35,0.06);
    /* Surface nuit + lumières + lever de soleil concentré */
    background:
        /* ── Lever de soleil — halo concentré bas-centre ── */
        radial-gradient(ellipse 22% 13% at 50% 21%,
            rgba(255,248,180,1)    0%,
            rgba(255,218,85,1)     12%,
            rgba(255,168,28,0.88)  26%,
            rgba(228,105,8,0.60)   45%,
            rgba(160,52,3,0.22)    62%,
            transparent            76%
        ),
        /* Diffusion solaire latérale douce */
        radial-gradient(ellipse 62% 18% at 50% 17%,
            rgba(232,148,28,0.30)  0%,
            rgba(190,95,12,0.14)   45%,
            transparent            70%
        ),
        /* ── Limbe atmosphérique bleue (bord du globe) ── */
        radial-gradient(ellipse 92% 10% at 50% 1%,
            rgba(120,195,255,0.38) 0%,
            rgba(58,138,238,0.18)  50%,
            transparent            78%
        ),
        /* ── Europe (Méditerranée, 12-14% depuis haut) ── */
        radial-gradient(ellipse 12% 5% at 48% 12%, rgba(255,228,118,0.68) 0%, transparent 100%),
        radial-gradient(ellipse  8% 4% at 43% 15%, rgba(255,218,108,0.52) 0%, transparent 100%),
        radial-gradient(ellipse  5% 3% at 55% 11%, rgba(255,212,102,0.44) 0%, transparent 100%),
        radial-gradient(ellipse  4% 2% at 51% 16%, rgba(255,205,95,0.35)  0%, transparent 100%),
        radial-gradient(ellipse  3% 1% at 40% 13%, rgba(255,200,90,0.28)  0%, transparent 100%),
        /* ── Moyen-Orient / Péninsule arabique (14-18%, droite) ── */
        radial-gradient(ellipse 10% 5% at 60% 14%, rgba(255,232,122,0.75) 0%, transparent 100%),
        radial-gradient(ellipse  7% 3% at 64% 17%, rgba(255,222,112,0.62) 0%, transparent 100%),
        radial-gradient(ellipse  5% 2% at 66% 13%, rgba(255,215,105,0.52) 0%, transparent 100%),
        radial-gradient(ellipse  4% 2% at 62% 19%, rgba(255,208,98,0.42)  0%, transparent 100%),
        /* ── Afrique côté est / Corne (16-20%) ── */
        radial-gradient(ellipse  8% 4% at 57% 18%, rgba(255,210,100,0.48) 0%, transparent 100%),
        radial-gradient(ellipse  5% 2% at 60% 21%, rgba(255,200,88,0.36)  0%, transparent 100%),
        radial-gradient(ellipse  4% 2% at 63% 19%, rgba(255,196,85,0.30)  0%, transparent 100%),
        /* ── Inde / Sous-continent (15-19%) ── */
        radial-gradient(ellipse 10% 5% at 72% 15%, rgba(255,220,110,0.58) 0%, transparent 100%),
        radial-gradient(ellipse  6% 3% at 76% 19%, rgba(255,210,100,0.44) 0%, transparent 100%),
        radial-gradient(ellipse  4% 2% at 69% 17%, rgba(255,205,95,0.36)  0%, transparent 100%),
        /* ── Asie de l'Est / Chine / Japon (12-16%) ── */
        radial-gradient(ellipse 10% 4% at 81% 13%, rgba(255,215,105,0.50) 0%, transparent 100%),
        radial-gradient(ellipse  6% 3% at 86% 16%, rgba(255,205,95,0.37)  0%, transparent 100%),
        radial-gradient(ellipse  4% 2% at 84% 11%, rgba(255,200,90,0.28)  0%, transparent 100%),
        /* ── Amérique du Nord (12-17%) ── */
        radial-gradient(ellipse 10% 5% at 23% 13%, rgba(255,215,105,0.42) 0%, transparent 100%),
        radial-gradient(ellipse  6% 3% at 18% 11%, rgba(255,205,95,0.32)  0%, transparent 100%),
        radial-gradient(ellipse  5% 2% at 28% 17%, rgba(255,198,88,0.25)  0%, transparent 100%),
        /* ── Points lumineux épars ── */
        radial-gradient(ellipse 2% 1% at 36% 17%, rgba(255,192,80,0.30) 0%, transparent 100%),
        radial-gradient(ellipse 2% 1% at 47% 19%, rgba(255,190,78,0.24) 0%, transparent 100%),
        radial-gradient(ellipse 1% 1% at 55% 22%, rgba(255,187,75,0.22) 0%, transparent 100%),
        radial-gradient(ellipse 2% 1% at 74% 10%, rgba(255,192,80,0.20) 0%, transparent 100%),
        radial-gradient(ellipse 1% 1% at 13% 19%, rgba(255,187,75,0.18) 0%, transparent 100%),
        radial-gradient(ellipse 2% 1% at 33% 20%, rgba(255,185,72,0.16) 0%, transparent 100%),
        /* ── Océan nuit — très sombre ── */
        radial-gradient(ellipse at 50% 32%,
            #0c1c50 0%,
            #070f35 22%,
            #040920 45%,
            #020610 70%,
            #010306 100%
        );
}

/* Lueur dorée horizon — accentue le lever de soleil de la photo */
.hero__horizon {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 68%;
    height: 260px;
    background: radial-gradient(ellipse at center bottom,
        rgba(255,220,80,0.55)   0%,
        rgba(255,165,30,0.30)   28%,
        rgba(220,130,20,0.14)   55%,
        transparent              80%
    );
    filter: blur(28px);
    z-index: 3;
    pointer-events: none;
}

/* Voile — cache le doublon des boutons de la photo, révèle la Terre */
.hero__overlay {
    display: none;
}

/* Texte invisible pour SEO */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.hero__content {
    position: relative; z-index: 5;
    max-width: 860px;
    width: 100%;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 22vh;
}

/* Titre BRILLE */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.8rem, 9vw, 7rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.12em;
    line-height: 0.92;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}
.hero__title-gradient {
    color: transparent;
    background: linear-gradient(
        to bottom,
        #FFFFFF   0%,
        #FFFDF5  42%,
        #F0D88A  62%,
        var(--gold-light) 78%,
        var(--gold)       100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Séparateur doré central */
.hero__sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 6px 0 10px;
}
.hero__sep-line {
    width: 44px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.7));
    flex-shrink: 0;
}
.hero__sep-line--right {
    background: linear-gradient(90deg, rgba(201,168,76,0.7), transparent);
}
.hero__sep-diamond {
    color: var(--gold);
    font-size: 9px;
    opacity: 0.85;
    line-height: 1;
}

/* "La Plateforme Internationale" — petite ligne dorée */
.hero__platform {
    font-family: var(--font-body);
    font-size: clamp(9px, 1.1vw, 11px);
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

/* "Des leaders qui inspirent les nations." — grande ligne blanche */
.hero__nations {
    font-family: var(--font-elegant);
    font-size: clamp(1.15rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.35;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 52px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.hero__scroll-text {
    font-size: 8.5px; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--text-muted);
}
.hero__scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 1.6s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    49%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── Statistiques ────────────────────────────────────────── */
.stats {
    background: var(--navy);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 52px 0;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stats__item {
    text-align: center;
    padding: 20px 24px;
    position: relative;
}
.stats__item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: var(--border-gold);
}
.stats__number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stats__suffix {
    font-size: 1.4rem;
    color: var(--gold);
    font-family: var(--font-display);
}
.stats__label {
    font-size: 9.5px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-muted);
}

/* ── À propos ─────────────────────────────────────────────── */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.about__visual { position: relative; }
.about__frame {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--navy-light);
    overflow: hidden;
}
.about__frame::before {
    content: '';
    position: absolute;
    top: -18px; left: -18px; right: 18px; bottom: 18px;
    border: 1px solid var(--border-gold);
    z-index: -1;
}
.about__frame-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #111535 0%, #1a2050 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem;
    color: rgba(201,168,76,0.12);
}
.about__badge {
    position: absolute; bottom: -28px; right: -28px;
    width: 116px; height: 116px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; text-align: center; padding: 12px;
}
.about__badge-num {
    font-family: var(--font-display);
    font-size: 1.9rem; font-weight: 700;
    color: var(--navy-deep); line-height: 1;
}
.about__badge-lbl {
    font-size: 7.5px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy-deep); margin-top: 4px;
}

.about__intro {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.78;
    margin-bottom: 24px;
}

/* ── Vision & Mission ─────────────────────────────────────── */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.vm-card {
    padding: 64px 52px;
    position: relative;
    overflow: hidden;
}
.vm-card--vision  { background: var(--navy); }
.vm-card--mission { background: var(--navy-mid); }
.vm-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
}
.vm-card__bg {
    position: absolute; top: 12px; right: 28px;
    font-family: var(--font-display);
    font-size: 7rem; font-weight: 700;
    color: rgba(201,168,76,0.04);
    pointer-events: none; -webkit-user-select: none; user-select: none;
    line-height: 1;
}

/* ── Valeurs ──────────────────────────────────────────────── */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}
.value-card {
    background: var(--navy);
    padding: 48px 36px;
    position: relative;
    transition: var(--transition);
    cursor: default;
}
.value-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: var(--transition);
}
.value-card:hover { background: var(--navy-mid); }
.value-card:hover::after { width: 100%; }
.value-card__icon { font-size: 1.7rem; color: var(--gold); margin-bottom: 18px; display: block; }
.value-card__name {
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 10px;
}
.value-card__text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.8; }

/* ── Piliers ──────────────────────────────────────────────── */
.pillars__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    border: 1px solid var(--border-gold);
}
.pillar {
    padding: 56px 36px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border-right: 1px solid var(--border-gold);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(201,168,76,0.03); }
.pillar__num {
    font-family: var(--font-display);
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.25em; color: var(--gold);
    margin-bottom: 22px; opacity: 0.55;
}
.pillar__icon { font-size: 2.3rem; margin-bottom: 18px; display: block; }
.pillar__name {
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.18em;
    text-transform: uppercase; margin-bottom: 14px;
}
.pillar__text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.85; }

/* ── Sommet ───────────────────────────────────────────────── */
.summit {
    position: relative; overflow: hidden;
    background: var(--navy);
}
.summit__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 72% 50%, rgba(201,168,76,0.06) 0%, transparent 58%),
        radial-gradient(ellipse at 10% 80%, rgba(20,40,150,0.14) 0%, transparent 48%);
    pointer-events: none;
}
.summit__inner { position: relative; z-index: 1; }
.summit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 72px;
}
.summit__event-card {
    background: rgba(7,9,26,0.85);
    border: 1px solid var(--border-gold);
    padding: 48px;
    position: relative;
}
.summit__event-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.summit__date-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(201,168,76,0.09);
    border: 1px solid var(--border-gold);
    margin-bottom: 28px;
}
.summit__date-chip span {
    font-size: 9.5px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold);
}
.summit__details { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.summit__detail  { display: flex; align-items: center; gap: 14px; font-size: 0.875rem; color: var(--text-body); }
.summit__detail-icon {
    width: 38px; height: 38px;
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.summit__features { display: flex; flex-direction: column; gap: 22px; }
.summit__feature {
    display: flex; gap: 22px; align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-subtle);
}
.summit__feature:last-child { border-bottom: none; padding-bottom: 0; }
.summit__feature-num {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: rgba(201,168,76,0.3);
    line-height: 1; flex-shrink: 0; min-width: 40px;
}
.summit__feature-title {
    font-family: var(--font-display);
    font-size: 0.88rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 7px;
}
.summit__feature-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.75; }

/* ── Intervenants ─────────────────────────────────────────── */
.speakers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
}
.speaker-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy);
}
.speaker-card__photo {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #111535, #1a2050);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
    color: rgba(201,168,76,0.18);
    transition: transform 0.5s ease;
}
.speaker-card:hover .speaker-card__photo { transform: scale(1.05); }
.speaker-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(7,9,26,0.95) 0%,
        rgba(7,9,26,0.45) 55%,
        transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px 22px;
    transition: opacity 0.35s ease;
    opacity: 0.75;
}
.speaker-card:hover .speaker-card__overlay { opacity: 1; }
.speaker-card__name {
    font-family: var(--font-display);
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.speaker-card__role { font-size: 0.73rem; color: var(--gold); margin-bottom: 3px; }
.speaker-card__org  {
    font-size: 0.7rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em;
}
.speakers__more { text-align: center; margin-top: 48px; }

/* ── Étoiles BRILLE ───────────────────────────────────────── */
.etoiles {
    background: var(--navy-mid);
    position: relative; overflow: hidden;
}
.etoiles::before {
    content: '✦';
    position: absolute;
    font-size: 22rem;
    color: rgba(201,168,76,0.025);
    top: -60px; right: -60px;
    pointer-events: none; -webkit-user-select: none; user-select: none;
}
.etoiles__intro { max-width: 620px; margin: 0 auto; text-align: center; }
.etoiles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}
.etoile-card {
    background: var(--navy);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.etoile-card::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: var(--transition);
}
.etoile-card:hover { background: rgba(201,168,76,0.03); transform: translateY(-4px); }
.etoile-card:hover::before { width: 80%; }
.etoile-card__star { font-size: 2rem; color: var(--gold); margin-bottom: 18px; display: block; }
.etoile-card__cat {
    font-family: var(--font-display);
    font-size: 0.82rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 12px;
}
.etoile-card__text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.85; }

/* ── Partenaires ──────────────────────────────────────────── */
.partners__intro { text-align: center; max-width: 540px; margin: 0 auto; }
.partners__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    margin-top: 64px;
    border: 1px solid var(--border-subtle);
}
.partner-logo {
    background: var(--navy);
    aspect-ratio: 2/1;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px;
}
.partner-logo:hover { background: rgba(201,168,76,0.04); }
.partner-logo span {
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition);
}
.partner-logo:hover span { color: var(--gold); }

.partners__cta-block {
    margin-top: 64px;
    padding: 56px 48px;
    background: var(--navy);
    border: 1px solid var(--border-gold);
    text-align: center;
    position: relative;
}
.partners__cta-block::before {
    content: '';
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Commanditaires ───────────────────────────────────────── */
.sponsors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}
.sponsor-tier {
    padding: 56px 36px;
    background: var(--navy-deep);
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.sponsor-tier--platinum {
    background: linear-gradient(160deg, rgba(201,168,76,0.07) 0%, rgba(7,9,26,0.96) 55%);
    border: 1px solid var(--border-gold);
}
.sponsor-tier--gold-tier { background: var(--navy-mid); }
.sponsor-tier--silver    { background: rgba(17,21,53,0.5); }
.sponsor-tier__crown  { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.sponsor-tier__cat {
    font-family: var(--font-body);
    font-size: 9px; font-weight: 700;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 8px;
}
.sponsor-tier__name {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.06em;
    margin-bottom: 24px;
}
.sponsor-tier__list {
    text-align: left;
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 36px;
}
.sponsor-tier__item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem; color: var(--text-body);
}
.sponsor-tier__item::before {
    content: '✦';
    color: var(--gold); font-size: 7px; flex-shrink: 0;
}

/* ── Médias ───────────────────────────────────────────────── */
.media__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
    margin-top: 64px;
}
.media-item {
    position: relative; overflow: hidden;
    background: var(--navy); cursor: pointer;
}
.media-item:first-child { grid-row: span 2; }
.media-item__inner {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #111535, #1a2050);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease;
    position: relative;
}
.media-item:first-child .media-item__inner {
    aspect-ratio: auto; height: 100%; min-height: 400px;
}
.media-item:hover .media-item__inner { transform: scale(1.04); }
.media-item__play {
    width: 60px; height: 60px;
    border: 1px solid rgba(201,168,76,0.5);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--gold);
    background: rgba(7,9,26,0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
.media-item:hover .media-item__play {
    background: var(--gold); color: var(--navy-deep);
    border-color: var(--gold);
}
.media-item__caption { padding: 16px 18px; }
.media-item__type {
    font-size: 8.5px; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px;
}
.media-item__title { font-size: 0.82rem; color: var(--text-body); font-weight: 400; }

/* ── Billetterie ──────────────────────────────────────────── */
.tickets__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}
.ticket-card {
    background: var(--navy-deep);
    padding: 48px 32px;
    transition: var(--transition);
}
.ticket-card--featured {
    background: var(--navy);
    border: 1px solid var(--border-gold);
    margin: -12px 0;
    padding: 60px 32px;
    z-index: 1;
    position: relative;
}
.ticket-card--featured::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}
.ticket-card__badge {
    position: absolute; top: 22px; right: 22px;
    background: var(--gold); color: var(--navy-deep);
    font-size: 7.5px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    padding: 4px 9px;
}
.ticket-card__tier {
    font-size: 9.5px; font-weight: 600;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
}
.ticket-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem; font-weight: 600;
    color: var(--white); margin-bottom: 24px;
}
.ticket-card__price {
    margin-bottom: 28px; padding-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle);
}
.ticket-card__amount {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 700;
    color: var(--white); line-height: 1;
}
.ticket-card__currency {
    font-size: 0.9rem; font-family: var(--font-body);
    color: var(--text-muted); vertical-align: super; font-weight: 400;
}
.ticket-card__note {
    font-size: 0.72rem; color: var(--text-muted);
    margin-top: 4px; letter-spacing: 0.08em;
}
.ticket-card__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.ticket-card__feat {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.82rem; color: var(--text-body);
}
.ticket-card__feat--yes::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.ticket-card__feat--no  { opacity: 0.38; }
.ticket-card__feat--no::before  { content: '—'; color: var(--text-muted); flex-shrink: 0; }

/* ── Fondatrice ───────────────────────────────────────────── */
.founder__inner {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 80px;
    align-items: center;
}
.founder__photo-wrap { position: relative; }
.founder__photo {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(135deg, #111535, #1a2050);
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(201,168,76,0.15);
    position: relative; overflow: hidden;
}
.founder__photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--navy-deep) 100%);
}
.founder__frame {
    position: absolute;
    top: -16px; left: -16px; right: 16px; bottom: 16px;
    border: 1px solid var(--border-gold);
    pointer-events: none; z-index: -1;
}
.founder__quote {
    font-family: var(--font-elegant);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 300; font-style: italic;
    color: var(--white); line-height: 1.65;
    margin-bottom: 32px;
    padding-left: 28px;
    border-left: 2px solid var(--gold);
}
.founder__name {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 600;
    color: var(--white); letter-spacing: 0.08em; margin-bottom: 5px;
}
.founder__role {
    font-size: 0.78rem; color: var(--gold);
    font-weight: 500; letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ── Contact ──────────────────────────────────────────────── */
.contact { background: var(--navy); }
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-top: 64px;
}
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact__info-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.08);
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; color: var(--gold);
}
.contact__info-label {
    font-size: 8.5px; font-weight: 600;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 4px;
}
.contact__info-value { font-size: 0.88rem; color: var(--text-body); }

.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
    font-size: 8.5px; font-weight: 600;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
    background: rgba(7,9,26,0.85);
    border: 1px solid var(--border-subtle);
    color: var(--white);
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.875rem; font-weight: 300;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none; appearance: none;
    width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.03);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { cursor: pointer; color: var(--text-muted); }
.form-select option { background: var(--navy-deep); }

/* ── Pied de page ─────────────────────────────────────────── */
.footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--border-gold);
}
.footer__top {
    padding: 72px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
}
.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.9rem; font-weight: 700;
    color: var(--white); letter-spacing: 0.12em; margin-bottom: 3px;
}
.footer__brand-name span { color: var(--gold); }
.footer__brand-tag {
    font-size: 8px; font-weight: 500;
    letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 18px; display: block;
}
.footer__brand-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 26px; }
.footer__social { display: flex; gap: 9px; }
.footer__social-link {
    width: 36px; height: 36px;
    border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; color: var(--text-muted);
    transition: var(--transition);
}
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

.footer__col-title {
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--white); margin-bottom: 22px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__link {
    font-size: 0.8rem; color: var(--text-muted);
    transition: var(--transition); letter-spacing: 0.02em;
}
.footer__link:hover { color: var(--gold); padding-left: 5px; }

.footer__newsletter-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.footer__newsletter-form { display: flex; }
.footer__newsletter-input {
    flex: 1;
    background: rgba(7,9,26,0.85);
    border: 1px solid var(--border-subtle);
    border-right: none;
    color: var(--white);
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 300;
    outline: none;
}
.footer__newsletter-input:focus { border-color: var(--gold); }
.footer__newsletter-input::placeholder { color: var(--text-muted); }
.footer__newsletter-btn {
    background: var(--gold); border: 1px solid var(--gold);
    color: var(--navy-deep);
    padding: 11px 14px;
    cursor: pointer; font-size: 13px;
    transition: var(--transition);
}
.footer__newsletter-btn:hover { background: var(--gold-light); }

.footer__bottom {
    padding: 22px 0;
    border-top: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: space-between;
}
.footer__copy { font-size: 0.73rem; color: var(--text-muted); letter-spacing: 0.04em; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal-link {
    font-size: 0.7rem; color: var(--text-muted);
    letter-spacing: 0.07em; transition: var(--transition);
}
.footer__legal-link:hover { color: var(--gold); }

/* ── Animation révélation ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ── En-tête de section ───────────────────────────────────── */
.section-header { text-align: center; }
.section-header--left { text-align: left; }

/* ── Ligne dorée décorative ───────────────────────────────── */
.gold-sep {
    display: flex; align-items: center;
    gap: 14px; margin-bottom: 18px;
}
.gold-sep::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    max-width: 72px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — 5 paliers
   1100px · 900px · 768px · 600px · 400px
   ════════════════════════════════════════════════════════════ */

/* ── Petit bureau / grande tablette paysage ─────────────── */
@media (max-width: 1100px) {
    .container { padding: 0 32px; }

    /* Nav */
    .nav__links { gap: 18px; }
    .nav__link  { font-size: 9.5px; }

    /* Hero */
    .hero__title { font-size: clamp(3.5rem, 9vw, 6rem); }

    /* About */
    .about__grid   { grid-template-columns: 1fr; gap: 48px; }
    .about__visual { display: none; }

    /* Speakers */
    .speakers__grid { grid-template-columns: repeat(3, 1fr); }

    /* Footer */
    .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── Tablette paysage / petit bureau ────────────────────── */
@media (max-width: 900px) {
    .container { padding: 0 28px; }
    .section    { padding: 96px 0; }

    /* Navigation */
    .nav__links, .nav__cta { display: none; }
    .nav__hamburger         { display: flex; }
    .nav { padding: 18px 0; }
    .nav.scrolled { padding: 12px 0; }

    /* Hero */
    .hero__content { padding: 0 32px; }
    .hero__title   { font-size: clamp(3rem, 10vw, 5.5rem); }
    .hero__platform { font-size: clamp(0.9rem, 2vw, 1.15rem); }
    .hero__subtitle { font-size: clamp(1rem, 2.2vw, 1.2rem); }
    .hero__actions  { gap: 14px; }

    /* Stats */
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__item:nth-child(2)::after { display: none; }

    /* Vision / Mission */
    .vm-grid { grid-template-columns: 1fr; }
    .vm-card  { padding: 48px 36px; }

    /* Valeurs */
    .values__grid { grid-template-columns: repeat(2, 1fr); }

    /* Piliers */
    .pillars__grid { grid-template-columns: repeat(2, 1fr); }
    .pillar { border-right: none; border-bottom: 1px solid var(--border-gold); }
    .pillar:nth-child(odd)            { border-right: 1px solid var(--border-gold); }
    .pillar:nth-last-child(-n+2)      { border-bottom: none; }

    /* Sommet */
    .summit__grid      { grid-template-columns: 1fr; }
    .summit__event-card { padding: 36px; }

    /* Intervenants */
    .speakers__grid { grid-template-columns: repeat(2, 1fr); }

    /* Étoiles */
    .etoiles__grid { grid-template-columns: repeat(2, 1fr); }

    /* Partenaires */
    .partners__grid { grid-template-columns: repeat(3, 1fr); }

    /* Commanditaires */
    .sponsors__grid { grid-template-columns: 1fr; gap: 2px; }

    /* Billetterie */
    .tickets__grid          { grid-template-columns: 1fr; gap: 2px; }
    .ticket-card--featured  { margin: 0; padding: 48px 32px; }

    /* Fondatrice */
    .founder__inner     { grid-template-columns: 1fr; text-align: center; }
    .founder__photo-wrap { max-width: 260px; margin: 0 auto; }
    .founder__quote     { padding-left: 0; border-left: none; border-top: 2px solid var(--gold); padding-top: 24px; }

    /* Contact */
    .contact__grid { grid-template-columns: 1fr; gap: 48px; }

    /* Médias */
    .media__grid { grid-template-columns: 1fr 1fr; }
    .media-item:first-child { grid-column: span 2; grid-row: span 1; }
    .media-item:first-child .media-item__inner { min-height: 260px; }

    /* Footer */
    .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Tablette portrait ───────────────────────────────────── */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section    { padding: 80px 0; }

    /* Hero */
    .hero__title     { font-size: clamp(2.8rem, 11vw, 4.5rem); }
    .hero__platform  { font-size: 0.95rem; }
    .hero__subtitle  { font-size: 1rem; line-height: 1.75; }
    .hero__subtitle br { display: none; }
    .hero__tagline   { font-size: clamp(9px, 2.2vw, 11px); letter-spacing: 0.10em; white-space: nowrap; }
    .hero__star-wrap { width: 56px; height: 56px; margin-bottom: 20px; }
    .hero__star-ray--v { height: 380px; margin-top: -190px; }
    .hero__star-ray--h { width: 180px;  margin-left: -90px; }
    .hero__star-ray--d1,
    .hero__star-ray--d2 { height: 110px; margin-top: -55px; }
    .hero__star-halo { width: 80px; height: 80px; }

    /* Boutons hero empilés */
    .hero__actions { flex-direction: column; align-items: center; gap: 12px; }
    .hero__actions .btn { width: 100%; max-width: 340px; justify-content: center; }

    /* Stats */
    .stats { padding: 36px 0; }
    .stats__number { font-size: clamp(1.8rem, 5vw, 2.4rem); }

    /* Valeurs */
    .values__grid { grid-template-columns: 1fr; }
    .value-card   { padding: 36px 28px; }

    /* Piliers */
    .pillars__grid { grid-template-columns: 1fr; }
    .pillar        { border-right: none !important; border-bottom: 1px solid var(--border-gold) !important; padding: 40px 28px; }
    .pillar:last-child { border-bottom: none !important; }

    /* Intervenants — 2 colonnes */
    .speakers__grid { grid-template-columns: repeat(2, 1fr); }

    /* Étoiles */
    .etoiles__grid { grid-template-columns: 1fr; }
    .etoile-card   { padding: 36px 28px; }

    /* Partenaires */
    .partners__grid { grid-template-columns: repeat(2, 1fr); }
    .partners__cta-block { padding: 36px 24px; }

    /* Commanditaires */
    .sponsor-tier { padding: 40px 28px; }

    /* Billetterie */
    .ticket-card           { padding: 36px 24px; }
    .ticket-card--featured { padding: 40px 24px; }

    /* Fondatrice */
    .founder__quote { font-size: clamp(1.1rem, 3vw, 1.4rem); }

    /* Contact */
    .form-row { grid-template-columns: 1fr; }

    /* Médias */
    .media__grid { grid-template-columns: 1fr; }
    .media-item:first-child { grid-column: span 1; }
    .media-item:first-child .media-item__inner { min-height: 220px; }

    /* Footer */
    .footer__top  { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
    .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
    .footer__legal  { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ── Grand mobile ────────────────────────────────────────── */
@media (max-width: 600px) {
    .container { padding: 0 18px; }
    .section    { padding: 72px 0; }

    /* Nav logo */
    .nav__logo-name { font-size: 1.3rem; }

    /* Hero */
    .hero__title    { font-size: clamp(2.4rem, 13vw, 3.8rem); letter-spacing: 0.06em; }
    .hero__platform { font-size: 0.85rem; }
    .hero__subtitle { font-size: 0.95rem; }
    .hero__tagline  { font-size: clamp(8.5px, 2.3vw, 10px); letter-spacing: 0.09em; white-space: nowrap; }
    .hero__star-wrap { width: 46px; height: 46px; margin-bottom: 16px; }
    .hero__star-ray--v { height: 300px; margin-top: -150px; }
    .hero__star-ray--h { width: 150px;  margin-left: -75px; }
    .hero__star-ray--d1,
    .hero__star-ray--d2 { height: 90px; margin-top: -45px; }
    .hero__star-halo { width: 65px; height: 65px; }
    .hero__actions .btn { max-width: 100%; padding: 15px 24px; font-size: 10px; }

    /* Stats */
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .stats__item { padding: 16px 12px; }
    .stats__item::after { display: none; }
    .stats__number { font-size: clamp(1.6rem, 6vw, 2rem); }

    /* Titres de sections */
    .title    { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
    .title--xl { font-size: clamp(2rem, 7vw, 3rem); }
    .title--sm { font-size: clamp(1.2rem, 4.5vw, 1.6rem); }

    /* À propos */
    .about__intro { font-size: clamp(1rem, 3.5vw, 1.2rem); }

    /* VM Cards */
    .vm-card { padding: 40px 22px; }

    /* Intervenants — 2 colonnes */
    .speakers__grid { grid-template-columns: repeat(2, 1fr); }
    .speaker-card__name  { font-size: 0.82rem; }

    /* Partenaires */
    .partners__grid { grid-template-columns: repeat(2, 1fr); }

    /* Fondatrice */
    .founder__photo-wrap { max-width: 220px; }

    /* Contact */
    .contact__info-item { gap: 14px; }
    .contact__info-icon { width: 38px; height: 38px; }

    /* Footer */
    .footer__brand-name { font-size: 1.5rem; }
    .footer__newsletter-form { flex-direction: column; gap: 8px; }
    .footer__newsletter-btn  { padding: 12px; }
    .footer__newsletter-input { border-right: 1px solid var(--border-subtle); }
}

/* ── Petit mobile ────────────────────────────────────────── */
@media (max-width: 400px) {
    .container { padding: 0 14px; }
    .section    { padding: 60px 0; }

    /* Hero */
    .hero__title    { font-size: clamp(2rem, 14vw, 3rem); }
    .hero__platform { font-size: 0.78rem; letter-spacing: 0.02em; font-style: normal; }
    .hero__subtitle { font-size: 0.88rem; line-height: 1.65; }
    .hero__tagline  { font-size: clamp(8px, 2.5vw, 9.5px); letter-spacing: 0.08em; white-space: nowrap; }
    .hero__star-wrap { width: 38px; height: 38px; margin-bottom: 14px; }
    .hero__star-ray--v { height: 240px; margin-top: -120px; }
    .hero__star-ray--h { width: 120px;  margin-left: -60px; }
    .hero__star-ray--d1,
    .hero__star-ray--d2 { height: 70px; margin-top: -35px; }
    .hero__star-halo { width: 52px; height: 52px; }
    .hero__actions .btn { padding: 13px 18px; font-size: 9.5px; letter-spacing: 0.16em; }

    /* Stats */
    .stats__grid   { grid-template-columns: 1fr 1fr; }
    .stats__number { font-size: 1.5rem; }
    .stats__label  { font-size: 8px; letter-spacing: 0.14em; }

    /* Titres */
    .title     { font-size: clamp(1.4rem, 6vw, 2rem); }
    .title--xl { font-size: clamp(1.7rem, 8vw, 2.5rem); }

    /* Intervenants — 1 colonne */
    .speakers__grid { grid-template-columns: 1fr; }
    .speaker-card   { aspect-ratio: 4/3; }

    /* Partenaires */
    .partners__grid { grid-template-columns: 1fr; }
    .partner-logo   { aspect-ratio: 3/1; }

    /* Footer */
    .footer__social-link { width: 32px; height: 32px; }
    .footer__copy { font-size: 0.65rem; }
}

/* ════════════════════════════════════════════════════════════
   ÉTOILE SIGNATURE BRILLE — Animation
   ════════════════════════════════════════════════════════════ */

/* Conteneur de l'étoile */
.hero__star-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 8px;
}

/* Point central lumineux */
.hero__star-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #fff9e8;
    box-shadow:
        0 0 8px 3px var(--gold-light),
        0 0 24px 8px rgba(201,168,76,0.60),
        0 0 60px 20px rgba(201,168,76,0.25),
        0 0 120px 40px rgba(201,168,76,0.10);
    animation: star-core-pulse 2.4s ease-in-out infinite;
}

/* Rayons communs */
.hero__star-ray {
    position: absolute;
    top: 50%; left: 50%;
    transform-origin: center;
    background: linear-gradient(to top, transparent, var(--gold-light), transparent);
    border-radius: 2px;
    animation: star-ray-pulse 2.4s ease-in-out infinite;
}

/* Rayon vertical — très long, traverse BRILLE */
.hero__star-ray--v {
    width: 2px; height: 520px;
    margin-left: -1px; margin-top: -260px;
}

/* Rayon horizontal */
.hero__star-ray--h {
    width: 260px; height: 2px;
    margin-left: -130px; margin-top: -1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

/* Rayons diagonaux */
.hero__star-ray--d1 {
    width: 1.5px; height: 160px;
    margin-left: -1px; margin-top: -80px;
    transform: rotate(45deg);
    opacity: 0.52;
    background: linear-gradient(to top, transparent, var(--gold), transparent);
}
.hero__star-ray--d2 {
    width: 1.5px; height: 160px;
    margin-left: -1px; margin-top: -80px;
    transform: rotate(-45deg);
    opacity: 0.52;
    background: linear-gradient(to top, transparent, var(--gold), transparent);
}

/* Halo diffus agrandi */
.hero__star-halo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.22) 0%, transparent 70%);
    animation: star-halo-pulse 2.4s ease-in-out infinite;
}

/* Animations — uniquement opacity + transform (compositor thread) */

/* Le box-shadow reste statique sur l'élément ; on anime seulement scale + opacity */
.hero__star-core {
    will-change: transform, opacity;
}
@keyframes star-core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.8; }
    50%       { transform: translate(-50%, -50%) scale(1.45); opacity: 1;   }
}

@keyframes star-ray-pulse {
    0%, 100% { opacity: 0.55; }
    50%       { opacity: 1;    }
}

.hero__star-halo {
    will-change: transform, opacity;
}
@keyframes star-halo-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.45; }
    50%       { transform: translate(-50%, -50%) scale(1.65); opacity: 0.9;  }
}

/* ── Balayage lumineux — translateX au lieu de left (pas de layout) ── */
.hero__title {
    position: relative;
    overflow: hidden;
}

.hero__title::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 55%; height: 100%;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255,255,255,0.09) 50%,
        transparent 70%
    );
    transform: translateX(-220%);
    animation: title-sweep 5s ease-in-out infinite 1.5s;
    pointer-events: none;
    will-change: transform;
}

@keyframes title-sweep {
    0%        { transform: translateX(-220%); }
    35%, 100% { transform: translateX(340%);  }
}


/* ── Plateforme — nouveau slogan ────────────────────────── */
.hero__platform {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.04em;
    color: var(--gold-light);
    margin: 12px 0 24px;
}

