/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b1120;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  z-index: 10;
}

.logo img {
  width: 200px;
  height: 56px;
}

/* Główny tytuł */
h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5.2rem;
  font-weight: 500;
  background: linear-gradient(to right, #2ecbff, #985eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1.5s ease-out;
  margin-bottom: 130px;
}

/* Podtytuły */
.waitlist-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 20px;
  animation: fadeIn 2s ease-out;
}

.waitlist-description {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 25px;
  line-height: 1.5;
  animation: fadeIn 2.3s ease-out;
}

/* Formularz */
form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 2.5s ease-out;
}

input[type="email"] {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  width: 260px;
  background-color: #1e293b;
  color: white;
  font-size: 1rem;
  outline: none;
  transition: background 0.3s;
}

input[type="email"]:focus {
  background-color: #334155;
}

input[type="email"]::placeholder {
  color: #94a3b8;
}

button {
  padding: 12px 20px;
  background: linear-gradient(90deg, #7c3aed, #4f46e5);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #6d28d9, #4338ca);
}

/* Stopka */
footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #64748b;
  animation: fadeIn 3s ease-out;
}

/* Efekty świetlne w tle */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  z-index: 1;
  animation: pulse 8s ease-in-out infinite alternate;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background: #2ecbff;
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 350px;
  height: 350px;
  background: #985eff;
  bottom: -100px;
  right: -100px;
}

/* Animacje */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

/* Responsywność */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .waitlist-title {
    font-size: 1.2rem;
  }

  form {
    flex-direction: column;
    gap: 15px;
  }

  input[type="email"], button {
    width: 100%;
  }
}
