:root {
  --bg: #10131b;
  --panel: #1b202b;
  --panel-2: #222936;
  --line: rgba(255, 255, 255, 0.14);
  --ink: #ffffff;
  --soft: rgba(255, 255, 255, 0.82);
  --muted: rgba(255, 255, 255, 0.64);
  --purple: #bd4ff0;
  --purple-2: #d09aff;
  --green: #10b981;
  --mono: "JetBrains Mono", monospace;
  --body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 8%, rgba(189, 79, 240, 0.22), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(59, 130, 246, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--bg);
}

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

.site-shell {
  min-height: 100vh;
  border-bottom: 1px solid var(--line);
  padding-top: 84px;
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(1160px, calc(100% - 32px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 12px;
  background: rgba(16, 19, 27, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--soft);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 10px;
  padding: 11px 15px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn.primary {
  background: var(--purple);
  border-color: #7e22ce;
  color: #fff;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--purple-2);
  margin-bottom: 18px;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 48px;
  align-items: center;
  padding: 42px 0 70px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.product-stage {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.product-stage:before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 71, 232, 0.13), transparent 62%);
  filter: blur(2px);
}

.hero-phone {
  z-index: 1;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(27, 32, 43, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  padding: 14px;
  backdrop-filter: blur(18px);
}

.floating-card small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.status-card {
  left: -18px;
  top: 92px;
}

.audit-card {
  right: -14px;
  bottom: 114px;
  display: grid;
}

.dot-live {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.12);
}

.page-hero {
  padding: 72px 0 38px;
}

.nav + .page-hero,
.nav + .checkout {
  margin-top: 84px;
}

.hero h1,
.page-hero h1,
.checkout-title {
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 800px;
  overflow-wrap: break-word;
}

.page-hero h1,
.checkout-title {
  font-size: clamp(38px, 6vw, 72px);
}

.lead {
  margin-top: 22px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.65;
  max-width: 680px;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.metric {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 12px;
  padding: 16px;
}

.metric b {
  font-size: 24px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.phone {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, #242b38, #171c26);
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.screen {
  border-radius: 22px;
  background: #111723;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.top {
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.chip,
.tag {
  width: fit-content;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: 6px 9px;
}

.chip {
  color: var(--green);
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.tag {
  color: var(--purple-2);
  border: 1px solid var(--line);
}

.capture {
  height: 270px;
  margin: 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(184, 71, 232, 0.2), rgba(59, 130, 246, 0.12)), #111722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.receipt {
  width: 150px;
  background: #f8fafc;
  color: #111827;
  border-radius: 10px;
  padding: 16px 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.receipt:after {
  content: "";
  display: block;
  height: 18px;
  margin: 14px -14px -16px;
  background: repeating-linear-gradient(135deg, transparent 0 12px, #f8fafc 12px 24px);
}

.line {
  height: 8px;
  background: #111827;
  border-radius: 99px;
  margin-bottom: 10px;
}

.line.short {
  width: 70%;
}

.line.tiny {
  width: 46%;
}

.list {
  padding: 0 16px 18px;
  display: grid;
  gap: 10px;
}

.item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px;
}

.icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(184, 71, 232, 0.12);
  display: grid;
  place-items: center;
  color: var(--purple-2);
}

.item small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.amount {
  font-family: var(--mono);
  font-size: 12px;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.section {
  padding: 66px 0;
  scroll-margin-top: 96px;
}

.split,
.module-layout,
.dashboard-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section h2,
.final-box h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}

.section-head p,
.body-copy,
.final-box p {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.65;
}

.section-head p {
  max-width: 460px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.problem-card,
.module-card,
.flow-step,
.boss-note {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
}

.problem-card {
  padding: 18px;
}

.problem-card b,
.problem-card span {
  display: block;
}

.problem-card span {
  color: var(--soft);
  line-height: 1.5;
  margin-top: 8px;
  font-size: 14px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  padding: 20px;
  min-height: 220px;
}

.flow-step span,
.module-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--purple-2);
  background: rgba(184, 71, 232, 0.12);
  border: 1px solid rgba(184, 71, 232, 0.26);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.flow-step h3 {
  margin-top: 26px;
  font-size: 21px;
}

.flow-step p,
.module-card p {
  margin-top: 12px;
  color: var(--soft);
  line-height: 1.55;
  font-size: 14px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.module-card {
  padding: 20px;
}

.module-card h3 {
  margin-top: 22px;
  font-size: 20px;
}

.role-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.role-card {
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 18px;
}

.role-card.optional {
  background: rgba(255, 255, 255, 0.035);
}

.role-card span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.role-card b {
  display: block;
  margin-top: 28px;
  font-size: 18px;
}

.role-arrow {
  height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
  position: relative;
}

.role-arrow:after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid var(--purple-2);
  border-right: 1px solid var(--purple-2);
  transform: rotate(45deg);
}

.boss-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 18px;
}

.boss-note span {
  color: var(--soft);
  line-height: 1.5;
  max-width: 720px;
}

.mini-dashboard {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #242b38, #171c26);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.dash-top,
.dash-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 14px;
  align-items: center;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  padding: 8px 6px 18px;
}

.dash-top small,
.dash-row.head,
.dash-row span {
  color: var(--muted);
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dash-metrics div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.dash-metrics b {
  display: block;
  font-size: 24px;
}

.dash-metrics span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 12px;
}

.dash-table {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.dash-row {
  min-height: 56px;
  padding: 0 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.dash-row:first-child {
  border-top: 0;
}

.dash-row b {
  width: fit-content;
  border-radius: 999px;
  background: rgba(184, 71, 232, 0.12);
  color: var(--purple-2);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.check-list span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  padding: 14px;
  color: var(--soft);
}

.check-list span:before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  margin-right: 8px;
}

.roadmap-plans {
  padding-bottom: 0;
}

.final-cta {
  padding-top: 0;
}

.final-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(184, 71, 232, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(189, 79, 240, 0.18), rgba(59, 130, 246, 0.1)),
    var(--panel);
  padding: 32px;
}

.grid,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card,
.plan,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p,
.plan p,
.step,
.note {
  color: var(--soft);
  line-height: 1.55;
  font-size: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.step {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.step b {
  font-family: var(--mono);
  color: var(--purple-2);
  font-size: 12px;
}

.step p {
  margin-top: 8px;
}

.plans {
  padding: 24px 0 34px;
}

.plan {
  position: relative;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan.featured {
  border-color: rgba(184, 71, 232, 0.5);
  box-shadow: 0 0 0 1px rgba(184, 71, 232, 0.16);
}

.plan h2 {
  font-size: 24px;
}

.price {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.features {
  display: grid;
  gap: 10px;
  color: var(--soft);
  font-size: 14px;
}

.features li {
  list-style: none;
  display: flex;
  gap: 9px;
}

.features li:before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

.note {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin: 0 0 40px;
}

.trial-banner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(16, 185, 129, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.14), rgba(189, 79, 240, 0.08)),
    var(--panel);
  padding: 18px;
  margin: 6px 0 8px;
}

.trial-banner b {
  display: block;
  font-size: 22px;
}

.trial-banner span {
  display: block;
  color: var(--soft);
  line-height: 1.45;
  margin-top: 4px;
}

.trial-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(16, 185, 129, 0.34);
  border-radius: 999px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.checkout {
  padding: 70px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.checkout .panel {
  padding: 24px;
}

.summary {
  display: grid;
  gap: 12px;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  color: var(--soft);
}

.row b {
  color: var(--ink);
  text-align: right;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.lead-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.35;
  outline: none;
  padding: 12px 13px;
}

.lead-form textarea {
  min-height: 92px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(189, 79, 240, 0.64);
  box-shadow: 0 0 0 3px rgba(189, 79, 240, 0.12);
}

.lead-form .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.lead-form .btn {
  width: 100%;
  cursor: pointer;
}

.success-box {
  max-width: 860px;
  margin: 104px auto 80px;
}

.success-box .panel {
  padding: 34px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.foot {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero,
  .checkout,
  .split,
  .module-layout,
  .dashboard-section {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
  }

  .floating-card {
    display: none;
  }

  .phone {
    width: 100%;
    max-width: 440px;
  }

  .grid,
  .plans,
  .steps,
  .trust,
  .flow,
  .module-grid,
  .problem-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .section-head,
  .final-box,
  .boss-note {
    align-items: start;
    flex-direction: column;
  }

  .role-rail {
    grid-template-columns: 1fr;
  }

  .role-arrow {
    width: 1px;
    height: 28px;
    margin-left: 24px;
    background: linear-gradient(180deg, var(--purple), transparent);
  }

  .role-arrow:after {
    right: -4px;
    top: auto;
    bottom: 0;
    transform: rotate(135deg);
  }

  .links a:not(.btn) {
    display: none;
  }
}

@media (max-width: 560px) {
  body {
    overflow-x: hidden;
  }

  .wrap {
    width: min(366px, calc(100% - 24px));
    margin-left: 12px;
    margin-right: 12px;
  }

  .nav {
    top: 8px;
    width: calc(100% - 24px);
    min-height: 58px;
  }

  .brand {
    letter-spacing: 0.12em;
  }

  .links {
    display: none;
  }

  .trial-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .hero,
  .page-hero,
  .checkout {
    padding-top: 34px;
  }

  .hero h1,
  .page-hero h1,
  .checkout-title {
    font-size: 34px;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .phone {
    border-radius: 24px;
    padding: 12px;
  }

  .top {
    align-items: flex-start;
    flex-direction: column;
  }

  .capture {
    height: 220px;
    margin: 12px;
  }

  .item {
    grid-template-columns: 34px 1fr;
  }

  .amount {
    grid-column: 2;
  }

  .foot {
    flex-direction: column;
  }
}
