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

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  color: #ffffff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: 3rem;
  letter-spacing: 1px;
  animation: fadeIn 0.8s ease-out both;
}

.subtitle {
  margin-top: 12px;
  opacity: 0.7;
  font-size: 1.1rem;
  animation: fadeIn 0.8s ease-out 0.15s both;
}

.coming {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Email Form */
.email-form {
  margin-top: 32px;
  animation: fadeIn 0.8s ease-out 0.45s both;
}

.email-input-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-form input[type="email"] {
  padding: 12px 18px;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
  min-width: 240px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.email-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}

.email-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.cta-button {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.15);
  background: #f0f0f0;
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Honeypot field - hidden from users */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.email-hint {
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.email-status {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.email-status--success {
  color: #4ade80;
}

.email-status--error {
  color: #f87171;
}

/* Footer */
.footer {
  width: 100%;
  padding: 24px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  animation: fadeIn 0.8s ease-out 0.6s both;
}

.footer p {
  margin: 4px 0;
}

.footer a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: rgba(255,255,255,0.6);
}

.social-link {
  display: inline-block;
  margin-top: 8px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.8;
}
