/* ════════════════════════════════════════════════════════════
   FFCC — French Football Coaching Center · Landing page
   Palette officielle : or #BFA372 · bleu #194879 · nuit #000612
   ════════════════════════════════════════════════════════════ */

/* ── Fonts ── */
@font-face {
  font-family: 'Satoshi';
  src: url('../assets/fonts/Satoshi-Variable.woff2') format('woff2-variations');
  font-weight: 300 900;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi-Static';
  src: url('../assets/fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ── Tokens ── */
:root {
  --gold: #bfa372;
  --gold-mid: #c8af73;
  --gold-dark: #867455;
  --blue: #194879;
  --blue-deep: #012e58;
  --red: #d9232c;
  --night: #000612;
  --night-2: #020b1e;
  --night-3: #041530;
  --white: #ffffff;
  --w90: rgba(255, 255, 255, 0.9);
  --w70: rgba(255, 255, 255, 0.7);
  --w50: rgba(255, 255, 255, 0.5);
  --w30: rgba(255, 255, 255, 0.3);
  --w15: rgba(255, 255, 255, 0.15);
  --w08: rgba(255, 255, 255, 0.08);
  --w04: rgba(255, 255, 255, 0.04);
  --gold-grad: linear-gradient(115deg, #d8c08e 0%, var(--gold) 45%, var(--gold-dark) 100%);
  --container: 78rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 5rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }

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

:focus-visible {
  outline: 2px solid var(--gold-mid);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; border-radius: 100px; }
.btn--gold:focus-visible { outline-color: var(--white); }
[id] { scroll-margin-top: calc(var(--nav-h) + 0.5rem); }

body {
  font-family: 'Satoshi', 'Satoshi-Static', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--night);
  color: var(--white);
  line-height: 1.6;
  font-weight: 420;
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }

.container {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
.section { padding-block: clamp(5rem, 12vh, 9rem); position: relative; }

/* ── Grain ── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  30% { transform: translate(3%, -15%); }
  50% { transform: translate(12%, 9%); }
  70% { transform: translate(9%, 4%); }
  90% { transform: translate(-1%, 7%); }
}

/* ── Preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 3000;
  background: var(--night);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease-expo), visibility 0.9s;
}
.preloader.is-done { transform: translateY(-100%); visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.preloader__rooster {
  width: 3.5rem; color: var(--gold);
  animation: rooster-pulse 1.4s ease-in-out infinite;
}
@keyframes rooster-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}
.preloader__count {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.35em;
  color: var(--w50); font-variant-numeric: tabular-nums;
}
.preloader__bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--w08);
}
.preloader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--gold-grad);
  transition: width 0.25s ease;
}

/* ── Curseur ── */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 2500;
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    border: 1px solid rgba(191, 163, 114, 0.55);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
      border-color 0.3s, background-color 0.3s, opacity 0.3s;
  }
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0; z-index: 2501;
    width: 0.3rem; height: 0.3rem; border-radius: 50%;
    background: var(--gold); pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
  }
  .cursor.is-hover {
    width: 4.5rem; height: 4.5rem;
    border-color: rgba(191, 163, 114, 0.9);
    background: rgba(191, 163, 114, 0.08);
  }
  .cursor.is-hidden, .cursor-dot.is-hidden { opacity: 0; }
}

/* ── Boutons ── */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
    background-color 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn svg { width: 1rem; height: 1rem; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold {
  background: var(--gold-grad);
  color: var(--night);
  box-shadow: 0 8px 32px rgba(191, 163, 114, 0.25);
}
.btn--gold:hover { box-shadow: 0 12px 44px rgba(191, 163, 114, 0.45); }
.btn--ghost {
  border: 1px solid var(--w30);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-mid); }
.btn--sm { padding: 0.7rem 1.4rem; font-size: 0.875rem; }
.btn--lg { padding: 1.25rem 2.6rem; font-size: 1.05rem; }

/* ── Chips / eyebrows ── */
.chip {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(191, 163, 114, 0.4);
  color: var(--gold-mid);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.chip--lang {
  border-color: var(--w15); color: var(--w70);
  letter-spacing: 0.06em; text-transform: none; font-size: 0.8rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; width: 2.5rem; height: 1px;
  background: var(--gold-grad);
}
.section-head--center .eyebrow::after {
  content: ''; width: 2.5rem; height: 1px;
  background: var(--gold-grad);
}

/* ── Titres ── */
.section-title {
  font-size: clamp(2.4rem, 5.2vw, 4.3rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.section-title em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2.5rem; margin-bottom: clamp(3rem, 7vh, 5rem);
}
.section-head--center {
  flex-direction: column; align-items: center; text-align: center;
}
.section-sub {
  max-width: 26rem; color: var(--w50); font-size: 1.05rem;
}
.section-head--center .section-sub { max-width: 34rem; margin-top: 1.25rem; }

/* ── Glass ── */
.glass {
  background: linear-gradient(160deg, var(--w04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--w08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* ════════════════ NAVIGATION ════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: transform 0.5s var(--ease-out), background-color 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(0, 6, 18, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--w08);
}
.nav.is-hidden { transform: translateY(-100%); visibility: hidden; transition-property: transform, visibility, background-color, border-color; }
.nav__inner {
  width: min(88rem, 100% - var(--gutter) * 2);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav__logo img { height: 2.5rem; width: auto; transition: opacity 0.3s; }
.nav__logo:hover img { opacity: 0.8; }
.nav__links { display: flex; gap: 2.2rem; }
.nav__link {
  position: relative;
  font-size: 0.9rem; font-weight: 500; color: var(--w70);
  transition: color 0.3s;
  padding-block: 0.4rem;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--white); }
.nav__link:hover::after, .nav__link:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 1.4rem; }
.nav__lang {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--w50); cursor: default;
}
.nav__lang i { font-style: normal; color: var(--gold-dark); }
.nav__burger {
  display: none;
  flex-direction: column; gap: 7px;
  width: 2.5rem; height: 2.5rem;
  align-items: center; justify-content: center;
  border: 1px solid var(--w15); border-radius: 50%;
}
.nav__burger span {
  display: block; width: 1.1rem; height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* ── Menu mobile ── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0, 6, 18, 0.96);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mobile-menu__link {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.02em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu__link:hover { color: var(--gold-mid); }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu__cta {
  margin-top: 1rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out) 0.4s, transform 0.5s var(--ease-out) 0.4s,
    box-shadow 0.4s;
}
.mobile-menu.is-open .mobile-menu__cta { opacity: 1; transform: none; }
.mobile-menu__langs { color: var(--w50); letter-spacing: 0.2em; font-size: 0.8rem; }

/* ════════════════ HERO ════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: clip;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 112%;
  object-fit: cover; object-position: center 30%;
  transform-origin: center;
  animation: kenburns 14s var(--ease-out) forwards;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1.14); }
  to { transform: scale(1.02); }
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 6, 18, 0.55) 0%, rgba(0, 6, 18, 0.18) 38%, rgba(0, 6, 18, 0.62) 74%, var(--night) 100%),
    radial-gradient(110% 80% at 50% 108%, rgba(1, 46, 88, 0.55) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  padding-top: calc(var(--nav-h) + 4rem);
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  font-weight: 600; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--w70);
  margin-bottom: clamp(1.5rem, 3vh, 2.25rem);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.8s var(--ease-out) 0.15s;
}
.hero__stars { color: var(--gold); letter-spacing: 0.3em; }
.hero__title {
  font-size: clamp(2.3rem, 8vw, 6.6rem);
  font-size: clamp(2.3rem, min(8vw, 11.5svh), 6.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 3.5vh, 2.5rem);
}
.line-mask { display: block; overflow: hidden; padding-block: 0.04em; }
.line {
  display: inline-block;
  transform: translateY(118%) rotate(2deg);
  transform-origin: left top;
  transition: transform 1.1s var(--ease-expo);
  will-change: transform;
}
.line--gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero__dot { font-style: normal; color: var(--gold); -webkit-text-fill-color: var(--gold); }
.is-loaded .hero__title .line { transform: translateY(0) rotate(0); }
.is-loaded .hero__title .line-mask:nth-child(1) .line { transition-delay: 0.25s; }
.is-loaded .hero__title .line-mask:nth-child(2) .line { transition-delay: 0.38s; }
.is-loaded .hero__title .line-mask:nth-child(3) .line { transition-delay: 0.51s; }
.is-loaded .hero__eyebrow, .is-loaded .hero__lead, .is-loaded .hero__sub,
.is-loaded .hero__note, .is-loaded .hero__cta, .is-loaded .hero__badges {
  opacity: 1; transform: none;
}
.hero__lead {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--gold-mid);
  max-width: 34rem;
  margin-bottom: clamp(0.75rem, 2vh, 1.2rem);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.62s, transform 0.8s var(--ease-out) 0.62s;
}
.hero__sub {
  max-width: 38rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--w90);
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.75s, transform 0.8s var(--ease-out) 0.75s;
}
.hero__note {
  max-width: 40rem;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  color: var(--w50);
  margin-bottom: clamp(1.25rem, 3vh, 1.9rem);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.85s, transform 0.8s var(--ease-out) 0.85s;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 0.95s, transform 0.8s var(--ease-out) 0.95s;
}
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: clamp(1.1rem, 2.5vh, 1.6rem);
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease-out) 1.05s, transform 0.8s var(--ease-out) 1.05s;
}
.hero__badges li {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: 100px;
  border: 1px solid var(--w15);
  background: rgba(0, 6, 18, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.82rem; font-weight: 500; color: var(--w90);
}
.hero__badges li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem; font-weight: 700;
}
.hero__stats {
  position: relative;
  border-top: 1px solid var(--w08);
  background: linear-gradient(180deg, rgba(0, 6, 18, 0.25), rgba(0, 6, 18, 0.55));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 1s var(--ease-out) 1.15s;
}
.is-loaded .hero__stats { opacity: 1; }
.hero__stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero-stat {
  padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.hero-stat + .hero-stat { border-left: 1px solid var(--w08); }
.hero-stat__num {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  font-weight: 850; letter-spacing: -0.02em;
  color: var(--gold-mid);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero-stat__label { font-size: 0.8rem; color: var(--w50); letter-spacing: 0.02em; }
.hero__scroll {
  position: absolute; right: clamp(1.25rem, 4vw, 2.5rem); bottom: 8.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: var(--w50);
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  transition: opacity 1s ease 1.6s;
}
.is-loaded .hero__scroll { opacity: 1; }
.hero__scroll i {
  width: 1px; height: 3.5rem;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll i::after {
  content: ''; position: absolute; inset: 0;
  background: var(--night);
  animation: scroll-line 2s var(--ease-expo) infinite;
}
@keyframes scroll-line {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(110%); }
}

/* ════════════════ MARQUEE ════════════════ */
.marquee {
  position: relative;
  padding-block: clamp(1.4rem, 3vh, 2.2rem);
  border-block: 1px solid var(--w08);
  background: var(--night-2);
  overflow: clip;
  transform: rotate(0.001deg);
}
.marquee__track {
  display: flex; width: max-content;
  will-change: transform;
}
.marquee__group {
  display: flex; align-items: center; gap: 3rem;
  padding-right: 3rem;
}
.marquee__group span {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(210, 186, 140, 0.42);
  transition: color 0.4s;
}
.marquee:hover .marquee__group span { color: rgba(210, 186, 140, 0.18); }
.marquee__group b { color: var(--gold); font-size: 1rem; }

/* ════════════════ MANIFESTO ════════════════ */
.manifesto {
  background:
    radial-gradient(60% 50% at 85% 10%, rgba(25, 72, 121, 0.22) 0%, transparent 70%),
    var(--night);
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.manifesto__statement {
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-wrap: balance;
}
.manifesto__statement em {
  font-style: normal;
  white-space: nowrap;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* une fois le texte découpé en mots par le JS, le dégradé passe sur chaque mot
   pour que leur opacité reste pilotable */
.manifesto__statement.is-split em {
  background: none;
  -webkit-text-fill-color: currentColor;
}
.manifesto__statement.is-split em .w {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.manifesto__statement .w {
  opacity: 0.14;
  transition: opacity 0.45s ease;
}
.manifesto__statement .w.is-on { opacity: 1; }
.manifesto__para { color: var(--w50); max-width: 32rem; margin-bottom: 2.5rem; font-size: 1.05rem; }
.manifesto__points { display: flex; flex-direction: column; gap: 1.5rem; }
.manifesto__points li { display: flex; gap: 1.1rem; align-items: flex-start; }
.manifesto__point-icon {
  flex: 0 0 auto;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  border-radius: 0.9rem;
  border: 1px solid rgba(191, 163, 114, 0.35);
  background: rgba(191, 163, 114, 0.07);
  color: var(--gold-mid);
}
.manifesto__point-icon svg { width: 1.3rem; height: 1.3rem; }
.manifesto__points strong { display: block; font-weight: 700; margin-bottom: 0.15rem; }
.manifesto__points span:not(.manifesto__point-icon) { color: var(--w50); font-size: 0.92rem; }
.manifesto__media { position: relative; }
.frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}
.frame::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--w15);
  pointer-events: none;
}
.frame img {
  width: 100%; height: clamp(24rem, 50vw, 34rem);
  object-fit: cover;
  scale: 1.18;
  will-change: transform;
}
.manifesto__media::before {
  content: '';
  position: absolute; inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid rgba(191, 163, 114, 0.35);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.float-card {
  position: absolute; left: -2rem; bottom: 2rem;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.4rem;
  border-radius: 1.1rem;
  background: rgba(2, 11, 30, 0.85);
  border: 1px solid rgba(191, 163, 114, 0.3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.float-card.is-in { animation: floaty 5s ease-in-out 1.2s infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-card__icon {
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--night);
}
.float-card__icon svg { width: 1.3rem; height: 1.3rem; }
.float-card strong { display: block; font-size: 0.9rem; }
.float-card span:not(.float-card__icon) { font-size: 0.78rem; color: var(--w50); }

/* ════════════════ FORMATIONS ════════════════ */
.formations { background: var(--night-2); }
.formations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, var(--w04), transparent 60%);
  border: 1px solid var(--w08);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.card:hover {
  border-color: rgba(191, 163, 114, 0.45);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.55);
}
.card__num {
  position: absolute; top: 1.1rem; right: 1.3rem; z-index: 3;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--w50);
  padding: 0.35rem 0.7rem;
  background: rgba(0, 6, 18, 0.55);
  border: 1px solid var(--w15);
  border-radius: 100px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.card__media { position: relative; height: 15rem; overflow: hidden; }
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(2, 11, 30, 0.9) 100%);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s;
  filter: saturate(0.9);
}
.card:hover .card__media img { transform: scale(1.07); filter: saturate(1.1); }
.card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__body .chip { margin-bottom: 0.9rem; }
.card__title {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.card__desc { font-size: 0.92rem; color: var(--w50); margin-bottom: 1.4rem; }
.card__meta { margin-top: auto; }
.card__meta {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 600; color: var(--gold-mid);
  letter-spacing: 0.04em;
}
.card__meta i { color: var(--w30); font-style: normal; }
.card__arrow {
  margin-left: auto;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--w15);
  color: var(--white);
  transition: background-color 0.35s, color 0.35s, border-color 0.35s, transform 0.45s var(--ease-out);
}
.card__arrow svg { width: 0.9rem; height: 0.9rem; }
.card:hover .card__arrow {
  background: var(--gold); border-color: var(--gold); color: var(--night);
  transform: rotate(-35deg);
}

/* ── Formation phare ── */
.flagship {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(191, 163, 114, 0.35);
  background: linear-gradient(120deg, var(--night-3) 0%, var(--night-2) 100%);
}
.flagship__media { position: relative; min-height: 18rem; overflow: hidden; }
.flagship__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.flagship:hover .flagship__media img { transform: scale(1.05); }
.flagship__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 55%, var(--night-3) 100%);
}
.flagship__tag {
  position: absolute; top: 1.2rem; left: 1.2rem; z-index: 2;
  display: inline-flex; align-items: center;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  background: var(--gold-grad);
  color: var(--night);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.flagship__body {
  padding: clamp(1.8rem, 3vw, 2.75rem);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center; gap: 0.75rem;
}
.flagship__body .chip { margin-bottom: 0.2rem; }
.flagship__title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 850; line-height: 1.1; letter-spacing: -0.02em;
}
.flagship__tagline {
  font-size: 1.05rem; font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flagship__desc { color: var(--w70); font-size: 0.98rem; }
.flagship__body .btn { margin-top: 0.6rem; }

/* ── Pied de catalogue ── */
.formations__footer {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem;
}
.formations__footer p {
  max-width: 44rem; color: var(--w50); font-size: 1.02rem; line-height: 1.65;
}

/* ════════════════ QUOTE BAND ════════════════ */
.quote-band {
  position: relative;
  min-height: clamp(22rem, 55vh, 32rem);
  display: grid; place-items: center;
  overflow: clip;
}
.quote-band__bg { position: absolute; inset: -12% 0; z-index: 0; }
.quote-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-band::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, var(--night-2) 0%, rgba(0, 6, 18, 0.45) 30%, rgba(0, 6, 18, 0.45) 70%, var(--night) 100%);
}
.quote-band__content { position: relative; z-index: 2; text-align: center; }
.quote-band blockquote {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 56rem; margin-inline: auto;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}
.quote-band blockquote .w { opacity: 0.18; transition: opacity 0.45s ease; }
.quote-band blockquote .w.is-on { opacity: 1; }

/* ════════════════ BENTO ════════════════ */
.platform {
  background:
    radial-gradient(55% 40% at 15% 20%, rgba(25, 72, 121, 0.25) 0%, transparent 70%),
    var(--night);
}

/* ── Liste « mais pas seulement » ── */
.plus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 2rem;
  max-width: 56rem;
  margin: 0 auto clamp(3rem, 6vh, 4.5rem);
}
.plus-list li {
  position: relative;
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding-left: 0;
  font-size: 1rem; color: var(--w90); line-height: 1.5;
}
.plus-list li::before {
  content: '✓';
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 1.4rem; height: 1.4rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--night);
  font-size: 0.72rem; font-weight: 800;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: clamp(1.1rem, 2vw, 1.6rem);
}
.bento__cell {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1.9rem;
  min-height: 17rem;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}
.bento__cell:hover { border-color: rgba(191, 163, 114, 0.4); }
.bento__cell h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.bento__cell p { font-size: 0.92rem; color: var(--w50); }
.bento__icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  background: rgba(191, 163, 114, 0.1);
  border: 1px solid rgba(191, 163, 114, 0.3);
  color: var(--gold-mid);
  margin-bottom: 1.4rem;
}
.bento__icon svg { width: 1.4rem; height: 1.4rem; }

/* Téléphone */
.bento__cell--phone {
  grid-row: span 2;
  display: grid; place-items: center;
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(25, 72, 121, 0.35) 0%, transparent 70%),
    linear-gradient(160deg, var(--w04), transparent);
  border: 1px solid var(--w08);
  padding: 2.5rem 1.5rem;
}
.phone {
  position: relative;
  width: min(18.5rem, 100%);
  aspect-ratio: 9 / 19;
  border-radius: 2.8rem;
  background: #0a0f1e;
  border: 1px solid var(--w15);
  box-shadow:
    0 0 0 6px rgba(10, 15, 30, 0.9),
    0 0 0 7px rgba(255, 255, 255, 0.12),
    0 45px 90px -20px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-out);
}
.phone__notch {
  position: absolute; top: 0.65rem; left: 50%; transform: translateX(-50%);
  width: 6.5rem; height: 1.5rem;
  background: #000; border-radius: 100px;
  z-index: 5;
}
.phone__screen {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #06122b 0%, var(--night) 100%);
  padding: 1rem 1.05rem 0;
  display: flex; flex-direction: column;
  font-size: 0.72rem;
}
.phone__statusbar {
  display: flex; justify-content: space-between;
  font-size: 0.6rem; font-weight: 600; color: var(--w70);
  padding-inline: 0.4rem;
  margin-bottom: 0.9rem;
}
.phone__signal { letter-spacing: 0.15em; font-size: 0.45rem; align-self: center; }
.phone__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.9rem;
}
.phone__logo { height: 1.5rem; width: auto; }
.phone__bell {
  position: relative;
  width: 1.9rem; height: 1.9rem;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--w15);
  color: var(--w70);
}
.phone__bell svg { width: 0.95rem; height: 0.95rem; }
.phone__bell-dot {
  position: absolute; top: 0.25rem; right: 0.3rem;
  width: 0.4rem; height: 0.4rem; border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 35, 44, 0.5); }
  50% { box-shadow: 0 0 0 4px rgba(217, 35, 44, 0); }
}
.phone__hello { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.phone__hello-sub { color: var(--w50); font-size: 0.68rem; margin-bottom: 0.8rem; }
.phone__course {
  border-radius: 1rem;
  background: var(--w04);
  border: 1px solid var(--w08);
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.phone__course img { width: 100%; height: 4.6rem; object-fit: cover; }
.phone__course-body { padding: 0.7rem 0.8rem 0.8rem; }
.phone__course-chip {
  display: inline-block;
  font-size: 0.52rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-mid);
  border: 1px solid rgba(191, 163, 114, 0.4);
  padding: 0.1rem 0.45rem; border-radius: 100px;
  margin-bottom: 0.4rem;
}
.phone__course-body strong { display: block; font-size: 0.78rem; font-weight: 700; margin-bottom: 0.5rem; }
.phone__progress {
  height: 0.32rem; border-radius: 100px;
  background: var(--w08);
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.phone__progress span {
  display: block; height: 100%; width: 0;
  border-radius: 100px;
  background: var(--gold-grad);
  transition: width 1.4s var(--ease-expo) 0.4s;
}
.phone__progress span.is-on { width: var(--p); }
.phone__course-body em { font-style: normal; font-size: 0.6rem; color: var(--w50); }
/* ── Sheet Assistant IA — réplique de AiChatModal (app), à l'échelle ──
   Tokens app : bulle user = gradient #194879→#0e5a9c, bulle IA = #f6f6f9,
   sheet blanche radius 1.25rem, grabber #d4d4d8, label « AI Tutor » #6d6b73. */
.phone__scrim {
  position: absolute; inset: 0;
  background: rgba(0, 6, 18, 0.42);
  border-radius: inherit;
}
.phone__sheet {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  border-top-left-radius: 1.1rem;
  border-top-right-radius: 1.1rem;
  box-shadow: 0 -0.5rem 2.5rem rgba(0, 6, 18, 0.18);
  display: flex; flex-direction: column;
  padding-bottom: 0.85rem;
}
.phone__grabber {
  width: 2rem; height: 0.22rem;
  border-radius: 999px;
  background: #d4d4d8;
  margin: 0.55rem auto 0.25rem;
}
.phone__sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.2rem 0.9rem 0.6rem;
  border-bottom: 0.5px solid #e4e4e7;
}
.phone__sheet-head strong {
  font-size: 0.82rem; font-weight: 700;
  color: #000612;
}
.phone__sheet-close {
  width: 1.6rem; height: 1.6rem;
  display: grid; place-items: center;
  border-radius: 0.4rem;
  background: #f4f4f5;
  color: #71717a;
}
.phone__sheet-close svg { width: 0.8rem; height: 0.8rem; }
.phone__sheet-msgs {
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: 0.7rem 0.9rem 0.55rem;
}
.phone__msg-group { display: flex; flex-direction: column; gap: 0.22rem; align-items: flex-start; }
.phone__msg-group--user { align-items: flex-end; }
.phone__msg-label { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.1rem; }
.phone__msg-avatar {
  width: 1.35rem; height: 1.35rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #194879 0%, #0e5a9c 100%);
  color: #ffffff;
}
.phone__msg-avatar svg { width: 0.72rem; height: 0.72rem; }
.phone__msg-role { font-size: 0.58rem; font-weight: 500; color: #6d6b73; }
.phone__msg {
  max-width: 90%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.8rem;
  font-size: 0.66rem; line-height: 1.5;
}
.phone__msg--user {
  background: linear-gradient(180deg, #194879 0%, #0e5a9c 100%);
  color: #ffffff;
  border-bottom-right-radius: 0.2rem;
}
.phone__msg--ai {
  background: #f6f6f9;
  color: #000612;
  border-bottom-left-radius: 0.2rem;
  max-width: 95%;
}
.phone__msg-time { font-size: 0.5rem; color: #a1a1aa; padding: 0 0.2rem; }
.phone__sheet-foot {
  display: flex; gap: 0.4rem; align-items: center;
  border-top: 0.5px solid #e4e4e7;
  padding: 0.6rem 0.9rem 0;
}
.phone__sheet-input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 0.5px solid #dbe4e6;
  border-radius: 0.55rem;
  background: #f6f6f9;
  font-size: 0.62rem;
  color: rgba(10, 10, 10, 0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone__sheet-send {
  width: 1.9rem; height: 1.9rem; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 0.55rem;
  background: linear-gradient(180deg, #194879 0%, #0e5a9c 100%);
  color: #ffffff;
}
.phone__sheet-send svg { width: 0.95rem; height: 0.95rem; }
.phone__sheet-quota {
  font-style: normal;
  font-size: 0.52rem;
  color: #71717a;
  text-align: center;
  margin-top: 0.45rem;
}
.phone__tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 0.8rem 0.5rem 1.4rem;
  border-top: 1px solid var(--w08);
  color: var(--w50);
}
.phone__tabbar svg { width: 1.15rem; height: 1.15rem; }
.phone__tabbar svg:first-child { color: var(--gold-mid); }

/* IA */
.bento__cell--ai { border-radius: var(--radius-lg); }
.bento__chatdemo { margin-top: 1.2rem; }
.bento__typing {
  display: inline-flex; align-items: center; gap: 0.32rem;
  padding: 0.7rem 0.9rem;
  background: #f6f6f9;
  border-radius: 0.9rem; border-bottom-left-radius: 0.2rem;
}
.bento__typing::before {
  content: 'Réflexion';
  font-size: 0.78rem;
  font-style: italic;
  color: #6d6b73;
  margin-right: 0.2rem;
}
.bento__typing i {
  width: 0.34rem; height: 0.34rem; border-radius: 50%;
  background: #194879;
  animation: typing 1.05s ease-in-out infinite;
}
.bento__typing i:nth-child(2) { animation-delay: 0.18s; }
.bento__typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Certifications */
.bento__cell--cert {
  background: linear-gradient(120deg, var(--night-3) 0%, var(--night-2) 100%);
  border: 1px solid var(--w08);
}
.bento__cert-bg {
  position: absolute; right: -22%; top: -8%;
  width: 75%; height: 125%;
  object-fit: cover;
  opacity: 0.5;
  mask-image: linear-gradient(100deg, transparent 18%, #000 60%);
  -webkit-mask-image: linear-gradient(100deg, transparent 18%, #000 60%);
  transition: opacity 0.5s, transform 0.7s var(--ease-out);
}
.bento__cell--cert:hover .bento__cert-bg { opacity: 0.7; transform: scale(1.04); }
.bento__cert-content { position: relative; z-index: 1; max-width: 70%; }

/* Webinaires / Replays */
.bento__cell--live, .bento__cell--replay { border: 1px solid var(--w08); padding: 0; }
.bento__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(0.95);
}
.bento__cell--live:hover .bento__media, .bento__cell--replay:hover .bento__media { transform: scale(1.06); }
.bento__overlay-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.9rem;
  background: linear-gradient(180deg, rgba(0, 6, 18, 0.1) 0%, rgba(0, 6, 18, 0.35) 42%, rgba(2, 11, 30, 0.96) 100%);
}
.bento__overlay-content p { color: rgba(255, 255, 255, 0.82); }
.live-badge {
  position: absolute; top: 1.4rem; left: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  background: rgba(70, 6, 11, 0.82);
  border: 1px solid rgba(217, 35, 44, 0.55);
  color: #ff9aa0;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.live-badge i {
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--red);
  animation: pulse-dot 1.6s infinite;
}
.play-btn {
  align-self: flex-start;
  width: 3.2rem; height: 3.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--w30);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  margin-bottom: 0.9rem;
  transition: background-color 0.35s, color 0.35s, transform 0.45s var(--ease-out);
}
.play-btn svg { width: 1.2rem; height: 1.2rem; margin-left: 2px; }
.bento__cell--replay:hover .play-btn {
  background: var(--gold); color: var(--night); transform: scale(1.1);
}

/* Langues — bandeau pleine largeur */
.bento__cell--lang {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    'icon title langs'
    'icon desc langs';
  column-gap: 1.6rem;
  align-items: center;
  align-content: center;
  padding: 1.7rem 1.9rem;
}
.bento__cell--lang .bento__icon { grid-area: icon; margin-bottom: 0; }
.bento__cell--lang h3 { grid-area: title; margin-bottom: 0.2rem; }
.bento__cell--lang p { grid-area: desc; }
.bento__langs { grid-area: langs; display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: flex-end; }

/* ════════════════ HÉRITAGE ════════════════ */
.heritage {
  position: relative;
  padding-block: clamp(6rem, 15vh, 10rem) clamp(5rem, 11vh, 7.5rem);
  overflow: clip;
}
.heritage__bg { position: absolute; inset: -12% 0; z-index: 0; }
.heritage__bg img { width: 100%; height: 100%; object-fit: cover; }
.heritage::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, var(--night) 0%, rgba(0, 6, 18, 0.62) 25%, rgba(0, 6, 18, 0.78) 75%, var(--night-2) 100%),
    radial-gradient(70% 60% at 50% 50%, rgba(1, 46, 88, 0.3) 0%, transparent 80%);
}
.heritage__content { position: relative; z-index: 2; text-align: center; }
.heritage__content .section-title { margin-inline: auto; }
.eyebrow--light { justify-content: center; }
.eyebrow--light::after { content: ''; width: 2.5rem; height: 1px; background: var(--gold-grad); }
.heritage__text {
  max-width: 38rem; margin: 1.75rem auto 0;
  color: var(--w70); font-size: 1.08rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.heritage__text--close { color: var(--w90); }
.heritage__qualities {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem;
  max-width: 46rem; margin: clamp(2rem, 5vh, 3rem) auto 0;
}
.heritage__qualities li {
  padding: 0.55rem 1.15rem;
  border-radius: 100px;
  border: 1px solid rgba(191, 163, 114, 0.4);
  background: rgba(0, 6, 18, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.9rem; font-weight: 500; color: var(--w90);
  letter-spacing: 0.01em;
}
.heritage__stats {
  margin-top: clamp(3rem, 7vh, 4.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 56rem; margin-inline: auto;
}
.heritage-stat {
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(0, 6, 18, 0.5);
  border: 1px solid var(--w08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.heritage-stat__num {
  display: block;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 900; letter-spacing: -0.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}
.heritage-stat__label { font-size: 0.85rem; color: var(--w50); }

/* ════════════════ TÉMOIGNAGES ════════════════ */
.testimonials { background: var(--night-2); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2vw, 1.6rem);
  align-items: stretch;
}
.testimonial {
  display: flex; flex-direction: column;
  padding: 2rem 1.9rem;
  border-radius: var(--radius-lg);
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}
.testimonial:hover { transform: translateY(-6px); border-color: rgba(191, 163, 114, 0.35); }
.testimonial--featured {
  border-color: rgba(191, 163, 114, 0.35);
  background: linear-gradient(165deg, rgba(191, 163, 114, 0.08), rgba(255, 255, 255, 0.015));
}
.testimonial__stars {
  color: var(--gold); letter-spacing: 0.2em; font-size: 0.85rem;
  margin-bottom: 1.2rem;
}
.testimonial blockquote {
  font-size: 1.08rem; font-weight: 550; line-height: 1.5;
  letter-spacing: -0.005em;
  margin-bottom: 1.8rem;
}
.testimonial figcaption {
  margin-top: auto;
  display: flex; align-items: center; gap: 0.9rem;
}
.testimonial__avatar {
  width: 2.8rem; height: 2.8rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: 1px solid var(--w15);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--w90);
}
.testimonial figcaption strong { display: block; font-size: 0.92rem; }
.testimonial figcaption span:not(.testimonial__avatar) { font-size: 0.8rem; color: var(--w50); }

/* ════════════════ ÉTAPES ════════════════ */
.steps {
  background:
    radial-gradient(50% 45% at 80% 85%, rgba(25, 72, 121, 0.2) 0%, transparent 70%),
    var(--night);
}
.steps__list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}
.step {
  position: relative;
  padding: 2.2rem 1.9rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--w08);
  background: linear-gradient(170deg, var(--w04), transparent);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}
.step:hover { border-color: rgba(191, 163, 114, 0.4); transform: translateY(-5px); }
.step::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.step:hover::after { transform: scaleX(1); }
.step__num {
  display: block;
  font-size: 3.2rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(191, 163, 114, 0.12);
  -webkit-text-stroke: 1.5px rgba(191, 163, 114, 0.85);
  margin-bottom: 1.4rem;
}
.step h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.6rem; }
.step p { font-size: 0.92rem; color: var(--w50); }

/* ════════════════ CTA ════════════════ */
.cta {
  position: relative;
  padding-block: clamp(7rem, 20vh, 13rem);
  overflow: clip;
  text-align: center;
}
.cta__bg { position: absolute; inset: -10% 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.cta::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, var(--night) 0%, rgba(0, 6, 18, 0.6) 28%, rgba(0, 6, 18, 0.82) 66%, var(--night) 94%);
}
.cta__content { position: relative; z-index: 2; }
.cta__title {
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.cta__title .line { transition-duration: 1s; }
.cta__sub {
  max-width: 33rem; margin: 0 auto 2.75rem;
  color: var(--w70); font-size: 1.1rem;
}
.cta__actions { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.cta__note { font-size: 0.85rem; color: var(--w70); letter-spacing: 0.03em; }
.cta__stores {
  margin-top: 2.5rem;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.store-pill {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--w15);
  background: rgba(0, 6, 18, 0.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: border-color 0.35s, transform 0.45s var(--ease-out), background-color 0.35s;
}
.store-pill:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  background: rgba(0, 6, 18, 0.85);
}
.store-pill svg { width: 1.6rem; height: 1.6rem; }
.store-pill span { display: flex; flex-direction: column; text-align: left; line-height: 1.2; font-weight: 700; font-size: 0.95rem; }
.store-pill small { font-size: 0.62rem; font-weight: 500; color: var(--w50); letter-spacing: 0.04em; }

/* ════════════════ FOOTER ════════════════ */
.footer {
  position: relative;
  background: var(--night-2);
  border-top: 1px solid var(--w08);
  padding-top: clamp(4rem, 9vh, 6rem);
  overflow: clip;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem;
}
.footer__logos { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.4rem; }
.footer__logos img:first-child { height: 3.2rem; width: auto; }
.footer__badge { height: 3.6rem; width: auto; }
.footer__brand p { color: var(--w50); font-size: 0.92rem; max-width: 20rem; }
.footer__col { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__col h3 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer__col a {
  color: var(--w50); font-size: 0.92rem;
  width: fit-content;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer__col a:hover { color: var(--white); transform: translateX(4px); }
.footer__langs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
  padding-block: 1.75rem 9rem;
  border-top: 1px solid var(--w08);
  font-size: 0.8rem; color: var(--w50);
}
.footer__watermark {
  position: absolute; bottom: -0.16em; left: 50%;
  transform: translateX(-50%);
  font-size: clamp(8rem, 24vw, 21rem);
  font-weight: 900; letter-spacing: 0.02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(191, 163, 114, 0.14);
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* ════════════════ REVEAL SYSTEM ════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--rd, 0ms);
}
[data-reveal='scale'] { transform: translateY(1.5rem) scale(0.96); }
[data-reveal='line'] { transform: translateY(118%) rotate(2deg); opacity: 1; transition: transform 1s var(--ease-expo); transition-delay: var(--rd, 0ms); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 64rem) {
  .nav__links, .nav__lang { display: none; }
  .nav__burger { display: flex; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 4rem; }
  .manifesto__media { max-width: 34rem; }
  .float-card { left: 1rem; }
  .flagship { grid-template-columns: 1fr; }
  .flagship__media { min-height: 14rem; }
  .flagship__media::after { background: linear-gradient(180deg, transparent 50%, var(--night-3) 100%); }
  .formations__grid { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__cell--phone { grid-row: span 2; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 34rem; margin-inline: auto; }
  .steps__list { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat:nth-child(3) { border-left: none; }
  .hero-stat:nth-child(n + 3) { border-top: 1px solid var(--w08); }
  .hero__scroll { display: none; }
}
@media (max-width: 44rem) {
  .hero__eyebrow { letter-spacing: 0.22em; font-size: 0.68rem; gap: 0.6rem; }
  .hero__stars { letter-spacing: 0.15em; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head--center { align-items: center; }
  .plus-list { grid-template-columns: 1fr; gap: 0.7rem; max-width: 30rem; }
  .formations__footer .btn { white-space: normal; max-width: 100%; }
  .formations__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__cell--cert .bento__cert-content { max-width: 100%; }
  .bento__cell--lang {
    grid-template-columns: 1fr;
    grid-template-areas: 'icon' 'title' 'desc' 'langs';
    row-gap: 0.4rem;
    align-items: start;
  }
  .bento__cell--lang .bento__icon { margin-bottom: 0.6rem; }
  .bento__langs { justify-content: flex-start; margin-top: 0.6rem; }
  .hero__cta .btn { width: 100%; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stat { padding: 1.1rem 1rem; }
  .hero-stat__label { font-size: 0.7rem; }
  .heritage__stats { grid-template-columns: 1fr; gap: 0.9rem; max-width: 22rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer__bottom { flex-direction: column; padding-bottom: 6rem; }
  .manifesto__media::before { display: none; }
  .float-card { position: static; margin-top: 1rem; animation: none; width: fit-content; }
  .cta__stores { flex-direction: column; align-items: center; }
}

/* Garde : navigateurs sans -webkit-text-stroke */
@supports not (-webkit-text-stroke: 1px #000) {
  .marquee__group span { color: var(--w15); }
  .step__num { color: rgba(191, 163, 114, 0.55); }
  .footer__watermark { color: rgba(191, 163, 114, 0.08); }
}

/* ════════════════ REDUCED MOTION ════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], .line, .hero__eyebrow, .hero__lead, .hero__sub, .hero__note,
  .hero__cta, .hero__badges, .hero__stats {
    opacity: 1 !important; transform: none !important;
  }
  .manifesto__statement .w, .quote-band blockquote .w { opacity: 1 !important; }
  .cursor, .cursor-dot, .grain { display: none !important; }
  .phone__progress span { width: var(--p) !important; }
}
