/* =======================================================
   index.css — Page d'accueil / Hero
   ======================================================= */


/* -------------------------------------------------------
   FOND & EFFETS DE LUMIÈRE
   ------------------------------------------------------- */
.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,159,255,0.07) 0%, transparent 65%);
  top: 0; right: 5%;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57,211,83,0.05) 0%, transparent 70%);
  bottom: 10%; left: 0;
  pointer-events: none;
}


/* -------------------------------------------------------
   SECTION HERO
   ------------------------------------------------------- */
#hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 8vw 4rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1.8rem;
}


/* -------------------------------------------------------
   TITRE H1
   ------------------------------------------------------- */
h1 {
  font-family: var(--font-h);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.h1-dim {
  color: rgba(230,237,243,0.25);
  display: block;
}
.h1-main {
  color: var(--text);
  display: block;
}
.h1-accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(110deg, var(--indigo) 30%, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 420px;
  margin-bottom: 2.5rem;
}


/* -------------------------------------------------------
   STATISTIQUES
   ------------------------------------------------------- */
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-n {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}



/* -------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 560px) {
  h1 { font-size: 3.2rem; }
  .hero-stats { gap: 1.8rem; }
}
