.home-hero-title {
  max-width: 780px;
  text-transform: none;
  line-height: .98;
  letter-spacing: 0;
}

.home-hero-title .home-typewriter {
  position: relative;
  display: inline-block;
  min-height: 1.08em;
  color: var(--secondary-color);
  background: linear-gradient(90deg, var(--secondary-color), #8f5bff 50%, var(--secondary-color));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: home-hero-gradient 3.4s ease-in-out infinite;
}

.home-hero-title .home-typewriter::after {
  content: "|";
  display: inline-block;
  margin-left: 6px;
  color: var(--secondary-color);
  -webkit-text-fill-color: var(--secondary-color);
  animation: home-hero-cursor .8s steps(1) infinite;
}

.home-hero-text {
  max-width: 680px;
  margin-top: 24px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.home-hero-actions .btn-main {
  margin-bottom: 0;
}

.home-hero-lottie {
  width: min(820px, 150%);
  max-width: none;
  aspect-ratio: 1;
  margin-left: auto;
  transform: translateX(2%);
  filter: drop-shadow(0 28px 62px rgba(0, 0, 0, .34));
}

.home-hero-lottie svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

@keyframes home-hero-gradient {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes home-hero-cursor {
  0%, 52% {
    opacity: 1;
  }

  53%, 100% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .home-hero-title {
    font-size: 48px;
  }

  .home-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero-actions .btn-main {
    width: 100%;
    text-align: center;
  }

  .home-hero-lottie {
    width: 118%;
    margin: 28px auto 0;
    transform: translateX(0);
  }
}
