@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,800;1,900&family=JetBrains+Mono:wght@400;800&display=swap');

:root { 
    --gold: #C5A059; 
    --black: #020205; 
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

::selection { background-color: var(--gold); color: #000; }

body {
    background: var(--black);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #fff;
    overflow-x: hidden;
}

.mono { font-family: 'JetBrains Mono', monospace; }

/* FIX DU NOM HERO : PROTECTION DU 'T' DE BENCHETRIT */
.hero-name {
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    line-height: 0.85;
    letter-spacing: -0.05em;
    font-size: clamp(3.5rem, 12vw, 10rem);
    background: linear-gradient(180deg, #FFFFFF 20%, var(--gold) 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 0.55em; 
}

/* TITRES DE PAGES HAUTS */
.section-title-alpha {
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    font-size: clamp(3rem, 9vw, 8.5rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #fff 20%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0;
}

/* NAVIGATION XL */
nav { 
    backdrop-filter: blur(50px);
    background: rgba(2, 2, 5, 0.9);
    z-index: 1000;
}

.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03; pointer-events: none; z-index: 9999;
}

/* CARDS & ANIMATIONS DE SURVOL */
.card-elite {
    background: rgba(255, 255, 255, 0.01); 
    backdrop-filter: blur(60px);
    border: 2px solid rgba(255, 255, 255, 0.04); 
    border-radius: 2.5rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.card-elite:hover { 
    border-color: var(--gold); 
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* NETWORK ELEMENTS */
.network-card {
    border-radius: 3rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.network-card:hover { border-color: var(--gold); transform: translateY(-15px); }

.prose-network p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #d1d1d6;
    margin-bottom: 2rem;
}

.highlight-gold { 
    color: var(--gold); 
    font-weight: 900; 
    font-style: italic; 
    font-size: 1.6rem; 
    border-left: 5px solid var(--gold); 
    padding-left: 2rem; 
    display: block; 
    margin: 3.5rem 0; 
}

/* MARQUEE PARTNERS */
.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* GLOBE POSITIONNÉ */
.globe-box { width: 220px; height: 220px; position: relative; }
@media (min-width: 1024px) { .globe-box { width: 380px; height: 380px; } }
.globe-sphere {
    width: 100%; height: 100%; border-radius: 50%; position: relative;
    overflow: hidden; background: #000; border: 1px solid rgba(197, 160, 89, 0.2);
}
.earth-texture {
    width: 300%; height: 100%; position: absolute; top: 0; left: 0;
    background-image: url('https://eoimages.gsfc.nasa.gov/images/imagerecords/73000/73909/world.topo.bathy.200412.3x5400x2700.jpg'); 
    background-size: auto 100%;
    filter: grayscale(100%) sepia(80%) contrast(1.2) brightness(0.8);
    opacity: 0.7;
    animation: spinEarth 100s linear infinite;
}
@keyframes spinEarth { 0% { transform: translateX(0); } 100% { transform: translateX(-66.6%); } }

/* FOOTER LINKS */
.simple-social-link {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
    transition: 0.3s ease;
    text-decoration: none;
}
.simple-social-link:hover { color: var(--gold); letter-spacing: 0.05em; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }