/* =====================================================================
   VIP ARENA — Site vitrine
   Very Immersive Party · CURIOUS FACTORY
   Feuille de style reprenant à l'identique le design Claude Design.
   ===================================================================== */

/* ---------- Fonts ---------- */

@font-face {
  font-family: 'LUEMU';
  src: url("../fonts/LUEMU.woff") format('woff'),
       url("../fonts/LUEMU.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cactus Jack';
  src: url("../fonts/CactusJack.woff") format('woff'),
       url("../fonts/CactusJack.ttf") format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Wix Madefor Display';
  src: url("../fonts/WixMadeforDisplay-Variable.ttf") format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  /* Tier 1 — Core */
  --va-night:          #06041C;
  --va-arena-purple:   #6C00FF;
  --va-midnight:       #1D194D;

  /* Tier 2 — Accents */
  --va-vip-pink:       #FF4893;
  --va-champagne:      #FCCF02;
  --va-neon-mint:      #1EFFA3;

  /* Tier 3 — Extended */
  --va-pink-shadow:    #AB3875;
  --va-fuchsia:        #FF3EDB;
  --va-yellow-shadow:  #D38E0A;
  --va-mint-shadow:    #40A074;
  --va-mint-tint:      #B3FFDC;
  --va-off-white:      #F1FAFB;

  --va-bg:             var(--va-night);
  --va-bg-alt:         var(--va-midnight);
  --va-bg-hero:        var(--va-arena-purple);
  --va-fg:             var(--va-off-white);
  --va-fg-muted:       rgba(241, 250, 251, 0.72);
  --va-fg-on-light:    var(--va-night);

  --font-display: 'LUEMU', 'Fredoka', 'Baloo 2', system-ui, sans-serif;
  --font-accent:  'Cactus Jack', 'Caveat', 'Kalam', cursive;
  --font-body:    'Wix Madefor Display', 'Inter', system-ui, -apple-system, sans-serif;

  --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--va-bg);
  color: var(--va-fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p, ul { margin: 0; }
a { color: var(--va-champagne); text-decoration: none; }
a:hover { color: var(--va-vip-pink); }
img { display: block; }
button { font-family: inherit; }

/* LUEMU has no French accents — use this class for accented French titles */
.va-display-fr {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
}

.page {
  background: var(--va-night);
  color: var(--va-off-white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ---------- Animations ---------- */

@keyframes vaTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes vaFloat { 0%, 100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-14px) rotate(1.5deg); } }
@keyframes vaFloatSoft { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes vaRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes vaRiseSoft { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .hero__mascot, .map__mascot, .ticker__track { animation: none !important; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 19px 34px;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.5;
  cursor: pointer;
  text-align: center;
  transition: transform .16s var(--ease-pop), box-shadow .16s ease;
}
.btn--pink { background: var(--va-vip-pink); color: var(--va-off-white); box-shadow: 0 7px 0 var(--va-pink-shadow); }
.btn--pink:hover { color: var(--va-off-white); transform: translateY(-3px); box-shadow: 0 10px 0 var(--va-pink-shadow); }
.btn--pink:active { transform: translateY(7px); box-shadow: 0 0 0 var(--va-pink-shadow); }

.btn--yellow { background: var(--va-champagne); color: var(--va-night); box-shadow: 0 7px 0 var(--va-yellow-shadow); }
.btn--yellow:hover { color: var(--va-night); transform: translateY(-3px); box-shadow: 0 10px 0 var(--va-yellow-shadow); }
.btn--yellow:active { transform: translateY(7px); box-shadow: 0 0 0 var(--va-yellow-shadow); }

.btn--night { background: var(--va-night); color: var(--va-off-white); font-size: 16px; padding: 19px 32px; box-shadow: 0 7px 0 rgba(6, 4, 28, .45); }
.btn--night:hover { color: var(--va-off-white); transform: translateY(-3px); }
.btn--night:active { transform: translateY(7px); box-shadow: 0 0 0 rgba(6, 4, 28, .45); }

.btn--ghost { background: rgba(6, 4, 28, .55); color: var(--va-off-white); }
.btn--ghost:hover { color: var(--va-off-white); transform: translateY(-3px); }

.btn--md { padding: 19px 32px; font-size: 16.5px; }
.btn--md.btn--yellow:hover { box-shadow: 0 7px 0 var(--va-yellow-shadow); }
.btn--nowrap { white-space: nowrap; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 48px;
  background: rgba(6, 4, 28, .86);
  -webkit-backdrop-filter: saturate(140%);
  backdrop-filter: saturate(140%);
}
.nav--simple { gap: 16px; background: rgba(6, 4, 28, .9); -webkit-backdrop-filter: none; backdrop-filter: none; }
.nav__logo { display: flex; align-items: center; flex: none; }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }
.nav__links a { white-space: nowrap; font-size: 14px; font-weight: 700; color: var(--va-off-white); letter-spacing: .2px; }
.nav__links a:hover { color: var(--va-neon-mint); }
.nav__links a.is-pro { color: rgba(241, 250, 251, .66); }
.nav__links a.is-pro:hover { color: var(--va-champagne); }
.nav__badge {
  flex: none; padding: 6px 12px; border-radius: 999px;
  background: rgba(30, 255, 163, .14); color: var(--va-neon-mint);
  font-size: 10px; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap;
}

.lang { display: flex; gap: 2px; padding: 4px; background: rgba(241, 250, 251, .08); border-radius: 999px; flex: none; }
.nav--simple .lang { margin-left: auto; }
.lang__btn {
  border: 0; cursor: pointer; font-family: inherit; font-size: 12px; font-weight: 900; letter-spacing: .6px;
  padding: 8px 12px; border-radius: 999px; transition: all .18s var(--ease-pop);
  background: transparent; color: rgba(241, 250, 251, .6);
}
.lang__btn.is-on { background: var(--va-arena-purple); color: var(--va-off-white); }
a.lang__btn { display: inline-block; line-height: normal; }
a.lang__btn:hover { color: var(--va-off-white); }

/* Bandeau "site disponible dans l'autre langue" (pas de redirection automatique) */
.lang-banner {
  display: flex; flex-wrap: wrap; gap: 6px 16px; align-items: center; justify-content: center;
  padding: 10px 52px 10px 20px; position: relative;
  background: var(--va-champagne); color: var(--va-night); font-size: 14px; font-weight: 700; text-align: center;
}
.lang-banner a { color: var(--va-night); text-decoration: underline; font-weight: 900; }
.lang-banner a:hover { color: var(--va-arena-purple); }
.lang-banner__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  border: 0; background: transparent; color: var(--va-night); font-size: 22px; line-height: 1; cursor: pointer; padding: 4px 8px; opacity: .7;
}
.lang-banner__close:hover { opacity: 1; }

.nav__cta {
  flex: none; padding: 13px 22px; border-radius: 999px; background: var(--va-vip-pink); color: var(--va-off-white);
  font-size: 14px; font-weight: 800; box-shadow: 0 5px 0 var(--va-pink-shadow);
  transition: transform .16s var(--ease-pop), box-shadow .16s ease;
}
.nav__cta:hover { color: var(--va-off-white); transform: translateY(-2px); box-shadow: 0 7px 0 var(--va-pink-shadow); }
.nav__cta:active { transform: translateY(5px); box-shadow: 0 0 0 var(--va-pink-shadow); }

.burger {
  display: none; place-items: center; flex: none; width: 46px; height: 46px; border: 0; border-radius: 999px;
  background: rgba(241, 250, 251, .1); cursor: pointer; padding: 0;
}
.burger span { display: grid; gap: 5px; }
.burger i { display: block; width: 20px; height: 2.5px; border-radius: 2px; background: var(--va-off-white); }

.mobile-menu {
  position: sticky; top: 74px; z-index: 39; display: grid; gap: 4px; padding: 16px 24px 22px; background: var(--va-midnight);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 14px 4px; font-size: 17px; font-weight: 800; color: var(--va-off-white); }
.mobile-menu a:hover { color: var(--va-neon-mint); }
.mobile-menu a.is-pro { color: rgba(241, 250, 251, .72); }
.mobile-menu a.is-pro:hover { color: var(--va-champagne); }
.mobile-menu .mobile-menu__cta {
  margin-top: 10px; text-align: center; padding: 17px 24px; border-radius: 999px; background: var(--va-vip-pink);
  color: var(--va-off-white); font-size: 16px; font-weight: 900; box-shadow: 0 6px 0 var(--va-pink-shadow);
}

/* ---------- Shared layout helpers ---------- */

.wrap { max-width: 1280px; margin: 0 auto; }
.kicker { font-size: 12px; font-weight: 900; letter-spacing: 2.4px; text-transform: uppercase; }
.kicker--mint { color: var(--va-neon-mint); }
.kicker--yellow { color: var(--va-champagne); }
.accent { color: var(--va-champagne); }

.bullets { display: grid; gap: 14px; margin: 6px 0 0; padding: 0; list-style: none; max-width: 600px; }
.bullets li {
  display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 14px; align-items: start;
  font-size: 17px; line-height: 1.5; font-weight: 700; color: var(--va-off-white);
}
.bullets .star {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 999px;
  background: var(--va-neon-mint); color: var(--va-night); font-size: 14px; font-weight: 900; line-height: 1;
}

/* ---------- HERO (Accueil) ---------- */

.hero { position: relative; min-height: 720px; display: grid; align-items: end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(to top, #06041C 4%, rgba(6, 4, 28, .72) 42%, rgba(6, 4, 28, .25) 100%); }
.hero__glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 18% 70%, rgba(108, 0, 255, .55), transparent 70%); }
.hero__grid {
  position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: end;
  padding: 0 48px 72px; max-width: 1400px; margin: 0 auto; width: 100%;
  animation: vaRise .6s var(--ease-pop) both;
}
.hero__text { display: grid; gap: 22px; max-width: 820px; }
.hero__title {
  font-family: var(--font-display); font-size: clamp(48px, 5.8vw, 86px); line-height: 1.04; letter-spacing: 2.5px;
  text-shadow: 3px 3px 0 rgba(6, 4, 28, .85);
}
.hero__sub { font-size: 19px; line-height: 1.5; max-width: 600px; color: rgba(241, 250, 251, .88); text-wrap: pretty; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 6px; }
.hero__mascot {
  width: 100%; max-width: 340px; justify-self: end;
  animation: vaFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(6, 4, 28, .6));
}

/* ---------- TICKER ---------- */

.ticker { background: var(--va-arena-purple); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; gap: 44px; animation: vaTicker 26s linear infinite; will-change: transform; }
.ticker__word { font-family: var(--font-display); font-size: 26px; letter-spacing: 1px; color: var(--va-off-white); }
.ticker--iaapa { background: var(--va-midnight); padding: 14px 0; }
.ticker--iaapa .ticker__track { animation-duration: 28s; }
.ticker--iaapa .ticker__word { font-size: 22px; color: rgba(241, 250, 251, .8); }

/* ---------- CONCEPT (Accueil) / PLAYERS (Pro) ---------- */

.concept { padding: 64px 48px; }
.concept__inner { max-width: 1280px; margin: 0 auto; display: grid; gap: 36px; }
.concept__grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: center; }
.concept__text { display: grid; gap: 20px; align-content: center; min-height: 320px; }
.concept__body { font-size: 17.5px; line-height: 1.6; color: rgba(241, 250, 251, .78); max-width: 640px; text-wrap: pretty; }
.concept__logo {
  width: 320px; height: 320px; justify-self: end; display: grid; place-items: center;
  background: var(--va-midnight); border-radius: 24px; padding: 36px;
}
.concept__logo img { width: 100%; height: 100%; object-fit: contain; }
.concept__cta { justify-self: center; white-space: nowrap; }
.players { padding: 88px 48px; max-width: 1280px; margin: 0 auto; display: grid; gap: 36px; }
.players__title { font-size: 42px; text-wrap: pretty; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.step {
  display: grid; grid-template-rows: auto 1fr; gap: 0; background: var(--va-midnight); border-radius: 24px; overflow: hidden;
  transition: transform .2s var(--ease-pop);
}
.step:hover { transform: translateY(-6px); }
.step__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.step__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.step__n { position: absolute; top: 12px; left: 12px; font-family: var(--font-display); font-size: 34px; color: var(--va-champagne); text-shadow: 3px 3px 0 var(--va-night); }
.step__text { display: grid; grid-template-rows: auto 1fr; gap: 8px; padding: 22px; }
.step__text h3 { font-size: 19px; font-weight: 800; min-height: 2.4em; display: flex; align-items: start; }
.step__text p { font-size: 14px; line-height: 1.5; color: rgba(241, 250, 251, .7); }

/* ---------- VIDEO + GALERIE ---------- */

.video { padding: 0 48px 80px; max-width: 1280px; margin: 0 auto; display: grid; gap: 20px; justify-items: center; text-align: center; }
.video__btn {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border: 0; padding: 0; border-radius: 24px; overflow: hidden; cursor: pointer;
  background: var(--va-midnight); box-shadow: 0 24px 60px -20px rgba(108, 0, 255, .55);
}
.video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.video__shade { position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 50%, rgba(108, 0, 255, .5), rgba(6, 4, 28, .72)); }
.video__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: grid; place-items: center;
  width: 112px; height: 112px; border-radius: 999px; background: var(--va-champagne); box-shadow: 0 8px 0 var(--va-yellow-shadow);
  transition: transform .18s var(--ease-pop);
}
.video__btn:hover .video__play { transform: translate(-50%, -50%) scale(1.06); }
.video__play i { font-style: normal; font-size: 38px; color: var(--va-night); line-height: 1; margin-left: 6px; }
.video__label { position: absolute; bottom: 18px; left: 22px; font-size: 12.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(241, 250, 251, .8); }
.video__btn.is-playing { cursor: default; }
.video__btn.is-playing .video__poster, .video__btn.is-playing .video__shade, .video__btn.is-playing .video__play, .video__btn.is-playing .video__label { display: none; }
.video__btn iframe, .video__btn video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }

.gallery-wrap { width: 100%; display: grid; gap: 28px; text-align: left; margin-top: 34px; }
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 200px; gap: 14px; }
.gallery__tile { border-radius: 20px; overflow: hidden; }
.gallery__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease-pop); }
.gallery__tile:hover img { transform: scale(1.06); }

/* ---------- CARTE ---------- */

.map { background: var(--va-arena-purple); padding: 104px 48px; }
.map__inner { max-width: 1320px; margin: 0 auto; display: grid; gap: 40px; }
.map__head { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; align-items: end; }
.map__text { display: grid; gap: 14px; }
.map__title { font-family: var(--font-display); font-size: 60px; letter-spacing: .5px; text-shadow: 4px 4px 0 var(--va-night); }
.map__sub { font-size: 17px; line-height: 1.55; color: rgba(241, 250, 251, .86); max-width: 560px; }
.map__mascot { width: 100%; max-width: 190px; justify-self: end; animation: vaFloat 6.5s ease-in-out infinite; }

/* ---------- OCCASIONS ---------- */

.occasions { padding: 110px 48px; max-width: 1280px; margin: 0 auto; display: grid; gap: 44px; }
.occasions__head { display: grid; gap: 14px; max-width: 640px; }
.occasions__title { font-size: 50px; text-wrap: pretty; }
.occasions__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.occ {
  position: relative; min-height: 420px; border-radius: 24px; overflow: hidden; display: grid; align-items: end;
  transition: transform .22s var(--ease-pop);
}
.occ:hover { transform: translateY(-6px); }
.occ__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.occ__shade { position: absolute; inset: 0; background: linear-gradient(to top, #06041C 8%, rgba(6, 4, 28, .35) 62%, transparent 100%); }
.occ__content { position: relative; width: 100%; display: grid; grid-template-rows: auto auto 1fr; gap: 10px; padding: 24px 22px 26px; }
.occ__tag { justify-self: start; padding: 7px 14px; border-radius: 999px; color: var(--va-night); font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.occ__title { font-size: 26px; font-weight: 900; letter-spacing: .2px; height: 3.3em; display: flex; align-items: end; }
.occ__body { font-size: 14.5px; line-height: 1.5; color: rgba(241, 250, 251, .82); height: 6em; width: 100%; max-width: 100%; text-wrap: pretty; hyphens: auto; overflow-wrap: break-word; }

/* ---------- PRO STRIP ---------- */

.pro-strip { background: var(--va-vip-pink); padding: 64px 48px; }
.pro-strip__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 150px minmax(0, 1fr) auto; gap: 32px; align-items: center; }
.pro-strip__mascot { width: 150px; height: auto; }
.pro-strip__text { display: grid; gap: 8px; }
.pro-strip__title { font-size: 34px; }
.pro-strip__body { font-size: 16px; line-height: 1.5; color: rgba(6, 4, 28, .78); max-width: 620px; font-weight: 600; }

/* ---------- FOOTER ---------- */

.footer { background: var(--va-midnight); padding: 44px 48px 32px; }
.footer__row { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer__logo { height: 46px; width: auto; flex: none; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; }
.footer__nav a { white-space: nowrap; font-size: 14px; color: rgba(241, 250, 251, .76); font-weight: 700; }
.footer__nav a:hover { color: var(--va-neon-mint); }
.footer__nav a.is-pro:hover { color: var(--va-champagne); }
.footer__tag { font-size: 13px; line-height: 1.5; color: rgba(241, 250, 251, .6); max-width: 420px; flex: 1 1 200px; min-width: 0; text-align: left; }
.footer__legal { max-width: 1280px; margin: 28px auto 0; padding-top: 20px; border-top: 2px solid rgba(241, 250, 251, .12); display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; }
.footer__legal span { font-size: 12.5px; color: rgba(241, 250, 251, .6); }

/* ---------- HERO (Pro / IAAPA) ---------- */

.hero-pro { position: relative; background: var(--va-arena-purple); padding: 76px 48px; overflow: hidden; }
.hero-pro__glow { position: absolute; inset: 0; background: radial-gradient(55% 60% at 78% 45%, rgba(255, 72, 147, .5), transparent 70%); }
.hero-pro__grid {
  position: relative; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; align-items: end;
  animation: vaRiseSoft .55s var(--ease-pop) both;
}
.hero-pro__text { display: grid; gap: 24px; }
.hero-pro__badge {
  justify-self: start; padding: 8px 16px; border-radius: 999px; background: var(--va-night); color: var(--va-champagne);
  font-size: 12px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase;
}
.hero-pro__title { font-size: clamp(42px, 5.2vw, 74px); line-height: 1.05; text-shadow: 4px 4px 0 rgba(6, 4, 28, .85); text-wrap: pretty; }
.hero-pro__body { font-size: 18.5px; line-height: 1.6; max-width: 620px; color: rgba(241, 250, 251, .9); text-wrap: pretty; }
.hero-pro .cta-row { margin-top: 4px; }
.hero-pro__mascot { width: 100%; max-width: 360px; justify-self: end; animation: vaFloatSoft 6s ease-in-out infinite; }

/* ---------- COUNTDOWN (IAAPA) ---------- */

.countdown { background: var(--va-vip-pink); padding: 34px 48px; }
.countdown__row { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.countdown__kicker { font-size: 30px; font-weight: 900; color: var(--va-off-white); text-wrap: pretty; }
.countdown__boxes { display: flex; gap: 12px; }
.countdown__box { display: grid; gap: 2px; justify-items: center; min-width: 88px; padding: 14px 10px; background: var(--va-night); border-radius: 18px; }
.countdown__value { font-family: var(--font-display); font-size: 38px; line-height: 1; color: var(--va-champagne); }
.countdown__label { font-size: 10.5px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: rgba(241, 250, 251, .7); }

/* ---------- CONSOLE (Pro / IAAPA) ---------- */

.console { background: var(--va-midnight); padding: 88px 48px; }
.console__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 52px; align-items: center; }
.console__text { display: grid; gap: 20px; }
.console__title { font-size: 44px; text-wrap: pretty; }
.console__body { font-size: 16.5px; line-height: 1.6; color: rgba(241, 250, 251, .78); text-wrap: pretty; }
.specs { display: grid; gap: 12px; margin: 4px 0 0; padding: 0; list-style: none; }
.specs li { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 14px; align-items: start; font-size: 15.5px; line-height: 1.5; font-weight: 600; color: var(--va-off-white); }
.specs .star { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 999px; background: var(--va-neon-mint); color: var(--va-night); font-size: 13px; font-weight: 900; line-height: 1; }
.console__cta { justify-self: start; margin-top: 8px; white-space: nowrap; }
.console__photos { display: grid; gap: 14px; }
.console__photos img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.console__pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.console__pair img { border-radius: 20px; }

/* ---------- WHY (Pro / IAAPA) ---------- */

.why { padding: 88px 48px 48px; max-width: 1280px; margin: 0 auto; display: grid; gap: 36px; }
.why__head { display: grid; gap: 14px; max-width: 720px; }
.why__title { font-size: 46px; text-wrap: pretty; }
.args { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.arg {
  display: grid; grid-template-rows: auto auto 1fr; gap: 10px; background: var(--va-midnight); border-radius: 24px; padding: 28px; align-content: start;
  box-shadow: 0 24px 60px -30px rgba(108, 0, 255, .7); transition: transform .2s var(--ease-pop);
}
.arg:hover { transform: translateY(-5px); }
.arg__n { font-family: var(--font-display); font-size: 40px; line-height: 1; color: var(--va-champagne); }
.arg h3 { font-size: 20px; font-weight: 800; min-height: 2.6em; display: flex; align-items: start; }
.arg p { font-size: 14.5px; line-height: 1.55; color: rgba(241, 250, 251, .74); }

/* ---------- PRICING (IAAPA) ---------- */

.pricing { padding: 48px 48px 88px; max-width: 1280px; margin: 0 auto; display: grid; gap: 28px; }
.pricing__head { display: grid; gap: 14px; max-width: 760px; }
.pricing__title { font-family: var(--font-display); font-size: 52px; letter-spacing: 1.5px; text-shadow: 4px 4px 0 rgba(6, 4, 28, .85); }
.pricing__sub { font-size: 16.5px; line-height: 1.6; color: rgba(241, 250, 251, .76); }
.price-grid { display: grid; grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr); gap: 12px; align-items: stretch; }
.price-card { display: grid; gap: 18px; align-content: start; background: var(--va-midnight); border-radius: 24px; padding: 36px; box-shadow: 0 24px 60px -30px rgba(108, 0, 255, .7); }
.price-card__tags { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.tag { padding: 7px 14px; border-radius: 999px; font-size: 11px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.tag--yellow { background: var(--va-champagne); color: var(--va-night); }
.tag--mint { background: var(--va-neon-mint); color: var(--va-night); }
.price-card h3 { font-size: 26px; font-weight: 900; }
.price-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; }
.price-row__list { font-size: 17px; font-weight: 700; white-space: nowrap; color: rgba(241, 250, 251, .5); text-decoration: line-through; }
.price-row__deal { font-family: var(--font-display); font-size: 46px; line-height: 1; letter-spacing: -.5px; white-space: nowrap; color: var(--va-champagne); }
.price-row__per { font-size: 15px; font-weight: 800; white-space: nowrap; color: rgba(241, 250, 251, .72); }
.pill { padding: 7px 13px; border-radius: 999px; font-size: 11.5px; font-weight: 900; letter-spacing: .6px; }
.pill--mint { background: var(--va-neon-mint); color: var(--va-night); }
.pill--pink { background: var(--va-vip-pink); color: var(--va-off-white); }
.price-card__body { font-size: 14.5px; line-height: 1.55; color: rgba(241, 250, 251, .74); }
.checks { display: grid; gap: 10px; margin: 4px 0 0; padding: 0; list-style: none; }
.checks li { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; align-items: start; font-size: 14.5px; line-height: 1.5; color: rgba(241, 250, 251, .86); }
.checks .check { color: var(--va-neon-mint); font-weight: 900; }
.terms { display: grid; gap: 10px; margin: -8px 0 0; padding: 0; list-style: none; }
.terms li { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; align-items: start; font-size: 14.5px; line-height: 1.5; color: rgba(241, 250, 251, .78); }
.terms .info {
  display: grid; place-items: center; width: 18px; height: 18px; margin-top: 2px; border-radius: 999px; background: rgba(241, 250, 251, .14);
  color: rgba(241, 250, 251, .8); font-size: 11px; font-weight: 900; line-height: 1; font-style: italic;
}
.plus { display: grid; place-items: center; }
.plus span {
  display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 999px; background: var(--va-arena-purple);
  font-family: var(--font-body); font-size: 44px; font-weight: 800; line-height: 1; color: var(--va-off-white); box-shadow: 0 6px 0 var(--va-night);
}
.plus--dark span { background: var(--va-night); box-shadow: none; }
.duo { background: var(--va-arena-purple); border-radius: 24px; padding: 36px 40px; display: grid; gap: 24px; }
.duo__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.duo__head h3 { font-size: 26px; font-weight: 900; }
.duo .price-grid { align-items: center; }
.duo__cell { display: grid; gap: 8px; background: rgba(6, 4, 28, .4); border-radius: 20px; padding: 26px 28px; }
.duo__kicker { font-size: 12px; font-weight: 900; letter-spacing: 1.6px; text-transform: uppercase; }
.duo .price-row__deal { color: var(--va-off-white); }
.duo .price-row__per { color: rgba(241, 250, 251, .78); }
.duo__note { font-size: 14px; line-height: 1.5; color: rgba(241, 250, 251, .82); }

/* ---------- CONTACT (Pro / IAAPA) ---------- */

.contact { padding: 88px 48px; max-width: 1080px; margin: 0 auto; display: grid; gap: 32px; }
.contact--tight { padding: 24px 48px 88px; }
.contact__head { display: grid; gap: 14px; max-width: 680px; }
.contact__title { font-family: var(--font-display); font-size: 46px; letter-spacing: 1.5px; text-shadow: 4px 4px 0 rgba(6, 4, 28, .85); }
.contact__sub { font-size: 16.5px; line-height: 1.6; color: rgba(241, 250, 251, .76); }
.form { background: var(--va-midnight); border-radius: 24px; padding: 40px; display: grid; gap: 18px; }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 12.5px; font-weight: 800; letter-spacing: .4px; color: rgba(241, 250, 251, .78); }
.field input, .field textarea {
  border: 0; border-radius: 6px; padding: 15px 16px; background: var(--va-night); color: var(--va-off-white);
  font-family: inherit; font-size: 15px; outline: none; width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(241, 250, 251, .32); }
.field input:focus, .field textarea:focus { box-shadow: 0 0 0 3px var(--va-arena-purple); }
.field textarea { resize: vertical; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.rooms { display: flex; gap: 8px; }
.rooms button {
  border: 0; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 900; width: 52px; height: 52px; border-radius: 6px;
  transition: all .18s var(--ease-pop); background: var(--va-night); color: rgba(241, 250, 251, .6);
}
.rooms button.is-on { background: var(--va-arena-purple); color: var(--va-off-white); }
.form__actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 6px; }
.form__submit {
  border: 0; cursor: pointer; font-family: inherit; padding: 18px 30px; border-radius: 999px; font-size: 16px; font-weight: 900;
  transition: transform .16s var(--ease-pop); background: var(--va-vip-pink); color: var(--va-off-white); box-shadow: 0 7px 0 var(--va-pink-shadow);
}
.form__submit:hover { transform: translateY(-3px); }
.form__submit:disabled { cursor: wait; opacity: .8; transform: none; }
.form.is-sent .form__submit { background: var(--va-neon-mint); color: var(--va-night); box-shadow: 0 7px 0 var(--va-mint-shadow); cursor: default; }
.form__note { font-size: 12.5px; color: rgba(241, 250, 251, .6); }
.form__error { font-size: 13px; font-weight: 700; color: var(--va-champagne); }
.form__error[hidden] { display: none; }

/* ---------- Pages légales ---------- */

.legal { padding: 64px 48px 96px; max-width: 860px; margin: 0 auto; display: grid; gap: 36px; }
.legal__head { display: grid; gap: 14px; }
.legal__title { font-size: 46px; text-wrap: pretty; }
.legal__updated { font-size: 13px; color: rgba(241, 250, 251, .55); }
.legal__body { display: grid; gap: 30px; }
.legal__body section { display: grid; gap: 10px; }
.legal__body h2 { font-family: var(--font-body); font-size: 22px; font-weight: 800; letter-spacing: -.2px; }
.legal__body p, .legal__body li { font-size: 16px; line-height: 1.65; color: rgba(241, 250, 251, .82); text-wrap: pretty; }
.legal__body ul { padding-left: 22px; display: grid; gap: 8px; }
.legal__body a { color: var(--va-champagne); font-weight: 700; }
.legal__body a:hover { color: var(--va-vip-pink); }
mark.todo { background: rgba(252, 207, 2, .18); color: var(--va-champagne); padding: 0 5px; border-radius: 4px; }

.footer__links a { color: rgba(241, 250, 251, .6); font-size: 12.5px; }
.footer__links a:hover { color: var(--va-neon-mint); }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .nav, .concept, .video, .map, .occasions, .pro-strip, .footer, .hero-pro, .players, .console, .why, .pricing, .contact, .legal { padding-left: 24px; padding-right: 24px; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: grid; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); padding: 0 24px 48px; }
  .hero__mascot, .hero-pro__mascot, .map__mascot { display: none; }
  .hero-pro__grid { grid-template-columns: minmax(0, 1fr); }
  .concept__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .concept__logo { width: 100%; max-width: 260px; height: 220px; justify-self: start; }
  .concept__text { min-height: 0; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 150px; }
  .map__head { grid-template-columns: minmax(0, 1fr); }
  .occasions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pro-strip__grid { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .pro-strip__mascot { width: 110px; }
  .pro-strip__grid > a { justify-self: start; }
  .console__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .args { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form__grid { grid-template-columns: minmax(0, 1fr); }
  .price-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .plus { justify-self: center; }
}

@media (max-width: 640px) {
  .steps, .occasions__grid, .args { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: minmax(0, 1fr); grid-auto-rows: 200px; }
  .gallery__tile { grid-column: auto !important; grid-row: auto !important; }
  .occ__title { height: auto; min-height: 0; }
  .occ__body { height: auto; }
  .hero { min-height: 560px; }
  .hero__title { font-size: 40px; letter-spacing: 1.5px; }
  .hero-pro__title { font-size: 34px; }
  .map__title, .occasions__title { font-size: 34px; }
  .why__title, .legal__title { font-size: 32px; }
  .cta-row > a { flex: 1 1 100%; text-align: center; }
  .footer__row, .countdown__row { flex-direction: column; align-items: flex-start; }
  .footer__legal { flex-direction: column; gap: 8px; }
  .ticker__word { font-size: 20px; }
  .ticker--iaapa .ticker__word { font-size: 18px; }
  .countdown__boxes { flex-wrap: wrap; }
  .countdown__box { min-width: 72px; }
  .form { padding: 28px 22px; }
  .rooms { flex-wrap: wrap; }
}
