.hero-slider {
  position: relative;
  min-height: clamp(610px, 72vh, 740px);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-slider__track,
.hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 620ms cubic-bezier(.22,.72,.28,1), visibility 620ms ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide__media { position: absolute; inset: 0; background: var(--navy); }
.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(.98) brightness(.72);
}
.hero-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,18,26,.98) 0%, rgba(6,18,26,.95) 36%, rgba(6,18,26,.82) 58%, rgba(6,18,26,.48) 80%, rgba(6,18,26,.34) 100%),
    linear-gradient(0deg, rgba(6,18,26,.62), transparent 58%);
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(610px, 72vh, 740px);
  align-items: center;
  padding: 76px 0 132px;
}
.hero-slide__copy { max-width: 750px; }
.hero-slide.is-active .hero-slide__copy { animation: heroCopyIn 520ms cubic-bezier(.22,.75,.28,1) both; }
.hero-slide .eyebrow { color: var(--yellow); }
.hero-slide h1,
.hero-slide h2 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.6vw, 4.45rem);
  line-height: 1.03;
  text-wrap: balance;
}
.hero-slide p {
  max-width: 670px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.64;
}
.hero-slide__quote {
  margin-top: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--yellow);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 650;
}
.hero-slide .actions { margin-top: 28px; }
.hero-slider__controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 31px;
  z-index: 5;
  pointer-events: none;
}
.hero-slider__controls-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(6,18,26,.66);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  pointer-events: auto;
}
.hero-dot {
  position: relative;
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.hero-dot:hover,
.hero-dot:focus-visible { background: rgba(255,255,255,.55); transform: scale(1.15); }
.hero-dot.is-active {
  border-color: var(--yellow);
  background: var(--yellow);
  transform: scale(1.12);
}
.hero-dot.is-active::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255,205,0,.48);
  border-radius: 50%;
}
@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active .hero-slide__copy,
  .hero-dot { animation: none; transition: none; }
}
