:root {
  --bg: #0b0b0f;
  --bg-2: #14141a;
  --bg-3: #1c1c24;
  --line: #23232c;
  --line-2: #2f2f3a;
  --fg: #e8e8ec;
  --fg-2: #b8b8c4;
  --muted: #8a8a95;
  --gold: #f5c542;
  --gold-2: #e8a92a;
  --ok: #65d08a;
  --err: #e63946;
  --font: "Inter", -apple-system, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font: 16px/1.6 var(--font); -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

a { color: var(--fg); text-decoration: none; transition: color 0.12s; }
a:hover { color: var(--gold); }

.muted { color: var(--muted); }

/* ─── Nav ───────────────────────────────────────────── */
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px;
  max-width: 1200px; margin: 0 auto;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 600; }
.logo, .brand-mini {
  width: 28px; height: 28px; border-radius: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  position: relative;
}
.logo::after, .brand-mini::after {
  content: '';
  position: absolute; right: -4px; top: -4px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ok); border: 2px solid var(--bg);
}
.nav nav { display: flex; gap: 24px; align-items: center; font-size: 14px; }
.nav nav a { color: var(--fg-2); }
.cta-small {
  padding: 8px 14px !important; background: var(--bg-2);
  border-radius: 6px; color: var(--gold) !important;
  border: 1px solid var(--line-2);
}
.cta-small:hover { background: var(--bg-3); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1200px;
  margin: 80px auto 100px;
  padding: 0 40px;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(101, 208, 138, 0.1);
  color: var(--ok);
  font-size: 12px; font-weight: 500;
  padding: 6px 12px; border-radius: 100px;
  border: 1px solid rgba(101, 208, 138, 0.2);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: 48px; line-height: 1.12; margin: 0 0 20px 0;
  font-weight: 700; letter-spacing: -0.02em;
}
.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lede {
  font-size: 17px; color: var(--fg-2); line-height: 1.6;
  margin: 0 0 32px 0; max-width: 540px;
}
.hero-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-sub { font-size: 12px; color: var(--muted); margin: 0; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0b0b0f;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  border: 0; cursor: pointer;
  transition: transform 0.08s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245, 197, 66, 0.35); color: #0b0b0f; }
.btn-big { padding: 14px 28px; font-size: 15px; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--fg-2);
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--bg-2); color: var(--fg); }

/* ─── Screenshot mock ─────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }
.screenshot {
  width: 320px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 120px rgba(245, 197, 66, 0.08);
}
.sc-hdr {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.04), transparent);
}
.sc-hdr strong { font-size: 14px; }
.sc-meta { padding: 16px 16px 8px; border-bottom: 1px solid var(--line); }
.sc-meta h4 { font-size: 14px; margin: 0 0 4px 0; line-height: 1.3; }
.sc-meta p { font-size: 11px; color: var(--muted); margin: 0; }
.sc-card {
  background: var(--bg-3);
  margin: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}
.sc-card:last-of-type { margin-bottom: 16px; }
.sc-card-hdr { display: flex; justify-content: space-between; margin-bottom: 8px; }
.sc-num { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 1.5px; font-weight: 700; }
.sc-ts { font-family: var(--mono); font-size: 11px; color: var(--gold); }
.sc-q { font-size: 13px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.sc-a { font-size: 12px; color: var(--fg-2); line-height: 1.5; }

/* ─── Sections ─────────────────────────────────────── */
section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
section h2 { font-size: 32px; text-align: center; margin: 0 0 50px 0; letter-spacing: -0.01em; }

/* ─── Features grid ────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.15s, transform 0.08s;
}
.feat:hover { border-color: var(--line-2); transform: translateY(-2px); }
.feat-ico { font-size: 28px; margin-bottom: 12px; }
.feat h3 { font-size: 17px; margin: 0 0 8px 0; font-weight: 600; }
.feat p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.55; }

/* ─── Steps ────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.step-num {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #0b0b0f;
  border-radius: 50%;
  font-weight: 700; font-size: 16px;
  margin: 0 auto 14px;
}
.step h3 { font-size: 15px; margin: 0 0 6px 0; }
.step p { font-size: 13px; color: var(--fg-2); margin: 0; line-height: 1.5; }

/* ─── Pricing ──────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.plan {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
}
.plan-pro {
  border-color: rgba(245, 197, 66, 0.4);
  background: linear-gradient(180deg, rgba(245, 197, 66, 0.05), var(--bg-2));
}
.plan-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #0b0b0f;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 100px;
}
.plan-hdr h3 { font-size: 24px; margin: 0 0 12px 0; }
.price { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.price span { font-size: 14px; color: var(--muted); font-weight: 400; }
.plan-features { list-style: none; padding: 0; margin: 20px 0 28px 0; }
.plan-features li { padding: 6px 0; font-size: 14px; color: var(--fg-2); }

.waitlist { display: flex; gap: 8px; flex-wrap: wrap; }
.waitlist input {
  flex: 1; min-width: 160px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-family: inherit;
}
.waitlist input:focus { outline: none; border-color: var(--gold); }
.waitlist .done { flex-basis: 100%; margin: 4px 0 0 0; font-size: 12px; color: var(--ok); }

/* ─── FAQ ──────────────────────────────────────────── */
.faq { max-width: 780px; }
.faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: border-color 0.12s;
}
.faq details:hover { border-color: var(--line-2); }
.faq summary {
  font-size: 15px; font-weight: 500;
  cursor: pointer; user-select: none;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq summary::after {
  content: '+';
  position: absolute; right: 0; top: 0;
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.15s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  color: var(--fg-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 0 0;
}

/* ─── Install CTA ──────────────────────────────────── */
.install { padding: 60px 40px 100px; }
.install-box {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background-image: radial-gradient(ellipse at top, rgba(245, 197, 66, 0.12), transparent 50%);
}
.install-box h2 { margin: 0 0 24px 0; }

/* ─── Footer ───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 50px 40px 30px;
  max-width: 1200px; margin: 0 auto;
}
.footer-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col strong { font-size: 16px; }
.footer-col h4 { font-size: 13px; color: var(--fg-2); margin: 0 0 12px 0; font-weight: 600; }
.footer-col a {
  display: block; color: var(--muted);
  font-size: 13px; padding: 4px 0;
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: var(--muted); font-size: 13px; margin: 8px 0 0 0; line-height: 1.6; }
.copyright { text-align: center; color: var(--muted); font-size: 12px; margin: 0; }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; margin: 40px auto 60px; padding: 0 24px; }
  .hero h1 { font-size: 36px; }
  .hero-visual { display: none; }
  section { padding: 60px 24px; }
  section h2 { font-size: 26px; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; gap: 24px; }
  .nav { padding: 16px 24px; }
  .nav nav { gap: 16px; font-size: 13px; }
}
@media (max-width: 600px) {
  .nav nav a:not(.cta-small) { display: none; }
  .hero h1 { font-size: 28px; }
  .steps { grid-template-columns: 1fr; }
}
