:root {
  --bg: #0b0f1a;
  --panel: #121826;
  --accent: #f7c45f;
  --accent-2: #6ee7d8;
  --text: #eef2f6;
  --muted: #a3b2c2;
  --border: rgba(238, 242, 246, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 20%, #1a2744, #0b0f1a 55%);
  color: var(--text);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page::before {
  background: linear-gradient(120deg, rgba(110, 231, 216, 0.08), transparent 55%);
}

.page::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
}

.page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem 2rem;
  position: relative;
}

.card {
  max-width: 720px;
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(110, 231, 216, 0.14);
  color: var(--accent-2);
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
}

.notify {
  margin-top: 2rem;
}

.label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

input {
  flex: 1 1 220px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(11, 15, 26, 0.7);
  color: var(--text);
}

input:focus {
  outline: 2px solid rgba(125, 211, 199, 0.6);
  border-color: transparent;
}

button {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #2a2007;
  font-weight: 700;
  cursor: pointer;
}

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

.note {
  margin: 0.75rem 0 0;
  color: var(--accent-2);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.bullets {
  margin: 2rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.bullets li::marker {
  color: var(--accent);
}

.bullets li {
  margin-bottom: 0.6rem;
}

.footer {
  text-align: center;
  padding: 1.5rem 1rem 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .card {
    padding: 2rem 1.5rem;
  }

  .row {
    flex-direction: column;
  }

  button {
    width: 100%;
  }
}
