/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Video layer */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}

.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Fallback gradient when no video */
.hero-video-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #0d1e36 100%);
}

.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black 0%, transparent 70%);
}

/* Dark overlay on top of video */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(11,31,58,0.90) 40%,
    rgba(11,31,58,0.50) 100%
  );
}

/* Content */
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; padding-top: 80px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.8s ease both;
}

.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.35; transform:scale(0.65); }
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8.5vw, 116px);
  line-height: 0.93; letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 26px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
  max-width: 900px;
}

.hero h1 .accent { color: var(--orange); }

.hero h1 .indent {
  display: block;
  padding-left: 100px;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.62);
  max-width: 500px; line-height: 1.78;
  margin-bottom: 42px;
  animation: fadeSlideUp 0.8s 0.2s ease both;
  font-weight: 300;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 38px; left: 5%; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.40);
  font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}

.scroll-line {
  width: 38px; height: 1px;
  background: var(--orange);
  position: relative; overflow: hidden;
}

.scroll-line::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: white;
  animation: scanline 2.2s infinite;
}

@keyframes scanline {
  0% { left: -100%; }
  100% { left: 100%; }
}
