:root {
  --bg: #0b0d12;
  --panel: #101524;
  --panel2: #0f1320;
  --text: #e9ecf5;
  --muted: #a8b0c2;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);

  --radius: 16px;
  --radius2: 22px;

  --max: 1120px;
  --pad: 22px;

  --btnH: 44px;
  --font:
    ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: var(--font);
  background: none;
  color: var(--text);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      1200px 700px at 70% 10%,
      rgba(92, 125, 255, 0.14) 0%,
      rgba(92, 125, 255, 0) 70%
    ),
    radial-gradient(
      1000px 700px at 20% 40%,
      rgba(65, 255, 205, 0.1) 0%,
      rgba(65, 255, 205, 0) 70%
    ),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.center {
  justify-content: center;
}

.muted {
  color: var(--muted);
}
.lead {
  font-size: 1.08rem;
  color: #d7dbeb;
  line-height: 1.5;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 13, 18, 0.65);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px var(--pad);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand__mark {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(92, 125, 255, 0.95);
  box-shadow: 0 0 0 4px rgba(92, 125, 255, 0.15);
}
.brand--small {
  font-size: 0.95rem;
}

.nav {
  display: none;
  gap: 36px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav a {
  opacity: 0.9;
}
.nav a:hover {
  opacity: 1;
}

.topbar__cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--btnH);
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: none;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn--primary {
  background: rgba(92, 125, 255, 0.95);
  border-color: rgba(92, 125, 255, 0.5);
  box-shadow: 0 10px 30px rgba(92, 125, 255, 0.18);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 58px 0 22px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  width: fit-content;
}
h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 10px;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}
.checks li {
  position: relative;
  padding-left: 28px;
  color: #dfe3f2;
}
.checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(65, 255, 205, 0.95);
}

.pricecard {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 10px;
}
.pricecard__label {
  color: var(--muted);
  font-weight: 700;
}
.pricecard__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.pricecard__price {
  font-size: 1.6rem;
  font-weight: 900;
}
.pricecard__desc {
  color: var(--muted);
  font-weight: 700;
}
.pricecard__sep {
  color: var(--muted);
}

.hero__visual {
  display: grid;
  place-items: center;
}

.hero__copy,
.hero__visual {
  min-width: 0;
}

.flowboard {
  width: 100%;
  max-width: 460px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow);
}

.flowboard__header {
  margin-bottom: 14px;
}

.flowboard__eyebrow {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.flowboard__title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}

.flowboard__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.flowstep {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(16, 21, 36, 0.62);
}

.flowstep__label {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--text);
  background: rgba(92, 125, 255, 0.18);
  border: 1px solid rgba(92, 125, 255, 0.28);
  flex-shrink: 0;
}

.flowstep__kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.flowstep__title {
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.flowstep__text {
  color: #d8dced;
  line-height: 1.45;
  font-size: 0.94rem;
}

.flowstep__arrow {
  display: grid;
  place-items: center;
  justify-self: center;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(90deg);
}

.flowboard__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.signal {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #dfe3f2;
  font-size: 0.85rem;
  font-weight: 700;
}

.signal--accent {
  background: rgba(65, 255, 205, 0.08);
  border-color: rgba(65, 255, 205, 0.18);
}

.section {
  padding: 42px 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
h2 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  letter-spacing: 0.2px;
}

.grid3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.box {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.box h3 {
  margin: 0 0 6px;
}
.box p {
  margin: 0;
  color: #d8dced;
  line-height: 1.5;
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 14px 14px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
}
.faq p {
  color: #d8dced;
  line-height: 1.5;
}

.bullets {
  margin: 10px 0 0;
  color: #d8dced;
}
.bullets li {
  margin: 6px 0;
}

.final {
  padding: 54px 0 64px;
}
.final__inner {
  text-align: center;
}
.footer {
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.15);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__right {
  display: flex;
  gap: 14px;
  color: var(--muted);
}

/* Responsive */
@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .hero__inner {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 34px;
  }
  .grid3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    flex-direction: row;
    align-items: center;
  }
}
