.asd-hero {
  --asd-accent: #afc701;
  --asd-text: #fff;
  --asd-overlay-opacity: .68;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  min-height: var(--asd-hero-desktop-height, 80vh);
  color: var(--asd-text);
  background: #0b1510;
  box-sizing: border-box;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.asd-full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.asd-hero * { box-sizing: border-box; }
.asd-hero__media,
.asd-hero__overlay { position: absolute; inset: 0; }
.asd-hero__media { z-index: -3; background: #0b1510; }

.asd-hero__slide {
  position: absolute;
  inset: -2px;
  background-image: var(--asd-slide-desktop, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1s ease, transform 7s ease;
  will-change: opacity, transform;
}

.asd-hero__slide.is-active { opacity: 1; transform: scale(1); }

.asd-hero__overlay {
  z-index: -2;
  background: linear-gradient(90deg, rgba(2,8,5,.96) 0%, rgba(2,8,5,.82) 32%, rgba(2,8,5,.45) 58%, rgba(2,8,5,.1) 100%);
  opacity: var(--asd-overlay-opacity);
}

.asd-hero__inner {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 110px 6vw;
  position: relative;
  z-index: 2;
}

.asd-hero__content { width: min(760px, 100%); }

.asd-hero__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--asd-accent);
}

.asd-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(54px, 5vw, 78px);
  line-height: 1.01;
  letter-spacing: -.045em;
  font-weight: 800;
  text-wrap: balance;
  max-width: 900px;
}

.asd-hero__highlight { color: var(--asd-accent); }

.asd-hero__copy {
  max-width: 700px;
  margin-top: 28px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  letter-spacing: -.01em;
}

.asd-hero__copy p { margin: 0; }

.asd-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.asd-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 15px 23px;
  border-radius: 7px;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.asd-hero__button:hover { transform: translateY(-2px); }

.asd-hero__button--primary {
  background: var(--asd-accent);
  color: #101708 !important;
  border: 1px solid var(--asd-accent);
}

.asd-hero__button--primary:hover { background: #bfdc00; border-color: #bfdc00; }

.asd-hero__button--secondary {
  background: rgba(255,255,255,.06);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.asd-hero__button--secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.56);
}

.asd-hero__dots {
  position: absolute;
  z-index: 4;
  left: 6vw;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.asd-hero__dot {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 3px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.asd-hero__dot.is-active { width: 48px; background: var(--asd-accent); }

.asd-preview-mode {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: min(var(--asd-hero-desktop-height, 80vh), 720px) !important;
}
.asd-preview-mode .asd-hero__inner { padding: 70px 45px; }
.asd-preview-mode .asd-hero__title { font-size: 56px; }
.asd-preview-mode .asd-hero__dots { left: 45px; bottom: 28px; }

@media (max-width: 767px) {
  .asd-hero { min-height: var(--asd-hero-mobile-height, 85vh); }

  .asd-hero__slide {
    background-image: var(--asd-slide-mobile, var(--asd-slide-desktop, none));
    background-position: center center;
  }

  .asd-hero__overlay {
    background: linear-gradient(0deg, rgba(2,8,5,.96) 0%, rgba(2,8,5,.82) 48%, rgba(2,8,5,.28) 100%);
  }

  .asd-hero__inner {
    align-items: flex-end;
    padding: 90px 22px 110px;
  }

  .asd-hero__eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
    letter-spacing: .15em;
  }

  .asd-hero__title {
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .asd-hero__copy {
    font-size: 16px;
    line-height: 1.55;
    margin-top: 20px;
  }

  .asd-hero__actions { margin-top: 26px; gap: 10px; }
  .asd-hero__button { width: 100%; min-height: 54px; }
  .asd-hero__dots { left: 22px; bottom: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  .asd-hero__slide,
  .asd-hero__button { transition: none; }
  .asd-hero__slide { transform: none; }
  .asd-hero__button:hover { transform: none; }
}
