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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: radial-gradient(circle at top, #0f172a, #020617);
  color: #e5e7eb;
  min-height: 100vh;
}

/* Layout */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  min-height: 100vh;
}

.hero {
  max-width: 640px;
  text-align: center;
}

/* Typography */
h1 {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #93c5fd;
  margin-bottom: 1.5rem;
}

.teaser {
  font-size: 1rem;
  color: #cbd5f5;
  margin-bottom: 2rem;
}

.divider {
  width: 80px;
  height: 1px;
  background: #334155;
  margin: 2rem auto;
}

.status {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.launch {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.early {
  font-size: 0.95rem;
  color: #fbbf24;
  margin-bottom: 2rem;
}

/* Form */
.signup {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.signup input {
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  border: none;
  min-width: 220px;
}

.signup button {
  padding: 0.6rem 1rem;
  background: #2563eb;
  border: none;
  border-radius: 4px;
  color: white;
  font-weight: 500;
  cursor: pointer;
}

.signup button:hover {
  background: #1d4ed8;
}

/* Footer text */
.disclaimer {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 1rem;
}
