:root {
  --bg: #0b1220;
  --bg-accent: #0f172a;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --brand: #60a5fa;
  --brand-2: #a78bfa;
  --success: #10b981;
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text);
  background: radial-gradient(1200px 800px at 10% 10%, rgba(96,165,250,0.12), transparent),
              radial-gradient(1000px 700px at 90% 30%, rgba(167,139,250,0.12), transparent),
              var(--bg);
}

.bg-gradient {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(96, 165, 250, 0.08), rgba(167, 139, 250, 0.08));
  filter: blur(60px);
  pointer-events: none;
}

.page {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 32px 16px;
}

.brand {
  width: 100%;
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.logo-wordmark span {
  color: var(--brand);
}

.byline {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.hero {
  width: 100%;
  max-width: 960px;
  margin: 24px auto;
  text-align: center;
  padding: 32px 24px;
}

.glass {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.4));
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 16px;
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.hero h1 {
  margin: 0 0 10px 0;
  font-size: clamp(28px, 5vw, 44px);
}

.subtitle {
  margin: 0 auto 22px;
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.coming-soon {
  margin: 24px auto 16px;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand), var(--brand-2), #fbbf24);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(96, 165, 250, 0.3);
  position: relative;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(167, 139, 250, 0.1));
  border-radius: 20px;
  filter: blur(20px);
  z-index: -1;
  animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-glow {
  0% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 12px;
  justify-items: center;
  margin: 22px auto 6px;
  max-width: 600px;
}

.time {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: rgba(2, 6, 23, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  min-width: 72px;
}

.time span {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.time label {
  font-size: 12px;
  color: var(--muted);
}

.notify {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 580px;
  margin: 22px auto 8px;
}

.notify input[type="email"] {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.5);
  color: #e5e7eb;
  outline: none;
}

.notify input[type="email"]:focus {
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.notify button {
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  color: #0b1220;
  font-weight: 700;
  cursor: pointer;
}

.form-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.form-message {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 13px;
}

.form-message.success { color: var(--success); }
.form-message.error { color: var(--danger); }

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 18px auto 0;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.icon-link:hover { border-color: rgba(148,163,184,0.35); }

.footer {
  width: 100%;
  max-width: 960px;
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
}

.tagline {
  margin-top: 6px;
}

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

@media (max-width: 520px) {
  .notify { grid-template-columns: 1fr; }
}


