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

body {
  margin: 0;
  background: #FFFCF7;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
}

/* ═══════════════════════════════════════════════
   WRAPPER + STAGE
═══════════════════════════════════════════════ */
#wrapper {
  width: 100vw;
  overflow: hidden;
}

#stage {
  width: 1920px;
  height: 822px;
  position: relative;
  transform-origin: top left;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
}

/* ═══════════════════════════════════════════════
   SLIDES — common
═══════════════════════════════════════════════ */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 1920px;
  height: 822px;
}

/* ═══════════════════════════════════════════════
   SLIDE 1 — Title card
═══════════════════════════════════════════════ */
#slide1 {
  background: #FFFCF7;
  z-index: 1;
  transition: opacity .6s ease;
}
#slide1.hide { opacity: 0; pointer-events: none; }

/* ─── Base text ─── */
.T {
  position: absolute;
  font-family: 'Be Vietnam Pro', Arial, sans-serif;
  font-weight: 500;
  color: #252525;
  font-size: 120px;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
}
.T.vis { opacity: 1; }

/* ─── Play / Replay icon ─── */
#playIcon {
  position: absolute;
  left: 226px; top: 132px;
  height: 96px; width: auto;
  z-index: 10;
  animation: rPulse 2.4s ease-in-out infinite;
}

/* ─── ROW 1: AAN ▬▬▬ CHICAGO ─── */
#tAan     { left: 380px;  top: 130px; }
#tChicago { left: 1031px; top: 130px; }

#dashBar {
  position: absolute;
  left: 699px; top: 186px;
  width: 0; height: 18px;
  background: #252525;
  transition: width .5s cubic-bezier(.65,0,.35,1);
}
#dashBar.on { width: 308px; }

/* ─── ROW 2 ─── */
#tAvril { left: 226px; top: 265px; }

.brain-wrap {
  position: absolute;
  left: 1092px; top: 273px;
  width: 128px; height: 128px;
  opacity: 0;
  transform: scale(.2) rotate(-22deg);
  transition: opacity .5s ease, transform .52s cubic-bezier(.34,1.56,.64,1);
}
.brain-wrap.on { opacity: 1; transform: scale(1) rotate(0deg); }
.brain-wrap > img { width: 100%; height: 100%; object-fit: contain; position: relative; z-index: 1; }

#brainCanvas {
  position: absolute;
  top: -18px; left: -18px;
  width: 164px; height: 164px;
  z-index: 2; pointer-events: none;
}

.chi-wrap {
  position: absolute;
  left: 1311px; top: 257px;
  width: 338px; height: 225px;
  border-radius: 8px; overflow: hidden;
  opacity: 0;
  clip-path: inset(0 100% 0 0 round 8px);
  transition: clip-path .9s cubic-bezier(.65,0,.35,1), opacity .05s;
}
.chi-wrap.on { opacity: 1; clip-path: inset(0 0% 0 0 round 8px); }
.chi-wrap > img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── ROW 3 ─── */
#t2026   { left: 226px; top: 400px; }
#tDirect { left: 765px; top: 400px; }

#dot {
  position: absolute;
  left: 635px; top: 412px;
  width: 90px; height: 90px;
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s, transform .48s cubic-bezier(.34,1.56,.64,1);
}
#dot.on { opacity: 1; transform: scale(1); }

/* ─── ROW 4: BEST OF + subtitle ─── */
#bestofPill {
  position: absolute;
  left: 216px; top: 568px;
  width: 590px; height: auto;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
#bestofPill.on { opacity: 1; transform: translateY(0); }

#bestofTxt {
  position: absolute;
  left: 296px; top: 568px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 500;
  font-size: 100px;
  line-height: 1;
  color: #252525;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
#bestofTxt.on { opacity: 1; transform: translateY(0); }

#subImg {
  position: absolute;
  left: 840px; top: 582px;
  height: 80px; width: auto;
  max-width: 730px;
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity .52s ease, transform .52s ease;
}
#subImg.on { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════════
   SLIDE 2 — Chicago fullscreen
═══════════════════════════════════════════════ */
#slide2 {
  background: url('img/chicago.png') center/cover no-repeat;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
  overflow: hidden;
}
#slide2.open {
  opacity: 1;
  pointer-events: auto;
}

/* dark gradient overlay */
#slide2::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.28) 0%,
    rgba(0,0,0,.08) 42%,
    rgba(0,0,0,.50) 100%);
  z-index: 0;
}

/* ─── CHICAGO big text ─── */
#s2Chicago {
  position: absolute;
  left: 0; right: 0; bottom: 155px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 320px;
  line-height: 1;
  color: rgba(255,255,255,.88);
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 0 40px;
  z-index: 1;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease 0.3s, transform 1.2s cubic-bezier(.25,.46,.45,.94) 0.3s;
}
#slide2.open #s2Chicago {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Three columns ─── */
#s2Cols {
  position: absolute;
  left: 860px; top: 74px;
  display: flex;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}
#slide2.open #s2Cols {
  opacity: 1;
  transform: translateY(0);
}

.s2Col { padding: 0 46px; }
.s2Col:first-child { padding-left: 0; }

.s2Divider {
  width: 1.5px;
  height: 150px;
  background: rgba(255,255,255,.50);
  flex-shrink: 0;
}

.s2Label {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 500;
  font-size: 25px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.55;
  white-space: nowrap;
}

.s2Num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 78px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════
   SLIDE 3 — Comité scientifique
═══════════════════════════════════════════════ */
#slide3 {
  background: #FFFCF7;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}
#slide3.active {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Play icon (decorative) ─── */
.s3-play {
  position: absolute;
  left: 220px; top: 314px;
  height: 52px; width: auto;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .5s ease, transform .5s ease;
}
#slide3.anim .s3-play {
  opacity: 1;
  transform: translateX(0);
  animation: rPulse 2.4s ease-in-out infinite;
  animation-delay: .5s;
}

@keyframes rPulse {
  0%,100% { transform: scale(1);    opacity: .75; }
  50%      { transform: scale(1.28); opacity: 1;   }
}

/* ─── AAN big text ─── */
.s3-aan {
  position: absolute;
  left: 290px; top: 300px;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  color: #252525;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .6s ease .1s, transform .6s ease .1s;
}
#slide3.anim .s3-aan { opacity: 1; transform: translateX(0); }

/* ─── COMITÉ SCIENTIFIQUE pill ─── */
.s3-pill {
  position: absolute;
  left: 220px; top: 400px;
  width: 520px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease .4s, transform .55s ease .4s;
}
#slide3.anim .s3-pill { opacity: 1; transform: translateY(0); }

.s3-pill img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: fill;
}
.s3-pill span {
  position: relative;
  z-index: 1;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #252525;
  white-space: nowrap;
  line-height: 1;
}

/* ─── Photo cards ─── */
.s3-card {
  position: absolute;
  opacity: 0;
  transform: translateY(30px) scale(.9);
  transition: opacity .5s ease calc(var(--i) * .12s + .5s),
              transform .5s cubic-bezier(.34,1.56,.64,1) calc(var(--i) * .12s + .5s);
}
#slide3.anim .s3-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.s3-card img {
  display: block;
  border-radius: 16px;
  object-fit: cover;
  transition: transform .3s ease, box-shadow .3s ease;
}
.s3-card:hover img {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}

.s3-name {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #252525;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* ─── Individual card positions ─── */
#s3Eric    { left: 820px;  top: 84px; }
#s3Eric img    { width: 280px; height: 530px; }

#s3Manon   { left: 1140px; top: 84px; }
#s3Manon img   { width: 240px; height: 240px; }

#s3Olivier { left: 1430px; top: 84px; }
#s3Olivier img { width: 240px; height: 240px; }

#s3Lydiane { left: 1140px; top: 374px; }
#s3Lydiane img { width: 240px; height: 240px; }

#s3Francoise { left: 1430px; top: 374px; }
#s3Francoise img { width: 240px; height: 240px; }
