:root {
  --bg: #0b0d12;
  --bg-alt: #11141b;
  --card: #161a23;
  --line: #232838;
  --text: #e8ebf2;
  --muted: #9aa3b5;
  --red: #fe2c55;
  --cyan: #25f4ee;
  --green: #16c47f;
  --neg: #ff5a5f;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 22px; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
s { color: var(--muted); }

.grad {
  background: linear-gradient(90deg, var(--red), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* nav */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11, 13, 18, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.05rem; }
.logo {
  width: 18px; height: 18px; border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--cyan));
  box-shadow: 0 0 18px rgba(37, 244, 238, 0.4);
}
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 0.92rem; color: var(--muted); }
.nav-links a:hover { color: var(--text); }

/* buttons */
.btn {
  display: inline-block; cursor: pointer; border: 0; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; padding: 12px 20px; transition: transform 0.08s ease, opacity 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: linear-gradient(135deg, var(--red), #ff5e7e); color: #fff; }
.btn-primary:hover { opacity: 0.92; }
.btn-ghost { border: 1px solid var(--line); color: var(--text); padding: 9px 16px; }
.btn-ghost:hover { border-color: var(--cyan); }

/* hero */
.hero { padding: 70px 0 40px; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--cyan);
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; margin-bottom: 22px;
}
.lede { font-size: 1.18rem; color: var(--muted); max-width: 640px; margin: 0 0 26px; }
.lede strong { color: var(--text); }

/* waitlist form */
.waitlist-form { display: flex; gap: 10px; max-width: 460px; flex-wrap: wrap; }
.waitlist-form input {
  flex: 1; min-width: 220px; padding: 13px 16px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--card); color: var(--text); font-size: 1rem;
}
.waitlist-form input:focus { outline: none; border-color: var(--cyan); }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 12px; }
.form-note.ok { color: var(--green); }
.form-note.err { color: var(--neg); }

/* hero video */
.hero-video {
  margin-top: 46px;
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 30px 90px -40px rgba(0, 0, 0, 0.9);
}
.hero-video video { display: block; width: 100%; height: auto; }

/* hero card */
.hero-card {
  margin-top: 46px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px; max-width: 560px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.8);
}
.hero-row { display: flex; align-items: center; gap: 13px; padding: 12px; border-radius: 10px; }
.hero-row + .hero-row { border-top: 1px solid var(--line); }
.thumb { width: 40px; height: 40px; border-radius: 8px; flex: none; background: linear-gradient(135deg, var(--red), var(--cyan)); }
.hero-meta { display: flex; flex-direction: column; margin-right: auto; }
.hero-meta b { font-size: 0.95rem; }
.hero-meta span { font-size: 0.78rem; color: var(--muted); }
.badge { font-size: 0.82rem; font-weight: 700; padding: 5px 11px; border-radius: 7px; color: #fff; white-space: nowrap; }
.badge-pos { background: var(--green); }
.badge-neg { background: var(--neg); }

/* sections */
.section { padding: 70px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sub { color: var(--muted); font-size: 1.08rem; max-width: 680px; margin: 0 0 36px; }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.tile, .step, .plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.tile h3, .step h3 { font-size: 1.1rem; }
.tile p, .step p { color: var(--muted); margin: 0; font-size: 0.96rem; }
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--red), var(--cyan)); color: #fff; font-weight: 700;
}

/* compare table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.compare thead th { color: var(--muted); font-weight: 600; }
.compare th.us, .compare td.us { background: rgba(37, 244, 238, 0.06); color: var(--text); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: 0; }

/* pricing */
.pricing .plan { display: flex; flex-direction: column; }
.plan h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price { font-size: 2rem; font-weight: 800; margin: 0; }
.price span { font-size: 1rem; font-weight: 600; color: var(--muted); }
.per { color: var(--muted); font-size: 0.85rem; margin: 2px 0 16px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 18px; color: var(--muted); font-size: 0.95rem; }
.plan li { padding: 6px 0; border-bottom: 1px solid var(--line); }
.plan li:last-child { border-bottom: 0; }
.plan-featured { border-color: var(--red); position: relative; box-shadow: 0 0 0 1px var(--red), 0 30px 70px -40px rgba(254,44,85,0.6); }
.plan-featured .btn { margin-top: auto; text-align: center; }
.ribbon {
  position: absolute; top: -12px; left: 24px; background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}

/* cta + footer */
.cta { text-align: center; }
.cta .waitlist-form { margin: 0 auto; }
.cta .sub { margin-left: auto; margin-right: auto; }
.footer { border-top: 1px solid var(--line); padding: 26px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); }
.muted { color: var(--muted); }

@media (max-width: 760px) {
  .grid-3 { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
}
