/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
}

/* ANIMATED PUNCHLINE */
.reveal-text {
  display: flex;
  gap: 1.2rem;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.reveal-text span {
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.8s ease forwards;
  animation-delay: calc(var(--i) * 0.4s);
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.18);
}

/* CTA BUTTON */
.hero-btn {
  opacity: 0;
  margin-top: 1rem;
  padding: 0.85rem 2.5rem;
  background: #ffffff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 2s;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

/* ANIMATIONS */
@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .reveal-text {
    flex-direction: column;
    gap: 0.5rem;
    letter-spacing: 0.08em;
  }
}
