.axili-front-page {
  position: relative;
  min-height: 50dvh;
  overflow-x: hidden;
}

.axili-front-page .hero {
  background-color: hsl(var(--axili-surface));
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding-bottom: 15%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.axili-front-page .hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.axili-front-page .hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: 0px 0px;
  background-image: radial-gradient(
    157% 100% at 99% 1%,
    #ffffff00 55%,
    #ffffff00 0%,
    hsl(var(--axili-surface)) 100%
  );

  z-index: 1;
}

.axili-front-page .hero-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--axili-container-width);
  margin: 0 auto;
  width: 100%;
  padding: 1rem;
  z-index: 2;
}

.axili-front-page .hero-funds {
  z-index: 3;
  margin-top: 1rem;
  width: 256px;
  margin-right: auto;
  margin-left: 2rem;
}

@media screen and (max-width: 768px) {
  .axili-front-page .hero-content {
    bottom: 0;
    left: 0;
  }
}

.axili-front-page .hero-description {
  font-size: 5rem;
  font-weight: 600;
  color: hsl(var(--axili-background));
}

.axili-front-page .hero-word {
  display: block;
  color: hsl(var(--axili-background));
  width: fit-content;
  line-height: 1;
  padding: 1rem;
  letter-spacing: 0.25rem;
  font-weight: 600;
}
.axili-front-page .hero-word:nth-child(2) .hero-letter {
  animation: wave 7s ease-in-out infinite;
  display: inline-block;
}

.axili-front-page .hero-word:nth-child(1) {
  color: hsl(var(--axili-background));
  text-shadow: 0 0 1rem hsl(var(--axili-foreground));
  /* background-color: hsl(var(--axili-title), 0.5); */
}

.axili-front-page .hero-word:nth-child(2) {
  /* color: hsl(var(--axili-title)); */
  color: hsl(var(--axili-background));
  text-shadow: 0 0 1rem hsl(var(--axili-foreground));
  /* background-color: hsl(var(--axili-background), 0.5); */
  font-weight: 700;
}
.axili-front-page .hero-word:nth-child(3) {
  text-shadow: 0 0 1rem hsl(var(--axili-foreground));
  border-bottom: 1rem solid hsl(var(--axili-primary));
}

@media screen and (max-width: 768px) {
  .axili-front-page .hero-description {
    font-size: 3.2rem;
  }
}
@keyframes wave {
  0%,
  12% {
    transform: translateY(0);
  }
  8% {
    transform: translateY(-20px);
  }
}

.axili-front-page .hero-actions a {
  padding: 1rem 2rem;
  background-color: hsl(var(--axili-background));
  color: hsl(var(--axili-title));
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: var(--axili-btn-radius);
  cursor: pointer;
  box-shadow: 0 0 1rem hsl(var(--axili-title));
}
