/* ============================================================
   SQUAD MASTERS CLUB — style.css
   Gaming dark HUD · Orbitron / Rajdhani / Exo 2
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:      #05080f;
  --bg2:     #080d18;
  --panel:   #0c1220;
  --border:  #1a2540;
  --accent:  #00d4ff;
  --accent2: #ff6b00;
  --gold:    #f59e0b;
  --green:   #00d464;
  --text:    #c8d8f0;
  --muted:   #4a5a78;
  --white:   #e8f0ff;

  --sasha:   #4F96FF;
  --michel:  #FF8C42;
  --camille: #DC2626;
  --yun:     #66FFFF;
  --karim:   #F59E0B;
  --lea:     #F9A8D4;

  --font-head: 'Orbitron', sans-serif;
  --font-ui:   'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,212,255,.015) 2px, rgba(0,212,255,.015) 4px);
  pointer-events: none;
  z-index: 9999;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--font-head); color: var(--white); text-transform: uppercase; letter-spacing: .05em; }
.section-tag {
  font-family: var(--font-ui);
  font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem;
}
.section-tag::after {
  content: ''; flex: 1; max-width: 60px;
  height: 1px; background: var(--accent); opacity: .4;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }

/* ── LOGO ── */
.about-logo {
  mix-blend-mode: screen;
  /* ou si ça ne suffit pas : */
  background: transparent;
  border-radius: 12px; /* optionnel, adoucit le carré */
}


/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-size: .85rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .75rem 1.75rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  cursor: pointer; border: none; outline: none;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%; background: rgba(255,255,255,.15);
  transform: skewX(-20deg); transition: left .4s ease;
}
.btn:hover::before { left: 150%; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), #0095cc); color: #000; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(0,212,255,.35); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: 0 4px 20px rgba(0,212,255,.15); }
.btn-green { background: linear-gradient(135deg, var(--green), #00a84f); color: #000; }
.btn-green:hover { box-shadow: 0 8px 30px rgba(0,212,100,.35); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #d97706); color: #000; }
.btn-gold:hover { box-shadow: 0 8px 30px rgba(245,158,11,.35); }

/* ── TAGS ── */
.tag {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  font-family: var(--font-ui); font-size: .65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .2rem .6rem; color: var(--muted);
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; height: 64px;
  display: flex; align-items: center;
  background: rgba(5,8,15,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000; transition: background .3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(0,212,255,.4)); }
.nav-logo-text {
  font-family: var(--font-head); font-size: .75rem; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white); line-height: 1.1;
}
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-family: var(--font-ui); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { flex-shrink: 0; }

/* ── HERO ── */
#home {
  position: relative; min-height: 100vh; overflow: hidden;
  background: #020509; display: flex; flex-direction: column;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video, .hero-bg iframe { width: 100%; height: 100%; object-fit: cover; border: none; display: block; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(2,5,9,.65) 0%, rgba(2,5,9,.10) 30%, rgba(2,5,9,.10) 55%, rgba(2,5,9,.80) 80%, rgba(2,5,9,1) 100%),
    linear-gradient(90deg, rgba(2,5,9,.55) 0%, transparent 50%, rgba(2,5,9,.30) 100%);
  z-index: 1;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,212,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,.04) 1px, transparent 1px);
  background-size: 60px 60px; z-index: 2; pointer-events: none;
}
.hero-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 70% at 60% 45%, rgba(0,70,160,.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 85% 80%, rgba(0,212,255,.1) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 15% 20%, rgba(255,107,0,.08) 0%, transparent 55%),
    #020509;
  display: flex; align-items: center; justify-content: center;
}
.hero-placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; opacity: .45; }
.hero-placeholder-inner .ph-play {
  width: 80px; height: 80px; border: 2px solid rgba(0,212,255,.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2.2rem;
}
.hero-placeholder-inner .ph-text { font-family: var(--font-ui); font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.hero-placeholder-inner .ph-hint { font-family: var(--font-body); font-size: .65rem; color: rgba(0,212,255,.45); font-style: italic; }

.hud-corner { position: absolute; width: 28px; height: 28px; border-color: rgba(0,212,255,.55); border-style: solid; z-index: 10; }
.hud-corner.tl { top: 80px; left: 20px; border-width: 2px 0 0 2px; }
.hud-corner.tr { top: 80px; right: 20px; border-width: 2px 2px 0 0; }
.hud-corner.bl { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.hud-corner.br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

.hud-status {
  position: absolute; top: 74px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-ui); font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(0,212,255,.7); white-space: nowrap;
}
.hud-status .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse 1.5s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.6); } }
.hud-status-sep { opacity: .3; }

.hero-content {
  position: relative; z-index: 5; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 2rem 0; min-height: 100vh;
}
.hero-eyebrow {
  font-family: var(--font-ui); font-size: .7rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.25rem; opacity: 0; animation: fadeUp .7s .3s forwards;
}
.hero-title {
  font-family: var(--font-head); font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900; line-height: .95; letter-spacing: .02em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.5rem;
  text-shadow: 0 0 80px rgba(0,212,255,.2), 0 4px 32px rgba(0,0,0,.8);
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.hero-title .accent-cyan { color: var(--accent); }
.hero-title .accent-orange { color: var(--accent2); }
.hero-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem); color: rgba(200,216,240,.85);
  max-width: 620px; line-height: 1.7; margin-bottom: 2.25rem;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}
.hero-sub strong { color: var(--white); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3.5rem; opacity: 0; animation: fadeUp .8s .9s forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── STATS BAR ── */
.hero-stats-bar {
  position: relative; z-index: 5; width: 100%;
  background: rgba(5,8,15,.75); border-top: 1px solid rgba(0,212,255,.2);
  backdrop-filter: blur(10px); padding: 1.75rem 0;
}
.hero-stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(0,212,255,.1);
}
.stat-item { background: rgba(5,8,15,.6); padding: 1.25rem 1.5rem; text-align: center; position: relative; }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0%; height: 2px; background: var(--accent); transition: width 1.2s ease;
}
.stat-item.counted::after { width: 60%; }
.stat-num { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--accent); line-height: 1; display: block; letter-spacing: .03em; }
.stat-num.orange { color: var(--accent2); }
.stat-num.gold { color: var(--gold); }
.stat-label { font-family: var(--font-ui); font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; display: block; }
.stat-sub { font-family: var(--font-body); font-size: .7rem; color: rgba(74,90,120,.7); margin-top: .15rem; display: block; font-style: italic; }

/* ── TECH MARQUEE ── */
#tech-band {
  background: var(--bg2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 1.5rem 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marquee 40s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; flex-direction: column; align-items: center; gap: .5rem; padding: 0 2.75rem; }
.marquee-logo { height: 28px; width: auto; max-width: 80px; object-fit: contain; filter: brightness(0) invert(1); opacity: .35; transition: opacity .2s, filter .2s; }
.marquee-logo:hover { opacity: .8; filter: none; }
.marquee-logo-fallback { height: 28px; display: flex; align-items: center; padding: 0 .75rem; border: 1px solid var(--border); background: rgba(255,255,255,.03); clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); }
.marquee-name { font-family: var(--font-ui); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ── QUI SOMMES-NOUS ── */
#qui-sommes-nous { background: var(--bg2); border-bottom: 1px solid var(--border); }
.qsn-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2.5rem; }
.qsn-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.qsn-logo-img { width: 100px; height: 100px; object-fit: contain; filter: drop-shadow(0 0 24px rgba(0,212,255,.35)); animation: logo-float 4s ease-in-out infinite; }
@keyframes logo-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.qsn-brand-name { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--white); line-height: 1.05; }
.qsn-brand-name span { color: var(--accent); }
.qsn-tagline { font-family: var(--font-ui); font-size: clamp(.9rem, 1.5vw, 1.15rem); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: -.5rem; }
.qsn-mission { max-width: 780px; }
.qsn-mission p { font-size: clamp(.95rem, 1.5vw, 1.1rem); line-height: 1.8; color: var(--text); margin-bottom: 1rem; }
.qsn-mission p strong { color: var(--white); }
.qsn-mission p:last-child { margin-bottom: 0; }
.qsn-pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: .5rem; }
.qsn-pillar {
  background: rgba(0,212,255,.05); border: 1px solid rgba(0,212,255,.18);
  padding: .65rem 1.25rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-family: var(--font-ui); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: .5rem;
}
.qsn-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

/* ── À PROPOS ── */
#a-propos { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
.about-portrait-wrap { position: relative; }
.about-portrait {
  width: 100%; aspect-ratio: 3/4;
  clip-path: polygon(25% 0%, 75% 0%, 100% 10%, 100% 90%, 75% 100%, 25% 100%, 0% 90%, 0% 10%);
  overflow: hidden; border: 2px solid var(--accent); position: relative; background: var(--panel);
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about-corner { position: absolute; width: 20px; height: 20px; border-color: var(--accent); border-style: solid; }
.about-corner.tl { top: -8px; left: -8px; border-width: 2px 0 0 2px; }
.about-corner.tr { top: -8px; right: -8px; border-width: 2px 2px 0 0; }
.about-corner.bl { bottom: -8px; left: -8px; border-width: 0 0 2px 2px; }
.about-corner.br { bottom: -8px; right: -8px; border-width: 0 2px 2px 0; }
.about-handle { margin-top: 1rem; text-align: center; font-family: var(--font-head); font-size: .65rem; font-weight: 700; letter-spacing: .2em; color: var(--accent); text-transform: uppercase; }
.about-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .25rem; }
.about-subtitle { font-family: var(--font-ui); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent2); margin-bottom: 1.75rem; }
.about-text { margin-bottom: 1rem; color: var(--text); line-height: 1.75; }
.about-certs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.cert-badge {
  background: rgba(0,212,255,.06); border: 1px solid rgba(0,212,255,.2);
  color: var(--accent); font-family: var(--font-ui); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.cert-badge.highlight { background: rgba(245,158,11,.08); border-color: rgba(245,158,11,.35); color: var(--gold); }

/* ── YOUTUBE ── */
#youtube { background: var(--bg); }
.yt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.yt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.yt-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.yt-stats { display: flex; gap: 1.5rem; margin-top: 2rem; }
.yt-stat { text-align: center; }
.yt-stat-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: var(--accent); }
.yt-stat-label { font-family: var(--font-ui); font-size: .6rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.yt-playlist { background: var(--panel); border: 1px solid var(--border); clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%); overflow: hidden; }
.yt-playlist-header { background: #ff0000; padding: .75rem 1.25rem; display: flex; align-items: center; gap: .5rem; font-family: var(--font-ui); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.yt-playlist-title { padding: 1rem 1.25rem; font-family: var(--font-head); font-size: .8rem; font-weight: 900; color: var(--white); border-bottom: 1px solid var(--border); }
.yt-ep { display: flex; align-items: center; gap: .75rem; padding: .75rem 1.25rem; border-bottom: 1px solid var(--border); transition: background .2s; }
.yt-ep:last-child { border-bottom: none; }
.yt-ep:hover { background: rgba(0,212,255,.04); }
.yt-ep-num { font-family: var(--font-head); font-size: .65rem; color: var(--muted); min-width: 1.5rem; }
.yt-ep-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.yt-ep-title { font-family: var(--font-ui); font-size: .8rem; font-weight: 500; color: var(--text); flex: 1; }
.yt-ep-persona { font-family: var(--font-ui); font-size: .6rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* ── SAISON PASS ── */
#saison-pass { background: var(--bg2); }
.pass-subtitle { color: var(--muted); font-family: var(--font-ui); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 3rem; }
.pass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.pass-card {
  background: var(--panel); border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  padding: 2rem; position: relative; transition: transform .3s, box-shadow .3s;
}
.pass-card:hover { transform: translateY(-6px); }
.pass-card.featured { border-color: var(--accent); box-shadow: 0 0 40px rgba(0,212,255,.15), inset 0 0 40px rgba(0,212,255,.03); }
.pass-card.featured:hover { box-shadow: 0 10px 50px rgba(0,212,255,.25); }
.pass-badge-rec {
  position: absolute; top: -1px; right: 30px;
  background: var(--accent2); color: #000; font-family: var(--font-ui);
  font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .75rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px));
}
.pass-tier-tag { font-family: var(--font-ui); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: .75rem; }
.pass-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 900; color: var(--white); margin-bottom: .25rem; }
.pass-duration { font-family: var(--font-ui); font-size: .7rem; font-weight: 500; letter-spacing: .08em; color: var(--muted); margin-bottom: 1.25rem; }
.pass-price { font-family: var(--font-head); font-size: 2rem; font-weight: 900; margin-bottom: .25rem; }
.pass-price-sub { font-family: var(--font-ui); font-size: .7rem; color: var(--muted); margin-bottom: 1.5rem; }
.pass-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.pass-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pass-features li { display: flex; align-items: flex-start; gap: .5rem; font-size: .85rem; color: var(--text); }
.pass-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.pass-features li.muted::before { color: var(--muted); }
.pass-features li.muted { color: var(--muted); }

/* ── LA SQUAD ── */
#la-squad { background: var(--bg); }
.squad-sub { color: var(--muted); font-family: var(--font-ui); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 3rem; }
.squad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.squad-card {
  background: var(--panel); border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; cursor: default;
}
.squad-card:hover { transform: translateY(-5px); border-color: var(--pc); box-shadow: 0 10px 40px color-mix(in srgb, var(--pc) 20%, transparent); }
.squad-card[data-persona="sasha"]   { --pc: var(--sasha);   }
.squad-card[data-persona="michel"]  { --pc: var(--michel);  }
.squad-card[data-persona="camille"] { --pc: var(--camille); }
.squad-card[data-persona="yun"]     { --pc: var(--yun);     }
.squad-card[data-persona="karim"]   { --pc: var(--karim);   }
.squad-card[data-persona="lea"]     { --pc: var(--lea);     }

.squad-portrait-zone {
  height: 240px; position: relative; overflow: hidden; background: var(--bg);
}
.squad-portrait-zone::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, color-mix(in srgb, var(--pc) 20%, transparent), transparent 65%);
  z-index: 2; pointer-events: none;
}
.squad-portrait-zone::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, var(--panel)); z-index: 3; pointer-events: none;
}
.squad-portrait-zone img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  position: relative; z-index: 1; transition: transform .4s ease;
}
.squad-card:hover .squad-portrait-zone img { transform: scale(1.04); }
.squad-color-bar { height: 3px; background: var(--pc); }
.squad-body { padding: 1.25rem; }
.squad-name { font-family: var(--font-head); font-size: .9rem; font-weight: 900; color: var(--white); margin-bottom: .15rem; }
.squad-role { font-family: var(--font-ui); font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--pc); margin-bottom: .75rem; }
.squad-desc { font-size: .82rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; }
.squad-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.squad-tag {
  font-family: var(--font-ui); font-size: .6rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--pc); background: color-mix(in srgb, var(--pc) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--pc) 30%, transparent);
  padding: .2rem .55rem; clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ── EVENTS ── */
#events { background: var(--bg2); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.event-card {
  background: var(--panel); border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  padding: 1.5rem; transition: transform .3s, border-color .3s;
}
.event-card:hover { transform: translateY(-5px); border-color: var(--ec); }
.event-date-badge {
  font-family: var(--font-ui); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ec);
  border: 1px solid color-mix(in srgb, var(--ec) 35%, transparent);
  background: color-mix(in srgb, var(--ec) 8%, transparent);
  display: inline-block; padding: .2rem .65rem; margin-bottom: .75rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.event-name { font-family: var(--font-head); font-size: .95rem; font-weight: 900; color: var(--white); margin-bottom: .25rem; }
.event-lieu { font-family: var(--font-ui); font-size: .7rem; color: var(--muted); margin-bottom: .75rem; }
.event-desc { font-size: .82rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; }
.event-link { font-family: var(--font-ui); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ec); transition: opacity .2s; }
.event-link:hover { opacity: .7; }

/* ── COMMUNAUTÉ ── */
#communaute { background: var(--bg); }
.community-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.community-card {
  background: var(--panel); border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  padding: 2rem; display: flex; gap: 1.25rem; align-items: flex-start;
  transition: transform .3s, border-color .3s;
}
.community-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.community-icon { font-size: 2rem; flex-shrink: 0; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(0,212,255,.06); border: 1px solid rgba(0,212,255,.15); clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }
.community-name { font-family: var(--font-head); font-size: .85rem; font-weight: 900; color: var(--white); margin-bottom: .35rem; }
.community-desc { font-size: .82rem; color: var(--text); line-height: 1.6; margin-bottom: .75rem; }
.community-link { font-family: var(--font-ui); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); transition: opacity .2s; }
.community-link:hover { opacity: .7; }

/* ── AIDE ── */
#aide { background: var(--bg2); }
.aide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.aide-card {
  background: var(--panel); border: 1px solid var(--border);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  padding: 2rem; text-align: center; transition: transform .3s, border-color .3s;
}
.aide-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.aide-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.aide-title { font-family: var(--font-head); font-size: .9rem; font-weight: 900; color: var(--white); margin-bottom: .5rem; }
.aide-desc { font-size: .82rem; color: var(--text); line-height: 1.6; margin-bottom: 1rem; }
.aide-link { font-family: var(--font-ui); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); transition: opacity .2s; }
.aide-link:hover { opacity: .7; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-tagline { font-size: .82rem; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: .75rem; }
.social-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); background: var(--panel); color: var(--muted); font-size: .9rem; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); transition: border-color .2s, color .2s; font-family: var(--font-ui); font-weight: 700; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-nav-title { font-family: var(--font-ui); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-list a { font-family: var(--font-ui); font-size: .8rem; color: var(--text); transition: color .2s; }
.footer-nav-list a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { font-family: var(--font-ui); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.footer-legal a:hover { color: var(--accent); }
.footer-copy { font-family: var(--font-ui); font-size: .65rem; color: var(--muted); text-align: right; }
.footer-love { width: 100%; text-align: center; margin-top: 1rem; font-size: .75rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-stats-inner { grid-template-columns: repeat(4, 1fr); }
  .about-inner { grid-template-columns: 240px 1fr; }
  .squad-grid { grid-template-columns: repeat(2, 1fr); }
  .pass-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .yt-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #nav .nav-links { display: none; }
  section { padding: 4rem 0; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4.5rem); }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hud-corner.tr, .hud-corner.br { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .squad-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .aide-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
