/* ============================================================
   HERO SECTION — Cinematic Full-Width
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,6,23,0.88) 0%,
    rgba(10,36,99,0.75) 40%,
    rgba(15,23,42,0.82) 100%
  );
  z-index: 1;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--sst-orange);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
}

.hero__content {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  padding-top: 100px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 20px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeInDown 0.8s var(--ease-smooth);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--sst-orange);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255,107,0,0.6);
}

.hero__badge-text {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sst-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: var(--space-8);
  max-width: 900px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.1s both;
}

.hero__headline-highlight {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subheadline {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.65);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s var(--ease-smooth) 0.25s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: 0;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}



/* Decorative Orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(255,107,0,0.15);
  top: -150px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(10,36,99,0.25);
  bottom: -200px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: fadeInUp 1s var(--ease-smooth) 0.8s both;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.hero__scroll-indicator.hidden {
  opacity: 0 !important;
  pointer-events: none !important;
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--sst-orange);
  border-radius: var(--radius-full);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: slideUp 1.5s ease-in-out infinite;
}

.hero__scroll-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero { 
    min-height: 100svh; 
    padding-bottom: var(--space-8);
  }
  .hero__content { 
    padding: 0 var(--space-6); 
    padding-top: 110px; 
  }
  .hero__badge {
    margin-bottom: var(--space-4);
    padding: 6px 16px;
  }
  .hero__headline {
    font-size: clamp(2.2rem, 1.8rem + 2vw, 3rem);
    margin-bottom: var(--space-4);
  }
  .hero__subheadline {
    font-size: var(--text-base);
    margin-bottom: var(--space-8);
  }
  .hero__ctas { 
    flex-direction: column; 
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }
  .hero__ctas .btn { 
    width: 100%; 
  }
  .hero__scroll-indicator {
    display: none !important;
  }
}

@media (max-height: 780px) {
  .hero__scroll-indicator {
    display: none !important;
  }
}
