:root {
  --bg: #07060b;
  --panel: #100c18;
  --panel-2: #161020;
  --text: #f7f2ff;
  --muted: #b5a9c7;
  --purple: #b36cff;
  --purple-light: #d7b2ff;
  --border: rgba(211, 177, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(159, 87, 230, 0.16), transparent 34rem),
    linear-gradient(150deg, #050509, var(--bg));
}

.background-glow {
  position: fixed;
  width: 28rem;
  height: 28rem;
  left: 50%;
  top: 25%;
  translate: -50% -50%;
  border-radius: 50%;
  background: rgba(164, 94, 235, 0.10);
  filter: blur(75px);
  pointer-events: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card {
  width: min(100%, 720px);
  text-align: center;
  padding: 42px 28px 30px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.035), transparent), var(--panel);
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
}

.logo {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(223, 197, 255, 0.34);
  box-shadow: 0 12px 34px rgba(151, 79, 223, 0.25);
}

.eyebrow {
  margin: 22px 0 12px;
  color: var(--purple-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--purple);
}

.description {
  max-width: 510px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.launch-box {
  width: fit-content;
  margin: 26px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(190, 128, 255, 0.25);
  border-radius: 999px;
  color: #dfc1ff;
  background: rgba(177, 102, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px rgba(179, 108, 255, 0.75);
}

.notify-form {
  max-width: 510px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

input, button {
  min-height: 54px;
  border-radius: 14px;
  font: inherit;
}

input {
  width: 100%;
  border: 1px solid var(--border);
  padding: 0 17px;
  color: var(--text);
  background: var(--panel-2);
  outline: none;
}

input:focus {
  border-color: rgba(190, 128, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(179, 108, 255, 0.10);
}

button {
  border: 0;
  padding: 0 21px;
  color: #14091d;
  background: linear-gradient(135deg, #d8b4ff, #a95df1);
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  filter: brightness(1.05);
}

.form-message {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--purple-light);
  font-size: 0.84rem;
}

.socials {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.socials a {
  color: #a99db9;
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 150ms ease;
}

.socials a:hover {
  color: var(--text);
}

footer {
  margin-top: 30px;
  color: #756b82;
  font-size: 0.76rem;
}

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

@media (max-width: 560px) {
  .card {
    padding: 30px 18px 24px;
    border-radius: 22px;
  }

  .logo {
    width: 92px;
    height: 92px;
    border-radius: 22px;
  }

  .notify-form {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
