:root {
  --bg: #080a12;
  --text: #f8fafc;
  --accent: #3d8bff;
  --accent-soft: rgba(61, 139, 255, 0.18);
  --muted: rgba(226, 232, 240, 0.7);
  --muted-strong: rgba(241, 245, 249, 0.92);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(160deg, #0e1320 0%, #05060b 75%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
}

.glow {
  position: absolute;
  width: 45vmax;
  height: 45vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: float 16s infinite ease-in-out;
}

.glow-one {
  background: rgba(61, 139, 255, 0.28);
  top: -22vmax;
  left: -8vmax;
  animation-delay: -7s;
}

.glow-two {
  background: rgba(14, 197, 191, 0.18);
  top: 32vmax;
  right: -18vmax;
  animation-delay: -3s;
}

.glow-three {
  background: rgba(82, 91, 255, 0.22);
  bottom: -26vmax;
  left: 45%;
  transform: translateX(-45%);
}

@keyframes float {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(3%, -2%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

.coming-soon {
  width: min(640px, 92vw);
  padding: 3rem;
  border-radius: 32px;
  display: grid;
  row-gap: 2.75rem;
  backdrop-filter: blur(30px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 80px rgba(7, 5, 26, 0.45);
}

.logo {
  width: 120px;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.75rem;
  justify-self: center;
}

.hero {
  display: grid;
  row-gap: 1.6rem;
  justify-items: center;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 600;
  margin: 0;
  color: var(--muted-strong);
}

.hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.notify {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  margin-top: 1rem;
}

.notify input[type="email"] {
  padding: 0.9rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 5, 26, 0.35);
  color: var(--text);
  font-size: 1rem;
  transition: border 0.3s ease;
}

.notify input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.notify input:focus {
  outline: none;
  border-color: var(--accent);
}

.notify button {
  padding: 0.9rem 1.8rem;
  border-radius: 18px;
  border: none;
  background: linear-gradient(120deg, var(--accent), #8b5cff);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(91, 99, 255, 0.35);
}

.notify button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(91, 99, 255, 0.45);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 640px) {
  body {
    padding: 2.5rem 0;
  }

  .coming-soon {
    padding: 2.5rem 1.8rem;
    row-gap: 2.3rem;
  }

  .notify {
    grid-template-columns: 1fr;
  }

  .notify button {
    width: 100%;
  }
}
