:root {
  --bg: #090611;
  --panel: rgba(23, 12, 41, 0.78);
  --panel-border: rgba(182, 132, 255, 0.22);
  --text: #f4edff;
  --muted: #c6b7ea;
  --violet: #8f5cff;
  --violet-strong: #6a35e8;
  --violet-soft: #b996ff;
  --success: #b7ffcf;
  --danger: #ffb5ce;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a0f30 0%, #090611 50%, #050309 100%);
  color: var(--text);
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.34;
  pointer-events: none;
}

.glow-1 {
  width: 280px;
  height: 280px;
  background: #7c3aed;
  top: 80px;
  left: -80px;
}

.glow-2 {
  width: 360px;
  height: 360px;
  background: #4f46e5;
  right: -120px;
  bottom: 20px;
}

.topbar,
.hero,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 24px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet-soft), var(--violet-strong));
  box-shadow: 0 0 24px rgba(143, 92, 255, 0.75);
}

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

.domain-badge {
  text-decoration: none;
  color: var(--violet-soft);
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.04);
  padding: 10px 14px;
  border-radius: 999px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 70px;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--violet-soft);
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.02;
  max-width: 12ch;
}

.lead {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 64ch;
}

.feature-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.waitlist-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.feature-card {
  padding: 20px;
}

.feature-card h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.feature-card p,
.waitlist-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.waitlist-card {
  padding: 28px;
}

.card-chip {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(143, 92, 255, 0.12);
  border: 1px solid rgba(143, 92, 255, 0.26);
  color: var(--violet-soft);
  font-size: 0.85rem;
}

.waitlist-card h2 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.waitlist-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.94rem;
}

.waitlist-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(8, 4, 16, 0.85);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.waitlist-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(143, 92, 255, 0.16);
}

.waitlist-form button {
  margin-top: 6px;
  border: none;
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  color: white;
  font-weight: 700;
  cursor: pointer;
}

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

.form-message {
  min-height: 22px;
  font-size: 0.94rem;
}

.form-message.success {
  color: var(--success);
}

.form-message.error {
  color: var(--danger);
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 28px;
  color: #a998d3;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}
