:root {
  --bg: #060b16;
  --bg-soft: #0e1627;
  --card: #0b1220;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: #22304a;
  --accent: #22d3ee;
  --accent-dark: #0891b2;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(1400px 700px at 20% -10%, #12203b 0%, transparent 65%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  color: var(--text);
}
.container { max-width: 1024px; margin: 0 auto; padding: 0 20px; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.brand { font-weight: 800; letter-spacing: .2px; }

.hero-content { padding: 80px 20px 72px; }
.badge {
  display: inline-block;
  color: #67e8f9;
  border: 1px solid #164e63;
  background: #082f49;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
h1 { font-size: clamp(34px, 6vw, 56px); margin: 16px 0 10px; line-height: 1.03; }
.lead { color: var(--muted); max-width: 720px; font-size: 18px; }
.cta-row { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.platform-note { color: var(--muted); margin-top: 12px; font-size: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn.primary { background: var(--accent); color: #04202a; }
.btn.primary:hover { background: #67e8f9; }
.btn.ghost { border-color: var(--line); color: var(--text); background: transparent; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
}
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--muted); }

.waitlist { padding-bottom: 56px; }
.wait-card {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 20px;
}
.wait-card h2 { margin: 0 0 8px; }
.wait-card p { color: var(--muted); margin: 0 0 14px; }
.wait-form { display: flex; gap: 10px; flex-wrap: wrap; }
.wait-form input {
  flex: 1;
  min-width: 220px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111827;
  color: var(--text);
  padding: 11px 12px;
}
.note, .msg { font-size: 13px; margin-top: 10px; }
.msg { color: #67e8f9; min-height: 18px; }

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 26px;
  font-size: 13px;
  flex-wrap: wrap;
}
.footer a {
  color: #cbd5e1;
  text-decoration: none;
}
.footer a:hover {
  color: #67e8f9;
}

@media (max-width: 840px) {
  .features { grid-template-columns: 1fr; }
  .hero-content { padding-top: 56px; }
}
