/* ============================================================
   48h de la Reprise — Landing page styles
   Design system BSA (HK Grotesk, mint/green) — light theme
   ============================================================ */

/* ----- Fonts ----- */
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Light.ttf") format("truetype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-LightItalic.ttf") format("truetype"); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Italic.ttf") format("truetype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-MediumItalic.ttf") format("truetype"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-SemiBoldItalic.ttf") format("truetype"); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-BoldItalic.ttf") format("truetype"); font-weight: 700; font-style: italic; font-display: swap; }

/* ----- Tokens ----- */
:root {
  --bsa-green-900: #003a2a;
  --bsa-green-700: #006a4e;
  --bsa-green-500: #0f8862;
  --bsa-mint-700: #1f9d7c;
  --bsa-mint-500: #35c7a0;
  --bsa-mint-300: #7adcc0;
  --bsa-mint-200: #b9ebda;
  --bsa-mint-100: #e3f7ee;
  --bsa-paper: #ffffff;
  --bsa-cream: #f2f7f6;
  --bsa-cream-2: #e8efec;
  --bsa-ink-900: #0e1f1a;
  --bsa-ink-700: #28342f;
  --bsa-ink-600: #46524e;
  --bsa-ink-400: #8a938f;
  --bsa-line: #d9e2de;
  --bsa-line-strong: #b8c5bf;
  --bsa-danger: #c0392b;

  --fg-1: var(--bsa-ink-900);
  --fg-2: var(--bsa-ink-600);
  --fg-3: var(--bsa-ink-400);

  --font-sans: "HK Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --shadow-sm: 0 1px 2px rgba(14, 31, 26, 0.06);
  --shadow-md: 0 6px 16px -4px rgba(14, 31, 26, 0.08), 0 2px 4px rgba(14, 31, 26, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(14, 31, 26, 0.16);

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-base: 200ms;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--bsa-cream);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }

a {
  color: var(--bsa-green-700);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}

::selection { background: var(--bsa-mint-200); color: var(--bsa-ink-900); }

:focus-visible {
  outline: 2px solid var(--bsa-mint-500);
  outline-offset: 2px;
  border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  margin: 0;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
p { margin: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   Eyebrow
   ============================================================ */
.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsa-mint-500);
}
.eyebrow-row .bar {
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow-row.on-light { color: var(--bsa-green-700); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 30, 22, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  border: none;
}
.site-header .brand img { height: 36px; width: auto; border-radius: 7px; }
.site-header .brand .event {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  white-space: nowrap;
}
.site-header .brand .event-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 10px #ff3b30, 0 0 0 3px rgba(255, 59, 48, 0.18);
  animation: pulse-red-48 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-red-48 {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}
@media (min-width: 1024px) {
  .site-header .brand .event { font-size: 15px; gap: 10px; }
  .site-header .brand .event-dot { width: 9px; height: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .site-header .brand .event-dot { animation: none; }
}
.site-header .nav { display: flex; gap: 28px; flex: 1; margin-left: 12px; }
.site-header .nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  border: none;
  transition: color var(--dur-base) var(--ease-out);
}
.site-header .nav a:hover { color: #fff; }
.site-header .meta { display: flex; align-items: center; gap: 16px; }
.site-header .date-pill {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
/* Badge promo (utilisé dans le header desktop ET en bas du hero bar mobile) */
.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45);
  animation: promo-pill-pulse 2.4s ease-out infinite;
}
.promo-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  animation: promo-pill-blink 1.6s ease-in-out infinite;
}
@keyframes promo-pill-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
  60%      { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}
@keyframes promo-pill-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-pill,
  .promo-pill::before { animation: none; }
}

/* Variante mobile dans le hero bar — visible uniquement sous 880 px */
.hero-poster-bar .promo-pill--mobile { display: none; }
@media (max-width: 820px) {
  .site-header .nav { display: none; }
  .site-header .date-pill { display: none; }
  .site-header .meta { margin-left: auto; gap: 10px; }
  /* Sur mobile, "48H DE LA REPRISE" est centré horizontalement
     entre le logo (à gauche) et le burger (à droite). */
  .site-header .row { position: relative; }
  .site-header .brand .event {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
}

/* ============================================================
   Burger menu (mobile)
   ============================================================ */
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background var(--dur-base) var(--ease-out);
}
.burger:hover { background: rgba(255,255,255,0.06); }
.burger span {
  display: block;
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: top 200ms var(--ease-out), opacity 160ms var(--ease-out), transform 200ms var(--ease-out);
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
.burger.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }
@media (max-width: 820px) { .burger { display: block; } }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 22, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}
.mobile-nav__panel {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 360px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateY(-12px);
  transition: transform 320ms var(--ease-out);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateY(0); }
.mobile-nav__panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__panel li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav__panel li:last-child { border-bottom: none; }
.mobile-nav__panel a {
  display: block;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 16px 0;
  border-bottom: none;
  transition: color var(--dur-base) var(--ease-out);
}
.mobile-nav__panel a:hover {
  color: var(--bsa-mint-300);
  border-bottom-color: transparent;
}
.mobile-nav__panel .btn { margin-top: 8px; width: 100%; }

body.burger-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .burger span,
  .mobile-nav,
  .mobile-nav__panel { transition: opacity 200ms linear; }
  .mobile-nav__panel { transform: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: inherit;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  font-size: 15px;
  padding: 14px 22px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-mint { background: var(--bsa-mint-500); color: var(--bsa-green-900); border: none; }
.btn-mint:hover { background: var(--bsa-mint-300); }
.btn-lg { font-size: 16px; padding: 17px 28px; border-radius: 14px; }

/* ============================================================
   HERO POSTER
   ============================================================ */
.hero-poster {
  position: relative;
  background: var(--bsa-green-900);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(560px, 72vh, 820px);
  display: flex;
  flex-direction: column;
}
.hero-poster-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-poster-photo {
  position: absolute;
  right: -7%;
  top: 0;
  height: 100%;
  width: 70%;
  object-fit: cover;
  object-position: 35% 22%;
  filter: grayscale(1) contrast(1.15) brightness(1.05);
  mix-blend-mode: lighten;
  opacity: 0.95;
}
.hero-poster-duotone {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bsa-green-900) 0%, var(--bsa-green-900) 30%, rgba(0,58,42,0.95) 42%, rgba(0,58,42,0.6) 55%, rgba(15,136,98,0.35) 75%, rgba(53,199,160,0.2) 100%),
    linear-gradient(180deg, rgba(0,58,42,0) 60%, rgba(0,58,42,0.65) 100%);
  mix-blend-mode: multiply;
}
.hero-poster-fade-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bsa-green-900) 25%, rgba(0,58,42,0.9) 38%, rgba(0,58,42,0) 58%);
  z-index: 1;
  pointer-events: none;
}
.hero-poster-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 50% at 0% 50%, rgba(0,58,42,0.85), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(53,199,160,0.18), transparent 70%);
  pointer-events: none;
}
.hero-poster-inner {
  position: relative;
  z-index: 2;
  padding: 56px clamp(32px, 6vw, 80px) 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 14px 7px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--bsa-mint-500);
  box-shadow: 0 0 0 4px rgba(53, 199, 160, 0.25);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(53, 199, 160, 0.25); }
  50%      { box-shadow: 0 0 0 7px rgba(53, 199, 160, 0.05); }
}
.hero-eyebrow .sep { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }

.hero-title-lockup.poster {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
}
.hero-title-lockup.poster .line-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.hero-title-lockup.poster .word-les {
  font-size: clamp(48px, 6.5vw, 110px);
  font-weight: 800;
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: -8px;
  align-self: flex-start;
  line-height: 1;
}
.hero-title-lockup.poster .word-48h {
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
}
.hero-title-lockup.poster .h-outline {
  -webkit-text-stroke: 4px #fff;
  color: transparent;
}
.hero-title-lockup.poster .line-bottom {
  display: inline-block;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  font-size: clamp(18px, 2.2vw, 34px);
  font-weight: 800;
  padding: 10px 14px 12px;
  margin-top: 10px;
  border-radius: 6px;
  text-align: center;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.hero-poster-jpn {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  align-self: flex-start;
  padding: 10px 16px;
  background: rgba(0, 58, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: clamp(15px, 1.4vw, 18px);
}
.hero-poster-jpn .role {
  color: var(--bsa-mint-300);
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.hero-poster-jpn .name {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Bottom info bar */
.hero-poster-bar {
  position: relative;
  z-index: 2;
  background: rgba(0, 30, 22, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-poster-bar .bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 24px 32px;
  align-items: center;
  padding: 22px 0;
}
.hero-poster-bar .item { display: flex; flex-direction: column; gap: 4px; }
.hero-poster-bar .label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bsa-mint-300);
  font-weight: 700;
}
.hero-poster-bar .value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-poster-bar .cta { display: flex; justify-content: flex-end; }

@media (max-width: 880px) {
  .hero-poster { min-height: auto; }
  /* Photo cantonnée à droite : laisse la moitié gauche libre pour le titre */
  .hero-poster-photo {
    width: 75%;
    right: -5%;
    object-position: 50% 22%;
    opacity: 0.85;
    filter: grayscale(1) contrast(1.05) brightness(1);
  }
  .hero-poster-inner { padding: 36px 22px 28px; gap: 18px; }
  /* Title : LES + 48H alignés à gauche tous les deux */
  .hero-title-lockup.poster .line-top { align-items: flex-start; }
  .hero-poster-bar .bar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 12px;
    padding: 16px 0;
  }
  .hero-poster-bar .cta {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-poster-bar .cta .btn { width: 100%; }
  .hero-poster-bar .promo-pill--mobile { display: inline-flex; }
  .hero-poster-bar .label { font-size: 9px; letter-spacing: 0.14em; }
  .hero-poster-bar .value { font-size: 13px; line-height: 1.3; }

  /* Title : adapté au mobile pour ne pas tout occulter */
  .hero-title-lockup.poster .word-les {
    font-size: clamp(32px, 8.5vw, 56px);
    margin-bottom: -2px;
    -webkit-text-stroke: 1.5px #fff;
  }
  .hero-title-lockup.poster .word-48h { font-size: clamp(72px, 22vw, 120px); line-height: 0.88; }
  .hero-title-lockup.poster .h-outline { -webkit-text-stroke: 1.5px #fff; }
  .hero-title-lockup.poster .line-bottom {
    font-size: clamp(14px, 4vw, 20px);
    padding: 8px 12px 9px;
    margin-top: 8px;
  }
  .hero-poster-jpn {
    font-size: 14px;
    padding: 8px 14px;
    margin-top: 6px;
  }
}

/* Très petits écrans : info bar reste en 3 cols mais valeurs plus compactes */
@media (max-width: 480px) {
  .hero-poster-bar .bar-grid { gap: 12px 10px; padding: 14px 0; }
  .hero-poster-bar .label { font-size: 8.5px; letter-spacing: 0.12em; }
  .hero-poster-bar .value { font-size: 12px; }
}

/* ============================================================
   Hero lede block
   ============================================================ */
.hero-lede-block {
  background: var(--bsa-green-700);
  color: var(--bsa-cream);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-lede-block .lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: rgba(242,247,246,0.92);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}
.hero-lede-block .lede strong { color: #fff; font-weight: 600; }

/* ============================================================
   Stats strip + marquee
   ============================================================ */
.stats-strip {
  background: var(--bsa-cream-2);
  padding: 56px 0 0;
  border-top: 1px solid var(--bsa-line);
  border-bottom: 1px solid var(--bsa-line);
}
.stats-strip > .container { padding-bottom: 56px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats-grid .stat { display: flex; flex-direction: column; gap: 4px; }
.stats-grid .num {
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 700;
  color: var(--bsa-green-700);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats-grid .num .small {
  font-size: 0.5em;
  vertical-align: top;
  color: var(--bsa-mint-700);
}
.stats-grid .label {
  font-size: 13px;
  color: var(--fg-2);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 6px;
  line-height: 1.35;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.hero-marquee {
  position: relative;
  background: var(--bsa-green-900);
  color: rgba(242,247,246,0.7);
  padding: 18px 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-marquee .track {
  display: flex; gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.hero-marquee .track span { display: inline-flex; align-items: center; gap: 56px; }
.hero-marquee .dot {
  width: 5px; height: 5px; background: var(--bsa-mint-500); border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   Section base
   ============================================================ */
.section { padding: 112px 0; }
.section.cream { background: var(--bsa-cream); }
.section.paper { background: var(--bsa-paper); }
.section.deep { background: var(--bsa-green-900); color: var(--bsa-cream); }

.section h2 {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-weight: 700;
  margin: 0;
  color: var(--bsa-ink-900);
}
.section.deep h2, .section h2.on-green { color: #fff; }
.section .lede {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 640px;
}
.section.deep .lede { color: rgba(242,247,246,0.78); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .meta {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}
.section.deep .section-head .meta { color: rgba(242,247,246,0.7); }
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(28px, 7vw, 42px); }
  .section-head { grid-template-columns: 1fr; gap: 16px; align-items: start; margin-bottom: 36px; }
  .section-head .meta { max-width: 540px; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .pitch-cell { padding: 26px 22px; }
  .program-item { padding: 28px 24px; }
  .audience-card { padding: 24px 22px; }
  .speaker-card .body { padding: 18px 18px 20px; }
  .headliner .body { padding: 28px 22px !important; }
  .inscription-cta { padding: 30px 24px; }
  .form-card,
  .faq-item summary { font-size: 16px; }
  .stats-strip { padding: 40px 0 0; }
  .stats-strip > .container { padding-bottom: 40px; }
  .hero-lede-block { padding: 28px 0; }
  .hero-lede-block .lede { font-size: 16px; line-height: 1.5; }
  .hero-marquee { font-size: 11px; padding: 14px 0; }
}

/* ============================================================
   Pitch grid — cards individuelles, hover lift, accent mint
   ============================================================ */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.pitch-cell {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out), border-color 280ms var(--ease-out);
}
.pitch-cell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bsa-mint-500) 0%, var(--bsa-green-700) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--ease-out);
}
.pitch-cell:hover {
  transform: translateY(-4px);
  border-color: var(--bsa-mint-300);
  box-shadow: var(--shadow-lg);
}
.pitch-cell:hover::before { transform: scaleX(1); }

.pitch-cell .step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bsa-line);
}
.pitch-cell .step-num {
  font-size: 42px;
  font-weight: 800;
  font-style: italic;
  color: var(--bsa-mint-500);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pitch-cell .step-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--bsa-green-700);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pitch-cell h3 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--bsa-ink-900);
  text-wrap: balance;
}
.pitch-cell p {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
}

@media (max-width: 920px) { .pitch-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 520px) {
  .pitch-grid { grid-template-columns: 1fr; gap: 14px; }
  .pitch-cell { padding: 28px 24px; }
  .pitch-cell .step-num { font-size: 36px; }
}

/* ============================================================
   Pitch cells animations mobile : accent auto + chiffre pop-in
   (sur desktop : déjà animé par hover, on laisse le hover)
   ============================================================ */
@media (max-width: 920px) {
  /* La ligne mint→green slide automatiquement au reveal
     (puisque pas de hover sur mobile) */
  [data-reveal-stagger].is-visible .pitch-cell::before {
    transform: scaleX(1);
    transition: transform 700ms var(--ease-out);
  }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(1)::before { transition-delay: 200ms; }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(2)::before { transition-delay: 320ms; }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(3)::before { transition-delay: 440ms; }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(4)::before { transition-delay: 560ms; }

  /* Le gros chiffre italique pop-in avec léger bounce */
  [data-reveal-stagger] .pitch-cell .step-num {
    opacity: 0;
    transform: translateY(14px) scale(0.82);
    transition: opacity 600ms var(--ease-out),
                transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  [data-reveal-stagger].is-visible .pitch-cell .step-num {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(1) .step-num { transition-delay: 240ms; }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(2) .step-num { transition-delay: 360ms; }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(3) .step-num { transition-delay: 480ms; }
  [data-reveal-stagger].is-visible .pitch-cell:nth-child(4) .step-num { transition-delay: 600ms; }

  @media (prefers-reduced-motion: reduce) {
    [data-reveal-stagger].is-visible .pitch-cell::before {
      transform: scaleX(1);
      transition: none;
    }
    [data-reveal-stagger] .pitch-cell .step-num {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
}

/* ============================================================
   Speakers
   ============================================================ */
.speakers-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 760px) {
  .speakers-intro { grid-template-columns: 1fr; gap: 16px; }
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .speakers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .speakers-grid { grid-template-columns: 1fr; } }

.speaker-card {
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 240ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.speaker-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--bsa-line-strong);
}
.speaker-card .photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bsa-green-700);
  overflow: hidden;
}
.speaker-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.speaker-card .photo .ribbon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
}
.speaker-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.speaker-card .name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bsa-ink-900);
}
.speaker-card .role {
  font-size: 13px;
  color: var(--bsa-green-700);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-top: 8px;
  line-height: 1.35;
}
.speaker-card .bio {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  margin-top: 14px;
  flex: 1;
}
.speaker-card .row-meta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--fg-3);
  border-top: 1px solid var(--bsa-line);
  padding-top: 14px;
}

/* JPN headliner */
.headliner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--bsa-green-700);
  color: var(--bsa-cream);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
  position: relative;
  isolation: isolate;
}
.headliner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 60% at 100% 0%, rgba(53, 199, 160, 0.18), transparent 60%);
  z-index: -1;
}
.headliner .photo {
  position: relative;
  background: var(--bsa-green-700);
  min-height: 420px;
}
.headliner .photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.headliner .body {
  padding: 56px 56px;
  display: flex; flex-direction: column; gap: 18px;
  justify-content: center;
}
.headliner .role-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
}
.headliner h3 {
  font-size: clamp(34px, 3.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
  font-weight: 700;
}
.headliner .role {
  font-size: 17px;
  color: var(--bsa-mint-300);
  font-weight: 500;
  font-style: italic;
}
.headliner .bio {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(242,247,246,0.82);
}
.headliner blockquote {
  margin: 8px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.headliner blockquote::before { content: "\201C"; opacity: 0.6; }
.headliner blockquote::after { content: "\201D"; opacity: 0.6; }

/* Logos médias dans la card JPN */
.headliner-press {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.headliner-press__eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--bsa-mint-300);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.headliner-press__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  isolation: isolate;
}
.hp-logo {
  display: block;
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.hp-logo:hover { opacity: 1; }

@media (max-width: 880px) {
  .headliner { grid-template-columns: 1fr; }
  .headliner .body { padding: 36px 28px; }
  .headliner .photo { min-height: 320px; }
  .headliner-press__logos { gap: 12px 18px; }
  .hp-logo { height: 22px; max-width: 100px; }
}

/* ============================================================
   Audience grid (Pour qui)
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.audience-card {
  position: relative;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 240ms var(--ease-out);
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bsa-mint-500) 0%, var(--bsa-green-700) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms var(--ease-out);
}
.audience-card:hover::before { transform: scaleX(1); }
.audience-card:hover {
  border-color: var(--bsa-mint-500);
  box-shadow: var(--shadow-md);
}
.audience-card .num {
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--bsa-mint-500);
  letter-spacing: -0.04em;
  line-height: 1;
}
.audience-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--bsa-ink-900);
  line-height: 1.2;
}
.audience-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
}
@media (max-width: 920px) {
  .audience-grid { grid-template-columns: 1fr; }

  /* Pour qui — animations identiques aux pitch cells sur mobile :
     ligne d'accent qui slide auto + chiffre italique pop-in bounce */
  [data-reveal-stagger].is-visible .audience-card::before {
    transform: scaleX(1);
    transition: transform 700ms var(--ease-out);
  }
  [data-reveal-stagger].is-visible .audience-card:nth-child(1)::before { transition-delay: 200ms; }
  [data-reveal-stagger].is-visible .audience-card:nth-child(2)::before { transition-delay: 320ms; }
  [data-reveal-stagger].is-visible .audience-card:nth-child(3)::before { transition-delay: 440ms; }

  [data-reveal-stagger] .audience-card .num {
    opacity: 0;
    transform: translateY(14px) scale(0.82);
    transition: opacity 600ms var(--ease-out),
                transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  [data-reveal-stagger].is-visible .audience-card .num {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  [data-reveal-stagger].is-visible .audience-card:nth-child(1) .num { transition-delay: 240ms; }
  [data-reveal-stagger].is-visible .audience-card:nth-child(2) .num { transition-delay: 360ms; }
  [data-reveal-stagger].is-visible .audience-card:nth-child(3) .num { transition-delay: 480ms; }

  @media (prefers-reduced-motion: reduce) {
    [data-reveal-stagger].is-visible .audience-card::before {
      transform: scaleX(1); transition: none;
    }
    [data-reveal-stagger] .audience-card .num {
      opacity: 1; transform: none; transition: none;
    }
  }
}

/* ============================================================
   Programme (dark section)
   ============================================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 56px;
}
.program-item {
  background: var(--bsa-green-700);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 240ms var(--ease-out);
}
.program-item:hover { background: #00795a; }
.program-item .num {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bsa-mint-500);
}
.program-item h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.15;
}
.program-item p {
  font-size: 15px;
  color: rgba(242,247,246,0.78);
  line-height: 1.55;
}
.program-item .who {
  margin-top: 4px;
  font-size: 12px;
  color: var(--bsa-mint-300);
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) { .program-grid { grid-template-columns: 1fr; } }

/* Teaser sous le grid programme : "d'autres intervenants à venir" */
.program-teaser {
  margin-top: 20px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(53, 199, 160, 0.08);
  border: 1px dashed rgba(53, 199, 160, 0.4);
  border-radius: 14px;
  color: rgba(242, 247, 246, 0.85);
  font-size: 14px;
  line-height: 1.5;
}
.program-teaser strong {
  color: #fff;
  font-weight: 600;
}
.program-teaser__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 480px) {
  .program-teaser { padding: 14px 16px; gap: 12px; font-size: 13px; }
  .program-teaser__icon { width: 28px; height: 28px; font-size: 19px; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.faq-grid .lede {
  font-size: 17px;
  color: var(--fg-2);
  margin-top: 16px;
  line-height: 1.55;
}
@media (max-width: 880px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--bsa-line); padding: 0; }
.faq-item:last-child { border-bottom: 1px solid var(--bsa-line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--bsa-ink-900);
  line-height: 1.35;
  transition: color var(--dur-base) var(--ease-out);
}
.faq-item summary:hover { color: var(--bsa-green-700); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--bsa-cream-2);
  color: var(--bsa-green-700);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px; font-weight: 600;
  transition: all var(--dur-base) var(--ease-out);
}
.faq-item[open] .icon {
  background: var(--bsa-green-700);
  color: #fff;
  transform: rotate(45deg);
}
.faq-item .answer {
  padding: 0 0 24px;
  font-size: 15.5px;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 680px;
}
.faq-item .answer a { color: var(--bsa-green-700); font-weight: 600; }

/* ============================================================
   Spotlight — Cédants en pitch (inédit/exclusif)
   ============================================================ */
.section.spotlight { padding: 80px 0; }
.spotlight-card {
  position: relative;
  width: 100%;
  padding: 64px 56px;
  background: linear-gradient(135deg, var(--bsa-green-900) 0%, var(--bsa-green-700) 100%);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: var(--bsa-cream);
}
.spotlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 100% 0%, rgba(53, 199, 160, 0.28), transparent 60%);
  z-index: -1;
}
.spotlight-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(53, 199, 160, 0.18);
  border: 1px solid rgba(53, 199, 160, 0.5);
  color: var(--bsa-mint-300);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.spotlight-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bsa-mint-500);
  box-shadow: 0 0 0 3px rgba(53, 199, 160, 0.18);
}
/* h2.spotlight-title : on est plus spécifique que .section h2
   pour forcer le blanc sur la card en fond vert */
.spotlight-card .spotlight-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
  margin: 0 auto 18px;
  max-width: 880px;
  text-wrap: balance;
}
.spotlight-msg {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(242, 247, 246, 0.88);
  max-width: 760px;
  margin: 0 auto;
}
.spotlight-msg strong { color: #fff; font-weight: 600; }

@media (max-width: 760px) {
  .section.spotlight { padding: 56px 0; }
  .spotlight-card { padding: 40px 24px; border-radius: 20px; }
  .spotlight-msg { font-size: 15px; }
}

/* ============================================================
   Tagline banner — punchline + communauté avant inscription
   ============================================================ */
.tagline-banner {
  background: var(--bsa-cream-2);
  padding: 56px 24px;
  text-align: center;
  border-top: 1px solid var(--bsa-line);
}
.tagline-quote {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--bsa-ink-900);
  margin: 0 auto;
  max-width: 760px;
  text-wrap: balance;
}
.tagline-sub {
  margin: 16px auto 0;
  font-size: 15px;
  color: var(--bsa-green-700);
  font-weight: 600;
  letter-spacing: 0.005em;
}
@media (max-width: 760px) {
  .tagline-banner { padding: 44px 20px; }
  .tagline-sub { font-size: 14px; }
}

/* ============================================================
   Inscription section
   ============================================================ */
.inscription {
  background: var(--bsa-green-900);
  color: var(--bsa-cream);
  position: relative;
  overflow: hidden;
}
.inscription::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 80% 20%, rgba(53, 199, 160, 0.15), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(15, 136, 98, 0.3), transparent 70%);
}
.inscription .container { position: relative; z-index: 1; }
.inscription-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .inscription-grid { grid-template-columns: 1fr; gap: 40px; } }
.inscription h2 {
  color: #fff;
  font-size: clamp(38px, 4.4vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.inscription .lede { color: rgba(242,247,246,0.78); }

.inscription .info {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.inscription .info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.inscription .info-item:last-child { border-bottom: none; }
.inscription .info-item .ico {
  width: 32px; height: 32px;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
}
.inscription .info-item .label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsa-mint-300);
  font-weight: 600;
  margin-bottom: 4px;
}
.inscription .info-item .value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  line-height: 1.4;
}

/* CTA card on the right (replaces inline form — opens modal) */
.inscription-cta {
  background: var(--bsa-paper);
  color: var(--bsa-ink-900);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.inscription-cta .form-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsa-mint-700);
  background: var(--bsa-mint-100);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: center;
}
.inscription-cta h3 {
  font-size: 28px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--bsa-ink-900);
  line-height: 1.1;
}
.inscription-cta .price-line {
  font-size: 14px; color: var(--fg-2);
  margin-bottom: 8px;
}
.inscription-cta .price {
  font-weight: 700;
  color: var(--bsa-ink-900);
  font-size: 18px;
}

/* Bloc prix avec réduction (CTA card) */
.inscription-cta .form-eyebrow--promo {
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  box-shadow: 0 0 0 0 rgba(53, 199, 160, 0.55);
  animation: lw-promo-pulse 2.4s ease-out infinite;
}
.inscription-cta .form-eyebrow--promo .promo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: lw-promo-blink 1.6s ease-in-out infinite;
}
@keyframes lw-promo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53, 199, 160, 0.55); }
  60%      { box-shadow: 0 0 0 10px rgba(53, 199, 160, 0); }
}
@keyframes lw-promo-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.85); }
}

.inscription-cta .price-context {
  margin: -4px 0 12px;
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.4;
}

/* Item Tarif mis en avant dans la liste info à gauche */
.inscription .info-item--promo {
  border-bottom: none !important;
  margin-top: 4px;
  padding: 18px 16px !important;
  background: rgba(53, 199, 160, 0.08);
  border: 1px solid rgba(53, 199, 160, 0.28);
  border-radius: 10px;
}
.inscription .info-item--promo .ico {
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  font-size: 18px;
}
.inscription .info-item--promo .label {
  color: var(--bsa-mint-300);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .inscription-cta .form-eyebrow--promo,
  .inscription-cta .form-eyebrow--promo .promo-dot {
    animation: none;
  }
}
.inscription-cta .price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 4px 0 6px;
}
.inscription-cta .price-old {
  font-size: 17px;
  color: var(--fg-3);
  text-decoration: line-through;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.inscription-cta .price-now {
  font-size: 44px;
  font-weight: 800;
  color: var(--bsa-ink-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.inscription-cta .price-now small {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-2);
  letter-spacing: 0;
  margin-left: 4px;
}
.inscription-cta .price-save {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 10px;
  background: var(--bsa-mint-100);
  color: var(--bsa-mint-700);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Tarif dans la liste info à gauche (section inscription, fond dark) */
.inscription .info-item .value .price-old {
  display: inline-block;
  text-decoration: line-through;
  color: rgba(242,247,246,0.45);
  font-weight: 500;
  margin-right: 8px;
}
.inscription .info-item .value strong {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
}
.inscription .info-item .value .price-note {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(242,247,246,0.65);
  font-weight: 500;
}

/* Sticky CTA mobile : prix barré inline */
.sticky-cta .price .price-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  font-size: 12px;
  margin-right: 4px;
}

/* FAQ : paragraphes dans la réponse */
.faq-item .answer p { margin: 0; }
.faq-item .answer p + p { margin-top: 10px; }
.inscription-cta .form-fineprint {
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.5;
  margin-top: 8px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bsa-green-900);
  color: rgba(242,247,246,0.7);
  padding: 64px 0 32px;
}
.site-footer .row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) {
  .site-footer .row { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  /* 2 cols sur mobile : brand-block prend toute la 1ère ligne, puis
     les 3 colonnes de liens se répartissent sur 2 + 1 (col 2 vide
     compense via le naturel de la grid auto-flow). */
  .site-footer .row { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .site-footer .brand-block { grid-column: 1 / -1; }
  .site-footer .legal { flex-direction: column; align-items: flex-start; gap: 6px; }
}
.site-footer .brand-block .signature {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}
.site-footer p {
  color: rgba(242,247,246,0.6);
  font-size: 14px;
  line-height: 1.55;
  max-width: 320px;
}
.site-footer h5 {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsa-mint-300);
  margin: 0 0 16px;
  font-weight: 700;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer a {
  color: rgba(242,247,246,0.78);
  font-size: 14px;
  border: none;
  text-decoration: none;
}
.site-footer a:hover { color: #fff; border-bottom-color: transparent; }
.site-footer .legal {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(242,247,246,0.5);
}
.site-footer .legal a {
  color: inherit;
  font-size: inherit;
}

/* ============================================================
   Animations — entrée hero, reveal au scroll, stagger
   ============================================================ */

/* Reveal au scroll (container) */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Reveal stagger : enfants directs animés en cascade */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
[data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 320ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { transition-delay: 400ms; }
[data-reveal-stagger].is-visible > *:nth-child(7) { transition-delay: 480ms; }
[data-reveal-stagger].is-visible > *:nth-child(8) { transition-delay: 560ms; }

/* Entrée du hero au chargement : cascade de fade + translate up */
@keyframes hero48-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-poster-inner > * {
  animation: hero48-rise 800ms var(--ease-out) both;
}
.hero-poster-inner > .hero-eyebrow         { animation-delay: 100ms; }
/* Le title est anime mot par mot (cinema reveal) plutot qu'en bloc */
.hero-poster-inner > .hero-title-lockup    { animation: none; opacity: 1; transform: none; }
.hero-poster-inner > .hero-poster-jpn      { animation-delay: 1100ms; }
.hero-poster-bar { animation: hero48-rise 800ms var(--ease-out) 1280ms both; }

/* === Hero title — cinema reveal === */
@keyframes word48-rise {
  from { opacity: 0; transform: translateY(60px); filter: blur(12px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes pill48-wipe {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
.hero-title-lockup.poster .word-les {
  display: inline-block;
  will-change: opacity, transform, filter;
  animation: word48-rise 1100ms var(--ease-out) 280ms both;
}
.hero-title-lockup.poster .word-48h {
  display: inline-block;
  /* Pas de fade : les digits "défilent" via JS (initTitleCount) */
}
.count-title {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
}

.hero-title-lockup.poster .line-bottom {
  /* Caché par défaut puis dévoilé par le wipe */
  clip-path: inset(0 100% 0 0);
  animation: pill48-wipe 900ms var(--ease-out) 920ms forwards;
  will-change: clip-path;
}

@media (prefers-reduced-motion: reduce) {
  .hero-poster-inner > * { animation: none; opacity: 1; transform: none; }
  .hero-poster-bar { animation: none; opacity: 1; transform: none; }
  .hero-title-lockup.poster .word-les,
  .hero-title-lockup.poster .word-48h {
    animation: none; opacity: 1; transform: none; filter: none;
  }
  .hero-title-lockup.poster .line-bottom {
    animation: none; clip-path: none;
  }
}

/* Aurora subtile sur les sections sombres (programme + inscription) */
.section.deep,
.section.inscription { isolation: isolate; }
.section.deep::before,
.section.inscription::before {
  /* L'inscription en a déjà un — voir plus haut. Pour deep on ajoute */
}
.section.deep .container,
.section.inscription .container { position: relative; z-index: 1; }

.section-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
.section-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.section-aurora__blob--1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(53,199,160,0.32) 0%, rgba(53,199,160,0) 70%);
  right: -10%;
  top: -10%;
  animation: aurora48-1 26s ease-in-out infinite;
}
.section-aurora__blob--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0,156,114,0.28) 0%, rgba(0,156,114,0) 70%);
  left: -15%;
  bottom: -10%;
  animation: aurora48-2 30s ease-in-out infinite;
}
@keyframes aurora48-1 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(40px, 30px, 0); }
}
@keyframes aurora48-2 {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(-50px, -40px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
  .hero-poster-inner > *,
  .hero-poster-bar { animation: none; }
  .section-aurora__blob { animation: none; }
  .hero-marquee .track { animation: none; transform: translateX(0); }
  .hero-eyebrow .dot { animation: none; }
}

/* ============================================================
   Sticky bottom CTA (mobile only)
   Sur mobile, on cache le bouton "S'inscrire" du header et on
   met le CTA "Réserver ma place" en sticky bas — plus mis en valeur.
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px;
  background: rgba(0, 58, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* Caché par défaut, slide up quand JS ajoute .is-visible */
  transform: translateY(110%);
  transition: transform 360ms var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .price { color: #fff; font-weight: 700; font-size: 15px; line-height: 1.15; }
.sticky-cta .price small {
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  font-size: 11px;
  display: block;
}
@media (max-width: 820px) {
  .sticky-cta { display: flex; }
  .site-header .meta .btn-mint { display: none; }
  .site-footer { padding-bottom: 100px; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

/* ============================================================
   MODAL D'INSCRIPTION
   ============================================================ */
.lw-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}
.lw-modal[hidden] { display: none; }
.lw-modal.is-open { opacity: 1; pointer-events: auto; }

.lw-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}
.lw-modal__panel {
  position: relative;
  background: linear-gradient(180deg, #0f1f18 0%, #0a0f0d 100%);
  border: 1px solid rgba(53, 199, 160, 0.22);
  border-radius: 14px;
  padding: 32px 28px 24px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 280ms var(--ease-out);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  color: #fff;
}
.lw-modal.is-open .lw-modal__panel { transform: translateY(0) scale(1); }

.lw-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  font-family: inherit;
  transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.lw-modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.lw-modal__head { margin-bottom: 22px; }
.lw-modal__eyebrow {
  color: var(--bsa-mint-500);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.lw-modal__title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.lw-modal__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.45;
}

/* Bloc promo / code REPRISE15 */
.lw-modal__promo {
  margin-bottom: 22px;
  padding: 16px 16px 14px;
  border-radius: 12px;
  background: rgba(53, 199, 160, 0.06);
  border: 1px solid rgba(53, 199, 160, 0.22);
  transition: background 240ms var(--ease-out), border-color 240ms var(--ease-out);
}
.lw-modal__promo-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(53, 199, 160, 0.18);
  border: 1px solid rgba(53, 199, 160, 0.45);
  color: var(--bsa-mint-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lw-modal__promo-tier::before {
  content: "★";
  color: var(--bsa-mint-500);
  margin-right: 2px;
}
.lw-modal__promo-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.lw-modal__promo-old {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
  letter-spacing: -0.01em;
}
.lw-modal__promo-now {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.lw-modal__promo-now small {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.lw-modal__promo-save {
  font-size: 11px;
  color: var(--bsa-mint-300);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lw-modal__promo-code {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  margin-bottom: 10px;
}
.lw-modal__promo-code-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}
.lw-modal__promo-code-value {
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.10em;
  margin-left: auto;
}
.lw-modal__promo-code-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 58, 42, 0.22);
  background: rgba(0, 58, 42, 0.06);
  color: var(--bsa-green-900);
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 120ms var(--ease-out);
}
.lw-modal__promo-code-copy:hover {
  background: rgba(0, 58, 42, 0.12);
  border-color: rgba(0, 58, 42, 0.35);
}
.lw-modal__promo-code-copy:active { transform: scale(0.94); }
.lw-modal__promo-code-copy .icon-check { display: none; }
.lw-modal__promo-code-copy.is-copied .icon-copy { display: none; }
.lw-modal__promo-code-copy.is-copied .icon-check { display: block; }
.lw-modal__promo-code-copy.is-copied {
  background: var(--bsa-green-900);
  border-color: var(--bsa-green-900);
  color: var(--bsa-mint-300);
}
.lw-modal__promo-fineprint {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.46);
  margin: 0;
  line-height: 1.45;
}

.lw-modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lw-modal__field { display: flex; flex-direction: column; gap: 6px; }
.lw-modal__field label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lw-modal__req { color: var(--bsa-mint-500); margin-left: 2px; }
.lw-modal__hint {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}
.lw-modal__field input,
.lw-modal__field select {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  /* 16px minimum pour éviter le zoom auto d'iOS Safari sur focus */
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.lw-modal__field input::placeholder { color: rgba(255, 255, 255, 0.35); }
.lw-modal__field input:focus,
.lw-modal__field select:focus {
  border-color: var(--bsa-mint-500);
  background: rgba(255, 255, 255, 0.08);
}
.lw-modal__field.is-error input,
.lw-modal__field.is-error select {
  border-color: rgba(192, 57, 43, 0.7);
}
.lw-modal__error {
  font-size: 11px;
  color: #e57063;
  margin-top: -2px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}
/* Checkbox membre BSA */
.lw-modal__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 4px 0;
  cursor: pointer;
  user-select: none;
}
.lw-modal__checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.lw-modal__checkbox-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bsa-green-900);
  transition: background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.lw-modal__checkbox-box svg {
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 160ms var(--ease-out), transform 200ms var(--ease-out);
}
.lw-modal__checkbox input:checked ~ .lw-modal__checkbox-box {
  background: var(--bsa-mint-500);
  border-color: var(--bsa-mint-500);
}
.lw-modal__checkbox input:checked ~ .lw-modal__checkbox-box svg {
  opacity: 1;
  transform: scale(1);
}
.lw-modal__checkbox input:focus-visible ~ .lw-modal__checkbox-box {
  outline: 2px solid var(--bsa-mint-300);
  outline-offset: 2px;
}
.lw-modal__checkbox-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}
.lw-modal__checkbox:hover .lw-modal__checkbox-box {
  border-color: rgba(255, 255, 255, 0.5);
}
.lw-modal__checkbox-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--bsa-mint-300);
  margin-left: auto;
  animation: lw-spin 700ms linear infinite;
}
@keyframes lw-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .lw-modal__checkbox-spinner { animation: none; }
}

.lw-modal__submit {
  margin-top: 8px;
  padding: 15px 24px;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.lw-modal__submit:hover { background: var(--bsa-mint-300); }
.lw-modal__submit.is-success { background: var(--bsa-mint-200); color: var(--bsa-green-900); }

.lw-modal__legal {
  margin: 6px 0 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* Success screen inside modal */
.lw-modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0 4px;
  animation: lw-success-fade 360ms var(--ease-out) both;
}
.lw-modal__success[hidden] { display: none; }
.lw-modal__success-icon {
  margin-bottom: 18px;
  filter: drop-shadow(0 0 24px rgba(53, 199, 160, 0.3));
}
.lw-modal__success-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.lw-modal__success-msg {
  margin: 0 0 22px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}
.lw-modal__success-msg strong {
  color: var(--bsa-mint-300);
  font-weight: 700;
}
.lw-modal__success-close {
  padding: 11px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.lw-modal__success-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

@keyframes lw-success-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.lw-modal-open { overflow: hidden; }

@media (min-width: 720px) {
  .lw-modal__panel { padding: 36px 36px 28px; }
  .lw-modal__title { font-size: 28px; }
  .lw-modal__sub { font-size: 14px; }
  .lw-modal__success-title { font-size: 26px; }
  .lw-modal__success-msg { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .lw-modal,
  .lw-modal__panel { transition: opacity 200ms linear; transform: none; }
  .lw-modal.is-open .lw-modal__panel { transform: none; }
  .lw-modal__success { animation: none; }
}

/* ============================================================
   Modal légal (Mentions légales / CGV)
   ============================================================ */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}
.legal-modal[hidden] { display: none; }
.legal-modal.is-open { opacity: 1; pointer-events: auto; }

.legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 22, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.legal-modal__panel {
  position: relative;
  background: var(--bsa-paper);
  color: var(--bsa-ink-900);
  border-radius: 14px;
  padding: 36px 40px 32px;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transform: translateY(20px) scale(0.97);
  transition: transform 280ms var(--ease-out);
}
.legal-modal.is-open .legal-modal__panel {
  transform: translateY(0) scale(1);
}

.legal-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--fg-3);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  font-family: inherit;
  transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.legal-modal__close:hover {
  color: var(--bsa-ink-900);
  background: var(--bsa-cream-2);
}

.legal-modal__content {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-2);
}
.legal-modal__content[hidden] { display: none; }

.legal-modal__content h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bsa-ink-900);
  margin: 0 0 22px;
  padding-right: 40px;
}
.legal-modal__content h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsa-green-700);
  margin: 24px 0 8px;
}
.legal-modal__content p { margin: 0 0 12px; }
.legal-modal__content p strong { color: var(--bsa-ink-900); font-weight: 600; }
.legal-modal__content a {
  color: var(--bsa-green-700);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* Liens légaux dans le footer */
.site-footer .legal-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-footer .legal-links a {
  cursor: pointer;
  border: none;
}
.site-footer .legal-links span[aria-hidden="true"] {
  color: rgba(242, 247, 246, 0.3);
}

@media (max-width: 540px) {
  .legal-modal__panel { padding: 28px 24px 24px; border-radius: 12px; }
  .legal-modal__content h2 { font-size: 22px; padding-right: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .legal-modal,
  .legal-modal__panel { transition: opacity 200ms linear; transform: none; }
  .legal-modal.is-open .legal-modal__panel { transform: none; }
}
