:root {
  --bg: #09090d;
  --bg2: #12121a;
  --card: #16161f;
  --line: #2a2a36;
  --ink: #f3f1ea;
  --muted: #9a97a8;
  --accent: #8b7cff;
  --ok: #3ee0a4;
  --warn: #e8c07a;
  --radius: 16px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
}
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: min(1120px, calc(100% - 40px)); }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; letter-spacing: -.02em;
  text-decoration: none; font-size: 18px;
}
.brand i {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, #8b7cff, #3ee0a4);
  display: grid; place-items: center; font-style: normal; color: #0b0b10; font-weight: 800;
}
.nav-links { display: flex; gap: 18px; align-items: center; color: var(--muted); font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 44px; padding: 0 18px; border-radius: 999px;
  background: var(--accent); color: #fff; text-decoration: none; font-weight: 700;
  border: 0; cursor: pointer;
}
.btn:hover { filter: brightness(1.08); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  padding: 72px 0 48px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.kicker {
  color: var(--ok); font-weight: 700; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 14px;
}
h1 {
  font-family: var(--display); font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05; letter-spacing: -.03em; margin: 0 0 18px; font-weight: 700;
}
.lede { color: var(--muted); font-size: 19px; max-width: 52ch; margin: 0 0 28px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.fine { margin-top: 12px; color: var(--muted); font-size: 13px; }
.panel {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: 22px; box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.panel h3 { margin: 0 0 12px; font-size: 15px; color: var(--muted); font-weight: 700; }
.row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.row:last-child { border-bottom: 0; }
.row b { color: var(--ok); font-weight: 700; }

section { padding: 28px 0 12px; }
h2 {
  font-family: var(--display); font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.03em; margin: 0 0 10px;
}
.sub { color: var(--muted); margin: 0 0 24px; max-width: 62ch; }

.grid3, .grid2 { display: grid; gap: 14px; }
.grid3 { grid-template-columns: repeat(3, 1fr); }
.grid2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px;
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

table.compare {
  width: 100%; border-collapse: collapse; background: var(--bg2);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.compare th, .compare td {
  text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.compare th { background: #1b1b26; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.compare td:nth-child(2) { color: var(--ok); font-weight: 700; }
.compare td:nth-child(3) { color: var(--muted); }

.faq details {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; margin-bottom: 8px;
}
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: var(--muted); margin: 10px 0 0; }

.cta-band {
  margin: 36px 0 20px; padding: 28px;
  border-radius: 24px; border: 1px solid var(--line);
  background:
    radial-gradient(600px 180px at 10% 0%, rgba(139,124,255,.22), transparent 60%),
    var(--card);
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
}
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; color: var(--muted); }

footer.site {
  margin-top: 40px; padding: 28px 0 40px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 14px;
}
footer.site .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
footer.site a { color: var(--ink); text-decoration: none; margin-right: 14px; }

@media (max-width: 860px) {
  .hero, .grid3, .grid2, .cta-band { grid-template-columns: 1fr; display: grid; }
  .nav-links { display: none; }
  .hero { padding-top: 36px; }
  h1 { font-size: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
