/* [project]/src/app/page.module.css [app-client] (css) */
.page-module___8aEwW__page {
  --gray-rgb: 255, 255, 255;
  --gray-alpha-200: rgba(var(--gray-rgb), .145);
  --gray-alpha-100: rgba(var(--gray-rgb), .06);
  min-height: 100svh;
  font-family: var(--font-geist-sans);
  grid-template-rows: 20px 1fr 20px;
  place-items: center;
  gap: 64px;
  padding: 80px;
  display: grid;
}

.page-module___8aEwW__main {
  text-align: center;
  flex-direction: column;
  grid-row-start: 2;
  gap: 32px;
  display: flex;
}

.page-module___8aEwW__title {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
}

.page-module___8aEwW__description {
  color: #999;
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-module___8aEwW__chatIcon {
  font-size: 1.2rem;
}

.page-module___8aEwW__logoContainer {
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.page-module___8aEwW__botIcon {
  font-size: 4rem;
  animation: 3s ease-in-out infinite page-module___8aEwW__float;
}

@keyframes page-module___8aEwW__float {
  0%, 100% {
    transform: translateY(0);
  }

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

.page-module___8aEwW__ctas {
  justify-content: center;
  gap: 16px;
  display: flex;
}

.page-module___8aEwW__ctas a {
  appearance: none;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 128px;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  transition: background .2s, color .2s, border-color .2s;
  display: flex;
}

a.page-module___8aEwW__primary {
  color: #fff;
  background: #007bff;
  gap: 8px;
}

@media (hover: hover) and (pointer: fine) {
  a.page-module___8aEwW__primary:hover {
    background: #0056b3;
    border-color: #0000;
  }
}

@media (max-width: 600px) {
  .page-module___8aEwW__page {
    padding: 32px 32px 80px;
  }

  .page-module___8aEwW__main {
    align-items: center;
  }

  .page-module___8aEwW__ctas {
    flex-direction: column;
  }

  .page-module___8aEwW__ctas a {
    height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
}

.page-module___8aEwW__title {
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

