#hero {
  min-height: 100svh;
  height: auto;
  padding-block: clamp(7rem, 10vh, 11rem);
}

#hero .hero-content {
  width: min(100%, 108rem);
  margin-inline: auto;
  text-align: left;
}

#hero .hero-title {
  margin: 0;
}

#hero .hero-name {
  margin: 0 0 1rem;
  color: #f4f7fb;
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

#hero .hero-role {
  margin: 0;
  color: #f4f7fb;
  font-family: Outfit, sans-serif;
  font-size: clamp(2.7rem, 4.4vw, 5.2rem);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

#hero .hero-value {
  max-width: 78rem;
  margin: 2.6rem 0 0;
  color: #c6cfde;
  font-size: clamp(1.7rem, 1.8vw, 2.1rem);
  line-height: 1.6;
}

#hero .hero-credibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 94rem;
  margin: 3.2rem 0 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid rgb(244 247 251 / 12%);
}

#hero .hero-credibility li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.8rem 2.2rem;
  border-left: 1px solid rgb(244 247 251 / 12%);
}

#hero .hero-credibility li:first-child {
  padding-left: 0;
  border-left: 0;
}

#hero .hero-credibility strong {
  color: #f4f7fb;
  font-family: Outfit, sans-serif;
  font-size: 1.8rem;
  font-weight: 750;
  line-height: 1.15;
}

#hero .hero-credibility span {
  color: #8f9bb0;
  font-family: Inter, sans-serif;
  font-size: 1.3rem;
  line-height: 1.35;
}

#hero .hero-cta {
  justify-content: flex-start;
  margin: 3.2rem 0 0;
}

#hero .hero-cta a {
  min-width: 18rem;
  padding: 1.45rem 2.4rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.7rem;
}

#hero .hero-cta__primary {
  color: #071014;
  background: #00e5ff;
  box-shadow: 0 1rem 3rem rgb(0 229 255 / 18%);
}

#hero .hero-cta__primary:hover {
  color: #071014;
  background: #5cefff;
}

#hero .hero-tech {
  margin: 2.4rem 0 0;
  color: #77849a;
  font-size: 1.35rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
}

#hero .hero-tech strong {
  color: #00e5ff;
  font-weight: 700;
}

#hero .hero-tech span {
  margin-inline: 0.55rem;
  color: rgb(244 247 251 / 28%);
}

@keyframes heroReviewDrift {
  0% {
    opacity: 0;
    transform: translate3d(calc(-50% + var(--hero-card-start-x, -32px)), var(--hero-card-start-y, 24px), 0)
      rotate(calc(var(--hero-card-rotation, -4deg) - 5deg)) scale(0.95);
  }

  12%,
  76% {
    opacity: 0.16;
  }

  92%,
  100% {
    opacity: 0;
  }

  100% {
    transform: translate3d(calc(-50% + var(--hero-card-end-x, 72px)), var(--hero-card-end-y, -56px), 0)
      rotate(calc(var(--hero-card-rotation, -4deg) + 7deg)) scale(1.05);
  }
}

@media (max-width: 56.25em) {
  #hero {
    padding: 8rem 2.4rem 6rem;
  }

  #hero .hero-content,
  #hero .hero-title {
    text-align: center;
  }

  #hero .hero-value {
    margin-inline: auto;
  }

  #hero .hero-credibility {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 62rem);
    margin-inline: auto;
  }

  #hero .hero-credibility li {
    align-items: center;
    border-bottom: 1px solid rgb(244 247 251 / 12%);
  }

  #hero .hero-credibility li:nth-child(odd) {
    border-left: 0;
  }

  #hero .hero-credibility li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  #hero .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 48em) {
  #hero .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    width: min(100%, 34rem);
    margin: 2.8rem auto 0;
  }

  #hero .hero-cta a {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 37.5em) {
  #hero {
    justify-content: flex-start;
    padding: 6.5rem 1.8rem 4.5rem;
  }

  #hero .hero-name {
    margin-bottom: 0.8rem;
    font-size: clamp(3.3rem, 11vw, 4.4rem);
  }

  #hero .hero-role {
    font-size: clamp(2.5rem, 8.5vw, 3.4rem);
  }

  #hero .hero-value {
    margin-top: 2rem;
    font-size: 1.55rem;
    line-height: 1.55;
  }

  #hero .hero-credibility {
    margin-top: 2.4rem;
  }

  #hero .hero-credibility li,
  #hero .hero-credibility li:first-child {
    min-height: 7.6rem;
    justify-content: center;
    padding: 1.35rem 0.8rem;
  }

  #hero .hero-credibility strong {
    font-size: 1.5rem;
  }

  #hero .hero-credibility span {
    font-size: 1.1rem;
  }

  #hero .hero-cta {
    width: min(100%, 34rem);
    margin-top: 2.6rem;
  }

  #hero .hero-cta a {
    width: 100%;
    padding: 1.4rem 1.6rem;
    font-size: 1.6rem;
  }

  #hero .hero-tech {
    max-width: 34rem;
    margin: 2rem auto 0;
    font-size: 1.2rem;
  }
}

@media (max-width: 22em) {
  #hero .hero-name {
    font-size: 3rem;
  }

  #hero .hero-role {
    font-size: 2.35rem;
  }
}
