.grid-background {
  background-size: 50px 50px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  z-index: -1;
}

.feature-card {
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: white;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 1.6s;
}
.feature-card:nth-child(2) {
  animation-delay: 1.8s;
}
.feature-card:nth-child(3) {
  animation-delay: 2s;
}
.feature-card:nth-child(4) {
  animation-delay: 2.2s;
}
.feature-card:nth-child(5) {
  animation-delay: 2.4s;
}
.feature-card:nth-child(6) {
  animation-delay: 2.6s;
}

.hero {
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Waitlist Form Animation */
.waitlist-form {
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

/* Review Ticker Styles */
.review-ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.4s forwards;
}

.review-ticker-container::before,
.review-ticker-container::after {
  content: "";
  height: 100%;
  width: 100px;
  position: absolute;
  z-index: 2;
  top: 0;
}

.review-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}

.review-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}

.review-ticker {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  width: max-content;
  animation: scrollLeft 120s linear infinite;
}

.review-ticker.bottom {
  animation: scrollLeftBottom 120s linear infinite;
  margin-top: -1rem;
}

.review-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  min-width: 400px;
  max-height: 100px;
  max-width: 300px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.app-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f4f6;
  flex-shrink: 0;
}

.review-content {
  flex: 1;
  font-size: 0.75rem;
}

.stars {
  color: #fbbf24;
  margin-bottom: 0.25rem;
  letter-spacing: 2px;
  font-size: 0.875rem;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes scrollLeftBottom {
  0% {
    transform: translateX(calc(-50% + 200px));
  }
  100% {
    transform: translateX(200px);
  }
}

/* Animation classes */
.hero-title {
  animation: fadeIn 1s ease-out forwards;
}

.hero-subtitle {
  animation: fadeIn 1s ease-out 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.main-content {
  max-width: 1200px;
}
