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

:root {
  --cyan: #00D4FF;
  --pink: #FF2D8B;
  --dark: #04060E;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* ── VIDEO BG ── */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Étire le wistia-player comme un video cover
   +6% de hauteur supplémentaire = la barre Wistia du bas passe sous le bord */
.video-bg wistia-player {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -47%);  /* légèrement vers le haut pour recentrer */
  width: 177.78vh;
  height: 106vh;
  min-width: 100%;
  min-height: 59.625vw;
}

/* ── OVERLAY ── */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(4,6,14,0.45) 0%, rgba(4,6,14,0.15) 60%, transparent 100%),
    linear-gradient(to bottom,
      rgba(4,6,14,0.4)  0%,
      rgba(4,6,14,0.0)  25%,
      rgba(4,6,14,0.0)  60%,
      rgba(4,6,14,0.75) 100%
    );
}

/* ── CONTENT ── */
.content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 860px;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.35);
  border-radius: 100px;
  padding: 5px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.3s forwards;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: dotBlink 1.5s ease-in-out infinite;
}

/* ── HEADLINE ── */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 4px 24px rgba(0,0,0,0.7);
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.5s forwards;
}

h1 .cyan { color: var(--cyan); text-shadow: 0 0 24px rgba(0,212,255,0.5), 0 2px 6px rgba(0,0,0,0.9); }
h1 .pink { color: var(--pink); text-shadow: 0 0 24px rgba(255,45,139,0.5), 0 2px 6px rgba(0,0,0,0.9); }

/* ── CTA ── */
.cta-wrap {
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.7s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
  color: #04060E;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 3.2vw, 1.65rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 60px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  min-width: 300px;
  box-shadow: 0 0 0 1px rgba(0,212,255,0.5), 0 0 35px rgba(0,212,255,0.45), 0 8px 24px rgba(0,0,0,0.5);
  animation: ctaPulse 2s ease-in-out 1.5s infinite;
  transition: transform 0.12s, box-shadow 0.12s;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.4) 50%, transparent 75%);
  animation: shimmer 2.5s ease-in-out 2s infinite;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.7), 0 0 55px rgba(0,212,255,0.65), 0 12px 32px rgba(0,0,0,0.6);
  animation: none;
}

.cta-arrow {
  font-size: 1.5rem;
  font-style: normal;
  animation: arrowBounce 1.8s ease-in-out 2s infinite;
}

.cta-note {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(0,212,255,0.5), 0 0 35px rgba(0,212,255,0.45), 0 8px 24px rgba(0,0,0,0.5); }
  50%       { box-shadow: 0 0 0 1px rgba(0,212,255,0.8), 0 0 60px rgba(0,212,255,0.65), 0 8px 30px rgba(0,0,0,0.5); }
}

@keyframes shimmer {
  0%   { left: -120%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}

@keyframes dotBlink {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.3); }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  .cta-btn { min-width: unset; width: 88vw; max-width: 320px; font-size: 1.15rem; padding: 18px 24px; }
}
