:root {
  --ahb-yellow: #ffd84a;
  --ahb-yellow-light: #ffe477;
  --ahb-dark: #171714;
  --ahb-red: #c9252d;
}

.ahb-hero {
  --ahb-overlay: .68;
  --ahb-mobile-height: 720px;
  --ahb-bg-position: 58% center;
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: min(920px, 100svh);
  overflow: hidden;
  color: #fff;
  background-color: var(--ahb-dark);
  background-image: var(--ahb-bg-image, none);
  background-position: var(--ahb-bg-position);
  background-repeat: no-repeat;
  background-size: cover;
}

.ahb-hero__overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 23, 20, var(--ahb-overlay)) 0%, rgba(23, 23, 20, .42) 42%, rgba(23, 23, 20, .10) 70%, rgba(23, 23, 20, .02) 100%),
    linear-gradient(0deg, rgba(23, 23, 20, .30) 0%, transparent 50%, rgba(23, 23, 20, .08) 100%);
}

.ahb-hero__inner {
  width: min(100% - 40px, 1200px);
  margin: auto auto 72px;
}

.ahb-hero__content {
  max-width: 700px;
}

.ahb-hero__fci-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 12px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.ahb-hero__fci-badge img {
  display: block;
  width: auto;
  max-width: 94px;
  height: 43px;
  object-fit: contain;
}

.ahb-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--ahb-yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ahb-hero__eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.ahb-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .92;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .28);
  text-transform: uppercase;
}

.ahb-hero__title span {
  display: block;
}

.ahb-hero__title .ahb-hero__title-highlight {
  color: var(--ahb-yellow);
}

.ahb-hero__intro {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 500;
  line-height: 1.55;
}

.ahb-hero__intro strong {
  color: var(--ahb-yellow);
  font-weight: 800;
}

.ahb-hero__description {
  max-width: 600px;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.65;
}

.ahb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ahb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.ahb-button:hover {
  transform: translateY(-2px);
}

.ahb-button--primary,
.ahb-button--primary:visited {
  color: var(--ahb-dark);
  background: var(--ahb-yellow);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.ahb-button--primary:hover {
  color: var(--ahb-dark);
  background: var(--ahb-yellow-light);
}

.ahb-button--secondary,
.ahb-button--secondary:visited {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(4px);
}

.ahb-button--secondary:hover {
  color: var(--ahb-yellow);
  border-color: var(--ahb-yellow);
}

.ahb-hero__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  max-width: 680px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .20);
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.ahb-hero__info > * + *::before {
  margin-right: 24px;
  color: rgba(255, 255, 255, .25);
  content: "|";
}

.ahb-hero__info strong {
  color: var(--ahb-yellow);
}

.ahb-hero__disciplines {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: clamp(14px, 4vw, 46px);
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 20px;
  color: var(--ahb-dark);
  background: var(--ahb-yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ahb-hero__disciplines i {
  opacity: .35;
  font-style: normal;
}

@media (max-width: 768px) {
  .ahb-hero {
    min-height: var(--ahb-mobile-height);
    background-position: 62% center;
  }

  .ahb-hero__overlay {
    background:
      linear-gradient(to top, rgba(23, 23, 20, .78) 0%, rgba(23, 23, 20, .54) 52%, rgba(23, 23, 20, .08) 80%, rgba(23, 23, 20, .04) 100%),
      linear-gradient(90deg, rgba(23, 23, 20, .10), rgba(23, 23, 20, .02));
  }

  .ahb-hero__inner {
    display: block;
    width: min(100% - 32px, 1200px);
    margin-bottom: 78px;
    padding-top: 180px;
  }

  .ahb-hero__content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-left: 0;
  }

  .ahb-hero__fci-badge {
    margin-bottom: 14px;
    padding: 7px 11px;
    border-radius: 10px;
  }

  .ahb-hero__fci-badge img {
    max-width: 82px;
    height: 37px;
  }

  .ahb-hero__title {
    font-size: clamp(46px, 15vw, 64px);
  }

  .ahb-hero__description {
    font-size: 15px;
  }

  .ahb-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ahb-hero__info {
    gap: 8px 14px;
  }

  .ahb-hero__info > * + *::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ahb-button {
    transition: none;
  }
}
