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

:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --border: #1e1e2e;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --text: #e2e8f0;
  --muted: #64748b;
  --green: #22c55e;
  --orange: #f97316;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124,58,237,0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(167,139,250,0.08), transparent);
}

.container {
  width: 100%;
  max-width: 640px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent-light);
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
}

.maintenance-badge {
  background: rgba(249,115,22,0.12);
  border-color: rgba(249,115,22,0.4);
  color: var(--orange);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Coming soon form */
.notify-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 440px;
  flex-wrap: wrap;
}

.notify-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

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

.notify-form button {
  padding: 0.75rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.notify-form button:hover { background: #6d28d9; }
.notify-form button:active { transform: scale(0.97); }

.form-note {
  font-size: 0.85rem;
  color: var(--green);
  min-height: 1.2em;
}

/* Maintenance page */
.maintenance-icon {
  font-size: 4rem;
  animation: spin 8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.status-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.8rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

footer {
  color: var(--muted);
  font-size: 0.8rem;
}
