/* [project]/app/page.module.css [app-client] (css) */
.page-module__E0kJGG__container {
  color: #fff;
  min-height: 100vh;
  font-family: var(--font-geist-sans), sans-serif;
  background-color: #0b0f19;
  flex-direction: column;
  display: flex;
  overflow-x: hidden;
}

.page-module__E0kJGG__header {
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  background: #0b0f19b3;
  border-bottom: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  display: flex;
  position: sticky;
  top: 0;
}

.page-module__E0kJGG__logo {
  letter-spacing: -.02em;
  background: linear-gradient(90deg, #fff, #a5b4fc);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  align-items: center;
  gap: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
}

.page-module__E0kJGG__logoIcon {
  background: #6366f1;
  border-radius: 6px;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.page-module__E0kJGG__navLinks {
  gap: 2.5rem;
  display: flex;
}

.page-module__E0kJGG__navLink {
  color: #a1a1aa;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
}

.page-module__E0kJGG__navLink:hover {
  color: #fff;
}

.page-module__E0kJGG__loginBtn {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 1px solid #fff3;
  border-radius: 9999px;
  padding: .6rem 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}

.page-module__E0kJGG__loginBtn:hover {
  background: #ffffff1a;
  border-color: #fff6;
}

.page-module__E0kJGG__hero {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__hero:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, #6366f11f 0%, #0000 60%);
  width: 800px;
  height: 800px;
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.page-module__E0kJGG__heroContent {
  z-index: 1;
  max-width: 800px;
  animation: .8s ease-out forwards page-module__E0kJGG__fadeUp;
  position: relative;
}

.page-module__E0kJGG__heroBadge {
  color: #a5b4fc;
  letter-spacing: .05em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #6366f11a;
  border: 1px solid #6366f133;
  border-radius: 9999px;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  padding: .35rem 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  display: inline-flex;
}

.page-module__E0kJGG__heroBadgeStatus {
  background-color: #a5b4fc;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s infinite page-module__E0kJGG__pulse;
  box-shadow: 0 0 10px #a5b4fc;
}

.page-module__E0kJGG__heroTitle {
  letter-spacing: -.03em;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin-bottom: 1.5rem;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
}

.page-module__E0kJGG__heroTitle span {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.page-module__E0kJGG__heroSubtitle {
  color: #a1a1aa;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.page-module__E0kJGG__ctaBtn {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border: none;
  border-radius: 9999px;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 10px 25px -5px #6366f166;
}

.page-module__E0kJGG__ctaBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px #6366f199;
}

.page-module__E0kJGG__ctaBtn svg {
  transition: transform .2s;
}

.page-module__E0kJGG__ctaBtn:hover svg {
  transform: translateX(4px);
}

.page-module__E0kJGG__features {
  z-index: 2;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 4rem;
  display: grid;
  position: relative;
}

.page-module__E0kJGG__featureCard {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #ffffff05;
  border: 1px solid #ffffff0d;
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform .3s, background .3s, border-color .3s;
}

.page-module__E0kJGG__featureCard:hover {
  background: #ffffff0a;
  border-color: #6366f14d;
  transform: translateY(-6px);
}

.page-module__E0kJGG__featureIcon {
  color: #818cf8;
  background: #6366f11a;
  border: 1px solid #6366f133;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 2rem;
  display: flex;
}

.page-module__E0kJGG__featureTitle {
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.page-module__E0kJGG__featureDesc {
  color: #a1a1aa;
  font-size: .95rem;
  line-height: 1.6;
}

.page-module__E0kJGG__footer {
  color: #71717a;
  background: #0b0f19;
  border-top: 1px solid #ffffff0d;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 4rem;
  font-size: .9rem;
  display: flex;
}

.page-module__E0kJGG__footerLinks {
  gap: 2rem;
  display: flex;
}

.page-module__E0kJGG__footerLinks a {
  color: #71717a;
  text-decoration: none;
  transition: color .2s;
}

.page-module__E0kJGG__footerLinks a:hover {
  color: #e4e4e7;
}

.page-module__E0kJGG__modalOverlay {
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  background: #0009;
  justify-content: center;
  align-items: center;
  animation: .3s forwards page-module__E0kJGG__fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.page-module__E0kJGG__modalContent {
  text-align: center;
  background: #18181b;
  border: 1px solid #ffffff1a;
  border-radius: 28px;
  width: 100%;
  max-width: 440px;
  padding: 3.5rem 3rem;
  animation: .4s cubic-bezier(.16, 1, .3, 1) forwards page-module__E0kJGG__slideUp;
  position: relative;
  box-shadow: 0 25px 50px -12px #000000b3;
}

.page-module__E0kJGG__closeBtn {
  color: #a1a1aa;
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.page-module__E0kJGG__closeBtn:hover {
  color: #fff;
  background: #ffffff1a;
}

.page-module__E0kJGG__modalIcon {
  color: #818cf8;
  background: linear-gradient(135deg, #6366f133 0%, #6366f10d 100%);
  border: 1px solid #6366f133;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
}

.page-module__E0kJGG__modalTitle {
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.page-module__E0kJGG__modalSubtitle {
  color: #a1a1aa;
  margin-bottom: 2.5rem;
  font-size: .95rem;
  line-height: 1.5;
}

.page-module__E0kJGG__inputGroup {
  text-align: left;
  margin-bottom: 1.5rem;
}

.page-module__E0kJGG__inputLabel {
  color: #e4e4e7;
  margin-bottom: .5rem;
  font-size: .85rem;
  font-weight: 500;
  display: block;
}

.page-module__E0kJGG__emailInput {
  color: #fff;
  box-sizing: border-box;
  background: #ffffff08;
  border: 1px solid #ffffff1a;
  border-radius: 14px;
  outline: none;
  width: 100%;
  padding: .875rem 1.25rem;
  font-size: 1rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.page-module__E0kJGG__emailInput:focus {
  background: #6366f108;
  border-color: #818cf8;
  box-shadow: 0 0 0 4px #6366f11a;
}

.page-module__E0kJGG__emailInput::placeholder {
  color: #52525b;
}

.page-module__E0kJGG__submitBtn {
  color: #09090b;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 14px;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
}

.page-module__E0kJGG__submitBtn:hover {
  background: #e4e4e7;
}

.page-module__E0kJGG__submitBtn:active {
  transform: scale(.98);
}

.page-module__E0kJGG__successState {
  animation: .4s forwards page-module__E0kJGG__fadeIn;
}

.page-module__E0kJGG__successIcon {
  color: #4ade80;
  background: #22c55e1a;
  border: 1px solid #22c55e33;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
}

.page-module__E0kJGG__successTitle {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.page-module__E0kJGG__successDesc {
  color: #a1a1aa;
  margin-bottom: 2rem;
  font-size: .95rem;
  line-height: 1.5;
}

.page-module__E0kJGG__backBtn {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 1px solid #fff3;
  border-radius: 14px;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .2s;
}

.page-module__E0kJGG__backBtn:hover {
  background: #ffffff0d;
  border-color: #ffffff4d;
}

@keyframes page-module__E0kJGG__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes page-module__E0kJGG__fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes page-module__E0kJGG__slideUp {
  from {
    opacity: 0;
    transform: translateY(30px)scale(.95);
  }

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

@keyframes page-module__E0kJGG__pulse {
  0% {
    box-shadow: 0 0 #a5b4fc66;
  }

  70% {
    box-shadow: 0 0 0 6px #a5b4fc00;
  }

  100% {
    box-shadow: 0 0 #a5b4fc00;
  }
}

@media (max-width: 900px) {
  .page-module__E0kJGG__features {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  .page-module__E0kJGG__header {
    padding: 1.5rem 2rem;
  }

  .page-module__E0kJGG__navLinks {
    display: none;
  }

  .page-module__E0kJGG__heroTitle {
    font-size: 3rem;
  }

  .page-module__E0kJGG__features {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .page-module__E0kJGG__footer {
    text-align: center;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
}

/*# sourceMappingURL=app_page_module_07gh4g0.css.map*/