.page-hero {
  --blue-start: #1596f5;
  --blue-mid: #0878ed;
  --blue-end: #0757d9;
  --orange: #ff7200;
  --white: #fff;
  --page-hero-header-height: 148px;
  --page-hero-content-height: clamp(290px, 24vw, 370px);
  position: relative;
  box-sizing: border-box;
  min-height: calc(var(--page-hero-header-height) + var(--page-hero-content-height));
  padding-top: var(--page-hero-header-height);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 40%, rgba(80, 218, 255, .22), transparent 30%),
    linear-gradient(112deg, var(--blue-start), var(--blue-mid) 52%, var(--blue-end));
  color: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

.page-hero *,
.page-hero *::before,
.page-hero *::after {
  box-sizing: border-box;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background: linear-gradient(112deg, rgba(0, 54, 168, .14) 0 33%, transparent 33% 100%);
  clip-path: polygon(0 0, 45% 0, 34% 100%, 0 100%);
}

.page-hero::after {
  position: absolute;
  top: -26%;
  right: -8%;
  z-index: -1;
  width: 43vw;
  height: 43vw;
  min-width: 420px;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.page-hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  align-items: center;
  width: 88%;
  min-height: var(--page-hero-content-height);
  margin: 0 auto;
  padding: 48px 0 54px;
}

.page-hero__copy {
  max-width: 720px;
}

.page-hero__eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .26em;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.1;
  letter-spacing: -.04em;
  text-shadow: 0 8px 24px rgba(0, 47, 142, .16);
  font-family: "almmFM";
}

.page-hero__description {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.85;
}

.page-hero__accent {
  display: block;
  width: 42px;
  height: 4px;
  margin-top: 24px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 114, 0, .46);
}

.page-hero__graphic {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
  padding: 12px 0 0 58px;
}

.page-hero__graphic::before {
  position: absolute;
  top: 15%;
  bottom: 15%;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(255,255,255,.45), transparent);
  content: "";
  display: none;
}

.page-hero__number {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  color: rgba(255, 255, 255, .11);
  font-family: Arial, sans-serif;
  font-size: clamp(82px, 8.2vw, 136px);
  font-weight: 800;
  line-height: 1;
  /* letter-spacing: -.1em; */
  transform: translateY(-50%);
}

.page-hero__spectrum {
  display: flex;
  align-items: center;
  gap: clamp(5px, .55vw, 10px);
  width: min(100%, 360px);
  height: 70px;
  display: none;
}

.page-hero__spectrum span {
  width: 2px;
  height: 20%;
  border-radius: 2px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 0 10px rgba(91, 227, 255, .35);
}

.page-hero__spectrum span:nth-child(2),
.page-hero__spectrum span:nth-child(14) { height: 32%; }
.page-hero__spectrum span:nth-child(3),
.page-hero__spectrum span:nth-child(12) { height: 48%; }
.page-hero__spectrum span:nth-child(4),
.page-hero__spectrum span:nth-child(11) { height: 72%; }
.page-hero__spectrum span:nth-child(5),
.page-hero__spectrum span:nth-child(9) { height: 42%; }
.page-hero__spectrum span:nth-child(6) { height: 88%; background: var(--white); }
.page-hero__spectrum span:nth-child(7) { height: 58%; }
.page-hero__spectrum span:nth-child(8) { height: 100%; background: #75e8ff; }
.page-hero__spectrum span:nth-child(10) { height: 68%; }
.page-hero__spectrum span:nth-child(13) { height: 38%; }

.page-hero__mesh {
  position: absolute;
  right: -2%;
  bottom: -62px;
  z-index: 0;
  width: 46%;
  height: 130px;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: skewX(-18deg);
}

.page-hero__bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.page-hero__bottom span {
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 42px;
  height: 4px;
  background: var(--orange);
}

@media (max-width: 900px) {
  .page-hero {
    --page-hero-header-height: 120px;
  }

  .page-hero__container {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .page-hero__graphic {
    padding-left: 38px;
  }
}

@media (max-width: 680px) {
  .page-hero {
    --page-hero-content-height: 300px;
  }

  .page-hero__container {
    display: block;
    width: auto;
    padding: 46px 24px 50px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero__description {
    max-width: 94%;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .page-hero__accent {
    margin-top: 20px;
  }

  .page-hero__graphic {
    position: absolute;
    inset: 0;
    z-index: -1;
    min-height: 0;
    padding: 0;
  }

  .page-hero__graphic::before,
  .page-hero__spectrum,
  .page-hero__graphic p {
    display: none;
  }

  .page-hero__number {
    top: auto;
    right: -12px;
    bottom: 4px;
    font-size: 78px;
    transform: none;
  }

  .page-hero__mesh {
    right: -30%;
    width: 100%;
  }

  .page-hero__bottom span {
    left: 24px;
  }
}
