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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0B0E14;
}

a { color: #0161FF; text-decoration: none; }
a:hover { color: #3579FF; }

@keyframes pulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.08); }
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  background: #0B0E14;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 32px;
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1, 97, 255, 0.22), transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.logo {
  height: clamp(96px, 18vw, 160px);
  width: auto;
  object-fit: contain;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B93FF;
  margin: 0 0 16px;
}

.headline {
  font-size: 40px;
  font-weight: 800;
  color: #F1F4F8;
  margin: 0 0 16px;
  line-height: 1.15;
  white-space: nowrap;
  width: 100%;
}

.subtext {
  font-size: 15px;
  color: #9BA4B4;
  line-height: 1.6;
  margin: 0 0 36px;
}

.signup-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 200px;
  box-sizing: border-box;
  background: #131720;
  border: 1px solid #262D3A;
  border-radius: 8px;
  padding: 12px 14px;
  color: #F1F4F8;
  font-size: 14px;
  font-family: inherit;
}

.email-input::placeholder { color: #5A6272; }

.email-input:focus {
  outline: none;
  border-color: #0161FF;
}

.notify-btn {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #0161FF;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

.notify-btn:hover { background: #3579FF; }
.notify-btn:disabled { opacity: 0.6; cursor: default; }

.form-message {
  font-size: 13px;
  min-height: 18px;
  margin-top: 12px;
  color: #9BA4B4;
}

.form-message.is-error { color: #FF6B6B; }
.form-message.is-success { color: #4ADE80; }

.footer {
  font-size: 12px;
  color: #454C59;
  margin: 40px 0 0;
}

.lang-switcher {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: #131720;
  border: 1px solid #262D3A;
  color: #9BA4B4;
  font-size: 13px;
  font-family: inherit;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.lang-switcher:focus { outline: none; border-color: #0161FF; }

@media (max-width: 480px) {
  .lang-switcher { top: 12px; right: 12px; }
  .signup-form { flex-direction: column; }
  .notify-btn { width: 100%; }
}
