/* [project]/apps/web/components/public/coming-soon.css [app-client] (css) */
.cs-root {
  color: #f9fafb;
  background-color: #030712;
  flex-direction: column;
  min-height: 100dvh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cs-orbs {
  pointer-events: none;
  z-index: 0;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.cs-orb {
  filter: blur(80px);
  opacity: .55;
  border-radius: 50%;
  animation: 20s ease-in-out infinite orbFloat;
  position: absolute;
}

.cs-orb-1 {
  background: radial-gradient(circle, #2563eb 0%, #0000 70%);
  width: 600px;
  height: 600px;
  animation-duration: 25s;
  animation-delay: 0s;
  top: -200px;
  left: -150px;
}

.cs-orb-2 {
  background: radial-gradient(circle, #7c3aed 0%, #0000 70%);
  width: 500px;
  height: 500px;
  animation-duration: 20s;
  animation-delay: -7s;
  bottom: -100px;
  right: -100px;
}

.cs-orb-3 {
  background: radial-gradient(circle, #0ea5e9 0%, #0000 70%);
  width: 400px;
  height: 400px;
  animation-duration: 18s;
  animation-delay: -14s;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0)scale(1);
  }

  33% {
    transform: translate(40px, -30px)scale(1.05);
  }

  66% {
    transform: translate(-20px, 20px)scale(.97);
  }
}

.cs-header {
  z-index: 20;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  display: flex;
  position: relative;
}

.cs-logo {
  letter-spacing: -.02em;
  color: #f9fafb;
  font-size: 1.25rem;
  font-weight: 700;
}

.cs-main {
  z-index: 10;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem 3rem;
  display: flex;
  position: relative;
}

.cs-glass-card {
  -webkit-backdrop-filter: blur(24px);
  text-align: center;
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 1.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 640px;
  padding: 3rem 2.5rem;
  display: flex;
  box-shadow: inset 0 0 0 1px #ffffff0a, 0 24px 64px #00000080;
}

.cs-eyebrow {
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #60a5fa;
  font-size: .75rem;
  font-weight: 600;
}

.cs-title {
  letter-spacing: -.03em;
  color: #fff;
  text-shadow: 0 0 40px #60a5fa59, 0 0 80px #60a5fa26;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
}

.cs-divider {
  align-items: center;
  gap: .75rem;
  width: 100%;
  max-width: 280px;
  display: flex;
}

.cs-divider-line {
  background: linear-gradient(to right, #0000, #60a5fa66);
  flex: 1;
  height: 1px;
}

.cs-divider-line:last-child {
  background: linear-gradient(to left, #0000, #60a5fa66);
}

.cs-divider-dot {
  background: #60a5fa;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px #60a5facc;
}

.cs-subtitle {
  color: #9ca3af;
  max-width: 400px;
  font-size: 1rem;
  line-height: 1.65;
}

.cs-countdown {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: .25rem;
  display: flex;
}

.cs-countdown-box {
  background: #ffffff0d;
  border: 1px solid #ffffff14;
  border-radius: .875rem;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  min-width: 72px;
  padding: .875rem .5rem .625rem;
  display: flex;
}

.cs-countdown-value {
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.cs-countdown-label {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6b7280;
  font-size: .65rem;
  font-weight: 500;
}

.cs-countdown-sep {
  color: #374151;
  align-self: flex-start;
  padding-top: .75rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.cs-form {
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  max-width: 380px;
  display: flex;
}

.cs-input-wrap {
  align-items: center;
  display: flex;
  position: relative;
}

.cs-input-icon {
  color: #6b7280;
  pointer-events: none;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: .875rem;
}

.cs-input {
  color: #f9fafb;
  box-sizing: border-box;
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
  border-radius: .625rem;
  outline: none;
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 2.75rem;
  font-size: .9375rem;
  transition: border-color .2s, background .2s, box-shadow .2s;
}

.cs-input::placeholder {
  color: #6b7280;
}

.cs-input:focus {
  background: #ffffff17;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px #60a5fa26;
}

.cs-btn {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #2563eb;
  border: none;
  border-radius: .625rem;
  height: 3rem;
  padding: 0 1.75rem;
  font-size: .9375rem;
  font-weight: 600;
  transition: background .2s, transform .1s, box-shadow .2s;
}

.cs-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 20px #2563eb66;
}

.cs-btn:active {
  transform: scale(.98);
}

.cs-btn:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #60a5fa;
}

.cs-success {
  color: #4ade80;
  align-items: center;
  gap: .625rem;
  font-size: .9375rem;
  font-weight: 500;
  animation: .3s ease-out fadeIn;
  display: flex;
}

.cs-success-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

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

.cs-social {
  align-items: center;
  gap: .75rem;
  margin-top: .25rem;
  display: flex;
}

.cs-social-link {
  color: #9ca3af;
  background: #ffffff0f;
  border: 1px solid #ffffff1a;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 2.25rem;
  height: 2.25rem;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  display: flex;
}

.cs-social-link:hover {
  color: #f9fafb;
  background: #ffffff1f;
  border-color: #fff3;
  transform: translateY(-2px);
}

.cs-social-link:focus-visible {
  outline-offset: 2px;
  outline: 2px solid #60a5fa;
}

.cs-social-icon {
  width: 1rem;
  height: 1rem;
}

.cs-footer {
  z-index: 10;
  border-top: 1px solid #ffffff0d;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: 1.5rem 2rem;
  display: flex;
  position: relative;
}

.cs-footer-text {
  color: #6b7280;
  font-size: .8125rem;
}

.cs-footer-powered {
  color: #4b5563;
  font-size: .75rem;
}

@media (min-width: 640px) {
  .cs-form {
    flex-direction: row;
    align-items: center;
  }

  .cs-form .cs-input-wrap {
    flex: 1;
  }

  .cs-countdown-sep {
    padding-top: .875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-orb {
    animation: none;
  }

  .cs-btn:active {
    transform: none;
  }
}

/*# sourceMappingURL=apps_web_components_public_coming-soon_02u.q_u.css.map*/