.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-5xl) var(--space-lg) var(--space-4xl);
  overflow: hidden;
}

/* Full-bleed background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay to dim the video and maintain text legibility */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 19, 19, 0.80);
  z-index: 0;
  pointer-events: none;
}

/* Noise texture overlay — sits above video + dimmer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/noise-texture.svg');
  background-repeat: repeat;
  pointer-events: none;
  z-index: 2;
  opacity: 0.4;
}

/* Bottom gradient fade into next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-void));
  pointer-events: none;
  z-index: 3;
}

/* Decorative background text */
.hero__bg-text {
  font-size: clamp(8rem, 18vw, 16rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-text-stroke: 1px rgba(133, 22, 255, 0.04);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 60%;
  margin-left: 10%;
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__headline {
  font-size: var(--text-hero);
  margin-bottom: var(--space-lg);
  line-height: var(--leading-tight);
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-purple) 65%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subhead {
  font-size: 1.185rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero__trust {
  display: flex;
  gap: var(--space-xl);
  font-size: var(--text-label);
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--text-tertiary);
  font-weight: var(--weight-medium);
}

.hero__trust span {
  position: relative;
  padding-left: 1rem;
}

.hero__trust span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 8px var(--accent-purple);
}

.hero__trust span:first-child {
  padding-left: 0;
}

.hero__trust span:first-child::before {
  display: none;
}

/* Primary ambient glow — larger and more prominent */
.hero__ambient {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(133, 22, 255, 0.2) 0%,
    rgba(133, 22, 255, 0.08) 30%,
    rgba(123, 228, 255, 0.04) 55%,
    transparent 70%
  );
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

/* Secondary ambient — offset for layered depth */
.hero__ambient--secondary {
  top: 30%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(123, 228, 255, 0.1) 0%,
    rgba(123, 228, 255, 0.03) 40%,
    transparent 65%
  );
  filter: blur(100px);
}

/* Decorative gradient line */
.hero__gradient-line {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan), transparent);
  opacity: 0.2;
  z-index: 1;
  border-radius: 2px;
}
