.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-section__backgrounds,
.hero-section__overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.4s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-section__overlay {
  background:
    linear-gradient(90deg, rgba(10,45,105,0.82) 0%, rgba(10,45,105,0.74) 35%, rgba(10,45,105,0.48) 60%, rgba(10,45,105,0.30) 100%);
  z-index: 1;
}

.hero-section__container {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section__content {
  width: 100%;
  max-width: 860px;
  padding-top: 5.5rem;
  padding-bottom: 6rem;
  text-align: center;
  margin-inline: auto;
}

.hero-copy {
  display: none;
}

.hero-copy.is-active {
  display: block;
}

.hero-copy .eyebrow {
  margin-inline: auto;
}

.hero-copy h1 {
  margin-top: 1rem;
  max-width: 11.5ch;
  margin-inline: auto;
  color: var(--color-white);
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  color: var(--color-primary);
}

.hero-copy p {
  max-width: 620px;
  margin: 1.2rem auto 0;
  color: rgba(255,255,255,0.84);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn--hero {
  min-height: 62px;
  padding: 0 1.75rem;
  font-size: 0.98rem;
}

.hero-dots-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  z-index: 3;
}

.hero-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.hero-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: var(--transition-fast);
}

.hero-dot.is-active {
  width: 38px;
  border-radius: 999px;
  background: var(--color-primary);
}