:root {
  --bg: #0A0A0A;
  --bg-alt: #0D0D0D;
  --gold: #C9A84C;
  --cyan: #1ABFB8;
  --text: #F5F5F0;
  --text-dim: rgba(245, 245, 240, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(26, 191, 184, 0.15);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* `clip` ne crée pas de conteneur de défilement, contrairement à `hidden`,
   et laisse donc `position: sticky` fonctionner dans le showcase. */
@supports (overflow: clip) {
  body { overflow-x: clip; }
}

/* Grain overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Glows */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.glow-gold {
  top: -180px; right: -140px;
  width: 560px; height: 560px;
  background: rgba(201, 168, 76, 0.16);
}
.glow-cyan {
  bottom: -220px; left: -160px;
  width: 520px; height: 520px;
  background: rgba(26, 191, 184, 0.12);
}
.glow-cyan-soft {
  top: 10%; left: -200px;
  width: 460px; height: 460px;
  background: rgba(26, 191, 184, 0.07);
}
.glow-gold-soft {
  top: -100px; right: -180px;
  width: 500px; height: 500px;
  background: rgba(201, 168, 76, 0.1);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(245, 245, 240, 0.06);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-links {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 34px;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.55);
  text-decoration: none;
  position: relative;
  transition: color 0.35s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
}
.logo-dot { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #0A0A0A;
  text-decoration: none;
  background: var(--text);
  padding: 7px 7px 7px 18px;
  border-radius: 100px;
  transition: gap 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { gap: 14px; background: var(--gold); }
.cta-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0A0A0A;
  color: var(--text);
  transition: transform 0.35s var(--ease);
}
.cta-arrow svg { width: 14px; height: 14px; }
.nav-cta:hover .cta-arrow { transform: scale(1.1); }
.cta-short { display: none; }

/* Layout */
.section {
  position: relative;
  padding: 130px 28px;
  overflow: hidden;
  scroll-margin-top: 72px;
}
.section-alt { background: var(--bg-alt); }
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
  opacity: 0.4;
}

/* Typography */
.eyebrow, .label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 26px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.02;
  margin-bottom: 34px;
}
.section-title-lg { font-size: clamp(2.8rem, 8vw, 5.6rem); }



/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Le poster est le fond par défaut : la vidéo, quand elle est chargée,
   vient simplement se poser par-dessus. Aucun flash noir au chargement. */
.hero-media {
  position: absolute;
  inset: 0;
  background: #0A0A0A url('assets/hero-poster.jpg') center/cover no-repeat;
}
/* En portrait, le plan large perdrait 74 % de sa largeur au recadrage :
   on sert une version cadrée pour le vertical (et aucune vidéo). */
@media (max-width: 767px) {
  /* Le recadrage `cover` rogne ~9 % de chaque côté. On le décale vers la gauche :
     la file de droite est répétitive, les deux personnages ne le sont pas. */
  .hero-media {
    background-image: url('assets/hero-mobile.jpg');
    background-position: 32% center;
  }
  .hero-video { object-position: 32% center; }
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms linear;
}
.hero-video.is-active { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    /* assombrit franchement le bas : la typo et le texte doivent primer sur l'image */
    linear-gradient(to bottom,
      rgba(10,10,10,0.6) 0%,
      rgba(10,10,10,0.12) 26%,
      rgba(10,10,10,0.55) 58%,
      rgba(10,10,10,0.93) 84%,
      #0A0A0A 100%),
    radial-gradient(75% 60% at 50% 100%, rgba(10,10,10,0.85), transparent 72%),
    radial-gradient(70% 55% at 78% 40%, rgba(201,168,76,0.14), transparent 70%),
    radial-gradient(60% 50% at 12% 60%, rgba(26,191,184,0.1), transparent 70%);
}
.hero-noise { position: absolute; z-index: 1; opacity: 0.05; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 40px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.85);
  margin-bottom: 14px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.15s forwards;
  text-shadow: 0 1px 12px rgba(10, 10, 10, 0.8);
}
.hero-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(26, 191, 184, 0.5);
  animation: ping 2.6s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(26,191,184,0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(26,191,184,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,191,184,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* Le mot géant — pull-up lettre par lettre */
.hero-word {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(5rem, 20vw, 18rem);
  line-height: 0.8;
  letter-spacing: 0.01em;
  color: var(--text);
  display: flex;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero-word span {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-word.in span { transform: none; opacity: 1; }

.hero-right {
  max-width: 400px;
  padding-bottom: 20px;
}
/* même traitement que l'accroche « SCALE THE NIGHT » : Inter 500 en capitales
   espacées, juste un cran plus grand et un interlignage un peu ouvert */
.hero-lede {
  font-size: clamp(0.74rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.9;
  color: rgba(245, 245, 240, 0.9);
  margin-bottom: 26px;
  text-shadow: 0 1px 16px rgba(10, 10, 10, 0.9);
}
[data-fade] { opacity: 0; }
[data-fade].in { animation: fadeUp 0.9s var(--ease) forwards; }

/* Bouton pilule */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--text);
  color: #0A0A0A;
  font-size: 0.92rem;
  font-weight: 400;
  text-decoration: none;
  padding: 8px 8px 8px 22px;
  border-radius: 100px;
  transition: gap 0.35s var(--ease), background 0.35s var(--ease);
}
.pill:hover { gap: 18px; background: var(--gold); }
.pill-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0A0A0A;
  color: var(--text);
  transition: transform 0.35s var(--ease);
}
.pill-icon svg { width: 17px; height: 17px; }
.pill:hover .pill-icon { transform: scale(1.1); }

/* Bandeau défilant */
.hero-ticker {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(245, 245, 240, 0.09);
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: ticker 42s linear infinite;
}
.ticker-track span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.42);
  white-space: nowrap;
}
.ticker-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Buttons */
.btn {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  font-family: inherit;
}
.btn-gold {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-gold:hover {
  background: #d9b95c;
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  border-color: rgba(245, 245, 240, 0.18);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Glass */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
}

.dash-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* ============ 02. AVANT / APRÈS ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.split-side {
  position: relative;
  border: 1px solid rgba(245, 245, 240, 0.07);
  border-radius: 6px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  overflow: hidden;
}
.split-before { background: rgba(255, 255, 255, 0.012); }
.split-after {
  background: var(--glass-bg);
  border-color: var(--glass-border);
}
.split-after::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  background: radial-gradient(80% 60% at 50% 0%, rgba(26,191,184,0.1), transparent 70%);
  pointer-events: none;
}
.split-tag {
  align-self: flex-start;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.split-tag-bad {
  color: rgba(245, 245, 240, 0.45);
  border: 1px solid rgba(245, 245, 240, 0.12);
}
.split-tag-good {
  color: var(--cyan);
  border: 1px solid rgba(26, 191, 184, 0.3);
}

/* Bulles de messages qui s'empilent */
.chaos {
  flex: 1;
  position: relative;
  min-height: 190px;
}
.bubble {
  position: absolute;
  left: 0;
  top: calc(var(--i) * 34px);
  max-width: 82%;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 245, 240, 0.06);
  border-radius: 12px 12px 12px 3px;
  padding: 9px 13px;
  transform: rotate(calc((var(--i) - 2) * 0.9deg)) translateY(14px);
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i) * 140ms);
}
.bubble:nth-child(even) { left: 12%; }
[data-reveal].in .bubble {
  opacity: 1;
  transform: rotate(calc((var(--i) - 2) * 0.9deg));
}

/* Mini dashboard */
.mini-dash { flex: 1; }
.mini-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.05);
}
.mini-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.mini-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.6);
}
.mini-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: 0.03em;
}
.mini-bar {
  height: 2px;
  background: rgba(245, 245, 240, 0.08);
  margin-top: 24px;
  overflow: hidden;
}
.mini-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: width 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.mini-cap {
  font-size: 0.68rem;
  font-weight: 200;
  color: var(--text-dim);
  margin-top: 10px;
}

.split-foot {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 245, 240, 0.06);
}
.split-metric {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  letter-spacing: 0.02em;
}
.split-metric-bad { color: rgba(245, 245, 240, 0.22); }
.split-metric-good { color: var(--gold); }
.split-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ============ 03. LE SYSTÈME — showcase ============ */
/* `overflow: hidden` sur la section empêcherait la colonne collante de tenir */
.sec-system { overflow: clip; }
.sec-system .glow-cyan-soft { left: -60px; }

.showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}
.showcase-visual {
  position: sticky;
  top: 96px;
}
.stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
}
.scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  pointer-events: none;
}
.scene.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Scène 1 — billet */
.ticket {
  position: relative;
  width: min(300px, 100%);
  background: rgba(245, 245, 240, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 6px;
  padding: 22px 22px 20px;
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.ticket-name {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.7);
  margin-bottom: 6px;
}
.ticket-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 22px;
}
.ticket-perf {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 62px;
  border-top: 1px dashed rgba(245, 245, 240, 0.14);
}
.ticket-cta { position: relative; z-index: 1; }
.ticket-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  border-radius: 3px;
  animation: btnPulse 2.8s var(--ease) infinite;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.35); }
  50%      { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}
.ticket-secure {
  display: block;
  text-align: center;
  font-size: 0.6rem;
  color: var(--text-dim);
  margin-top: 10px;
}

/* Scène 2 — QR à la porte */
.qr-wrap { position: absolute; inset: 0; }
.qr-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.qr-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 150px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 14px;
  overflow: hidden;
}
.qr-code {
  height: 96px;
  border-radius: 3px;
  background-color: var(--text);
  background-image:
    repeating-linear-gradient(90deg, #0A0A0A 0 6px, transparent 6px 12px),
    repeating-linear-gradient(0deg, #0A0A0A 0 6px, transparent 6px 12px);
  background-size: 24px 24px, 24px 24px;
  opacity: 0.9;
}
.qr-scan {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 14px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 12px rgba(26, 191, 184, 0.8);
  animation: scanline 2.4s ease-in-out infinite;
}
@keyframes scanline {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(94px); }
}
.qr-status {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: center;
  margin-top: 12px;
}

/* Scène 3 — affiliation */
.promo-panel {
  width: min(340px, 100%);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 20px 20px 16px;
}
.panel-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.promo-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 245, 240, 0.05);
}
.promo-av {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(26, 191, 184, 0.12);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 500;
  flex-shrink: 0;
}
.promo-name {
  flex: 1;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 245, 240, 0.75);
}
.promo-sold {
  font-size: 0.7rem;
  color: var(--text-dim);
}
.promo-cut {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  min-width: 54px;
  text-align: right;
}
.panel-foot {
  font-size: 0.64rem;
  font-weight: 200;
  color: var(--text-dim);
  margin-top: 14px;
}

/* Scène 4 — carrés VIP */
.vip-wrap { position: absolute; inset: 0; }
.vip-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.vip-tags {
  position: absolute;
  left: 26px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.vip-tag {
  font-size: 0.66rem;
  font-weight: 400;
  color: var(--cyan);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 191, 184, 0.3);
  border-radius: 100px;
  padding: 7px 14px;
}
.vip-tag.is-taken {
  color: var(--text-dim);
  border-color: rgba(245, 245, 240, 0.1);
  text-decoration: line-through;
}

/* Scène 5 — dashboard live */
.live-panel {
  width: min(320px, 100%);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  padding: 24px 24px 20px;
  text-align: center;
}
.live-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 22px;
}
.live-time {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--cyan);
}
.live-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.live-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 8px 0 22px;
}
.live-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 245, 240, 0.07);
}
.live-rows span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.live-rows b {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* Étapes du showcase */
.showcase-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.shstep {
  padding: 30px 0 30px 26px;
  border-left: 1px solid rgba(245, 245, 240, 0.09);
  position: relative;
  cursor: pointer;
  transition: border-color 0.5s var(--ease);
}
.shstep::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.shstep.is-active::before { transform: scaleY(1); }
.shstep-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  transition: color 0.5s var(--ease);
}
.shstep.is-active .shstep-num { color: var(--cyan); }
.shstep h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 6px 0 8px;
  color: rgba(245, 245, 240, 0.4);
  transition: color 0.5s var(--ease);
}
.shstep.is-active h3 { color: var(--text); }
.shstep p {
  font-size: 0.9rem;
  font-weight: 200;
  color: rgba(245, 245, 240, 0.35);
  max-width: 42ch;
  transition: color 0.5s var(--ease);
}
.shstep.is-active p { color: rgba(245, 245, 240, 0.65); }

/* ============ 04. MODULES ============ */
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.upsell-card {
  display: block;
  padding: 28px 26px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.upsell-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.upsell-icon {
  display: block;
  width: 24px;
  height: 24px;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: color 0.5s var(--ease);
}
.upsell-icon svg { width: 100%; height: 100%; }
.upsell-card:hover .upsell-icon { color: var(--gold); }
.upsell-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.upsell-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.upsell-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--gold);
  white-space: nowrap;
}
.upsell-card p {
  font-size: 0.86rem;
  font-weight: 200;
  color: rgba(245, 245, 240, 0.5);
}

/* ============ 05. TARIFS ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  max-width: 780px;
  margin-bottom: 38px;
}
.price-card {
  padding: 36px 32px;
  position: relative;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.price-card:hover { transform: translateY(-5px); }
.price-card-featured { border-color: rgba(201, 168, 76, 0.35); }
.price-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.price-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 22px;
}
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li {
  font-size: 0.88rem;
  font-weight: 200;
  color: rgba(245, 245, 240, 0.6);
  padding: 8px 0 8px 20px;
  position: relative;
  border-bottom: 1px solid rgba(245, 245, 240, 0.05);
}
.price-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 1px;
  background: var(--cyan);
}
.commission-note {
  font-size: 1rem;
  font-weight: 200;
  color: rgba(245, 245, 240, 0.6);
  max-width: 46ch;
}

/* ============ 06. ÉTAPES ============ */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  padding-top: 30px;
}
.steps-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(245, 245, 240, 0.08);
  overflow: hidden;
}
.steps-line i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.step-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: rgba(201, 168, 76, 0.35);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.9rem;
  font-weight: 200;
  color: rgba(245, 245, 240, 0.5);
}

/* ============ 07. CONTACT ============ */
.sec-contact { position: relative; }
.contact-bg { position: absolute; inset: 0; }
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.contact-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0A0A0A 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.85) 100%);
}

/* Formulaire */
.contact-form {
  max-width: 560px;
  padding: 34px 32px;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 2px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 300;
  padding: 12px 14px;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--cyan);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(245, 245, 240, 0.22); }
.form-status {
  font-size: 0.85rem;
  font-weight: 200;
  color: var(--cyan);
  margin-top: 14px;
  min-height: 1.2em;
}

/* Footer */
.footer {
  padding: 56px 28px;
  border-top: 1px solid rgba(245, 245, 240, 0.06);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-logo { font-size: 1.3rem; }
/* même traitement que l'accroche du hero — ce sont les mêmes mots */
.footer-tagline {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  flex: 1;
}
.footer-legal {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.footer-legal:hover { color: var(--cyan); }

/* Reveals */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}


/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .showcase {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  /* Le visuel reste collant en haut de l'écran et continue de changer
     au fil du scroll — c'est tout l'intérêt de la section. */
  .showcase-visual {
    position: sticky;
    top: 64px;
    z-index: 2;
    /* voile sous la carte pour que le texte qui défile passe proprement dessous */
    padding-bottom: 18px;
    background: linear-gradient(to bottom, var(--bg) 88%, transparent);
  }
  .stage { aspect-ratio: 16 / 11; }
  .shstep { padding: 26px 0 26px 20px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-content {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 22px;
  }
  .hero-right { max-width: 100%; padding-bottom: 0; }
  .hero-word { font-size: clamp(4.5rem, 26vw, 11rem); }
  .split { grid-template-columns: 1fr; }
  .split-side { min-height: 0; }
}

@media (max-width: 640px) {
  .section { padding: 82px 20px; }
  .section-title { margin-bottom: 26px; }
  .nav-inner { padding: 14px 20px; }
  .nav-cta { font-size: 0.7rem; padding: 6px 6px 6px 15px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .cta-arrow { width: 26px; height: 26px; }

  .hero { min-height: 540px; }
  .hero-content { padding: 0 20px 20px; }
  .hero-eyebrow { font-size: 0.58rem; letter-spacing: 0.2em; }
  /* en capitales espacées, il faut descendre plus bas qu'en bas-de-casse */
  .hero-lede {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    line-height: 2;
    margin-bottom: 20px;
  }
  .pill { width: 100%; justify-content: space-between; font-size: 0.88rem; }
  .hero-ticker { padding: 11px 0; }
  .ticker-track { gap: 20px; }
  .ticker-track span { font-size: 0.6rem; letter-spacing: 0.16em; }

  .split { gap: 14px; }
  .split-side { padding: 22px 18px 20px; }
  .chaos { min-height: 200px; }
  .bubble { font-size: 0.74rem; max-width: 90%; }

  .stage { aspect-ratio: 4 / 3; }
  .scene { padding: 18px; }
  .qr-card { right: 14px; bottom: 14px; width: 122px; padding: 11px; }
  .qr-code { height: 78px; }
  @keyframes scanline {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(76px); }
  }
  .vip-tags { left: 14px; bottom: 14px; gap: 6px; }
  .vip-tag { font-size: 0.6rem; padding: 6px 11px; }
  .ticket { padding: 18px; }
  .ticket-price { font-size: 2.4rem; }
  .promo-panel { padding: 16px; }
  .promo-sold { display: none; }

  .upsell-grid { gap: 12px; }
  .upsell-card { padding: 22px 20px; }
  .pricing-grid { gap: 14px; }
  .price-card { padding: 28px 24px; }
  .steps { gap: 30px; }
  .contact-form { padding: 26px 20px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { gap: 14px; }
}

/* Écrans tactiles : pas de survol, on neutralise les états hover */
@media (hover: none) {
  .upsell-card:hover,
  .price-card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-fade] { opacity: 1; }
  .hero-eyebrow { opacity: 1; }
  .hero-word span { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero-media { background: url('assets/hero-poster.jpg') center/cover; }
  .bubble { opacity: 1; }
  html { scroll-behavior: auto; }
}
