:root {
  color-scheme: dark;
  --bg: #121210;
  --bg-deep: #0a0a09;
  --surface: #1a1a17;
  --surface-2: #23221f;
  --surface-3: #2c2a26;
  --paper: #f4f1ea;
  --ink: #f7f4ee;
  --muted: #bbb4a8;
  --subtle: #8b8377;
  --faint: #5b554d;
  --line: #343129;
  --line-strong: #514a3f;
  --purple: #674292;
  --lilac: #c3b2d5;
  --mint: #7cd6bd;
  --mint-ink: #06251d;
  --amber: #edc970;
  --red: #e97878;
  --button-ink: #1d1b17;
  --shadow: 0 28px 70px -34px rgba(0, 0, 0, .85);
  --max: 1180px;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 8px;
  --radius-lg: 12px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  --mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 520px),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .07) 1px, transparent 0),
    var(--bg);
  background-size: auto, 34px 34px, auto;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18, 18, 16, .98), rgba(18, 18, 16, .86), rgba(18, 18, 16, .98));
  pointer-events: none;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(195, 178, 213, .28);
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--bg);
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 10px var(--pad);
  background: rgba(18, 18, 16, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, background .2s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 16, .94);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand img {
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a,
.nav-menu-button,
.signin {
  padding: 9px 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
}

.nav-links a:hover,
.nav-menu-button:hover,
.nav-popover.is-open .nav-menu-button,
.signin:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, .055);
}

.nav-popover {
  position: relative;
}

.nav-popover::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 55;
  width: min(320px, 88vw);
  height: 14px;
  transform: translateX(-50%);
}

.nav-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.nav-menu-button > span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}

.nav-popover.is-open .nav-menu-button > span,
.nav-popover:focus-within .nav-menu-button > span,
.nav-popover:hover .nav-menu-button > span {
  transform: translateY(1px) rotate(225deg);
}

.nav-popover-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  display: grid;
  gap: 4px;
  width: min(320px, 88vw);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 18, 16, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .16s ease, transform .16s ease;
}

.nav-popover-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 10px;
  height: 10px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: rgba(18, 18, 16, .98);
  transform: translateX(-50%) rotate(45deg);
}

.nav-popover.is-open .nav-popover-panel,
.nav-popover:focus-within .nav-popover-panel,
.nav-popover:hover .nav-popover-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-popover-panel a {
  display: block;
  padding: 12px;
  border-radius: var(--radius);
}

.nav-popover-panel a:hover {
  background: rgba(195, 178, 213, .09);
}

.nav-popover-panel b,
.nav-popover-panel small {
  display: block;
}

.nav-popover-panel b {
  color: var(--ink);
}

.nav-popover-panel small {
  margin-top: 3px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.signin.is-dashboard {
  color: var(--lilac);
  background: rgba(195, 178, 213, .09);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

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

.button-primary {
  background: var(--paper);
  color: var(--button-ink);
  box-shadow: 0 16px 34px -22px rgba(244, 241, 234, .5);
}

.button-primary:hover {
  background: #fffaf2;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, .02);
}

.button-secondary:hover {
  border-color: var(--lilac);
  background: rgba(195, 178, 213, .08);
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .98fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(58px, 8vw, 104px);
  padding-bottom: clamp(72px, 10vw, 132px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--lilac);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--purple);
  transform: rotate(45deg);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-top: 20px;
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 78px);
  font-weight: 520;
  line-height: .98;
  text-wrap: balance;
}

h1 .hero-underline {
  color: var(--ink);
  font-style: inherit;
  text-decoration: underline;
  text-decoration-color: var(--purple);
  text-decoration-thickness: .08em;
  text-underline-offset: .1em;
  white-space: normal;
}

h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 520;
  line-height: 1.04;
  text-wrap: balance;
}

h3 {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 780;
  line-height: 1.18;
}

.lead {
  max-width: 58ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
  text-wrap: pretty;
}

.lead strong,
strong {
  color: var(--ink);
  font-weight: 760;
}

.hero-copy .lead {
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 12px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row .icon {
  color: var(--lilac);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(103, 66, 146, .22);
}

.hero-visual {
  position: relative;
}

.product-window,
.log-card,
.price-card,
.comparison,
.ownership,
.value-item,
.ways-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(26, 26, 23, .94);
  box-shadow: var(--shadow);
  min-width: 0;
}

.hero > *,
.product-section > *,
.log-section > *,
.math-grid > * {
  min-width: 0;
}

.product-window {
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 14px;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}

.window-url {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  height: 26px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
  overflow: hidden;
  white-space: nowrap;
}

.window-url .icon {
  color: var(--lilac);
}

.offer-panel {
  padding: 18px;
}

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

.offer-head h2 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 800;
}

.offer-head p,
.mini-stats span,
.offer-table small {
  margin: 3px 0 0;
  color: var(--subtle);
  font-size: 12px;
}

.mini-stats {
  display: flex;
  gap: 18px;
  font-family: var(--mono);
  text-align: right;
}

.mini-stats b {
  display: block;
  color: var(--lilac);
  font-size: 15px;
}

.table-wrap {
  overflow-x: auto;
}

.offer-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  font-size: 13px;
}

.offer-table th,
.offer-table td {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-align: left;
  white-space: nowrap;
}

.offer-table th {
  color: var(--muted);
  font-weight: 720;
}

.offer-table thead th {
  color: var(--ink);
}

.offer-table small {
  display: block;
  font-weight: 650;
}

.offer-table .best {
  color: var(--mint);
  font-weight: 800;
}

.offer-table .best span {
  margin-left: 5px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.pill-good {
  background: var(--mint);
  color: var(--mint-ink);
}

.pill-soft {
  background: var(--surface-3);
  color: var(--muted);
  border: 1px solid var(--line);
}

.status-card {
  position: absolute;
  left: -28px;
  bottom: -32px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(320px, 86%);
  padding: 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(10, 10, 9, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.status-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--purple);
}

.status-icon .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.6;
}

.status-card strong,
.status-card > div span {
  display: block;
}

.status-card > div span {
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
}

.coverage {
  border-block: 1px solid rgba(255, 255, 255, .08);
  background: rgba(10, 10, 9, .72);
}

.coverage-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.mono-label {
  margin: 0;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.coverage ul,
.feature-list,
.comparison ul,
.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.coverage li {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.coverage li:last-child {
  color: var(--lilac);
}

.positioning {
  padding-top: clamp(64px, 9vw, 112px);
  padding-bottom: clamp(64px, 9vw, 112px);
  text-align: center;
}

.positioning .eyebrow {
  justify-content: center;
}

.positioning h2,
.positioning .lead {
  margin-inline: auto;
}

.positioning h2 {
  max-width: 780px;
  margin-top: 20px;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.proof-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.proof-points .icon {
  color: var(--mint);
}

.proof-points .highlight {
  border-color: rgba(195, 178, 213, .34);
  color: var(--lilac);
  background: rgba(195, 178, 213, .1);
}

.section {
  padding-top: clamp(68px, 9vw, 118px);
  padding-bottom: clamp(68px, 9vw, 118px);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section-head h2 {
  margin-top: 18px;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

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

.step {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.step.highlighted {
  border-color: rgba(195, 178, 213, .28);
  background: linear-gradient(180deg, rgba(195, 178, 213, .055), var(--surface) 64%);
}

.step-num {
  display: block;
  margin-bottom: 18px;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--lilac);
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step .meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
}

.step .meta .icon {
  color: var(--lilac);
}

.value-list {
  display: grid;
  gap: 16px;
}

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

.usecase-card {
  position: relative;
  min-height: 520px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(26, 26, 23, .94);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}

.usecase-card:hover {
  transform: translateY(-3px);
  border-color: rgba(195, 178, 213, .34);
}

.usecase-card h3 {
  max-width: 14rem;
  margin: 14px 0 10px;
}

.usecase-card p {
  max-width: 18rem;
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.usecase-card img {
  position: absolute;
  right: -18px;
  bottom: -180px;
  width: min(58%, 250px);
  height: auto;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .5));
}

.desktop-section .section-head {
  max-width: 760px;
}

.desktop-showcase {
  display: grid;
  gap: 16px;
}

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

.desktop-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-deep);
  box-shadow: var(--shadow);
}

.desktop-frame img {
  width: 100%;
  height: auto;
  background: var(--bg-deep);
}

.desktop-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.desktop-frame figcaption b {
  color: var(--ink);
}

.desktop-frame figcaption span {
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
}

.desktop-proof-shot {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.desktop-proof-shot .lead {
  margin-top: 12px;
}

.value-item {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 390px);
  gap: 0;
  overflow: hidden;
}

.value-item > div,
.value-item > aside {
  padding: clamp(24px, 3.5vw, 42px);
}

.value-item > aside {
  border-left: 1px solid var(--line);
  background: rgba(10, 10, 9, .58);
}

.number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 0 18px;
  border-radius: var(--radius);
  background: rgba(195, 178, 213, .12);
  color: var(--lilac);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.value-item h3 {
  max-width: 32rem;
}

.value-item p:not(.number) {
  max-width: 62ch;
  margin: 13px 0 0;
  color: var(--muted);
}

.value-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.value-aside b {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(44px, 5.5vw, 64px);
  font-weight: 520;
  line-height: 1;
}

.value-aside span {
  max-width: 28ch;
  margin-top: 12px;
  color: var(--subtle);
}

.review-card {
  color: #20172a;
  background: var(--paper) !important;
}

.review-strip {
  height: 5px;
  margin: calc(clamp(24px, 3.5vw, 42px) * -1) calc(clamp(24px, 3.5vw, 42px) * -1) 16px;
  background: var(--purple);
}

.review-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: #20172a;
}

.review-card header span {
  color: #6d6078;
  font-family: var(--mono);
  font-size: 11px;
}

.review-card p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  max-width: none !important;
  margin: 0 !important;
  padding: 9px 0;
  border-top: 1px solid #e5ddea;
  color: #3b3145 !important;
  font-size: 13px;
}

.review-card p strong {
  color: #316d55;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.review-card .dim,
.review-card .dim strong {
  color: #8c8393 !important;
}

.check-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.check-panel p {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: none !important;
  margin: 0 !important;
  color: var(--ink) !important;
}

.check-panel .icon,
.feature-list .icon,
.price-card li .icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 7px;
  background: rgba(195, 178, 213, .12);
  color: var(--lilac);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.log-section,
.math-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.product-copy h2,
.log-section h2 {
  margin-top: 18px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.feature-list strong {
  color: var(--ink);
}

.phone-shot {
  margin: 0;
}

.phone-shot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 52px rgba(0, 0, 0, .58));
}

.product-pipeline-shot {
  width: min(360px, 100%);
  margin-inline: auto;
}

#ways .section-head {
  margin-inline: auto;
  text-align: center;
}

#ways .eyebrow {
  justify-content: center;
}

#ways .lead {
  margin-inline: auto;
}

.ways-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.ways-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  z-index: 1;
  border-left: 1px dashed rgba(195, 178, 213, .34);
}

.ways-grid article {
  position: relative;
  z-index: 0;
  padding: clamp(24px, 3vw, 38px);
}

.choice-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 9, .46);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.choice-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(195, 178, 213, .42);
  border-radius: 999px;
  background: var(--bg-deep);
  color: var(--lilac);
  box-shadow: var(--shadow);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ways-grid h3 {
  margin-top: 12px;
}

.ways-grid p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.primary-way {
  border-color: rgba(195, 178, 213, .35) !important;
  background: linear-gradient(180deg, rgba(195, 178, 213, .06), var(--surface) 70%) !important;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.comparison article {
  padding: clamp(26px, 3.5vw, 42px);
}

.comparison article:first-child {
  background: rgba(10, 10, 9, .54);
  border-right: 1px solid var(--line);
}

.comparison h3 {
  margin: 8px 0 20px;
}

.comparison ul {
  display: grid;
  gap: 14px;
}

.comparison li {
  display: flex;
  gap: 11px;
  color: var(--muted);
}

.comparison .icon {
  width: 22px;
  height: 22px;
  padding: 4px;
  border-radius: 7px;
}

.comparison .bad {
  background: rgba(233, 120, 120, .13);
  color: var(--red);
}

.comparison .good {
  background: rgba(195, 178, 213, .13);
  color: var(--lilac);
}

.log-card {
  padding: 18px;
}

.log-card header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.log-card h3 {
  font-size: 16px;
}

.log-card header p {
  margin: 3px 0 0;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
}

.log-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.log-item > .icon {
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--surface-2);
}

.log-item.done > .icon {
  color: var(--mint);
}

.log-item.lender > .icon {
  color: var(--lilac);
}

.log-item.live {
  margin-inline: -8px;
  padding-inline: 8px;
  border-radius: var(--radius);
  background: rgba(195, 178, 213, .055);
}

.log-item.live > .icon {
  color: var(--amber);
}

.log-item p {
  margin: 0;
}

.log-item strong,
.log-item span {
  display: block;
}

.log-item span {
  color: var(--muted);
  font-size: 13px;
}

.log-item time {
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
}

.math-band {
  border-block: 1px solid rgba(255, 255, 255, .08);
  background: rgba(10, 10, 9, .76);
  padding-top: clamp(68px, 9vw, 118px);
  padding-bottom: clamp(68px, 9vw, 118px);
}

.big-stat {
  margin: 18px 0 6px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(60px, 9vw, 104px);
  line-height: .9;
}

.bar-stack {
  display: grid;
  gap: 22px;
}

.bar-stack p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 9px;
}

.bar-stack p span {
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
}

.bar-stack i {
  display: block;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  overflow: hidden;
  font-style: normal;
}

.bar-stack i span {
  display: flex;
  align-items: center;
  width: var(--bar);
  height: 100%;
  padding-left: 12px;
  background: repeating-linear-gradient(45deg, #3a242c, #3a242c 8px, #442b34 8px, #442b34 16px);
  color: #ffb3bd;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 760;
  white-space: nowrap;
}

.bar-stack i .book {
  background: var(--mint);
  color: var(--mint-ink);
}

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

.math-cards span {
  display: block;
  min-height: 84px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--subtle);
  font-size: 13px;
}

.math-cards b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 520;
  line-height: 1;
}

.ownership {
  overflow: hidden;
}

.lane {
  display: grid;
  grid-template-columns: 48px 220px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.lane:first-child {
  border-top: 0;
}

.lane > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--lilac);
}

.lane > span > img {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.lane.you {
  background: rgba(255, 255, 255, .035);
}

.lane b {
  white-space: nowrap;
}

.lane p {
  margin: 0;
  color: var(--muted);
}

.barrier {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-block: 1px dashed var(--line-strong);
  background: var(--bg-deep);
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.barrier .icon {
  color: var(--lilac);
}

.price-card {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
}

.price-card > div,
.price-card > aside {
  padding: clamp(28px, 4vw, 48px);
}

.price-card > aside {
  border-left: 1px solid var(--line);
  background: rgba(10, 10, 9, .58);
}

.price {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(64px, 9vw, 102px);
  line-height: .9;
}

.price span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--font);
  font-size: .24em;
  font-weight: 760;
}

.price-card h3 {
  margin-bottom: 10px;
}

.price-card p:not(.price):not(.mono-label) {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.price-card dl {
  margin: 16px 0 0;
}

.price-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.price-card dl div:last-child {
  border-bottom: 0;
}

.price-card dt {
  color: var(--muted);
}

.price-card dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 760;
  white-space: nowrap;
}

.price-card .keep {
  margin-top: 6px;
  border-top: 1px solid var(--line);
}

.price-card .keep dt,
.price-card .keep dd {
  color: var(--lilac);
  font-weight: 820;
}

.final-cta {
  padding-top: clamp(78px, 10vw, 132px);
  padding-bottom: clamp(78px, 10vw, 132px);
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 72px);
}

.final-cta .lead {
  margin-inline: auto;
}

.los-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.los-row span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: left;
}

.los-row small {
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 11px;
}

.centered-buttons {
  justify-content: center;
}

.final-note {
  margin: 22px 0 0;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 12px;
}

.page-main {
  padding-bottom: clamp(34px, 6vw, 72px);
}

.usecase-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: clamp(58px, 8vw, 112px);
  padding-bottom: clamp(54px, 8vw, 104px);
}

.usecase-hero h1 {
  max-width: 12ch;
}

.usecase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--subtle);
  font-family: var(--mono);
  font-size: 12px;
}

.usecase-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.usecase-actions,
.page-cta-actions {
  margin-top: 28px;
}

.app-shot-panel {
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, .42));
}

.app-shot-panel img {
  width: 100%;
  height: auto;
}

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

.proof-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(26, 26, 23, .94);
}

.proof-card .number {
  margin-bottom: 18px;
}

.proof-card h3 {
  margin-bottom: 10px;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
}

.usecase-split {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.usecase-copy-list {
  display: grid;
  gap: 16px;
}

.usecase-copy-list.offset {
  margin-top: 26px;
}

.usecase-copy-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.usecase-copy-list h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.usecase-copy-list p {
  margin: 0;
  color: var(--muted);
}

.page-cta {
  text-align: center;
}

.page-cta h2,
.page-cta .lead {
  margin-inline: auto;
}

.page-cta h2 {
  margin-top: 18px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--bg-deep);
  padding: 46px 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-brand img {
  width: 104px;
}

.footer-grid p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--subtle);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 540px;
}

.site-footer nav a {
  color: var(--muted);
  font-weight: 700;
}

.site-footer nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--subtle);
  font-size: 13px;
}

@media (hover: hover) {
  .step,
  .value-item,
  .ways-grid article,
  .comparison,
  .log-card,
  .price-card,
  .ownership,
  .product-window,
  .desktop-frame {
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
  }

  .step:hover,
  .value-item:hover,
  .ways-grid article:hover,
  .log-card:hover,
  .price-card:hover,
  .ownership:hover,
  .product-window:hover,
  .desktop-frame:hover {
    transform: translateY(-3px);
    border-color: rgba(195, 178, 213, .34);
  }
}

@media (max-width: 1000px) {
  .hero,
  .product-section,
  .log-section,
  .math-grid,
  .usecase-hero,
  .usecase-split,
  .desktop-proof-shot {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    max-width: 14ch;
  }

  .hero-visual {
    max-width: 760px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .usecase-cards,
  .usecase-proof {
    grid-template-columns: 1fr;
  }

  .usecase-card {
    min-height: 360px;
  }

  .usecase-card img {
    width: min(42%, 190px);
    bottom: -145px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .brand img {
    width: 96px;
  }

  .signin {
    display: none;
  }

  .hero {
    padding-bottom: 64px;
  }

  .status-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .coverage-inner,
  .offer-head,
  .log-card header,
  .bar-stack p,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps,
  .ways-grid,
  .comparison,
  .value-item,
  .price-card,
  .math-cards,
  .desktop-shot-grid,
  .usecase-cards,
  .usecase-proof {
    grid-template-columns: 1fr;
  }

  .ways-grid::before {
    display: none;
  }

  .choice-divider {
    position: static;
    transform: none;
    justify-self: center;
    margin: -4px 0;
  }

  .value-item > aside,
  .price-card > aside,
  .comparison article:first-child {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .lane {
    grid-template-columns: 44px 1fr;
  }

  .lane p {
    grid-column: 2;
  }

  .mini-stats {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .wrap,
  .site-header {
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .button {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .nav-actions .button {
    width: auto;
  }

  .trust-row span {
    width: 100%;
  }

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

  .log-item time {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
