.ab-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a1830;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  isolation: isolate;
}
.ab-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ab-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.72;
}
.ab-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 10, 22, 0.96) 0%, rgba(5, 10, 22, 0.84) 42%, rgba(5, 10, 22, 0.5) 100%),
    linear-gradient(0deg, rgba(3, 6, 16, 0.94) 0%, rgba(3, 6, 16, 0) 55%);
}
.ab-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(128, 176, 215, 0.12) 1px, transparent 0);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 60% 70% at 30% 45%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 30% 45%, #000, transparent 78%);
  opacity: 0.5;
}
.ab-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 92px var(--pad-x);
}
.ab-hero__title {
  margin: 20px 0 0;
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -2.3px;
  color: #eef4fc;
  max-width: 17ch;
}
.ab-hero__sub {
  margin: 22px 0 0;
  max-width: 560px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: #c6d5e9;
}
.ab-hero__cta {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .ab-hero {
    min-height: 48vh;
  }
  .ab-hero__inner {
    padding: 116px var(--pad-x) 72px;
  }
}
