.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 30px 0 0;
  min-height: 500px;
}
.page-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-header__content {
  display: contents;
  z-index: 1;
}
.page-header__title {
  order: 2;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
.page-header__title h1 {
  margin: 0;
  color: #101820;
  font-weight: 700;
  letter-spacing: 0;
}
.page-header__title h1 span {
  color: #C52782;
}
.page-header__copy {
  order: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 0 0;
}
.page-header__description p {
  --font-size: 16px;
  --font-size-rem: 1rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  margin: 0 auto 28px;
  text-align: center;
}
.page-header__cta {
  --font-size: 15px;
  --font-size-rem: 0.9375rem;
  --line-height: 22px;
  --line-height-rem: 1.375rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  min-width: 170px;
  min-height: 50px;
  padding-inline: 26px;
  margin-top: 20px;
}
.page-header__visual {
  position: relative;
  order: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  isolation: isolate;
  z-index: -1;
}
.page-header__visual-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.page-header__media {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-header__image {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-header__waves {
  position: absolute;
  top: 40%;
  left: 50%;
  z-index: 1;
  width: 118%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-header__wave {
  position: absolute;
  inset: 0;
  border: 1px solid #cdcdcd;
  border-radius: 50% 50% 0 50%;
  opacity: var(--layer-opacity);
  transform: scale(var(--scale));
  transform-origin: center;
  animation: none;
}
.page-header__wave--1 {
  --scale: 0.95;
  --layer-opacity: 0;
  --animation-delay: -5.2s;
}
.page-header__wave--2 {
  --scale: 0.78;
  --layer-opacity: 0.8;
  --animation-delay: -3.9s;
}
.page-header__wave--3 {
  --scale: 0.61;
  --layer-opacity: 1;
  --animation-delay: -2.6s;
}
.page-header__wave--4 {
  --scale: 0.44;
  --layer-opacity: 0.9;
  --animation-delay: -1.3s;
}
.page-header__wave--5 {
  --scale: 0.28;
  --layer-opacity: 0;
  --animation-delay: 0s;
}
.page-header__icon {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}
.page-header__icon svg,
.page-header__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-header__icon--left {
  left: 5%;
  bottom: 7%;
  width: 50px;
  height: 50px;
}
.page-header__icon--right {
  top: 2%;
  right: 0;
  width: 58px;
  height: 58px;
}

@keyframes pageHeaderRadarPing {
  0% {
    opacity: 0;
    transform: scale(0.25);
  }
  20% {
    opacity: 0.8;
    transform: scale(0.5);
  }
  40% {
    opacity: 1;
    transform: scale(0.75);
  }
  60% {
    opacity: 0.9;
    transform: scale(1);
  }
  80% {
    opacity: 0.4;
    transform: scale(1.25);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

@media screen and (min-width: 768px) {
  .page-header {
    min-height: unset;
  }
  .page-header__content {
    display: block;
    padding-bottom: 58px;
  }
  .page-header__title {
    margin-inline: 0;
    text-align: start;
  }
  .page-header__copy {
    display: block;
    margin-top: 24px;
    padding: 0;
  }
  .page-header__description p {
    --font-size: 22px;
    --font-size-rem: 1.375rem;
    --line-height: 30px;
    --line-height-rem: 1.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
    margin: 0 0 30px;
    text-align: start;
  }
  .page-header__cta {
    min-width: 156px;
    min-height: 50px;
  }
  .page-header__visual {
    align-self: stretch;
    margin: 0;
  }
  .page-header__visual-inner {
    width: min(52vw, 600px);
    aspect-ratio: 1/1;
    justify-content: center;
  }
  .page-header__media {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0;
  }
  .page-header__image {
    inset: unset;
  }
  .page-header__wave {
    will-change: transform, opacity;
    animation: pageHeaderRadarPing 6.5s linear infinite;
    animation-delay: var(--animation-delay);
  }
  .page-header__icon--left {
    left: 0%;
    bottom: 7%;
    width: 78px;
    height: 78px;
  }
  .page-header__icon--right {
    top: 15%;
    right: 2%;
    width: 92px;
    height: 92px;
  }
}

@media screen and (min-width: 992px) {
  .page-header {
    min-height: 600px;
  }
  .page-header__inner {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(520px, 1fr);
    align-items: center;
    gap: 30px;
  }
}

@media screen and (max-width: 767.99px) {
  .page-header__title h1 {
    --font-size: 40px;
    --font-size-rem: 2.5rem;
    --line-height: 48px;
    --line-height-rem: 3rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-header__wave {
    animation: none !important;
  }
}