:root {
  --accent-start: #8a7dff;
  --accent-end: #b35cff;
  --bg: #090b10;
  --panel: #11141b;
  --panel-2: #171b24;
  --line: #252b36;
  --text: #f7f8fb;
  --muted: #9199a8;
  --soft: #cbd0da;
  --max: 1160px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(900px 520px at 72% 3%, color-mix(in srgb, var(--accent-start) 16%, transparent), transparent 65%),
    radial-gradient(700px 500px at -10% 35%, color-mix(in srgb, var(--accent-end) 10%, transparent), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 11px 12px 11px 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(10,12,17,.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0,0,0,.24);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-start) 22%, transparent);
}

.brand-mark svg { width: 20px; height: 20px; color: white; }
.brand strong { display: block; font-size: 14px; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
}

.nav-links a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0 16px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: .16s ease;
}

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

.button-primary,
.button-small {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: white;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent-start) 18%, transparent);
}

.button-small {
  justify-self: end;
  min-height: 36px;
  border-radius: 10px;
  padding: 0 13px;
  font-size: 10px;
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--soft);
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.section-narrow {
  width: min(960px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding: 90px 20px 70px;
}

.eyebrow {
  display: inline-block;
  color: #c8c2ff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 660px;
  margin: 14px 0 0;
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero-sub {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.microcopy {
  margin-top: 13px;
  color: #747c89;
  font-size: 10px;
}

.product-shell {
  width: 100%;
  max-width: 450px;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 14px;
  background:
    radial-gradient(500px 200px at 100% 0%, color-mix(in srgb, var(--accent-start) 14%, transparent), transparent 60%),
    #0d1016;
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  transform: rotate(1deg);
}

.product-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 3px 13px;
  border-bottom: 1px solid var(--line);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
}

.status-pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(96,211,148,.1);
  color: #78e2a7;
  font-size: 9px;
  font-weight: 800;
}

.demo-hero {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.demo-hero span {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.demo-hero strong {
  display: block;
  margin-top: 5px;
  font-size: 34px;
  letter-spacing: -.04em;
}

.demo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.demo-stats div {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.demo-stats strong { display: block; font-size: 16px; }
.demo-stats span { color: var(--muted); font-size: 9px; }

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5px;
  margin-top: 9px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--panel);
}

.demo-tabs span {
  padding: 7px 5px;
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  font-size: 8px;
  font-weight: 750;
}

.demo-tabs .active {
  background: #252a36;
  color: var(--text);
}

.demo-list {
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.demo-user {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 8px 9px;
  border-bottom: 1px solid var(--line);
  background: rgba(17,20,27,.84);
}

.demo-user:last-child { border-bottom: 0; }

.avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-start) 25%, #222), #242935);
  color: #ddd9ff;
  font-size: 10px;
  font-weight: 850;
}

.demo-user strong,
.demo-user small {
  display: block;
}

.demo-user strong { font-size: 10px; }
.demo-user small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.demo-user b { color: var(--soft); font-size: 8px; }

.trust-section { padding: 10px 0 100px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.trust-card,
.step-card,
.price-card,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(17,20,27,.72);
}

.trust-card {
  border-radius: 18px;
  padding: 20px;
}

.trust-card strong {
  display: block;
  font-size: 13px;
}

.trust-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-band h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.045em;
}

.section-heading p,
.cta-band p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

#how,
#pricing,
#faq {
  padding: 85px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.step-card {
  min-height: 220px;
  border-radius: 18px;
  padding: 20px;
}

.step-number {
  color: #8f86e8;
  font-size: 10px;
  font-weight: 850;
}

.step-card h3 {
  margin: 45px 0 0;
  font-size: 19px;
}

.step-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.price-card {
  position: relative;
  border-radius: 20px;
  padding: 22px;
}

.price-card.pro {
  border-color: color-mix(in srgb, var(--accent-start) 55%, var(--line));
  background:
    radial-gradient(420px 170px at 100% 0%, color-mix(in srgb, var(--accent-start) 14%, transparent), transparent 65%),
    rgba(17,20,27,.82);
}

.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  font-size: 8px;
  font-weight: 850;
}

.price-card h3 {
  margin: 0;
  font-size: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 18px;
}

.price-row strong {
  font-size: 42px;
  letter-spacing: -.04em;
}

.price-row span {
  color: var(--muted);
  font-size: 10px;
}

.features {
  display: grid;
  gap: 9px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.features li {
  color: var(--soft);
  font-size: 11px;
}

.features li::before {
  content: "✓";
  margin-right: 8px;
  color: #9e96ff;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border-radius: 14px;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 16px 17px;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 750;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 17px 17px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.faq-item.open p { display: block; }

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 85px;
  margin-bottom: 85px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(500px 230px at 100% 0%, color-mix(in srgb, var(--accent-start) 15%, transparent), transparent 65%),
    var(--panel);
}

.cta-band h2 { font-size: 42px; }

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px 0 55px;
  border-top: 1px solid var(--line);
}

.footer strong { font-size: 12px; }

.footer p {
  max-width: 520px;
  color: #747c89;
  font-size: 9px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 15px;
  color: #7b8392;
  font-size: 9px;
}

.footer-links a { text-decoration: none; }

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    min-height: 0;
    padding-top: 80px;
  }

  .product-shell {
    justify-self: center;
    transform: none;
  }

  .trust-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand small { display: none; }
  .button-small { display: none; }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero h1 { font-size: 50px; }
  .hero-sub { font-size: 14px; }

  .hero-actions {
    flex-direction: column;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .cta-band .button {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
