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

:root {
  --bg: #0b0b12;
  --text: #f0f0f8;
  --text-muted: #7c7c9a;
  --border: rgba(255,255,255,0.08);
  --grad-start: #f5a623;
  --grad-end: #e8420a;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Animated orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb--orange {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.55) 0%, rgba(232,66,10,0.3) 40%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  right: -100px;
  animation: orbA 7s ease-in-out infinite alternate;
}

.orb--blue {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76,110,245,0.5) 0%, rgba(76,110,245,0.2) 40%, transparent 70%);
  filter: blur(80px);
  bottom: -100px;
  left: -100px;
  animation: orbB 9s ease-in-out infinite alternate;
}

.orb--green {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(62,207,142,0.35) 0%, transparent 70%);
  filter: blur(90px);
  bottom: 20%;
  right: 10%;
  animation: orbC 11s ease-in-out infinite alternate;
}

@keyframes orbA {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-80px, 100px) scale(1.15); }
  100% { transform: translate(60px, 160px) scale(0.9); }
}

@keyframes orbB {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(100px, -80px) scale(1.2); }
  100% { transform: translate(-60px, 60px) scale(0.85); }
}

@keyframes orbC {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-120px, 60px) scale(1.1); }
  100% { transform: translate(80px, -100px) scale(0.95); }
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 24px 64px;
  max-width: 540px;
  width: 100%;
  gap: 28px;
}

.logo {
  height: 400px;
  width: auto;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0%   { filter: drop-shadow(0 0 16px rgba(245,166,35,0.6)) drop-shadow(0 0 40px rgba(232,66,10,0.3)); }
  50%  { filter: drop-shadow(0 0 32px rgba(245,166,35,0.9)) drop-shadow(0 0 80px rgba(76,110,245,0.5)); }
  100% { filter: drop-shadow(0 0 20px rgba(62,207,142,0.6)) drop-shadow(0 0 60px rgba(245,166,35,0.4)); }
}

.tagline {
  font-size: 16px;
  line-height: 22px;
  color: var(--text);
  max-width: 720px;
}

.tagline strong {
  color: var(--text);
  font-weight: 600;
}

.form {
  display: flex;
  width: 100%;
  gap: 10px;
}

.form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

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

.form input[type="email"]:focus {
  border-color: rgba(245,166,35,0.5);
  background: rgba(255,255,255,0.07);
}

.form button {
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}

.form button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.note {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

.glow { display: none; }

@media (max-width: 500px) {
  .form { flex-direction: column; }
  .form button { width: 100%; }
  .logo { height: 260px; }
}
