/* ============================================
   NEXUS — Hero Section (Win95 Style)
   ============================================ */

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

/* ── Background ── */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
  background: var(--bg-primary);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 128, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 128, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: none;
  -webkit-mask-image: none;
}

.hero__aurora {
  display: none;
}

.hero__noise {
  display: none;
}

.hero__particles {
  display: none;
}

/* ── Content ── */

.hero__content {
  position: relative;
  z-index: var(--z-above);
  text-align: center;
  padding-top: var(--space-5xl);
  width: 100%;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.hero__title {
  margin-bottom: var(--space-xl);
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--primary);
}

.hero__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 1rem;
  color: var(--text-tertiary);
  margin-bottom: var(--space-2xl);
}

.hero__subtitle-divider {
  color: var(--text-muted);
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Scroll Indicator (hidden) ── */

.hero__scroll {
  display: none;
}

/* Responsive */
@media (max-width: 767px) {
  .hero__subtitle {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .hero__subtitle-divider {
    display: none;
  }
}
