/* [project]/src/components/landing/landing.css [app-client] (css) */
@keyframes landing-hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landing-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes landing-pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .55;
    transform: scale(.92);
  }
}

@keyframes landing-gradient-shift {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

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

.landing-hero-item {
  opacity: 0;
  animation: .75s cubic-bezier(.22, 1, .36, 1) forwards landing-hero-fade-up;
}

.landing-hero-item--1 {
  animation-delay: 50ms;
}

.landing-hero-item--2 {
  animation-delay: .15s;
}

.landing-hero-item--3 {
  animation-delay: .25s;
}

.landing-hero-item--4 {
  animation-delay: .35s;
}

.landing-hero-item--5 {
  animation-delay: .45s;
}

.landing-reveal {
  opacity: 0;
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
  transform: translateY(24px);
}

.landing-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-card {
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.landing-card:hover {
  border-color: #fb923c59;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px #0f172a47;
}

.landing-float {
  animation: 7s ease-in-out infinite landing-float;
}

.landing-live-dot {
  animation: 1.8s ease-in-out infinite landing-pulse-dot;
}

.landing-hero-glow {
  background: linear-gradient(120deg, #fff7ed, #f8fafc, #eff6ff, #fff7ed) 0 0 / 240% 240%;
  animation: 14s infinite landing-gradient-shift;
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-item, .landing-reveal, .landing-float, .landing-live-dot, .landing-hero-glow {
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/*# sourceMappingURL=src_components_landing_landing_1-296gn.css.map*/