/* Sakili — Beat template style */

@import url('compat.css');

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

:root {
  --accent: #B8FF0E;
  --accent-dim: #9EDD00;
  --accent-glow: rgba(184, 255, 14, 0.5);
  --accent-soft: rgba(184, 255, 14, 0.15);
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-text: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --header-h: 76px;
  --radius: 12px;
  --radius-card: 16px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --bg: #050505;
  --card: #111;
  --card2: #1a1a1a;
  --border: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --muted: #999;
  --dim: #555;
  --on-dark: #fff;
  --header-surface: rgba(5, 5, 5, 0.85);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-weight: 500; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; -o-object-fit: cover; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, -webkit-backdrop-filter 0.4s;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s, -webkit-backdrop-filter 0.4s;
}
.header--scrolled {
  background: rgba(5, 5, 5, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__img { width: 42px; height: 42px; border-radius: 8px; }
.logo__text {
  font-family: 'Lobster', cursive;
  font-weight: 400;
  font-size: 1.65rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--accent);
  line-height: 1;
}
.header__right { display: flex; gap: 10px; align-items: center; }
.header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__nav-label {
  display: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 4px;
  padding: 0 4px;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger--open span:nth-child(2) { opacity: 0; }
.header__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.nav-backdrop[hidden] { display: none; }

/* ── Side nav (dots visibles, labels au survol) ── */
[data-side-nav] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.side-nav {
  --side-nav-label-w: 8.5rem;
  --side-nav-label-h: 2rem;
  position: fixed;
  right: max(20px, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding: 8px 0 8px 8px;
}
.side-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transform: none;
  width: calc(var(--side-nav-label-w) + 22px);
  min-height: var(--side-nav-label-h);
}
.side-nav__item:active {
  transform: none;
}
.side-nav__label {
  position: absolute;
  right: calc(10px + 12px);
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: var(--side-nav-label-w);
  height: var(--side-nav-label-h);
  padding: 0 10px;
  background: var(--accent);
  color: #000;
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 999px;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) scale(0.9);
  transform-origin: center right;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.side-nav:hover .side-nav__label,
.side-nav:focus-within .side-nav__label {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
}
.side-nav:hover .side-nav__item--active .side-nav__label,
.side-nav:focus-within .side-nav__item--active .side-nav__label {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.side-nav:hover .side-nav__item:hover .side-nav__label,
.side-nav:focus-within .side-nav__item:focus-visible .side-nav__label {
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  filter: brightness(1.05);
}
.side-nav__dot {
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid transparent;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.28s ease,
    border-color 0.28s ease;
}
.side-nav__item:hover .side-nav__dot,
.side-nav__item:focus-visible .side-nav__dot {
  transform: scale(1.35);
}
.side-nav__item--active .side-nav__dot {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.95);
  transform: scale(1.55);
}
.side-nav__item--active:hover .side-nav__dot,
.side-nav__item--active:focus-visible .side-nav__dot {
  transform: scale(1.65);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border: none; border-radius: 50px;
  font-family: var(--font);
  font-weight: 500; font-size: 0.9375rem;
  text-transform: capitalize;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--accent); color: #000; border: 1px solid transparent; }
.btn--primary:hover { background: var(--accent-dim); box-shadow: 0 0 30px var(--accent-glow); }
.btn--outline,
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: none;
  box-shadow: none;
  white-space: nowrap;
}
.btn--outline:hover,
.btn--ghost:hover {
  background: transparent;
  color: var(--accent-dim);
  box-shadow: none;
}
.btn--nav {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  border-radius: 50px;
  white-space: nowrap;
}
.btn--nav:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--nav--active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184, 255, 14, 0.08);
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--sm { padding: 8px 18px; font-size: 0.8rem; }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal--d1 { transition-delay: 0.15s; }
.reveal--d2 { transition-delay: 0.3s; }
.reveal--on { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   HERO — plein écran avec slideshow
   ══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 0;
  overflow: hidden;
}

/* Slideshow images */
.hero__slides {
  position: absolute; inset: 0; z-index: 0;
}
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide--on { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--hero-pos, center);
     object-position: var(--hero-pos, center);
  animation: kenBurns 12s ease-in-out infinite alternate;
}
.hero__slide--on img { animation-play-state: running; }
.hero__slide:not(.hero__slide--on) img { animation-play-state: paused; }

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero__shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 40%, rgba(5,5,5,0.2) 100%),
    linear-gradient(to right, rgba(5,5,5,0.7) 0%, transparent 60%);
}

.hero__noise {
  position: absolute; inset: 0; z-index: 2; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 48px;
}

.hero__text {
  flex: 1;
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  position: relative;
}

.hero__eyebrow {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent); margin-bottom: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.hero__cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  gap: 16px;
}
.hero__cta .hero__eyebrow {
  margin: 0 0 16px;
  text-align: center;
  font-family: var(--font-text);
  font-weight: 500;
  letter-spacing: 0.14em;
}
.hero__cta .hero__actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  align-self: center;
  margin-bottom: 20px;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.45),
    0 8px 28px rgba(0, 0, 0, 0.55);
}
.hero__title-accent {
  color: var(--accent);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(184, 255, 14, 0.35);
}

.hero__intro {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
}
.hero__intro-lead {
  max-width: min(640px, 92%);
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 2.1;
  color: #fff;
  text-align: center;
  text-transform: none;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 4px 16px rgba(0, 0, 0, 0.75);
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--dim); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ── Marquee ── */
.marquee {
  background: var(--accent);
  color: #000;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════
   BILLETTERIE — style BEAT
   ══════════════════════════════════ */
.billetterie {
  position: relative;
  background: #000;
  color: #fff;
  --text: #fff;
  --muted: #aaa;
  --dim: #666;
  --border: rgba(255, 255, 255, 0.1);
  --card: #111;
  --card2: #1a1a1a;
  --radius-card: 20px;
}

/* Bandeau vert + titre miroir */
.beat-banner {
  background: var(--accent);
  padding: 48px 0 0;
  overflow: hidden;
}
.beat-banner__inner {
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
}
.beat-title {
  text-align: center;
  line-height: 0.9;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.beat-title__fill {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
}
.beat-title__reflect {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.35);
  transform: scaleY(-1) translateY(-8%);
  opacity: 0.85;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.billetterie__body {
  background: #000;
  padding: 48px 0 120px;
}
.billetterie__inner { position: relative; }

.billetterie__intro {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

/* Billetterie en tête de page — après le marquee */
.marquee + .billetterie .beat-banner {
  padding-top: 20px;
}
.billetterie--upfront .billetterie__body {
  padding-bottom: 72px;
}
.billetterie--upfront + #platform-sections .platform--how {
  padding-top: 0;
}
.platform--how {
  padding-top: 0;
  padding-bottom: 100px;
}
.platform--how .platform__inner {
  padding-top: 48px;
}

/* Toolbar */
.toolbar { margin-bottom: 32px; display: flex; flex-direction: column; gap: 16px; }
.search-box {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.search-box svg { color: var(--muted); flex-shrink: 0; }
.search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search-box input { flex: 1; border: none; background: transparent; color: var(--text); outline: none; }
.search-box input::-moz-placeholder { color: var(--dim); }
.search-box input::placeholder { color: var(--dim); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent; color: var(--muted);
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { color: var(--text); }
.filter-btn--on { background: var(--accent); border-color: var(--accent); color: #000; }

/* Grille événements — style cartes App */
.events-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  text-align: center;
}
.events-more__link {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.3s, opacity 0.3s;
}
.events-more__link:hover {
  color: var(--accent-dim);
  opacity: 0.9;
}

.events-mobile-head {
  display: none;
}

.event-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s;
}
.event-card:hover {
  transform: translateY(-4px);
}
.event-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--card2);
  overflow: hidden;
  border-radius: 24px;
}
.event-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.event-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
  border-radius: inherit;
}
.event-card:hover .event-card__media img {
  transform: scale(1.04);
}
.event-card__body,
.event-card__date {
  display: none;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transition: color 0.3s;
  margin: 0;
}
.event-card__media .event-card__title {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.event-card:hover .event-card__title { color: var(--accent); }
.event-card:hover .event-card__media .event-card__title { color: #fff; }
.event-card__loc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}
.event-card__meta {
  font-size: 0.75rem;
  color: var(--dim);
  line-height: 1.4;
}
.event-card__price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2px;
}
.event-card__cta {
  align-self: flex-start;
  margin-top: 6px;
  padding-left: 0;
  padding-right: 0;
}

.empty { text-align: center; color: var(--muted); padding: 60px; }

/* Page événement (desktop) */
.event-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
  min-height: 100vh;
}
.event-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.event-page__back:hover { color: var(--accent); }
.event-page__back--btn {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.event-page__layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.event-page__hero {
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card2);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.event-page__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-page__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 6px;
}
.event-page__organizer {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.event-page__facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.event-page__facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.event-page__facts svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--muted);
}
.event-page__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
}
.event-page__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.event-page__tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
}
.event-page__about,
.event-page__conditions {
  margin-bottom: 28px;
}
.event-page__about h2,
.event-page__conditions h2 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.event-page__about p,
.event-page__conditions p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.7;
}
.event-page__purchase {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--card);
}
.event-page__purchase-title {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.event-page__purchase-meta {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.event-page__checkout {
  max-width: 520px;
  margin: 0 auto;
  padding: 32px 0;
}
.event-page__checkout h1 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.event-card .tag {
  align-self: flex-start;
}
.tag--concert,
.tag--festival,
.tag--club,
.tag--culture,
.tag--business { background: var(--accent); color: #000; }

/* ══════════════════════════════════
   PLATEFORME — clients, artistes, orga
   ══════════════════════════════════ */
.platform {
  background: var(--bg);
  padding: 100px 0;
}
.platform--how { padding-top: 0; }
.platform--clients,
.platform--artists,
.platform--organizers { padding-top: 0; }

.platform--standalone {
  padding-top: 0;
  padding-bottom: 100px;
}
.platform--standalone .beat-banner--section {
  padding-top: calc(var(--header-h) + 24px);
}

.page-profile__main {
  padding-top: 0;
}
.page-profile .header {
  background: rgba(5, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.platform__inner { padding: 64px 0 0; }

.beat-banner--section {
  padding: 40px 0 0;
}

.platform-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.platform-head__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}
.platform-head__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}
.platform-head__lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  text-transform: none;
  font-weight: 500;
}

/* Images remplaçables */
.platform-img {
  background-color: var(--card2);
  background-size: cover;
  background-position: center;
}
.platform-img--client-feature { background-image: url('/assets/images/platform/client-qr.png'); }
.platform-img--artist { background-image: url('/assets/images/platform/artist-stage.png'); background-position: center 35%; }
.platform-img--artist-lg {
  background-image: url('/assets/images/platform/artist-stage.png');
  min-height: 360px;
  aspect-ratio: 4 / 5;
  background-position: center 30%;
}
.platform-img--musicians { background-image: url('/assets/images/hero/musiciens-dj.png'); }
.platform-img--organizer-lg {
  background-image: url('/assets/images/platform/organizer-scan.png');
  min-height: 360px;
  aspect-ratio: 4 / 5;
  background-position: center 35%;
}
.platform-img--booking { background-image: url('/assets/images/platform/booking-request.png'); background-position: center; }
.platform-img--chat-confirmation { background-image: url('/assets/images/platform/chat-confirmation.png'); background-position: center; }
.platform-img--revenue-stats { background-image: url('/assets/images/platform/revenue-stats.png'); background-position: center; }

/* 3 profils — Comment ça marche (bandeaux horizontaux, distinct des cartes événements) */
.profile-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.profile-card {
  position: relative;
  display: block;
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  min-height: 288px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.profile-card:nth-child(even) {
  flex-direction: unset;
}
.profile-card:hover {
  border-color: rgba(184, 255, 14, 0.4);
  box-shadow: 0 16px 48px rgba(184, 255, 14, 0.07);
  transform: none;
}
.profile-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.profile-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--profile-img-pos, center center);
     object-position: var(--profile-img-pos, center center);
  display: block;
  transition: transform 0.5s var(--ease);
}
.profile-card:hover .profile-card__img {
  transform: scale(1.04);
}
.profile-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 288px;
  width: min(56%, 440px);
  margin-left: auto;
  padding: 32px 36px;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.82) 28%, rgba(5, 5, 5, 0.96) 100%);
}
.profile-card:nth-child(even) .profile-card__body {
  margin-left: 0;
  margin-right: auto;
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.05) 0%, rgba(5, 5, 5, 0.82) 28%, rgba(5, 5, 5, 0.96) 100%);
}
.profile-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.profile-card__title {
  font-size: 1.2rem;
  text-transform: uppercase;
  max-width: 100%;
  color: #fff;
}
.profile-card__desc {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  flex: 1;
  text-transform: none;
  max-width: 100%;
}
.profile-card__cta { align-self: flex-start; margin-top: 8px; }

/* Étapes clients */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.step-card {
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(184, 255, 14, 0.3); }
.step-card__num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
}
.step-card__title {
  font-size: 1rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.step-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  text-transform: none;
  font-weight: 500;
}

.steps-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 8px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: rgba(184, 255, 14, 0.04);
}
.steps-flow span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.steps-flow i {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

/* Split intro */
.platform-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}
.platform-split--flip .platform-split__visual { order: 2; }
.platform-split__visual {
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.platform-split__content .platform-head__title,
.platform-split__content .platform-head__lead { text-align: left; }
.platform-split__content .platform-head__eyebrow { text-align: left; }

/* Line-up artistes — style BEAT */
.lineup {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
.lineup__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: background 0.3s, border-color 0.3s;
}
.lineup__row:hover {
  background: rgba(184, 255, 14, 0.03);
  border-color: rgba(184, 255, 14, 0.25);
}
.lineup__row--flip { direction: rtl; }
.lineup__row--flip > * { direction: ltr; }
.lineup__row--text-only {
  grid-template-columns: 1fr;
  padding: 32px 36px;
  background: linear-gradient(90deg, rgba(184, 255, 14, 0.07) 0%, rgba(184, 255, 14, 0.02) 28%, var(--card) 55%);
}
.lineup__row--text-only .lineup__content {
  max-width: 640px;
}
.lineup__row--text-only .lineup__desc {
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.7;
}
.lineup__media {
  aspect-ratio: 1;
  max-height: 220px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-card) - 4px);
  overflow: hidden;
}
.lineup__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.lineup__title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.lineup__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  text-transform: none;
  font-weight: 500;
  max-width: 480px;
}

/* Pourquoi rejoindre */
.why-block {
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--card);
}
.why-block__title {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.why-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-card) - 4px);
  background: var(--bg);
}
.why-card h4 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.why-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  text-transform: none;
  font-weight: 500;
}

/* Workflow organisateurs */
.workflow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.workflow__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: linear-gradient(90deg, rgba(184, 255, 14, 0.06) 0%, var(--card) 28%);
}
.workflow__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.workflow__step h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.workflow__step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  text-transform: none;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--card);
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: rgba(184, 255, 14, 0.35);
}
.feature-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  text-transform: none;
  font-weight: 500;
}

/* Sliders plateforme — indicateurs style Apple */
.platform-slider__nav {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.platform-slider__dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition:
    width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.platform-slider__dot--on {
  width: 22px;
  background: var(--accent);
  opacity: 1;
}

/* ── Modal ── */
.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s;
}
.modal__panel {
  position: relative; width: 100%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  animation: modalIn 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: none; } }

.modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card2);
  color: var(--text); font-size: 1.2rem; cursor: pointer;
}
.modal-hero-img { width: 100%; aspect-ratio: 16/9; -o-object-fit: cover; object-fit: cover; }
.modal-inner { padding: 28px; }
.modal-inner h2 { font-size: 1.4rem; font-weight: 800; margin: 10px 0; }

.qty-label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
.quantity-control { display: inline-flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.quantity-btn { width: 44px; height: 44px; border: none; background: var(--card2); color: var(--text); font-size: 1.2rem; cursor: pointer; }
.quantity-control input { width: 50px; height: 44px; border: none; background: var(--card); color: var(--text); text-align: center; font-weight: 700; }
.qty-avail { font-size: 0.8rem; color: var(--dim); margin: 8px 0 20px; }
.order-total { display: flex; justify-content: space-between; padding: 16px; background: var(--card2); border-radius: var(--radius); margin-bottom: 20px; }
.order-total strong { color: var(--accent); font-size: 1.2rem; }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.form-group input { width: 100%; padding: 12px 16px; background: var(--card2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); outline: none; }
.form-group input:focus { border-color: var(--accent); }
.form-error { font-size: 0.8rem; color: #ef4444; }
.checkout-notice { font-size: 0.8rem; color: var(--dim); text-align: center; margin-bottom: 16px; }
.checkout-guest-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.5; }
.checkout-legal {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 8px 0 12px;
}
.checkout-legal input { margin-top: 3px; flex-shrink: 0; }
.checkout-legal a { color: var(--accent-soft); text-decoration: underline; }
.summary-card { padding: 16px; background: var(--card2); border-radius: var(--radius); margin-bottom: 20px; display: flex; flex-direction: column; gap: 4px; }

.confirmation { text-align: center; }
.confirmation__icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--accent-soft); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; }
.ticket { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin: 20px 0; text-align: left; }
.ticket h3 { margin: 10px 0 6px; }
.ticket p { font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
.ticket canvas { display: block; margin: 16px auto; }
.ticket-price { color: var(--accent); font-weight: 700; text-align: center; }

.loading, .error-msg { text-align: center; padding: 40px; color: var(--muted); }
.error-msg { color: #ef4444; }

/* ── Footer ── */
.footer { padding: 40px 0 calc(40px + env(safe-area-inset-bottom, 0)); border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; font-size: 0.8rem; color: var(--dim); }
.footer__inner img { border-radius: 6px; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.footer__legal a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--accent); }
.footer__credit {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.5;
}
.footer__credit a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.3s;
}
.footer__credit a:hover { color: var(--accent); }

/* Pages légales */
.page-legal .header {
  background: rgba(5, 5, 5, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.legal-page {
  padding: calc(var(--header-h) + 48px) 0 80px;
  min-height: 60vh;
}
.legal-page__inner {
  max-width: 720px;
}
.legal-page__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}
.legal-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.legal-page__updated {
  font-size: 0.8125rem;
  color: var(--dim);
  margin-bottom: 36px;
}
.legal-prose h2 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 32px 0 12px;
  color: var(--text);
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p,
.legal-prose li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.legal-prose ul {
  margin: 0 0 16px 1.25rem;
  padding: 0;
}
.legal-prose li { margin-bottom: 8px; }
.legal-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-prose a:hover { color: var(--accent-dim); }
.legal-prose strong { color: var(--text); font-weight: 600; }

/* Bannière cookies */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom, 0));
  background: rgba(10, 10, 10, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}
.cookie-banner__text a {
  color: var(--accent);
  font-weight: 600;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .header__burger { display: flex; }
  .header__nav-label { display: block; }
  .header__burger {
    position: relative;
    z-index: 102;
  }
  .header__nav {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0));
    right: 0;
    z-index: 101;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: min(280px, 88vw);
    height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0));
    padding: 20px 16px 24px;
    background: rgba(8, 8, 8, 0.98);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav--open { transform: translateX(0); }
  .header__nav .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.875rem;
    transform: none;
  }
  .header__nav .btn:hover,
  .header__nav .btn:active,
  .header__nav .btn--primary:hover,
  .header__nav .btn--primary:active {
    transform: none;
    box-shadow: none;
  }
  .header__nav .btn--primary {
    margin-top: 8px;
  }

  .profile-cards { max-width: none; padding: 0 16px; }
  .events-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .platform-split { grid-template-columns: 1fr; }
  .platform-split--flip .platform-split__visual { order: -1; }
  .platform-split__visual { order: -1; }
  .lineup__row { grid-template-columns: 1fr; gap: 16px; }
  .lineup__row--flip { direction: ltr; }
  .lineup__media { max-height: none; aspect-ratio: 16/10; width: 100%; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════
   MOBILE — refonte visuelle ≤767px
   ══════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --header-h: 64px;
    --radius-card: 16px;
    --gutter: 16px;
  }

  .container { padding: 0 var(--gutter); }

  /* Side nav */
  .side-nav {
    --side-nav-label-w: 7.25rem;
    --side-nav-label-h: 1.75rem;
    right: max(10px, env(safe-area-inset-right, 0px));
    gap: 12px;
  }
  .side-nav__item {
    width: calc(var(--side-nav-label-w) + 18px);
  }
  .side-nav__label {
    right: calc(8px + 10px);
    padding: 0 8px;
    font-size: 0.52rem;
    letter-spacing: 0.05em;
  }
  .side-nav:hover .side-nav__label {
    transform: translateY(-50%) scale(1);
  }
  .side-nav:hover .side-nav__item:hover .side-nav__label {
    transform: translateY(-50%) scale(1.1);
  }
  .side-nav:hover .side-nav__item--active .side-nav__label {
    transform: translateY(-50%) scale(1.05);
  }
  .side-nav__dot {
    width: 8px;
    height: 8px;
  }
  .side-nav__item:hover .side-nav__dot {
    transform: scale(1.3);
  }
  .side-nav__item--active .side-nav__dot {
    transform: scale(1.45);
  }
  .side-nav__item--active:hover .side-nav__dot {
    transform: scale(1.55);
  }

  /* Header */
  .header {
    padding-top: env(safe-area-inset-top, 0);
    height: calc(var(--header-h) + env(safe-area-inset-top, 0));
  }
  .header:not(.header--scrolled) {
    color: var(--on-dark);
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.72) 0%, transparent 100%);
  }
  .header:not(.header--scrolled) .btn--nav {
    color: var(--on-dark);
    border-color: rgba(255, 255, 255, 0.22);
  }
  .header:not(.header--scrolled) .header__burger {
    border-color: rgba(255, 255, 255, 0.22);
  }
  .header:not(.header--scrolled) .header__burger span {
    background: var(--on-dark);
  }
  .header--scrolled {
    background: var(--header-surface);
    color: var(--text);
  }
  .logo__img { width: 36px; height: 36px; }
  .logo__text { font-size: 1.4rem; }
  .header__right { gap: 6px; }
  .header__burger {
    width: 40px;
    height: 40px;
    padding: 0 8px;
    gap: 5px;
    border: none;
    border-radius: 0;
    background: transparent;
  }
  .header__burger span {
    width: 20px;
    margin: 0 auto;
  }
  .header__burger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header__burger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header:not(.header--scrolled) .header__burger {
    border-color: transparent;
  }
  .header__nav {
    top: calc(var(--header-h) + env(safe-area-inset-top, 0) + 8px);
    right: var(--gutter);
    left: auto;
    width: min(236px, calc(100vw - var(--gutter) * 2));
    height: auto;
    max-height: calc(100dvh - var(--header-h) - env(safe-area-inset-top, 0) - 24px);
    padding: 22px 22px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transform: translateX(calc(100% + var(--gutter) + 8px));
    opacity: 1;
    visibility: visible;
    transition: transform 0.32s var(--ease);
    overflow-y: auto;
    gap: 10px;
  }
  .header__nav--open {
    transform: translateX(0);
  }
  .header__nav-label {
    display: none;
  }
  .header__nav .btn,
  .header__nav .btn--primary {
    display: block;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 18px 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: 0.84rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
    color: var(--muted);
    justify-content: flex-start;
    transition: color 0.2s;
    transform: none;
    position: relative;
    z-index: auto;
  }
  .header__nav .btn--nav--active,
  .header__nav .btn:hover,
  .header__nav .btn:active {
    color: var(--accent);
    background: none;
    border: none;
    box-shadow: none;
    padding: 18px 0;
    transform: none;
  }
  .nav-backdrop {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* Hero */
  .hero {
    color: var(--on-dark);
    min-height: 100svh;
    min-height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-bottom: 0;
  }
  .hero .reveal {
    opacity: 1;
    transform: none;
  }
  .hero__slides {
    clip-path: inset(0 0 0 0);
  }
  .hero__slide img {
    -o-object-position: var(--hero-pos-mobile, var(--hero-pos, center));
       object-position: var(--hero-pos-mobile, var(--hero-pos, center));
    animation: kenBurnsMobile 14s ease-in-out infinite alternate;
  }
  @keyframes kenBurnsMobile {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
  }
  .hero__shade {
    background:
      radial-gradient(
        ellipse 130% 85% at 50% 20%,
        rgba(5, 5, 5, 0.68) 0%,
        rgba(5, 5, 5, 0.32) 45%,
        transparent 72%
      ),
      linear-gradient(to bottom,
        rgba(5, 5, 5, 0.94) 0%,
        rgba(5, 5, 5, 0.72) 20%,
        rgba(5, 5, 5, 0.38) 42%,
        transparent 62%
      ),
      linear-gradient(to top,
        rgba(5, 5, 5, 0.98) 0%,
        rgba(5, 5, 5, 0.78) 18%,
        rgba(5, 5, 5, 0.22) 40%,
        transparent 62%
      );
  }
  .hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100dvh - env(safe-area-inset-top, 0));
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0) + 32px);
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0));
    margin-bottom: 0;
    align-items: stretch;
  }
  .hero__text {
    flex: 1;
    max-width: none;
    width: 100%;
    padding: 0 var(--gutter);
    margin-bottom: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    position: relative;
    isolation: isolate;
  }
  .hero__text::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(140vw, 520px);
    height: min(36vh, 220px);
    background: radial-gradient(
      ellipse 100% 100% at 50% 18%,
      rgba(5, 5, 5, 0.88) 0%,
      rgba(5, 5, 5, 0.45) 42%,
      transparent 76%
    );
    pointer-events: none;
    z-index: 0;
  }
  .hero__title {
    order: 1;
    align-self: center;
    position: relative;
    z-index: 1;
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    margin: 0;
    padding: 0 8px;
    max-width: 100%;
    color: #fff;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.65),
      0 6px 28px rgba(0, 0, 0, 0.75);
  }
  .hero__title-accent {
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.65),
      0 0 32px rgba(184, 255, 14, 0.5);
  }
  .hero__intro {
    order: 2;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    margin: 20px 0 0;
    padding: 0 2px;
    display: flex;
    justify-content: center;
  }
  .hero__intro::before {
    content: '';
    position: absolute;
    inset: -10px -8px;
    background: radial-gradient(
      ellipse 100% 100% at 50% 50%,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.1) 55%,
      transparent 78%
    );
    pointer-events: none;
    z-index: -1;
  }
  .hero__intro-lead {
    max-width: min(94%, 360px);
    margin: 0 auto;
    padding-left: 0;
    border-left: none;
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 2.05;
    text-align: center;
    text-transform: none;
    color: #fff;
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.9),
      0 3px 12px rgba(0, 0, 0, 0.85),
      0 6px 24px rgba(0, 0, 0, 0.65);
  }
  .hero__cta {
    order: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 0;
    margin: 0;
  }
  .hero__cta .hero__eyebrow {
    margin: 0 0 14px;
    font-family: var(--font-text);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-align: center;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
  }
  .hero__cta .hero__actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }
  .hero__cta .hero__actions .btn--lg {
    width: auto;
    max-width: 100%;
    padding: 13px 26px;
    font-size: 0.84rem;
    justify-content: center;
  }
  .hero__scroll { display: none; }

  /* Marquee */
  .marquee { padding: 12px 0; }
  .marquee__track { gap: 28px; }
  .marquee__track span { font-size: 0.68rem; letter-spacing: 0.07em; }

  /* Bandeaux BEAT */
  .marquee + .billetterie .beat-banner { padding-top: 12px; }
  .beat-banner { padding-top: 28px; }
  .beat-banner--section { padding-top: 24px; }
  .platform--standalone .beat-banner--section {
    padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0) + 8px);
  }
  .platform--standalone { padding-bottom: 40px; }
  .beat-banner__inner { padding-bottom: 4px; }
  .beat-title__fill,
  .beat-title__reflect {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    letter-spacing: 0.04em;
  }
  .beat-title__reflect {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.25);
    transform: scaleY(-1) translateY(-4%);
    opacity: 0.5;
  }

  /* Sections plateforme */
  .platform { padding: 36px 0; }
  .platform--how {
    padding-top: 0;
    padding-bottom: 40px;
  }
  .platform--how .platform__inner {
    padding-top: 24px;
  }
  .platform--how .beat-banner--section {
    padding-top: 0;
  }
  .platform--how .platform-head {
    padding: 0 var(--gutter);
    margin-bottom: 20px;
    text-align: center;
  }
  .platform__inner { padding-top: 20px; }
  .platform-head {
    margin-bottom: 24px;
    padding: 0 2px;
  }
  .platform-head__eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
  }
  .platform-head__title { font-size: 1.35rem; line-height: 1.2; }
  .platform-head__lead {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  /* Sliders horizontaux — mobile uniquement */
  .platform-slider {
    margin-bottom: 4px;
  }
  .platform-slider__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 10px;
    mask-image: linear-gradient(to right, transparent, #000 10px, #000 calc(100% - 10px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10px, #000 calc(100% - 10px), transparent);
  }
  .platform-slider__track::-webkit-scrollbar { display: none; }

  .platform-slider__track.profile-cards {
    display: flex;
    max-width: none;
    padding-inline: var(--gutter);
  }
  .platform-slider__track.profile-cards .profile-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
  }

  .platform-slider__track.steps-grid {
    display: flex;
  }
  .platform-slider__track.steps-grid .step-card {
    flex: 0 0 min(76vw, 272px);
    scroll-snap-align: start;
    min-height: 132px;
    padding: 18px 16px;
    border-radius: var(--radius-card);
  }
  .platform-slider__track.steps-grid .step-card__num {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .platform-slider__track.steps-grid .step-card__title { font-size: 0.875rem; }
  .platform-slider__track.steps-grid .step-card__desc {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .platform-slider__track.lineup {
    display: flex;
    flex-direction: row;
    margin-bottom: 28px;
  }
  .platform-slider__track.lineup .lineup__row {
    flex: 0 0 min(84vw, 304px);
    scroll-snap-align: start;
    flex-direction: column;
    direction: ltr;
    margin: 0;
  }
  .platform-slider__track.lineup .lineup__row--flip { direction: ltr; }

  .platform-slider__track.lineup .lineup__row--text-only {
    padding: 22px 20px;
    min-height: 200px;
    justify-content: center;
  }
  .platform-slider__track.lineup .lineup__row--text-only .lineup__desc {
    font-size: 0.8125rem;
  }

  .platform-slider__track.workflow {
    display: flex;
    list-style: none;
    margin-bottom: 20px;
  }
  .platform-slider__track.workflow .workflow__step {
    flex: 0 0 min(76vw, 272px);
    scroll-snap-align: start;
    min-height: 132px;
  }

  .platform-slider__track.feature-grid {
    display: flex;
    margin-bottom: 8px;
  }
  .platform-slider__track.feature-grid .feature-card {
    flex: 0 0 min(70vw, 248px);
    scroll-snap-align: start;
    min-height: 120px;
  }

  .platform-slider__nav {
    display: flex;
    margin-top: 8px;
    padding-bottom: 6px;
  }

  .profile-cards {
    gap: 14px;
    padding: 0 var(--gutter);
  }
  .platform-slider__track.profile-cards .profile-card,
  .profile-card {
    min-height: 280px;
    background: #0a0a0a;
  }
  .profile-card:nth-child(even) {
    flex-direction: unset;
  }
  .profile-card:hover {
    transform: none;
    box-shadow: none;
  }
  .profile-card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .profile-card__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: var(--profile-img-pos, center center);
       object-position: var(--profile-img-pos, center center);
  }
  .profile-card--client { --profile-img-pos: 68% 40%; }
  .profile-card--artiste { --profile-img-pos: 50% 36%; }
  .profile-card--organisateur { --profile-img-pos: 32% 48%; }
  .profile-card__body {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 280px;
    justify-content: flex-end;
    padding: 20px 18px;
    gap: 8px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.15) 100%);
  }
  .profile-card:nth-child(even) .profile-card__body {
    background: linear-gradient(to top, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.15) 100%);
  }
  .profile-card__tag { font-size: 0.62rem; }
  .profile-card__title { font-size: 1rem; max-width: none; color: #fff; }
  .profile-card__desc { font-size: 0.8125rem; line-height: 1.55; max-width: none; color: rgba(255, 255, 255, 0.78); }
  .profile-card__cta {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 20px;
  }

  /* Split artiste / orga */
  .platform-split {
    gap: 18px;
    margin-bottom: 32px;
  }
  .platform-split__visual {
    aspect-ratio: 4 / 5;
    width: 100%;
    min-height: 0;
    max-height: none;
    border-radius: var(--radius-card);
    overflow: hidden;
    background-size: cover;
  }
  .platform-split .platform-img--artist-lg { background-position: center 16%; }
  .platform-split .platform-img--organizer-lg { background-position: center 28%; }
  .platform-split--clients {
    gap: 0;
    margin-bottom: 20px;
  }
  .platform-split--clients .platform-split__visual {
    aspect-ratio: 4 / 5;
    width: 100%;
    min-height: 0;
    max-height: none;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    background-size: cover;
    background-position: 68% 32%;
  }
  .platform--clients .platform-slider {
    margin-bottom: 16px;
  }
  .steps-flow {
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border-radius: var(--radius-card);
  }
  .steps-flow i {
    width: 1px;
    height: 12px;
    transform: rotate(90deg);
  }
  .steps-flow span { font-size: 0.68rem; text-align: center; }

  .platform-split__content .platform-head {
    margin-bottom: 0;
    text-align: left;
  }
  .platform-split__content .platform-head__eyebrow,
  .platform-split__content .platform-head__title,
  .platform-split__content .platform-head__lead {
    text-align: left;
  }
  .platform-split__content .platform-head__title { font-size: 1.3rem; }

  /* Line-up — géré par slider mobile */
  .platform--artists .platform-slider + .why-block { margin-top: 0; }
  .platform-slider__track.lineup .lineup__row {
    padding: 14px;
    gap: 14px;
    border-radius: var(--radius-card);
  }
  .platform-slider__track.lineup .lineup__media {
    aspect-ratio: 16 / 10;
    width: 100%;
    border-radius: calc(var(--radius-card) - 2px);
  }
  .platform-slider__track.lineup .lineup__media.platform-img--artist { background-position: center 22%; }
  .platform-slider__track.lineup .lineup__media.platform-img--musicians { background-position: 48% 22%; }
  .platform-slider__track.lineup .lineup__media.platform-img--booking { background-position: center 15%; }
  .platform-slider__track.lineup .lineup__media.platform-img--chat-confirmation { background-position: center 20%; }
  .platform-slider__track.lineup .lineup__media.platform-img--revenue-stats { background-position: center 12%; }
  .platform-slider__track.lineup .lineup__num { font-size: 1.25rem; margin-bottom: 6px; }
  .platform-slider__track.lineup .lineup__title { font-size: 0.9rem; margin-bottom: 6px; }
  .platform-slider__track.lineup .lineup__desc { font-size: 0.8rem; line-height: 1.6; }

  .why-block {
    padding: 20px 14px;
    border-radius: var(--radius-card);
  }
  .why-block__title { font-size: 0.95rem; margin-bottom: 16px; }
  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-card {
    padding: 14px;
    border-radius: calc(var(--radius-card) - 2px);
  }
  .why-card h4 { font-size: 0.8rem; }
  .why-card p { font-size: 0.8rem; }

  /* Organisateurs — sliders */
  .platform-slider__track.workflow .workflow__step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-card);
  }
  .platform-slider__track.workflow .workflow__num { font-size: 1.25rem; }
  .platform-slider__track.workflow .workflow__step h3 { font-size: 0.875rem; }
  .platform-slider__track.workflow .workflow__step p { font-size: 0.8rem; line-height: 1.55; }
  .platform-slider__track.feature-grid .feature-card {
    padding: 16px;
    border-radius: var(--radius-card);
  }
  .platform-slider__track.feature-grid .feature-card h3 { font-size: 0.875rem; }
  .platform-slider__track.feature-grid .feature-card p { font-size: 0.8rem; }

  /* Billetterie */
  .billetterie__intro {
    font-size: 0.875rem;
    margin-bottom: 18px;
    padding: 0 4px;
    line-height: 1.6;
  }
  .billetterie--upfront + #platform-sections .platform--how {
    padding-top: 0;
  }
  .billetterie__body { padding: 24px 0 calc(44px + env(safe-area-inset-bottom, 0)); }
  .toolbar { margin-bottom: 18px; gap: 12px; }
  .search-box {
    padding: 14px 16px;
    border-radius: var(--radius-card);
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.04);
  }
  .search-box input { font-size: 0.875rem; }
  .filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin: 0 calc(-1 * var(--gutter));
    padding: 2px var(--gutter) 8px;
    mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex-shrink: 0;
    min-height: 40px;
    padding: 10px 16px;
    font-size: 0.72rem;
    border-radius: 50px;
  }

  .billetterie__intro {
    display: none;
  }

  .events-mobile-head {
    display: block;
    margin-bottom: 18px;
  }
  .events-mobile-head__title {
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    margin-bottom: 4px;
  }
  .events-mobile-head__title span {
    color: var(--muted);
    font-weight: 600;
  }
  .events-mobile-head__sub {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
  }

  .events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 8px;
  }
  .events-more { margin-top: 24px; }
  .events-more__link { font-size: 0.84rem; }
  .event-card {
    flex-direction: column;
    align-items: stretch;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    position: relative;
    z-index: 0;
    transform: none;
  }
  .event-card:hover,
  .event-card:active {
    transform: none;
    border-color: transparent;
    z-index: 0;
  }
  .event-card__media {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
    align-self: auto;
    border-radius: 28px;
    overflow: hidden;
    background: var(--card2);
  }
  .event-card__media img {
    -o-object-position: center;
       object-position: center;
    transition: transform 0.35s var(--ease);
  }
  .event-card__overlay {
    padding: 16px 18px;
  }
  .event-card__media .event-card__title {
    font-size: 0.95rem;
  }
  .event-card__body,
  .event-card__date {
    display: none;
  }

  /* Modal — fiche événement app */
  .modal.modal--mobile-detail {
    align-items: stretch;
    padding: 0;
  }
  .modal.modal--mobile-detail .modal__backdrop {
    background: rgba(0, 0, 0, 0.92);
  }
  .modal.modal--mobile-detail .modal__close {
    display: none;
  }
  .modal.modal--mobile-detail .modal__panel {
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0;
    background: #0a0a0a;
    animation: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .modal.modal--mobile-detail .modal__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .event-detail {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .event-detail__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(12px + env(safe-area-inset-top, 0)) 16px 10px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.96) 70%, transparent);
  }
  .event-detail__icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transform: none;
  }
  .event-detail__icon-btn:active {
    transform: none;
    background: rgba(255, 255, 255, 0.16);
  }
  .event-detail__hero {
    margin: 0 16px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--card2);
  }
  .event-detail__hero img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .event-detail__content {
    padding: 18px 16px 12px;
  }
  .event-detail__title {
    font-family: var(--font);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .event-detail__organizer {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .event-detail__facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }
  .event-detail__facts li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.84rem;
    color: var(--text);
    line-height: 1.45;
  }
  .event-detail__facts svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--muted);
  }
  .event-detail__price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .event-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }
  .event-detail__tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 600;
  }
  .event-detail__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: none;
    background: none;
    color: var(--accent);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 22px;
  }
  .event-detail__about,
  .event-detail__conditions {
    margin-bottom: 20px;
  }
  .event-detail__about h3,
  .event-detail__conditions h3 {
    font-family: var(--font);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
  }
  .event-detail__about p,
  .event-detail__conditions p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
  }
  .event-detail__footer {
    margin-top: auto;
    padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.98);
  }
  .event-detail__qty-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
  }
  .event-detail__qty-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .event-detail__qty-row .quantity-control {
    flex-shrink: 0;
  }
  .event-detail__buy {
    flex: 1;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 999px;
  }
  .event-detail__avail {
    margin-top: 8px;
    font-size: 0.72rem;
    color: var(--dim);
    text-align: center;
  }

  /* Modal checkout mobile */
  .modal.modal--mobile-detail .modal-inner {
    padding: calc(16px + env(safe-area-inset-top, 0)) var(--gutter) calc(24px + env(safe-area-inset-bottom, 0));
  }
  .modal.modal--mobile-detail .modal-inner h2 { font-size: 1.1rem; }

  /* Footer */
  .footer {
    padding: 40px 0 calc(40px + env(safe-area-inset-bottom, 0));
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-size: 0.72rem;
  }
  .footer__inner > img {
    width: 40px;
    height: 40px;
  }
  .footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 18px;
    width: 100%;
    max-width: 340px;
  }
  .footer__legal a {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.4;
  }
  .footer__credit {
    font-size: 0.68rem;
    line-height: 1.65;
    max-width: 300px;
    padding: 0 8px;
    color: var(--dim);
  }
  .footer__credit a {
    display: inline;
  }

  /* Pages légales */
  .legal-page {
    padding: calc(var(--header-h) + env(safe-area-inset-top, 0) + 28px) 0 48px;
  }
  .legal-page__title { font-size: 1.5rem; }
  .legal-prose h2 { font-size: 0.95rem; margin-top: 24px; }
  .legal-prose p, .legal-prose li { font-size: 0.875rem; }

  /* Cookies */
  .cookie-banner {
    border-radius: 16px 16px 0 0;
    padding: 18px 0 calc(18px + env(safe-area-inset-bottom, 0));
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .cookie-banner__text {
    font-size: 0.78rem;
    text-align: left;
    min-width: 0;
  }
  .cookie-banner__actions {
    width: 100%;
    gap: 8px;
  }
  .cookie-banner__actions .btn {
    flex: 1;
    justify-content: center;
    min-height: 44px;
  }

  /* Pas d'effets hover sur tactile */
  @media (hover: none) {
    .profile-card:hover,
    .profile-summary:hover,
    .step-card:hover,
    .lineup__row:hover {
      transform: none;
      border-color: var(--border);
    }
    .event-card:hover:not(:active),
    .event-card:active {
      transform: none;
      border-color: transparent;
      z-index: 0;
    }
    .event-card:hover:not(:active) .event-card__media img,
    .event-card:active .event-card__media img {
      transform: none;
    }
    .event-card:hover:not(:active) .event-card__title,
    .event-card:active .event-card__title {
      color: inherit;
    }
    .profile-card:active {
      border-color: rgba(184, 255, 14, 0.3);
    }
    .profile-summary:active {
      border-color: rgba(184, 255, 14, 0.3);
    }
  }

  .reveal { transform: translateY(20px); }
}

@media (max-width: 380px) {
  .hero__title { font-size: 1.7rem; }
  .beat-title__fill,
  .beat-title__reflect { font-size: 1.85rem; }
  .platform-head__title { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Auth (connexion / inscription) ── */
.page-auth {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg);
}

@supports (height: 100dvh) {
  .page-auth {
    min-height: 100dvh;
  }
}

.auth-page {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .auth-page { grid-template-columns: 1fr 1fr; }
}

.auth-page__brand {
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background:
    radial-gradient(ellipse 80% 80% at 20% 20%, rgba(184, 255, 14, 0.12), transparent),
    var(--card);
  border-right: 1px solid var(--border);
}

@media (min-width: 960px) {
  .auth-page__brand { display: flex; }
}

.auth-page__tagline {
  margin-top: 32px;
  max-width: 420px;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--muted);
  text-transform: none;
}

.auth-page__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) 24px 48px;
}

.auth-card {
  width: min(400px, 100%);
}

.auth-card__logo {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
}

.auth-card__logo img {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 12px;
}

.auth-brand {
  display: inline-flex;
  color: inherit;
}

.auth-brand--lg {
  flex-direction: column;
  align-items: flex-start;
}

.auth-brand__name {
  font-family: 'Lobster', cursive;
  font-weight: 400;
  font-size: 2.25rem;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--accent);
  line-height: 1;
}

.auth-brand--lg .auth-brand__name {
  font-size: clamp(3.25rem, 9vw, 4.75rem);
}

.auth-card__title {
  margin: 24px 0 8px;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.auth-card__lead {
  margin: 16px 0 28px;
  font-family: var(--font-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--muted);
  text-transform: none;
}

.auth-form { display: flex; flex-direction: column; gap: 0; }

.auth-field { margin-bottom: 16px; }

.auth-field label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-text);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
}

.auth-field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.auth-field input:focus {
  border-color: rgba(184, 255, 14, 0.5);
}

.auth-field input::-moz-placeholder { color: var(--dim); }

.auth-field input::placeholder { color: var(--dim); }

.auth-footer {
  margin-top: 24px;
  text-align: center;
  font-family: var(--font-text);
  font-size: 0.875rem;
  color: var(--dim);
  text-transform: none;
}

.auth-footer a {
  color: var(--accent);
  font-weight: 600;
}

.auth-footer a:hover { color: var(--accent-dim); }

.header__auth {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px 12px;
  font-size: 0.72rem;
}

.header__auth-chevron {
  flex-shrink: 0;
  opacity: 0.85;
}

.header-auth-menu {
  position: relative;
}

.header-auth-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.header-auth-menu__item {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-radius: calc(var(--radius) - 4px);
  background: transparent;
  color: var(--text);
  font-family: var(--font-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  transition: background 0.2s;
}

a.header-auth-menu__item {
  text-decoration: none;
}

.header-auth-menu__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header-auth-menu__item--danger {
  color: #fca5a5;
}

.header-auth-menu__item--danger:hover {
  background: rgba(248, 113, 113, 0.1);
}

@media (min-width: 768px) {
  .header__auth {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

.toast-root {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  padding: 12px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-text);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s, transform 0.3s;
}

.toast.is-visible { opacity: 1; transform: none; }
.toast--error { border-color: rgba(248, 113, 113, 0.4); color: #fca5a5; }
.toast--success { border-color: rgba(74, 222, 128, 0.35); color: #86efac; }

@media (max-width: 767px) {
  .auth-page__form {
    padding: 32px var(--gutter, 16px) calc(32px + env(safe-area-inset-bottom, 0));
    align-items: flex-start;
  }
  .auth-card__title { font-size: 1.35rem; }
}

/* ── Conformité MCB / Peach & pages info ── */
.operator-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.operator-strip__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.operator-strip__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 12px;
}
.operator-strip__title {
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.operator-strip__lead {
  font-family: var(--font-text);
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 20px;
  text-transform: none;
}

.journey-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.journey-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.journey-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184, 255, 14, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}
.journey-step__title {
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.journey-step__desc {
  font-family: var(--font-text);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  text-transform: none;
}
.journey-steps--legal .journey-step { grid-template-columns: 36px 1fr; }
.journey-steps--legal .journey-step__num { width: 36px; height: 36px; }

.compliance-note {
  margin-top: 20px;
  font-family: var(--font-text);
  font-size: 0.8125rem;
  color: var(--dim);
  line-height: 1.6;
  text-transform: none;
}
.compliance-note a { color: var(--accent); }

.event-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-type-chip {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-text);
  font-size: 0.8125rem;
  color: var(--muted);
  background: var(--card);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.service-card {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.service-card__status {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}
.service-card--available .service-card__status { color: var(--accent); }
.service-card__title {
  font-size: 0.95rem;
  text-transform: none;
  margin-bottom: 8px;
}
.service-card__desc {
  font-family: var(--font-text);
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  text-transform: none;
}

.footer__brand {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__brand img {
  display: block;
}
.footer__tagline {
  margin: 10px auto 4px;
  font-family: var(--font-text);
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 420px;
  text-transform: none;
}
.footer__meta {
  margin: 0;
  font-size: 0.72rem;
  color: var(--dim);
  line-height: 1.5;
  text-transform: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  width: 100%;
  text-align: left;
}
.footer__col-title {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}
.footer__col-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col-nav a {
  color: var(--muted);
  font-family: var(--font-text);
  font-size: 0.8125rem;
  text-transform: none;
}
.footer__col-nav a:hover { color: var(--accent); }

.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 0 16px;
}
.faq-item__q {
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
  text-transform: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__a {
  font-family: var(--font-text);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  padding-bottom: 16px;
  text-transform: none;
}
.contact-card__note {
  font-size: 0.875rem;
  color: var(--dim);
  font-style: italic;
}
