.hero{
  position:relative;
  width:100%;
  margin:0;
  overflow:hidden;
  background:#0b1b2b;
}

.hero__viewport{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.hero__viewport::-webkit-scrollbar{ display:none; }

.hero__slide{
  position:relative;
  flex:0 0 100%;
  min-height:70vh;
  scroll-snap-align:start;
  display:flex;
  align-items:flex-end;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-position:center;
  background-size:cover;
  transform:scale(1.02);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.30) 35%,
      rgba(0,0,0,.10) 65%,
      rgba(0,0,0,.00) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.45) 100%
    );
}


.hero__content{
  position:relative;
  padding:clamp(22px, 4vw, 48px) 0;
  max-width:720px;
}

.hero__kicker{
  display:inline-block;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.78rem;
  color:rgba(255,255,255,.85);
  margin-bottom:10px;
}

.hero__title{
  color:#fff;
  font-size:clamp(1.8rem, 4.2vw, 3.1rem);
  line-height:1.08;
  margin:0 0 10px;
}

.hero__text{
  color:rgba(255,255,255,.88);
  font-size:clamp(1rem, 1.4vw, 1.15rem);
  margin:0 0 18px;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.hero__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:30px;
  line-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.hero__nav:hover{ background:rgba(0,0,0,.50); }
.hero__nav--prev{ left:14px; }
.hero__nav--next{ right:14px; }

.hero__dots{
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  z-index:3;
  display:flex;
  justify-content:center;
  gap:10px;
}

.hero__dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(255,255,255,.18);
  cursor:pointer;
}
.hero__dot.is-active{
  background:rgba(255,255,255,.95);
  border-color:rgba(255,255,255,.95);
}

/* Mobile tweaks */
@media (max-width: 768px){
  .hero__slide{ min-height:62vh; align-items:flex-end; }
  .hero__nav{ display:none; } /* swipe + dots is enough */
  .hero__overlay{
    background:
      linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.70) 75%);
  }
}

.hero,
.hero__viewport,
.hero__slide {
  width: 100%;
  max-width: none;
}

