.hero-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  display: grid;
  gap: 12px;
  z-index: 120;
}

.hero-dots li {
  width: 14px;
  height: 14px;
  border: 0 !important;
  background: transparent !important;
}

.hero-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
}

.hero-dots li.is-active button {
  background: #fff;
  border-color: #fff;
}

.hero-dots li.is-active {
  border: 0 !important;
  background: transparent !important;
}

.final-section {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.final-section .site-footer {
  border-top: 0;
}

.final-section > #site-footer-slot {
  margin-top: auto;
}

main > [data-scroll-section] {
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  opacity: 0.42;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

main > [data-scroll-section].is-current {
  opacity: 1;
  transform: translateY(0);
}

main > [data-scroll-section].is-past {
  opacity: 0.74;
  transform: translateY(0);
}
