:root {
  --bg: #05060a;
  --bg-soft: #0a0d13;
  --text: #f3f4f6;
  --muted: #8e95a3;
  --line: rgba(255,255,255,.12);
  --cyan: #00f0ff;
  --violet: #8957ff;
  --acid: #c7ff49;
  --panel: rgba(10,13,19,.58);
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 15%, rgba(137,87,255,.10), transparent 28rem),
    radial-gradient(circle at 20% 70%, rgba(0,240,255,.06), transparent 30rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.immersive { overflow: hidden; }

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .06;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
#scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(5,6,10,.88), rgba(5,6,10,.45));
  backdrop-filter: blur(18px) saturate(130%);
}
.brand {
  justify-self: start;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}
.brand-mark {
  width: 12px;
  height: 12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan);
}
.nav { display: flex; gap: 32px; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.nav a { color: var(--muted); transition: .25s; }
.nav a:hover { color: white; }
.ghost-button {
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  cursor: pointer;
  transition: .25s var(--ease);
}
.ghost-button:hover { border-color: var(--cyan); box-shadow: 0 0 30px rgba(0,240,255,.12); }

main, footer { position: relative; z-index: 2; }
.hero {
  min-height: 100svh;
  padding: 140px clamp(24px, 6vw, 90px) 140px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(180px, .9fr) minmax(260px, .55fr);
  gap: 42px;
  align-items: center;
}
.eyebrow {
  color: var(--cyan);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
  animation: pulse 1.7s infinite;
}
@keyframes pulse { 50% { opacity:.35; transform: scale(.72); } }
.hero h1 {
  margin: 20px 0 22px;
  font-size: clamp(64px, 9.2vw, 164px);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 900;
  max-width: 9ch;
}
.hero h1 span { display:block; }
.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.72);
  text-shadow: 0 0 60px rgba(137,87,255,.12);
}
.hero-lead {
  max-width: 680px;
  color: #c9ced8;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
}
.hero-actions { margin-top: 34px; display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.primary-button {
  border: 0;
  background: white;
  color: black;
  border-radius: 999px;
  padding: 17px 22px 17px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,255,255,.18); }
.button-icon {
  display:inline-grid;
  place-items:center;
  width:31px;
  height:31px;
  margin-right:10px;
  border-radius:50%;
  background:#080a10;
  color:var(--cyan);
  font-size:11px;
}
.text-button { font-size: 12px; font-weight: 800; letter-spacing:.1em; }
.text-button span { color: var(--cyan); }
.telemetry {
  display:flex;
  gap:clamp(20px, 3vw, 46px);
  margin-top:54px;
  padding-top:20px;
  border-top:1px solid var(--line);
  max-width:760px;
}
.telemetry > div { display:flex; flex-direction:column; gap:7px; }
.telemetry-label { color:var(--muted); font-size:9px; letter-spacing:.16em; }
.telemetry strong { font-size:10px; letter-spacing:.12em; }
.telemetry .accent { color:var(--acid); }

.signal-card {
  align-self:end;
  margin-bottom:18px;
  min-height:320px;
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
  backdrop-filter:blur(18px) saturate(120%);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 26px 80px rgba(0,0,0,.25);
}
.signal-topline { display:flex; justify-content:space-between; color:var(--muted); font-size:9px; letter-spacing:.14em; }
.track-title { margin-top:48px; font-size:20px; font-weight:900; letter-spacing:-.03em; }
.signal-meta { margin-top:6px; font-size:9px; color:var(--cyan); letter-spacing:.13em; }
.signal-card p { margin:22px 0 0; color:#aeb4c0; line-height:1.55; font-size:13px; }
.mini-spectrum { height:72px; display:flex; gap:3px; align-items:center; margin-top:24px; overflow:hidden; }
.mini-spectrum i { flex:1; min-width:2px; height:8%; background:linear-gradient(to top, var(--violet), var(--cyan)); border-radius:999px; transform-origin:center; transition:height 70ms linear; box-shadow:0 0 10px rgba(0,240,255,.35); }

.section { padding: clamp(100px, 12vw, 190px) clamp(24px, 6vw, 90px); }
.section-index { color:#545b6a; font-size:11px; letter-spacing:.16em; }
.statement {
  display:grid;
  grid-template-columns: 90px 1fr minmax(240px, .42fr);
  gap:44px;
  align-items:start;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:rgba(5,6,10,.68);
}
.statement h2, .section-head h2, .manifesto-copy h2, .contact h2 {
  margin:16px 0 0;
  font-size:clamp(42px, 6vw, 92px);
  line-height:.98;
  letter-spacing:-.055em;
}
.statement h2 span { color:#686f7d; }
.statement > p { margin:30px 0 0; color:#a9afba; line-height:1.7; }
.section-head { display:flex; justify-content:space-between; gap:30px; align-items:flex-start; }
.service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:58px; perspective:1200px; }
.service-card {
  position:relative;
  min-height:430px;
  display:flex;
  flex-direction:column;
  padding:28px;
  border:1px solid var(--line);
  border-radius:26px;
  background:linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.016));
  backdrop-filter:blur(14px);
  transform-style:preserve-3d;
  transition:transform .18s ease-out, border-color .25s, background .25s;
  overflow:hidden;
}
.service-card::before {
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,240,255,.16), transparent 34%);
  opacity:0;
  transition:opacity .25s;
  pointer-events:none;
}
.service-card:hover { border-color:rgba(0,240,255,.35); background-color:rgba(255,255,255,.025); }
.service-card:hover::before { opacity:1; }
.service-number { color:var(--muted); font-size:10px; letter-spacing:.15em; }
.service-symbol { margin-top:64px; color:var(--cyan); font-size:28px; text-shadow:0 0 25px var(--cyan); }
.service-card h3 { margin:24px 0 14px; font-size:30px; letter-spacing:-.04em; }
.service-card p { color:#d4d9e2; line-height:1.72; font-size:17px; font-weight:450; text-shadow:0 1px 12px rgba(0,0,0,.28); }
.service-tag { margin-top:auto; padding-top:28px; color:#747c8b; font-size:9px; letter-spacing:.15em; }

.manifesto {
  min-height:84vh;
  display:grid;
  grid-template-columns:1.05fr .8fr;
  gap:8vw;
  align-items:center;
  overflow:hidden;
}
.huge-copy {
  font-size:clamp(92px, 15vw, 260px);
  line-height:.69;
  font-weight:950;
  letter-spacing:-.085em;
  color:transparent;
  -webkit-text-stroke:1px rgba(255,255,255,.17);
  user-select:none;
}
.huge-copy span { color:rgba(255,255,255,.06); -webkit-text-stroke:1px rgba(0,240,255,.25); }
.manifesto-copy p { color:#abb1bd; line-height:1.75; max-width:640px; }

.contact { padding-top:80px; padding-bottom:160px; }
.contact-panel {
  position:relative;
  overflow:hidden;
  padding:clamp(36px,7vw,100px);
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 80% 20%, rgba(137,87,255,.18), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.018));
  backdrop-filter:blur(22px);
}
.contact-panel::after {
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  right:-130px;
  bottom:-170px;
  border:1px solid rgba(0,240,255,.25);
  border-radius:50%;
  box-shadow:0 0 90px rgba(0,240,255,.08), inset 0 0 70px rgba(137,87,255,.05);
}
.contact-panel > * { position:relative; z-index:2; }
.contact-panel p { color:#aeb4bf; font-size:18px; }
.contact-links { margin-top:54px; display:grid; gap:12px; max-width:820px; }
.contact-links a {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:20px 0;
  border-bottom:1px solid var(--line);
  font-size:clamp(20px,3vw,42px);
  letter-spacing:-.03em;
}
.contact-links a:hover span { transform:translate(4px,-4px); color:var(--cyan); }
.contact-links span { transition:.2s; }
.social-row { margin-top:38px; display:flex; gap:24px; font-size:11px; font-weight:800; letter-spacing:.13em; }
.social-row a:hover { color:var(--cyan); }

footer {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:28px clamp(24px,6vw,90px) 170px;
  border-top:1px solid var(--line);
  color:#606775;
  font-size:9px;
  letter-spacing:.13em;
}


.player {
  position:fixed;
  z-index:40;
  left:50%;
  bottom:max(18px, env(safe-area-inset-bottom));
  transform:translateX(-50%);
  width:min(940px, calc(100% - 30px));
  min-height:82px;
  display:grid;
  grid-template-columns:58px minmax(0,1fr) 110px 48px;
  align-items:center;
  gap:16px;
  padding:12px 18px 12px 12px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:24px;
  background:rgba(8,10,15,.74);
  backdrop-filter:blur(25px) saturate(140%);
  box-shadow:0 20px 70px rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.06);
}
.player-play {
  width:56px;
  height:56px;
  border:0;
  border-radius:17px;
  background:linear-gradient(135deg,var(--cyan),#f4ffff 65%);
  color:#020407;
  cursor:pointer;
  font-weight:900;
  box-shadow:0 0 30px rgba(0,240,255,.18);
}
.player-line1, .player-line2 { display:flex; justify-content:space-between; gap:16px; align-items:center; }
.player-line1 strong { font-size:11px; letter-spacing:.12em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.player-line1 span, .player-line2 { color:#737b8a; font-size:9px; letter-spacing:.1em; }
.seek {
  position:relative;
  width:100%;
  height:18px;
  margin:4px 0;
  padding:0;
  border:0;
  background:transparent;
  cursor:pointer;
}
.seek::before {
  content:"";
  position:absolute;
  left:0; right:0; top:8px;
  height:2px;
  background:rgba(255,255,255,.13);
}
.seek span { position:absolute; left:0; top:8px; width:0; height:2px; background:linear-gradient(90deg,var(--violet),var(--cyan)); box-shadow:0 0 12px rgba(0,240,255,.6); }
.level-meter { display:flex; align-items:center; justify-content:center; gap:4px; height:34px; }
.level-meter i { width:3px; height:18%; background:#69717f; border-radius:999px; transform-origin:bottom; transition:height 70ms linear, background .15s; }
.mute-button { border:0; background:transparent; color:#757d8b; font-size:9px; font-weight:900; letter-spacing:.1em; cursor:pointer; }

.immersive-hud {
  position:fixed;
  z-index:60;
  inset:0;
  display:none;
  pointer-events:none;
  padding:26px;
  color:rgba(255,255,255,.56);
  font-size:9px;
  letter-spacing:.14em;
}
body.immersive .immersive-hud { display:grid; grid-template-columns:1fr 1fr 1fr; align-items:start; }
body.immersive .topbar, body.immersive main, body.immersive footer { opacity:0; pointer-events:none; }
body.immersive #scene { z-index:50; pointer-events:auto; }
body.immersive .player { z-index:70; }
.hud-center { text-align:center; }
.immersive-hud button { justify-self:end; pointer-events:auto; border:0; background:transparent; color:inherit; cursor:pointer; letter-spacing:inherit; }

.reveal { opacity:1; transform:none; }
.animations-ready .reveal { opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.animations-ready .reveal.visible { opacity:1; transform:none; }



/* V5.5 — logo Collins: plus petit et centré dans la moitié droite */
.hero-logo-stage {
  grid-column: 2 / 4;
  align-self: center;
  justify-self: stretch;
  min-width: 0;
  min-height: 300px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
}
.hero-logo-stage .logo-aura,
.hero-logo-stage .logo-ring { pointer-events: none; }
.hero-logo-stage .logo-aura {
  position: absolute;
  width: min(38vw, 560px);
  height: min(16vw, 230px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,255,73,.20), rgba(0,240,255,.07) 42%, transparent 72%);
  filter: blur(28px);
}
.hero-logo-stage .logo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  opacity: .45;
}
.hero-logo-stage .ring-a { width: min(36vw, 520px); height: min(13vw, 190px); transform: rotate(-8deg); }
.hero-logo-stage .ring-b { width: min(31vw, 450px); height: min(17vw, 245px); transform: rotate(14deg); border-color: rgba(137,87,255,.10); }
.hero-logo-stage .ring-c { width: min(27vw, 390px); height: min(10vw, 145px); transform: rotate(3deg); border-color: rgba(199,255,73,.10); }
.hero-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(34vw, 500px);
  max-width: 78%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(199,255,73,.42)) drop-shadow(0 0 55px rgba(199,255,73,.18));
}

@media (max-width: 1000px) {
  .nav { display:none; }
  .hero-logo-stage { grid-column: 1; min-height: 240px; }
  .hero-logo { width: min(62vw, 460px); max-width: 72%; }
  .hero-logo-stage .logo-aura { width: min(66vw, 520px); height: 180px; }
  .topbar { grid-template-columns:1fr auto; }
  .hero { grid-template-columns:1fr; padding-top:150px; }
  .hero-spacer { height:26vh; }
  .signal-card { max-width:520px; }
  .statement { grid-template-columns:50px 1fr; }
  .statement > p { grid-column:2; }
  .service-grid { grid-template-columns:1fr; }
  .service-card { min-height:330px; }
  .service-symbol { margin-top:36px; }
  .manifesto { grid-template-columns:1fr; }
  .huge-copy { opacity:.7; }
}

@media (max-width: 680px) {
  .topbar { height:72px; padding:0 18px; }
  .hero-logo-stage { min-height: 180px; }
  .hero-logo { width: min(70vw, 380px); max-width: 78%; }
  .hero-logo-stage .logo-aura { width: 78vw; height: 130px; }
  .hero-logo-stage .logo-ring { display:none; }
  .ghost-button { font-size:8px; padding:10px 12px; }
  .brand { font-size:11px; }
  .hero { padding:116px 20px 126px; gap:22px; justify-items:center; }
  .hero-copy { width:100%; justify-self:center; text-align:center; }
  .hero h1 {
    width:100%;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
    font-size:clamp(52px,17vw,82px);
    line-height:.82;
    letter-spacing:-.065em;
    text-align:center;
  }
  .hero-lead { font-size:16px; }
  .telemetry { gap:18px; overflow:auto; }
  .telemetry > div { min-width:90px; }
  .section { padding:92px 20px; }
  .statement { grid-template-columns:1fr; gap:22px; }
  .statement > p { grid-column:auto; }
  .section-head { flex-direction:column-reverse; }
  .contact-panel { border-radius:26px; }
  .contact-links a { font-size:20px; }
  footer { flex-direction:column; padding:28px 20px 218px; }
  .player { grid-template-columns:50px 1fr 34px; gap:10px; padding:9px 12px 9px 9px; border-radius:20px; }
  .player-play { width:48px; height:48px; border-radius:14px; }
  .level-meter { display:none; }
  .player-line2 span:first-child { display:none; }
  .mute-button { font-size:0; }
  .mute-button::after { content:"VOL"; font-size:8px; }
  body.immersive .immersive-hud { grid-template-columns:1fr 1fr; }
  .hud-center { display:none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

/* V5.9 — DJ réaliste au bord du dancefloor, parallax holographique */
.dj-holo-stage {
  grid-column: 2 / 4;
  align-self: end;
  justify-self: center;
  position: relative;
  width: min(33vw, 475px);
  min-width: 330px;
  aspect-ratio: 561 / 701;
  margin-bottom: -86px;
  z-index: 6;
  perspective: 1300px;
  pointer-events: none;
  overflow: visible;
}

.dj-stage-aura {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: 112%;
  height: 48%;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%, rgba(0,240,255,.20), transparent 45%),
    radial-gradient(circle at 35% 45%, rgba(137,87,255,.16), transparent 52%),
    radial-gradient(circle at 70% 48%, rgba(199,255,73,.09), transparent 48%);
  filter: blur(34px);
  opacity: .9;
  animation: djAura 6.8s ease-in-out infinite;
}

.dj-floor-shadow {
  position: absolute;
  left: 50%;
  bottom: 2%;
  width: 90%;
  height: 9%;
  transform: translateX(-50%) rotateX(72deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.55), rgba(0,240,255,.11) 45%, transparent 72%);
  filter: blur(9px);
  opacity: .85;
}

.dj-parallax {
  --beat-scale: 1;
  --beat-lift: 0px;
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateY(var(--beat-lift)) scale(var(--beat-scale));
  transform-origin: 50% 82%;
  transition: transform 90ms linear;
  will-change: transform;
}

.dj-cutout-stack,
.dj-cutout,
.dj-ghost {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dj-cutout-stack {
  transform-style: preserve-3d;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.38));
}

.dj-base {
  z-index: 3;
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,.08))
    drop-shadow(0 0 24px rgba(0,240,255,.12));
}

/* Découpes holographiques alignées : profondeur sans déformation du visage. */
.dj-slice {
  z-index: 5;
  opacity: .24;
  mix-blend-mode: screen;
  filter: saturate(1.25) contrast(1.05);
  will-change: transform;
}
.dj-slice-head {
  clip-path: inset(0 0 54% 0);
  transform: translate3d(0, 0, 34px);
  filter: hue-rotate(165deg) saturate(1.7) brightness(1.12);
}
.dj-slice-body {
  clip-path: inset(26% 0 28% 0);
  transform: translate3d(0, 0, 20px);
  filter: hue-rotate(205deg) saturate(1.45) brightness(1.06);
}
.dj-slice-booth {
  clip-path: inset(56% 0 0 0);
  transform: translate3d(0, 0, 8px);
  opacity: .18;
  filter: hue-rotate(120deg) saturate(1.35) brightness(1.05);
}

.dj-ghost {
  z-index: 1;
  opacity: .09;
  mix-blend-mode: screen;
  filter: contrast(1.3) saturate(1.6) blur(.35px);
}
.dj-ghost-cyan {
  transform: translate3d(0, 0, -12px) scale(1.012);
  filter: sepia(1) saturate(8) hue-rotate(132deg) brightness(1.2) blur(.5px);
}
.dj-ghost-violet {
  transform: translate3d(0, 0, -18px) scale(1.018);
  filter: sepia(1) saturate(9) hue-rotate(205deg) brightness(1.05) blur(.6px);
  opacity: .065;
}

.dj-holo-scan {
  position: absolute;
  z-index: 7;
  inset: 3% 2% 12%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0 5px,
    rgba(63,240,231,.055) 6px,
    rgba(255,255,255,0) 7px 11px
  );
  mix-blend-mode: screen;
  opacity: .5;
  -webkit-mask-image: url("dj-booth.png");
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("dj-booth.png");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  animation: holoScan 5.5s linear infinite;
}

.dj-glass-reflection {
  position: absolute;
  z-index: 8;
  left: 5%;
  right: 5%;
  bottom: 5.2%;
  height: 27%;
  border-radius: 34px 34px 18px 18px;
  background:
    linear-gradient(112deg, rgba(255,255,255,.30), rgba(255,255,255,0) 20%, rgba(0,240,255,.08) 44%, rgba(255,255,255,.12) 60%, rgba(255,255,255,0) 78%),
    linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px rgba(255,255,255,.28),
    inset 0 -12px 24px rgba(0,240,255,.035),
    0 0 26px rgba(0,240,255,.04);
  mix-blend-mode: screen;
  opacity: .48;
  overflow: hidden;
}
.dj-glass-reflection::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.24) 48%, transparent 64%);
  transform: translateX(-46%);
  animation: boothGlassSweep 6.2s ease-in-out infinite;
}

.booth-logo {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 5.5%;
  width: 122%;
  max-width: none;
  height: auto;
  transform: translateX(-50%) translateZ(48px) rotateX(-1deg);
  transform-origin: center;
  filter:
    drop-shadow(0 0 7px rgba(255,255,255,.20))
    drop-shadow(0 0 17px rgba(199,255,73,.70))
    drop-shadow(0 0 38px rgba(199,255,73,.28));
  mix-blend-mode: screen;
  opacity: .98;
  animation: boothLogoFloat 5.8s ease-in-out infinite;
}

body.is-playing .dj-base {
  filter:
    drop-shadow(0 0 14px rgba(255,255,255,.10))
    drop-shadow(0 0 30px rgba(0,240,255,.19));
}
body.is-playing .dj-slice { opacity: .32; }
body.is-playing .dj-holo-scan { opacity: .65; }
body.is-playing .booth-logo {
  filter:
    drop-shadow(0 0 9px rgba(255,255,255,.22))
    drop-shadow(0 0 22px rgba(199,255,73,.82))
    drop-shadow(0 0 50px rgba(199,255,73,.34));
}

@keyframes djAura {
  0%,100% { transform: translateX(-50%) scale(.96); opacity: .7; }
  50% { transform: translateX(-50%) scale(1.06); opacity: 1; }
}
@keyframes holoScan {
  from { background-position: 0 0; }
  to { background-position: 0 88px; }
}
@keyframes boothGlassSweep {
  0%, 20% { transform: translateX(-52%); opacity: .18; }
  50% { transform: translateX(16%); opacity: .75; }
  80%, 100% { transform: translateX(62%); opacity: .12; }
}
@keyframes boothLogoFloat {
  0%,100% { transform: translateX(-50%) translateY(0) translateZ(48px) rotateZ(-.4deg); }
  50% { transform: translateX(-50%) translateY(-4px) translateZ(54px) rotateZ(.4deg); }
}

@media (max-width: 1000px) {
  .dj-holo-stage {
    grid-column: 1;
    justify-self: center;
    width: min(58vw, 440px);
    min-width: 300px;
    margin: 16px auto -72px;
  }
}

@media (max-width: 680px) {
  .dj-holo-stage {
    width: min(82vw, 380px);
    min-width: 0;
    margin: 18px auto -42px;
    justify-self: center;
  }
  .booth-logo { width: 116%; bottom: 5.7%; }
  .dj-ghost { opacity: .055; }
  .dj-slice { opacity: .16; }
  .dj-glass-reflection { border-radius: 22px 22px 12px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .dj-parallax,
  .dj-slice,
  .dj-ghost,
  .dj-stage-aura,
  .dj-holo-scan,
  .booth-logo,
  .dj-glass-reflection::after {
    animation: none !important;
    transition: none !important;
  }
}

/* V5.9.10 — ouverture showtime */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  background: #020306;
  isolation: isolate;
  animation: introContainer 3.05s cubic-bezier(.16,.84,.24,1) forwards;
}
.intro-shutter {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background:
    linear-gradient(90deg, rgba(0,240,255,.035), transparent 24%),
    #020306;
  z-index: 2;
  box-shadow: 0 0 90px rgba(0,240,255,.06) inset;
}
.intro-shutter-left {
  left: 0;
  transform-origin: left center;
  animation: introShutterLeft 3.05s cubic-bezier(.72,0,.16,1) forwards;
}
.intro-shutter-right {
  right: 0;
  transform-origin: right center;
  animation: introShutterRight 3.05s cubic-bezier(.72,0,.16,1) forwards;
}
.intro-core {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.intro-logo {
  width: min(62vw, 900px);
  max-height: 52vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(.52) translateZ(-180px);
  filter:
    blur(14px)
    brightness(2.1)
    drop-shadow(0 0 20px rgba(0,240,255,.65))
    drop-shadow(0 0 70px rgba(137,87,255,.34));
  animation: introLogoImpact 2.35s cubic-bezier(.16,.84,.24,1) forwards;
}
.intro-core::before,
.intro-core::after {
  content:"";
  position:absolute;
  width:min(70vw,980px);
  aspect-ratio:1;
  border-radius:50%;
  border:1px solid rgba(0,240,255,.23);
  opacity:0;
  transform:scale(.12) rotateX(68deg);
  animation:introRing 2.2s .18s cubic-bezier(.16,.84,.24,1) forwards;
}
.intro-core::after {
  width:min(56vw,760px);
  border-color:rgba(199,255,73,.20);
  animation-delay:.36s;
}
.intro-scan {
  position:absolute;
  z-index:7;
  left:7%;
  right:7%;
  top:50%;
  height:2px;
  opacity:0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.98), var(--cyan), transparent);
  box-shadow:0 0 30px var(--cyan), 0 0 90px rgba(0,240,255,.65);
  transform:scaleX(.05);
  animation:introScan 1.25s .68s cubic-bezier(.16,.84,.24,1) forwards;
}
.intro-energy {
  position:absolute;
  z-index:1;
  left:50%;
  top:50%;
  width:12vmax;
  height:12vmax;
  border-radius:50%;
  transform:translate(-50%,-50%) scale(.1);
  filter:blur(32px);
  opacity:0;
}
.intro-energy-a {
  background:rgba(0,240,255,.72);
  animation:introEnergy 2.2s .28s ease-out forwards;
}
.intro-energy-b {
  background:rgba(137,87,255,.48);
  animation:introEnergy 2.35s .40s ease-out forwards;
}
.intro-flash {
  position:absolute;
  z-index:10;
  inset:0;
  opacity:0;
  background:
    radial-gradient(circle at 50% 54%, rgba(255,255,255,.96), rgba(0,240,255,.38) 17%, rgba(137,87,255,.12) 36%, transparent 64%);
  mix-blend-mode:screen;
  animation:introFlash 2.1s .72s ease-out forwards;
}
body.intro-active {
  overflow: hidden;
}
body.intro-active main {
  animation: introSitePush 3.05s cubic-bezier(.16,.84,.24,1) both;
  transform-origin: 50% 35%;
}
body.intro-active .topbar {
  animation: introChrome 3.05s ease-out both;
}
body.intro-active .player {
  animation: introPlayer 3.05s cubic-bezier(.16,.84,.24,1) both;
}

@keyframes introContainer {
  0%, 84% { visibility:visible; opacity:1; }
  96% { opacity:0; }
  100% { opacity:0; visibility:hidden; }
}
@keyframes introShutterLeft {
  0%, 43% { transform:translateX(0); }
  78%,100% { transform:translateX(-108%); }
}
@keyframes introShutterRight {
  0%, 43% { transform:translateX(0); }
  78%,100% { transform:translateX(108%); }
}
@keyframes introLogoImpact {
  0% { opacity:0; transform:scale(.52) translateZ(-180px) rotateZ(-2deg); filter:blur(14px) brightness(2.2) drop-shadow(0 0 12px rgba(0,240,255,.45)); }
  30% { opacity:1; transform:scale(1.08) translateZ(30px) rotateZ(.45deg); filter:blur(0) brightness(1.45) drop-shadow(0 0 35px rgba(0,240,255,.78)) drop-shadow(0 0 80px rgba(137,87,255,.38)); }
  52% { opacity:1; transform:scale(.98) translateZ(0) rotateZ(0); filter:blur(0) brightness(1.08) drop-shadow(0 0 22px rgba(0,240,255,.55)); }
  74% { opacity:1; transform:scale(1.02) translateZ(15px); }
  100% { opacity:0; transform:scale(1.22) translateZ(80px); filter:blur(5px) brightness(1.8) drop-shadow(0 0 45px rgba(0,240,255,.65)); }
}
@keyframes introRing {
  0% { opacity:0; transform:scale(.12) rotateX(68deg); }
  32% { opacity:.75; }
  100% { opacity:0; transform:scale(1.65) rotateX(68deg); }
}
@keyframes introScan {
  0% { opacity:0; transform:scaleX(.04); }
  25% { opacity:1; }
  72% { opacity:.95; transform:scaleX(1); }
  100% { opacity:0; transform:scaleX(1.16); }
}
@keyframes introEnergy {
  0% { opacity:0; transform:translate(-50%,-50%) scale(.1); }
  28% { opacity:.62; }
  100% { opacity:0; transform:translate(-50%,-50%) scale(9); }
}
@keyframes introFlash {
  0%,38% { opacity:0; }
  45% { opacity:.96; }
  50% { opacity:.08; }
  57% { opacity:.48; }
  68%,100% { opacity:0; }
}
@keyframes introSitePush {
  0% { transform:scale(1.16); filter:blur(12px) brightness(.36); }
  48% { transform:scale(1.10); filter:blur(7px) brightness(.48); }
  78% { transform:scale(.985); filter:blur(0) brightness(1.18); }
  100% { transform:scale(1); filter:blur(0) brightness(1); }
}
@keyframes introChrome {
  0%,55% { opacity:0; transform:translateY(-22px); }
  100% { opacity:1; transform:translateY(0); }
}
@keyframes introPlayer {
  0%,55% { opacity:0; transform:translateX(-50%) translateY(34px) scale(.94); }
  82% { opacity:1; transform:translateX(-50%) translateY(-3px) scale(1.015); }
  100% { opacity:1; transform:translateX(-50%) translateY(0) scale(1); }
}

@media (max-width:680px) {
  .intro-logo { width:min(86vw,620px); }
  .intro-core::before { width:92vw; }
  .intro-core::after { width:74vw; }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro { display:none !important; }
  body.intro-active { overflow:auto; }
  body.intro-active main,
  body.intro-active .topbar,
  body.intro-active .player { animation:none !important; }
}
