.home-hero-section {
  position: relative;
  min-height: 100vh;
}

.hero-static,
.hero-slide,
.hero-empty-state {
  position: relative;
  min-height: 100vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media--image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 19, 0.28), rgba(7, 10, 19, 0.56)),
    linear-gradient(90deg, rgba(7, 10, 19, 0.82), rgba(7, 10, 19, 0.22));
}

.hero-content-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 56px;
}

.hero-content {
  max-width: 720px;
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--color-secondary);
  background: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-heading {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-subheading {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.hero-cta {
  margin-top: 28px;
  color: var(--color-secondary);
  background: var(--color-primary);
  box-shadow: 0 14px 34px rgba(252, 186, 3, 0.25);
}

.hero-cta:hover {
  transform: translateY(-2px);
  background: #ffd34d;
}

.hero-swiper .swiper-pagination {
  bottom: 34px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.52);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.hero-empty-state {
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(circle at top, rgba(252, 186, 3, 0.24), transparent 28%),
    linear-gradient(135deg, #10172b 0%, var(--color-secondary) 55%, #070a13 100%);
}

.hero-empty-state h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.hero-empty-state p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 767.98px) {
  .hero-content-wrap {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-heading {
    font-size: 2.8rem;
  }

  .hero-subheading {
    font-size: 1rem;
  }
}
