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

:root {
  --pink:  #FF2D6B;
  --cyan:  #00D4FF;
  --dark:  #04060F;
  --dark2: #080C1A;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

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

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

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  opacity: 1;
}

.video-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20%;
  background: linear-gradient(to top, var(--dark) 55%, transparent 100%);
  z-index: 1;
}

.video-mask-bl {
  position: absolute;
  bottom: 0; left: 0;
  width: 260px;
  height: 110px;
  background: var(--dark);
  z-index: 2;
}

.video-mask-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 220px;
  height: 80px;
  background: var(--dark);
  z-index: 2;
}

.video-mask-tr {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22%;
  background: linear-gradient(to bottom, rgba(4,6,15,0.95) 0%, rgba(4,6,15,0.5) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── OVERLAYS ── */
.overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 55% at 50% 45%, rgba(255,45,107,0.05) 0%, transparent 65%),
    linear-gradient(to bottom,
      rgba(4,6,15,0.15) 0%,
      rgba(4,6,15,0.0) 20%,
      rgba(4,6,15,0.0) 50%,
      rgba(4,6,15,0.55) 78%,
      rgba(4,6,15,0.92) 100%
    );
}

.scanline {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0,212,255,0.012) 3px,
    rgba(0,212,255,0.012) 4px
  );
  pointer-events: none;
}

/* ── LOGO ── */
.logo {
  position: absolute;
  top: -12px;
  left: 81px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}

.logo img {
  width: 158px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,212,255,0.3));
}

/* ── CONTENT ── */
.content {
  position: relative;
  z-index: 5;
  padding: 0 24px;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.6s forwards;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 0 40px rgba(255,45,107,0.4);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.85s forwards;
}

h1 .accent { color: var(--pink); }
h1 .accent-cyan { color: var(--cyan); }

.sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.92rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.05s forwards;
}

/* ── CTA ── */
.cta-wrap {
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.25s forwards;
}

.cta-ring {
  position: relative;
  display: inline-block;
}

.cta-ring::before,
.cta-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 6px;
  border: 2px solid var(--pink);
  opacity: 0;
  animation: ringExpand 1.6s ease-out 2s infinite;
}

.cta-ring::after {
  animation-delay: 2.8s;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #ff2d6b 0%, #e8004d 100%);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.7rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 22px 64px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 20;
  min-width: 320px;
  box-shadow:
    0 0 0 0 rgba(255,45,107,0.8),
    0 6px 40px rgba(255,45,107,0.55),
    inset 0 1px 0 rgba(255,255,255,0.2);
  animation: ctaPulse 1.4s ease-in-out 2s 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.38) 50%,
    transparent 75%
  );
  animation: shimmer 1.8s ease-in-out 2.2s infinite;
}

.cta-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: lineFlash 1.4s ease-in-out 2s infinite;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 0 0 0 rgba(255,45,107,0),
    0 14px 50px rgba(255,45,107,0.75),
    inset 0 1px 0 rgba(255,255,255,0.25);
  animation: none;
}

.cta-btn:active {
  transform: translateY(-1px) scale(1.01);
}

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

.cta-btn:hover .cta-arrow {
  animation: none;
  transform: translateX(6px);
  transition: transform 0.2s;
}

.cta-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  animation: dotBlink 2s ease-in-out 2.5s infinite;
}

.bracket-wrap {
  position: relative;
  display: inline-block;
}

.bracket-wrap::before,
.bracket-wrap::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--cyan);
  border-style: solid;
  opacity: 0;
  animation: bracketAppear 0.5s ease 1.8s forwards,
             bracketGlow 2s ease-in-out 2.3s infinite alternate;
}

.bracket-wrap::before {
  top: -10px; left: -10px;
  border-width: 2px 0 0 2px;
}

.bracket-wrap::after {
  bottom: -10px; right: -10px;
  border-width: 0 2px 2px 0;
}

/* ── BOTTOM HUD ── */
.hud {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.hud-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
  animation: dotBlink 1.8s ease-in-out infinite;
}

.hud-dot:nth-child(2) { animation-delay: 0.3s; }
.hud-dot:nth-child(3) { animation-delay: 0.6s; }

.hud-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,45,107,0.9), 0 6px 40px rgba(255,45,107,0.55), inset 0 1px 0 rgba(255,255,255,0.2); transform: scale(1); }
  40%  { box-shadow: 0 0 0 14px rgba(255,45,107,0), 0 6px 55px rgba(255,45,107,0.7), inset 0 1px 0 rgba(255,255,255,0.2); transform: scale(1.025); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,107,0.9), 0 6px 40px rgba(255,45,107,0.55), inset 0 1px 0 rgba(255,255,255,0.2); transform: scale(1); }
}

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

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

@keyframes ringExpand {
  0%   { inset: -2px; opacity: 0.8; }
  100% { inset: -22px; opacity: 0; }
}

@keyframes lineFlash {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes bracketAppear {
  from { opacity: 0; }
  to   { opacity: 0.6; }
}

@keyframes bracketGlow {
  from { opacity: 0.3; }
  to   { opacity: 1; }
}

@keyframes dotBlink {
  0%, 100% { opacity: 0.2; }
  50%       { opacity: 0.7; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .logo img  { width: 100px; }
  .logo      { top: 14px; left: 16px; }

  h1 { font-size: 2.0rem; }

  .sub { font-size: 0.88rem; margin-bottom: 28px; }

  .cta-btn {
    display: flex;
    min-width: unset;
    width: 90vw;
    max-width: 300px;
    justify-content: center;
    font-size: 1.15rem;
    padding: 18px 24px;
  }
}
