.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-banner__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-banner__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-banner__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100vh;
  background-image: var(--hero-bg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-banner__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.08) 100%);
  pointer-events: none;
}

.hero-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 0px;
  display: flex;
  align-items: center;
}

.hero-banner__content {
  max-width: 820px;
  color: #ffffff;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.hero-banner__content.is-entering {
  animation: hero-banner-content-enter 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes hero-banner-content-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-banner__tagline {
  margin-bottom: 28px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.33;
  color: #ffffff;
}

.hero-banner__title {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: var(--font-weight-normal);
  line-height: 1.33;
  letter-spacing: 0.04em;
}

.hero-banner__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: #0070d5;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(0, 112, 213, 0);
  transition: background 0.3s ease,
 border-color 0.3s ease,
 box-shadow 0.35s ease;
}

.hero-banner__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  z-index: 0;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 28%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.06) 72%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-banner__cta:hover {
  border-color: rgba(160, 220, 255, 0.45);
  background: #005eb8;
  box-shadow: 0 0 0 1px rgba(120, 200, 255, 0.18), 0 0 18px rgba(0, 112, 213, 0.35);
}

.hero-banner__cta:hover::before {
  left: 150%;
}

.hero-banner__cta-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-banner__cta:hover .hero-banner__cta-icon {
  transform: translate(2px, -2px);
}

.hero-banner__cta-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.hero-banner__dots {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-banner__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.hero-banner__dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: #ffffff;
}

.hero-banner__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.hero-banner__arrow:hover {
  background: rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-banner__arrow--prev {
  left: 40px;
}

.hero-banner__arrow--next {
  right: 40px;
}

@media (min-width: 2560px) {
  .hero-banner,
  .hero-banner__slide {
    height: 1007px;
  }
  .hero-banner__slide {
    background-size: cover;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #0a0a0a;
  }
  .hero-banner__viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .hero-banner__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .hero-banner__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100vh;
    background-image: var(--hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .hero-banner__slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.08) 100%);
    pointer-events: none;
  }
  .hero-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 2.125vw;
    padding-top: 0vw;
    display: flex;
    align-items: center;
  }
  .hero-banner__content {
    max-width: 43.5625vw;
    color: #ffffff;
    opacity: 0;
    transform: translate3d(0, 1.275vw, 0);
  }
  .hero-banner__content.is-entering {
    animation: hero-banner-content-enter 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  @keyframes hero-banner-content-enter {
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .hero-banner__tagline {
    margin-bottom: 1.4875vw;
    font-size: 1.0625vw;
    font-weight: 400;
    line-height: 1.33;
    color: #ffffff;
  }
  .hero-banner__title {
    margin-bottom: 1.59375vw;
    font-size: 2.55vw;
    font-weight: var(--font-weight-normal);
    line-height: 1.33;
    letter-spacing: 0.04em;
  }
  .hero-banner__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.53125vw;
    height: 2.3375vw;
    padding: 0 1.275vw;
    border: 0.05312vw solid rgba(255, 255, 255, 0.1);
    border-radius: 53.07187vw;
    background: #0070d5;
    color: #ffffff;
    font-size: 0.85vw;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(0, 112, 213, 0);
    transition: background 0.3s ease,
 border-color 0.3s ease,
 box-shadow 0.35s ease;
  }
  .hero-banner__cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    z-index: 0;
    width: 72%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 28%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.06) 72%, transparent 100%);
    transform: skewX(-22deg);
    transition: left 1.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
  .hero-banner__cta:hover {
    border-color: rgba(160, 220, 255, 0.45);
    background: #005eb8;
    box-shadow: 0 0 0 0.05312vw rgba(120, 200, 255, 0.18), 0 0 0.95625vw rgba(0, 112, 213, 0.35);
  }
  .hero-banner__cta:hover::before {
    left: 150%;
  }
  .hero-banner__cta-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero-banner__cta:hover .hero-banner__cta-icon {
    transform: translate(0.10625vw, -0.10625vw);
  }
  .hero-banner__cta-icon svg {
    display: block;
    width: 0.85vw;
    height: 0.85vw;
  }
  .hero-banner__dots {
    position: absolute;
    left: 50%;
    bottom: 2.55vw;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.6375vw;
    transform: translateX(-50%);
  }
  .hero-banner__dot {
    width: 0.53125vw;
    height: 0.53125vw;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
  }
  .hero-banner__dot.is-active {
    width: 1.7vw;
    border-radius: 53.07187vw;
    background: #ffffff;
  }
  .hero-banner__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.55vw;
    height: 2.55vw;
    margin-top: -1.275vw;
    border: 0.05312vw solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    color: #ffffff;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  .hero-banner__arrow:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
  }
  .hero-banner__arrow--prev {
    left: 2.125vw;
  }
  .hero-banner__arrow--next {
    right: 2.125vw;
  }
}

@media (max-width: 1024px) {
  .hero-banner,
  .hero-banner__slide {
    height: 640px;
  }
  .hero-banner__inner {
    padding: 140px 24px 0;
  }
  .hero-banner__content {
    max-width: 640px;
  }
  .hero-banner__title {
    margin-bottom: 24px;
    font-size: 36px;
  }
  .hero-banner__tagline {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .hero-banner__dots {
    bottom: 32px;
  }
  .hero-banner__arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .hero-banner__arrow--prev {
    left: 16px;
  }
  .hero-banner__arrow--next {
    right: 16px;
  }
}

@media (max-width: 768px) {
  .hero-banner,
  .hero-banner__slide {
    height: 480px;
  }
  .hero-banner__slide {
    background-image: var(--hero-bg-m, var(--hero-bg));
  }
  .hero-banner__inner {
    padding: 120px 16px 0;
  }
  .hero-banner__title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.35;
  }
  .hero-banner__tagline {
    margin-bottom: 16px;
    font-size: 13px;
  }
  .hero-banner__arrow {
    display: none;
  }
  .hero-banner__dots {
    bottom: 24px;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__content.is-entering {
    animation: none;
  }
  .hero-banner__cta::before,
  .hero-banner__cta-icon {
    transition: none;
  }
  .hero-banner__cta:hover .hero-banner__cta-icon {
    transform: none;
  }
}
