/* ═══════════════════════════════════════════
   WHEELIE FORCE — dark racing aesthetic
   ═══════════════════════════════════════════ */

:root {
  --bg: #060607;
  --bg-soft: #0b0b0e;
  --surface: #101014;
  --line: rgba(255, 255, 255, 0.08);
  --red: #e8192c;
  --red-deep: #a01020;
  --white: #f4f2ee;
  --muted: rgba(244, 242, 238, 0.55);
  --font-display: "Anton", sans-serif;
  --font-body: "Archivo", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --rail-w: 72px;
}

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

html { scroll-behavior: initial; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

html { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  cursor: none;
}

::selection { background: var(--red); color: var(--white); }

a { color: inherit; text-decoration: none; }
a, button { cursor: none; }

/* ═══════════ GRAIN ═══════════ */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ═══════════ CURSOR ═══════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(232, 25, 44, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower span {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.2s;
}
.cursor-follower.is-hover {
  width: 64px; height: 64px;
  background: rgba(232, 25, 44, 0.12);
  backdrop-filter: blur(2px);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
  body, a, button { cursor: auto; }
}

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
.preloader__curtain {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
}
.preloader__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.preloader__star {
  width: 84px;
  margin-bottom: 24px;
  animation: starPulse 1.2s ease-in-out infinite;
}
.preloader__star .star-shape { fill: var(--white); }
@keyframes starPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.12) rotate(-6deg); }
}
.preloader__count {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 128px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.preloader__count sup { font-size: 0.3em; color: var(--red); }
.preloader__label {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--muted);
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.nav.is-scrolled {
  background: rgba(6, 6, 7, 0.82);
  backdrop-filter: blur(14px);
  padding: 12px 40px;
  border-bottom: 1px solid var(--line);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__star { width: 34px; height: 34px; }
.nav__star .star-shape { fill: var(--white); }
.nav__star .star-red { fill: var(--red); transform: translate(3px, 3px); }
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.04em;
  font-style: italic;
}
.nav__wordmark em { color: var(--red); font-style: italic; }
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 20px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s, opacity 0.35s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ═══════════ FULLSCREEN MENU ═══════════ */
.menu {
  position: fixed;
  inset: 0;
  z-index: 4500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  visibility: hidden;
  pointer-events: none;
}
.menu.is-open { visibility: visible; pointer-events: auto; }
.menu__bg {
  position: absolute;
  inset: 0;
  background: #0a0a0d;
  transform: scaleY(0);
  transform-origin: top;
}
.menu__links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu__links a {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: color 0.3s;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}
.menu__links a:hover { color: var(--red); -webkit-text-stroke: 1px var(--red); }
.menu__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
  -webkit-text-stroke: 0;
}
.menu__footer {
  position: absolute;
  bottom: 40px;
  left: 10vw;
  right: 10vw;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ═══════════ RAILS ═══════════ */
.rail {
  position: fixed;
  top: 0;
  bottom: 0;
  width: var(--rail-w);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  pointer-events: none;
}
.rail--left { left: 0; border-right: 1px solid var(--line); }
.rail--right { right: 0; border-left: 1px solid var(--line); }
.rail__line { width: 1px; height: 60px; background: var(--line); }
.rail__social {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  pointer-events: auto;
  transition: color 0.3s;
}
.rail__social:hover { color: var(--red); }
.rail__vertical {
  position: absolute;
  top: 110px;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--muted);
}
.rail__nums {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 46vh;
}
.rail__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}
.rail__num.is-active { color: var(--white); }
.rail__num.is-active::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--red);
  border-radius: 50%;
}

/* ═══════════ BUTTONS ═══════════ */
button.btn { border: none; background: none; }
button.btn--solid { background: var(--red); }
button.btn--ghost { border: 1px solid rgba(244, 242, 238, 0.25); }
button.card__cta {
  border: none;
  background: none;
  padding: 0;
  text-align: left;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s;
  white-space: nowrap;
}
button.btn { padding: 15px 30px; }
button.nav__cta { padding: 11px 24px; }
button.btn--xl { padding: 24px 56px; }
.btn--solid {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.btn--solid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.btn--solid:hover { color: var(--bg); }
.btn--solid:hover::before { transform: translateX(0); }
.btn--solid > * { position: relative; z-index: 1; }
.btn--ghost {
  border: 1px solid rgba(244, 242, 238, 0.25);
  color: var(--white);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: border-color 0.3s, background 0.3s;
}
.btn--ghost:hover { border-color: var(--red); background: rgba(232, 25, 44, 0.08); }
.btn--xl {
  font-size: 15px;
  padding: 24px 56px;
}
.nav__cta { padding: 11px 24px; }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  height: 260vh;
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg { position: absolute; inset: 0; }
.hero__radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 62%, rgba(232, 25, 44, 0.13), transparent 65%),
    radial-gradient(ellipse 90% 70% at 50% 40%, rgba(255, 255, 255, 0.035), transparent 70%);
}
.hero__speedlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 119px,
    rgba(255, 255, 255, 0.028) 119px,
    rgba(255, 255, 255, 0.028) 120px
  );
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 75%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 75%, transparent);
}

/* Giant word */
.hero__word {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  user-select: none;
  white-space: nowrap;
}
.hero__word-inner {
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(90px, 21vw, 340px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.hero__word .w {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 242, 238, 0.16);
  transition: none;
}
.hero__word .w:nth-child(odd) {
  -webkit-text-stroke: 2px rgba(244, 242, 238, 0.1);
}

/* Meta blocks */
.hero__meta {
  position: absolute;
  z-index: 3;
}
.hero__meta--left {
  left: calc(var(--rail-w) + 5vw);
  bottom: 14vh;
  max-width: 420px;
}
.hero__meta--right {
  right: calc(var(--rail-w) + 4vw);
  top: 16vh;
  text-align: right;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.hero__eyebrow::before { content: "// "; }
.hero__tagline {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(244, 242, 238, 0.85);
  margin-bottom: 28px;
}
.hero__tagline strong { color: var(--white); font-weight: 700; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__loc {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 2;
  color: var(--muted);
}

/* Bike stage */
.bike-stage {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 8vh;
  transform: translateX(-50%);
  width: min(62vw, 78vh);
  aspect-ratio: 1000 / 640;
}
.bike-wrap {
  position: absolute;
  inset: 0;
  transform-origin: 21% 75%; /* axe de la roue arrière */
  will-change: transform;
}
.bike-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.65));
}
.bike-photo {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.65));
}
.bike-stage.has-photo .bike-photo { display: block; }
.bike-stage.has-photo .bike-svg { display: none; }
/* axe de la roue arrière de la photo KTM (918x629, object-fit contain) */
.bike-stage.has-photo .bike-wrap { transform-origin: 23.1% 83.1%; }

.spokes { animation: spokeSpin 2.6s linear infinite; }
@keyframes spokeSpin { to { transform: rotate(360deg); } }

.bike-shadow {
  position: absolute;
  bottom: -3%;
  left: 12%;
  width: 76%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.8), transparent 70%);
  transform-origin: 15% center;
  will-change: transform, opacity;
}
.bike-smoke { position: absolute; inset: 0; pointer-events: none; }
.bike-smoke span {
  position: absolute;
  left: 14%;
  bottom: 4%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 200, 210, 0.25), transparent 70%);
  opacity: 0;
  will-change: transform, opacity;
}

.hero__ground {
  position: absolute;
  left: 0; right: 0;
  bottom: 8vh;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  z-index: 1;
}

.hero__scrollhint {
  position: absolute;
  bottom: 3vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scrollhint-arrow {
  color: var(--red);
  animation: hintBounce 1.4s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  position: relative;
  z-index: 10;
  background: var(--red);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin-top: -30px;
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: 0.06em;
  padding-right: 40px;
  color: var(--bg);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ SECTIONS COMMON ═══════════ */
section { position: relative; }

.section-head {
  padding: 0 calc(var(--rail-w) + 5vw);
  margin-bottom: 70px;
  position: relative;
}
.section-head__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--red);
}
.section-head__num::before { content: "/ "; }
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 10px 0 18px;
}
.section-head__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}
.section-head__sub {
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(50px);
}

/* ═══════════ PROGRAMMES ═══════════ */
.programmes {
  padding: 140px 0 160px;
  background: var(--bg);
}
.programmes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 calc(var(--rail-w) + 5vw);
}
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 42px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.4s, background 0.4s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.card:hover { border-color: rgba(232, 25, 44, 0.4); background: #121218; }
.card:hover::before { transform: scaleX(1); }
.card--featured {
  background: #15070a;
  border-color: rgba(232, 25, 44, 0.35);
}
.card__badge {
  position: absolute;
  top: 20px;
  right: -34px;
  background: var(--red);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(40deg);
}
.card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 26px;
}
.card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red);
}
.card__icon { width: 42px; height: 42px; color: rgba(244, 242, 238, 0.35); transition: color 0.4s; }
.card:hover .card__icon { color: var(--red); }
.card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.card__desc {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 28px;
  flex-grow: 1;
}
.card__specs {
  list-style: none;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}
.card__specs li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card__specs li span:first-child { color: var(--muted); }
.card__specs .red { color: var(--red); }
.card__cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.card__cta span { color: var(--red); transition: transform 0.3s; }
.card__cta:hover span { transform: translateX(8px); }

/* ═══════════ MACHINES ═══════════ */
.machines {
  padding: 160px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.machines__word {
  position: absolute;
  top: 40px;
  right: -2vw;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 220px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 242, 238, 0.06);
  pointer-events: none;
  white-space: nowrap;
}
.machines__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 calc(var(--rail-w) + 5vw);
  margin-bottom: 120px;
}
.machines__block--offset { margin-top: 90px; }
.machines__visual {
  position: relative;
  aspect-ratio: 16 / 10;
  margin-bottom: 30px;
  background:
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(232, 25, 44, 0.12), transparent 60%),
    linear-gradient(160deg, #16161c, #0a0a0d);
  border: 1px solid var(--line);
  overflow: hidden;
}
.machines__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.machines__visual--sim img { object-position: 50% 32%; }
.machines__block:hover .machines__visual img { transform: scale(1.06); }
.machines__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.05), rgba(6, 6, 7, 0.7) 88%),
    linear-gradient(20deg, rgba(232, 25, 44, 0.12), transparent 45%);
}
.machines__frame {
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(232, 25, 44, 0.35);
}
.machines__tag {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 40px);
  letter-spacing: 0.04em;
  color: var(--white);
}
.machines__tag::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 4px;
  background: var(--red);
  margin-right: 14px;
  vertical-align: middle;
}
.machines__block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.machines__block p { color: var(--muted); font-size: 15px; max-width: 480px; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 calc(var(--rail-w) + 5vw);
}
.stat {
  padding: 44px 30px;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
  color: var(--red);
  margin-bottom: 10px;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════ MÉTHODE ═══════════ */
.methode {
  padding: 160px 0;
  background: var(--bg);
}
.steps {
  list-style: none;
  margin: 0 calc(var(--rail-w) + 5vw);
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px 20px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s, padding-left 0.4s;
}
.step:hover { background: rgba(232, 25, 44, 0.04); padding-left: 36px; }
.step__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--red);
}
.step__body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.step__body p { color: var(--muted); font-size: 15px; max-width: 560px; }
.step__deg {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244, 242, 238, 0.25);
  transition: all 0.4s;
}
.step:hover .step__deg { -webkit-text-stroke: 1.5px var(--red); }
.step__deg.red { color: var(--red); -webkit-text-stroke: 0; }

/* ═══════════ TÉMOIGNAGES ═══════════ */
.programmes__proof { margin-top: 110px; }
.programmes__proof-label,
.footer__quotes-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  padding: 0 calc(var(--rail-w) + 5vw);
  margin-bottom: 34px;
}
.programmes__proof-label { margin-bottom: 10px; }
.programmes__proof-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 0 calc(var(--rail-w) + 5vw);
  margin-bottom: 44px;
}
.programmes__proof-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}
.vslider {
  position: relative;
  padding: 0 calc(var(--rail-w) + 5vw);
}
.vslider__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 10px;
}
.vslider__track::-webkit-scrollbar { display: none; }
.vslider__arrow {
  position: absolute;
  top: 40%;
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(232, 25, 44, 0.5);
  background: rgba(6, 6, 7, 0.8);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 18px;
  transition: background 0.3s, transform 0.3s;
}
.vslider__arrow:hover { background: var(--red); transform: scale(1.08); }
.vslider__arrow--prev { left: calc(var(--rail-w) + 2vw); }
.vslider__arrow--next { right: calc(var(--rail-w) + 2vw); }
.vcard {
  flex: 0 0 min(300px, 72vw);
  scroll-snap-align: start;
}
.vcard__media {
  position: relative;
  aspect-ratio: 9 / 14;
  background:
    radial-gradient(ellipse 120% 70% at 50% 100%, rgba(232, 25, 44, 0.22), transparent 60%),
    linear-gradient(160deg, #191921, #0a0a0d);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.vcard:hover .vcard__media { border-color: rgba(232, 25, 44, 0.5); transform: translateY(-6px); }
.vcard__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}
.vcard.is-playing .vcard__media video { opacity: 1; }
.vcard__poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: opacity 0.4s;
}
.vcard__poster::before {
  content: "★";
  position: absolute;
  top: -30px;
  right: -20px;
  font-size: 190px;
  line-height: 1;
  color: rgba(232, 25, 44, 0.14);
  transform: rotate(12deg);
}
.vcard.is-playing .vcard__poster { opacity: 0; pointer-events: none; }
.vcard__quote {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
}
.vcard__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 0 0 0 rgba(232, 25, 44, 0.45);
  animation: playPulse 2s infinite;
}
.vcard__play span { margin-left: 4px; }
.vcard__play:hover { transform: translate(-50%, -60%) scale(1.12); }
.vcard.is-playing .vcard__play { opacity: 0; pointer-events: none; animation: none; }
@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 25, 44, 0.45); }
  70% { box-shadow: 0 0 0 22px rgba(232, 25, 44, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 25, 44, 0); }
}
.vcard__dur {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: rgba(6, 6, 7, 0.7);
  border: 1px solid var(--line);
}
.vcard__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 4px 0;
}
.vcard__meta strong { font-size: 15px; letter-spacing: 0.02em; }
.vcard__meta span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__quotes {
  padding: 90px 0 70px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 calc(var(--rail-w) + 5vw);
}
.quote {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.4s, background 0.4s;
}
.quote:hover { border-color: rgba(232, 25, 44, 0.35); background: #121218; }
.quote::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: rgba(232, 25, 44, 0.22);
}
.quote__stars {
  color: var(--red);
  letter-spacing: 0.25em;
  font-size: 14px;
  margin-bottom: 16px;
}
.quote p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244, 242, 238, 0.82);
  margin-bottom: 22px;
}
.quote footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.quote footer strong { font-size: 14px; }
.quote footer span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════ POPUP RÉSERVATION ═══════════ */
.booking {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}
.booking.is-open { visibility: visible; pointer-events: auto; }
.booking__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s;
}
.booking.is-open .booking__overlay { opacity: 1; }
.booking__panel {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #0c0c10;
  border: 1px solid rgba(232, 25, 44, 0.3);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  padding: 44px 48px 0;
  transform: translateY(40px) scale(0.97);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
}
.booking.is-open .booking__panel { transform: translateY(0) scale(1); opacity: 1; }
.booking__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.booking__close:hover { border-color: var(--red); background: rgba(232, 25, 44, 0.12); transform: rotate(90deg); }
.booking__eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.booking__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 48px);
  letter-spacing: 0.02em;
  margin: 8px 0 22px;
}
.booking__title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
}
.booking__steps {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.bstep {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.bstep i { font-style: normal; color: var(--red); opacity: 0.6; margin-right: 6px; }
.bstep.is-active { color: var(--white); }
.bstep.is-done { color: rgba(244, 242, 238, 0.75); }
.bstep.is-done i::after { content: " ✓"; }

.booking__body { padding: 30px 0 10px; }
.bpane { display: none; }
.bpane.is-active { display: block; animation: paneIn 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes paneIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Étape 1 */
.bprogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.bprog input { position: absolute; opacity: 0; pointer-events: none; }
.bprog__box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  height: 100%;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  overflow: hidden;
}
.bprog:hover .bprog__box { border-color: rgba(232, 25, 44, 0.4); transform: translateY(-3px); }
.bprog input:checked + .bprog__box {
  border-color: var(--red);
  background: #15070a;
  box-shadow: inset 0 0 0 1px var(--red);
}
.bprog input:checked + .bprog__box::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bprog__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--red);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.bprog__name {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.bprog__spec {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.bprog__tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: auto;
}

/* Étape 2 */
.bwhen {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
}
.cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal__month {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cal__nav {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: none;
  color: var(--white);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s;
}
.cal__nav:hover:not(:disabled) { border-color: var(--red); background: rgba(232, 25, 44, 0.1); }
.cal__nav:disabled { opacity: 0.25; }
.cal__days, .cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal__days span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  padding: 6px 0;
}
.cal__grid button {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: none;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12.5px;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.cal__grid button:hover:not(:disabled) { border-color: rgba(232, 25, 44, 0.5); }
.cal__grid button:disabled { color: rgba(244, 242, 238, 0.18); }
.cal__grid button.is-selected {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
}
.cal__grid .cal__empty { visibility: hidden; }
.slots__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.slots__label strong { color: var(--white); }
.slots__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.slots__grid button {
  padding: 13px 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  transition: border-color 0.25s, background 0.25s;
}
.slots__grid button:hover:not(:disabled) { border-color: rgba(232, 25, 44, 0.6); }
.slots__grid button.is-selected { background: var(--red); border-color: var(--red); font-weight: 700; }
.slots__grid button:disabled {
  color: rgba(244, 242, 238, 0.22);
  text-decoration: line-through;
  background: transparent;
}

/* Étape 3 */
.bform {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 34px;
}
.bform__fields { display: flex; flex-direction: column; gap: 16px; }
.bfield { display: flex; flex-direction: column; gap: 7px; }
.bfield span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.bfield input {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  transition: border-color 0.3s;
  outline: none;
}
.bfield input:focus { border-color: var(--red); }
.bfield input::placeholder { color: rgba(244, 242, 238, 0.28); }
.brecap {
  border: 1px dashed rgba(232, 25, 44, 0.4);
  padding: 24px;
  height: fit-content;
}
.brecap__title {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 16px;
}
.brecap ul { list-style: none; }
.brecap li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.brecap li span { color: var(--muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.brecap li strong { text-align: right; }
.brecap__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.bform__error {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  min-height: 18px;
  margin-top: 14px;
}

/* Étape 4 */
.bpane--success { text-align: center; padding: 30px 0 20px; }
.bsuccess__star {
  width: 74px;
  margin-bottom: 20px;
  animation: starPulse 1.4s ease-in-out infinite;
}
.bsuccess__star .star-shape { fill: var(--red); }
.bsuccess__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.bsuccess__text { color: var(--muted); max-width: 420px; margin: 0 auto; }

.booking__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 26px 0 30px;
}
.booking__actions--center { justify-content: center; }
.booking__actions .btn:disabled { opacity: 0.35; pointer-events: none; }
.booking__foot {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.booking__foot i { color: var(--red); font-style: normal; }

/* ═══════════ CTA ═══════════ */
.cta {
  padding: 180px 0 160px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 55%, rgba(232, 25, 44, 0.1), transparent 65%);
}
.cta__word {
  position: relative;
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 60px;
}
.cta__line1 {
  display: block;
  font-size: clamp(40px, 7vw, 110px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(244, 242, 238, 0.4);
}
.cta__line2 {
  display: block;
  font-size: clamp(90px, 17vw, 280px);
  color: var(--white);
}
.cta__line2 em { font-style: normal; color: var(--red); }
.cta__info {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.cta__dot { color: var(--red); }

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
}
.footer__marquee { overflow: hidden; padding: 30px 0 20px; }
.footer__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.footer__track span {
  font-family: var(--font-display);
  font-size: clamp(50px, 9vw, 140px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 242, 238, 0.12);
  padding-right: 30px;
}
.footer__bar {
  display: flex;
  justify-content: space-between;
  padding: 24px calc(var(--rail-w) + 5vw) 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
  :root { --rail-w: 0px; }
  .rail { display: none; }
  .programmes__grid { grid-template-columns: 1fr; gap: 20px; }
  .quotes { grid-template-columns: 1fr; gap: 16px; }
  .machines__split { grid-template-columns: 1fr; }
  .machines__block--offset { margin-top: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav { padding: 16px 22px; }
  .nav.is-scrolled { padding: 12px 22px; }
  .hero { height: 220vh; }
  .hero__meta--right { display: none; }
  .hero__meta--left {
    left: 22px;
    right: 22px;
    bottom: 7vh;
    max-width: none;
  }
  .bike-stage { width: min(90vw, 50vh); bottom: 42vh; }
  .hero__ground { bottom: 42vh; }
  .hero__word { top: 26%; }
  .hero__scrollhint { display: none; }
  .section-head { padding: 0 22px; }
  .programmes__grid, .steps { margin: 0; padding-left: 22px; padding-right: 22px; }
  .steps { margin: 0 22px; padding: 0; }
  .machines__split { padding: 0 22px; gap: 50px; }
  .stats { margin: 0 22px; }
  .step { grid-template-columns: 50px 1fr; }
  .step__deg { display: none; }
  .footer__bar { flex-direction: column; gap: 8px; text-align: center; }
  .programmes, .machines, .methode, .temoignages { padding: 90px 0; }
  .cta { padding: 120px 0 100px; }
  .vslider { padding: 0 22px; }
  .vslider__arrow { display: none; }
  .quotes { padding: 0 22px; }
  .booking { padding: 0; align-items: flex-end; }
  .booking__panel {
    max-height: 94vh;
    padding: 30px 22px 0;
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
  }
  .booking__steps { gap: 14px; flex-wrap: wrap; }
  .bprogs { grid-template-columns: 1fr; }
  .bwhen { grid-template-columns: 1fr; gap: 26px; }
  .bform { grid-template-columns: 1fr; gap: 24px; }
  .booking__actions { flex-wrap: wrap; }
  .booking__foot { flex-wrap: wrap; gap: 8px; }
}
