.menu-label,
.hero p,
.hero-scroll,
.overlay-links a,
.chips span,
.stats span,
.tag,
.biz-head span,
.biz-body p,
.btn {
  font-family: "FoundersGrotesk", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

.hero {
  --hero-height: 100vh;
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
  color: #fff;
  background: #071434;
}

.hero-carousel {
  position: relative;
  height: var(--hero-height);
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .9s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: var(--hero-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-glow {
  position: absolute;
  top: 2.5rem;
  left: 50%;
  width: 7.5rem;
  height: 7.5rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 218, 170, .95) 0, rgba(255, 178, 115, .45) 35%, rgba(249, 164, 108, 0) 72%);
  filter: blur(1px);
}


.hero-copy {
  position: relative;
  z-index: 6;
  padding-top: 37rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 1.6rem + 2.7vw, 3.625rem);
  line-height: 1.08;
  font-weight: 500;
}

.hero p {
  margin: 1.75rem 0 0;
  max-width: 46.25rem;
  font-size: clamp(.9rem, .84rem + .28vw, 1rem);
  line-height: 1.6;
  color: #d7e6fb;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(2.5rem, 2rem + 2vw, 3.625rem);
  z-index: 8;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .375rem;
  color: #bccde9;
  font-size: .6875rem;
}

.hero-scroll b {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: clamp(9rem, 7rem + 6vw, 18.75rem);
  height: 1px;
  background: rgba(144, 168, 208, .4);
}

.hero-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: #e6f0ff;
}


.quick-nav {
  background: #fff;
}

.quick-nav h2 {
  margin: 0 0 1.75rem;
  font-size: clamp(2rem, 1.25rem + 2.2vw, 2.9375rem);
  font-weight: 500;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.identity-full {
  width: 100%;
}

.identity-card {
  position: relative;
  display: grid;
  min-height: clamp(13rem, 11rem + 7vw, 17.5rem);
  overflow: hidden;
  background: #d9e4ec;
}

.identity-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.identity-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 72, .2), rgba(8, 31, 92, .45));
  z-index: 1;
}

.identity-card .content {
  grid-area: 1 / 1;
  position: relative;
  align-self: start;
  z-index: 2;
  padding: 3rem 8rem;
}

.identity-card h3 {
  margin: 0 0 .875rem;
  color: #fff;
  font-size: clamp(1.375rem, 1.05rem + 1vw, 1.9375rem);
  font-weight: 500;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chips span {
  border-radius: 999px;
  background: var(--cyan);
  color: #fff;
  font-size: .8rem;
  padding: .75rem 1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
}

.stats-wrap {
  padding: 3.5rem 0;
}

.stats div {
  text-align: center;
  padding: 1.875rem .75rem;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: clamp(1.875rem, 1.3rem + 1.8vw, 2.875rem);
  color: var(--cyan);
  font-weight: 500;
}

.stats span {
  color: #3a4860;
  font-size: clamp(.875rem, .78rem + .35vw, 1.0625rem);
}

.stats p {
  margin: 1.875rem 0 0;
  color: #7a8798;
  font-size: .875rem;
  line-height: 1.32;
}

.what {
  background: rgba(244, 251, 255, 1);
}

.tag {
  color: #69caed;
  font-size: .875rem;
  margin: 0 0 1.5rem;
}

.biz {
  --index-col: clamp(2.5rem, 2rem + 1.2vw, 3.5rem);
  padding: 1.25rem 0 1.875rem;
  border-bottom: 1px solid #dde4ea;
}

.biz:last-child {
  border-bottom: 0;
}

.biz-head {
  display: flex;
  align-items: center;
  gap: 0;
}

.biz-head span {
  flex: 0 0 var(--index-col);
  width: var(--index-col);
  color: #69caed;
  font-size: 1.25rem;
  line-height: 1;
}

.biz-head h3 {
  margin: 0;
  font-size: 3vw;
  font-weight: 500;
  word-break: break-all;
  flex: 1;
}

.biz-sub {
  margin: .125rem 0 .875rem var(--index-col);
  font-size: 2vw;
  color: #2c3a53;
}

.biz-body {
  margin-left: var(--index-col);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.biz-body img {
  width: 100%;
  max-width: 24.375rem;
  opacity: .62;
}

.biz-body p {
  margin: 0 0 .875rem;
  color: #64758f;
  font-size: 1vw;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  font-size: .8125rem;
  padding: .625rem 1rem .625rem 1.25rem;
  border-radius: 999px;
  margin-right: .5rem;
  margin-top: .625rem;
  background: transparent;
  color: #51617a;
  border: 1px solid rgba(16, 31, 53, 0.2);
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  flex: 0 0 1.125rem;
  background: url("./link-black.png") center/contain no-repeat;
}

.btn:hover {
  background: #22bcea;
  color: #fff;
  border-color: #3dbfe8;
}

.btn:hover::after {
  background-image: url("./link-white.png");
}


.links {
  background: #f7f7f8;
}

.links-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #9ea8b4;
}

.links h2 {
  margin: 0;
  font-size: clamp(1.875rem, 1.75rem + .4vw, 2.125rem);
  font-weight: 500;
}

.arrows {
  display: flex;
  gap: .75rem;
}

.arrow-btn {
  --carousel-arrow-size: 2rem;
  opacity: .9;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .875rem;
}

.company-swiper {
  overflow: hidden;
}

.company-swiper .company-grid {
  display: flex;
  gap: 0;
}

.company {
  color: #253754;
  text-align: center;
  display: block;
}

.company-card {
  width: 100%;
  border: 1px solid var(--cyan);
  background: #f0f2f5;
  display: grid;
  place-items: center;
}

a.company-card hover{
  border: 2px solid var(--cyan);
}

.company-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company p {
  margin: .875rem 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: .8s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {--hero-height: 100vh;min-height: var(--hero-height);}

  .hero-copy {    
    padding: 0 2rem;
    padding-top: 370px;  
  }

  .hero h1 {
    text-align: left;
    font-size: 36px;
    line-height: 1;
    max-width: none;
  }

  .hero p {
  }

  .hero-scroll {
    display: flex;
    left: 0;
    right: 0;
    bottom: 1.25rem;
    transform: none;
    width: min(100%, 22.5rem);
    margin: 0 auto;
    padding: 0 1rem;
    justify-content: flex-start;
  }

  .hero-scroll b {
    width: min(70vw, 10.5rem);
  }

  .quick-nav h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.08;
    font-weight: 400;
    padding: 2rem 1rem;
  }
  .stats{
    grid-template-columns: 1fr;
  }
  .identity-grid,
  .biz-body {
    grid-template-columns: 1fr;
  }
  .identity-card {
    min-height: 188px;
  }

  .identity-card .content {
    padding: 14px 16px;
  }

  .identity-card h3 {
    font-size: 22px;
    /* color: #101F35; */
    font-weight: 400;
  }

  .chips span {
    font-size: 12px;
    padding: 10px 10px;
    font-weight:300;
  }

  .stats {
  }

  .stats-wrap {   
    padding: 0;
    padding-top:1rem;
  }

  .stats div {
    padding: 16px 6px;
    border-right: 0;
    border-right: 1px solid var(--line);
    margin: 2rem 0;
  }

  .stats div:nth-child(2n) {
    border-right: 0;
  }

  .stats strong {
    font-size: 28px;
  }

  .stats span {
    font-size: 1.2rem;
  }

  .stats p {
    margin-top: 20px;
    line-height: 1.35;
  }

  .what {
    padding-top: 24px;
  }

  .tag {
    font-size: 12px;
    margin: 1rem 0;
    padding: 0 1rem;
  }

  .biz {
    padding: 18px 1rem;
    border-bottom: 0;
    margin-top: 2rem;
  }
  .biz-head {
    flex-direction:column;
    align-items: baseline;
  }
  .biz-head span {
    font-size: 12px;
    /* line-height: 0; */
    /* width: 0; */
    /* height: 0; */
    /* height: 10px; */
    flex: 0;
    /* display: inline-block; */
  }

  .biz-head h3 {
    font-size: 2rem;
  }

  .biz-sub {
    margin-left: 0;
    font-size: 1.2rem;
    margin-top: 0;
  }

  .biz-body {
    margin-left: 0;
    gap: 12px;
  }

  .biz-body img {
    max-width: 215px;
    margin: 0 auto;
  }

  .biz-body p {
    font-size: 1rem;
    line-height: 1.45;
    text-align: left;
    padding-left: 60px;
  }

  .btn {
    font-size: 0.7rem;
    padding: 7px 10px;
    min-width: 0;
    /* width: 100%; */
  }

  .links {
    /* padding: 4rem 1rem; */
  }
  .links-head {
    padding: 1rem;
  }
  .links h2 {
    font-size: 1.3rem;
    /* padding: 0 1rem; */
  }
  .company-grid{
    padding: 1rem 2rem;
  }
  .company {
    font-size: 17px;
  }

  .company-card {
    height: auto;
    /* width: 80%; */
  }

  .company p{
    text-align:center;
    /* width: 80%; */
    font-size: 0.83rem;
  }

}
