:root {
  --bg: #0b0d12;
  --surface: #14171f;
  --text: #e8ebf2;
  --muted: #9aa3b2;
  --accent: #7c5cff;
  --accent-2: #21d4fd;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

/* Soft ambient gradient glow behind content */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(40rem 40rem at 20% 15%, rgba(124, 92, 255, 0.22), transparent 60%),
    radial-gradient(38rem 38rem at 85% 85%, rgba(33, 212, 253, 0.16), transparent 60%);
  filter: blur(8px);
}

.wrap {
  width: 100%;
  max-width: 640px;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 4rem;
}

.logo {
  font-size: 1.6rem;
  line-height: 1;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* Hero */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(33, 212, 253, 0.08);
  border: 1px solid rgba(33, 212, 253, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(120deg, var(--text) 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 28rem;
  margin: 0 auto 2.25rem;
}

/* Notify form */
.notify {
  display: flex;
  gap: 0.6rem;
  max-width: 26rem;
  margin: 0 auto;
}

.notify input {
  flex: 1;
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.8rem 1rem;
  font-size: 1rem;
  transition: border-color 0.15s ease;
}

.notify input::placeholder {
  color: #5e6675;
}

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

.notify button {
  border: none;
  border-radius: var(--radius);
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s ease, opacity 0.15s ease;
}

.notify button:hover {
  opacity: 0.92;
}

.notify button:active {
  transform: translateY(1px);
}

.form-note {
  min-height: 1.4rem;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: var(--accent-2);
}

/* Footer */
.foot {
  margin-top: 4.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.dot {
  margin: 0 0.5rem;
  opacity: 0.5;
}

@media (max-width: 480px) {
  .brand {
    margin-bottom: 3rem;
  }
  .notify {
    flex-direction: column;
  }
  .notify button {
    width: 100%;
  }
}
