:root {
  --ink: #101827;
  --ink-soft: #273043;
  --muted: #66708a;
  --line: #e7eaf3;
  --paper: #ffffff;
  --wash: #f8f9fd;
  --wash-strong: #f2f5fb;
  --warm: #f5f0ea;
  --teal: #6f63ff;
  --teal-dark: #5b51e7;
  --mint: #eef0ff;
  --blue: #57d8e8;
  --blue-soft: #e8fbfd;
  --amber: #f4b156;
  --amber-soft: #fff5e5;
  --coral: #ff7b7b;
  --shadow: 0 24px 70px rgba(16, 24, 39, .13);
  --shadow-soft: 0 14px 34px rgba(16, 24, 39, .07);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfbfe;
  line-height: 1.55;
}

a {
  color: var(--teal-dark);
}

a:hover {
  color: var(--blue);
}

img, svg {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 18px 0 10px;
  background: rgba(251, 251, 254, .82);
  backdrop-filter: blur(14px);
}

.site-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  content: "";
  transform: translateX(-50%);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid rgba(231, 234, 243, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 70px rgba(16, 24, 39, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(111, 99, 255, .22);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.nav-toggle span {
  position: relative;
  margin: auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--teal);
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(111, 99, 255, .20);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  background: var(--teal-dark);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(91, 81, 231, .24);
}

.button.secondary {
  color: var(--teal-dark);
  background: var(--mint);
  border-color: #dfe2ff;
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--ink);
  background: #e5e7ff;
}

.button.ghost {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(87, 216, 232, .18), transparent 28%),
    radial-gradient(circle at 18% 36%, rgba(111, 99, 255, .10), transparent 24%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 58px;
  align-items: center;
  min-height: 660px;
  padding: 106px 0 74px;
}

.hero h1,
.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof-strip span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.system-preview {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(16, 24, 39, .18);
  overflow: hidden;
}

.hero-preview {
  position: relative;
}

.hero-preview::before {
  position: absolute;
  inset: auto 18px -18px 18px;
  height: 36px;
  border-radius: 999px;
  background: rgba(111, 99, 255, .18);
  filter: blur(18px);
  content: "";
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #f9fbff;
  color: var(--paper);
  font-weight: 800;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.preview-status {
  color: var(--teal-dark);
  font-size: .86rem;
}

.preview-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.preview-tabs {
  display: flex;
  gap: 8px;
}

.preview-tabs span {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--wash);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .68), rgba(255, 255, 255, 0)),
    var(--wash);
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
}

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

.ledger-card div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.ledger-card span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.ledger-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
}

.flow-list {
  display: grid;
  gap: 8px;
}

.flow-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.flow-list b {
  color: var(--teal-dark);
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding: 28px 0;
}

.section.alt {
  background: var(--warm);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.section-heading p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.capability-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.capability-strip div {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--paper);
}

.capability-strip strong,
.product-snapshot strong,
.step-card span {
  color: var(--teal-dark);
  font-weight: 900;
}

.capability-strip span,
.product-snapshot span,
.microcopy {
  color: var(--muted);
  font-size: .92rem;
}

.card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
}

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

.product-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--amber));
  content: "";
}

.product-card {
  grid-template-rows: auto auto 1fr auto auto auto;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: .82rem;
  font-weight: 900;
}

.product-card .tag {
  justify-self: end;
}

.feature-list {
  padding-left: 20px;
}

.feature-list li {
  margin: 8px 0;
}

.product-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.product-snapshot div {
  display: grid;
  gap: 2px;
  padding: 16px;
  background: var(--wash);
}

.clarity-grid,
.intent-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.intent-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clarity-grid article,
.intent-panel div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  background: var(--paper);
}

.clarity-grid span,
.intent-panel strong {
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.clarity-grid p,
.intent-panel p {
  margin: 0;
  color: var(--muted);
}

.step-card {
  display: grid;
  gap: 8px;
}

.step-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: start;
}

.panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.page-hero {
  padding: 62px 0 44px;
  background:
    linear-gradient(135deg, rgba(0, 121, 107, .10), rgba(37, 99, 235, .05) 58%, rgba(245, 158, 11, .09)),
    var(--wash);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.lead {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.13rem;
}

.vms-hero {
  min-height: min(690px, calc(100vh - 128px));
  padding: 54px 0 42px;
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
}

.vms-hero-content {
  display: flex;
  min-height: min(570px, calc(100vh - 250px));
  flex-direction: column;
  justify-content: center;
}

.vms-brand-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  margin: 20px 0 0;
  color: var(--ink);
}

.vms-brand-line strong,
.vms-brand-line small {
  display: block;
}

.vms-brand-line strong {
  font-size: 1.25rem;
  line-height: 1.1;
}

.vms-brand-line small {
  color: var(--muted);
  font-weight: 700;
}

.vms-logo-dot {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  background: #5bbdf6;
  color: var(--paper);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(87, 216, 232, .28);
}

.vms-hero h1 {
  max-width: 720px;
  margin: 28px 0 18px;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.vms-hero h1 span {
  color: #6f42e8;
}

.vms-hero-copy {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.17rem;
}

.vms-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 720px;
  margin-top: 28px;
}

.vms-pill-row span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #dfe4f3;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(16, 24, 39, .05);
}

.vms-hero-video {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: center;
  max-width: 860px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
}

.vms-hero-video h2,
.vms-hero-video p {
  margin: 0;
}

.vms-hero-video h2 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.vms-hero-video > div > p:not(.eyebrow) {
  margin-top: 10px;
  color: var(--muted);
}

.vms-hero-video .vms-video-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.vms-offer-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.vms-offer-strip div {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: var(--paper);
}

.vms-offer-strip span {
  color: #10a684;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vms-offer-strip strong {
  font-size: 1.1rem;
}

.vms-offer-strip p {
  margin: 0;
  color: var(--muted);
}

.vms-pricing-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.vms-pricing-header .section-heading {
  margin-bottom: 0;
}

.vms-billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 4px;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid #7047f2;
  border-radius: 999px;
  background: var(--paper);
}

.vms-billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.vms-billing-toggle button.is-active {
  background: var(--ink);
  color: var(--paper);
}

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

.vms-price-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.vms-price-card.featured {
  border-color: #7047f2;
  box-shadow: 0 22px 46px rgba(112, 71, 242, .16);
}

.vms-price-band {
  min-height: 50px;
  padding: 15px 18px;
  background: #eef9f6;
  color: var(--ink);
  font-weight: 900;
}

.vms-price-card.featured .vms-price-band {
  background: #6f42e8;
  color: var(--paper);
}

.vms-price-body {
  display: grid;
  min-height: 100%;
  gap: 16px;
  padding: 22px;
}

.vms-price-body h3,
.vms-price-body p {
  margin: 0;
}

.vms-price-body h3 {
  font-size: 1.55rem;
}

.vms-price-amount {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: baseline;
  padding-top: 8px;
}

.vms-price-amount span {
  color: var(--ink);
  font-size: 3rem;
  font-weight: 900;
  line-height: .95;
}

.vms-price-amount small {
  color: var(--muted);
  font-weight: 800;
}

.vms-price-detail {
  color: var(--muted);
  font-weight: 800;
}

.vms-pricing[data-billing="monthly"] .price-yearly,
.vms-pricing[data-billing="yearly"] .price-monthly {
  display: none;
}

.vms-pricing-note {
  max-width: 880px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.vms-feature-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px 12px;
}

.vms-feature-card span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #18b993;
  color: var(--paper);
  font-weight: 900;
}

.vms-feature-card h3 {
  align-self: center;
  margin: 0;
}

.vms-feature-card p {
  grid-column: 2;
  margin: 0;
}

.vms-brochure-preview {
  margin: 28px 0 0;
}

.vms-brochure-preview img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.vms-brochure-preview figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.vms-client-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1.2fr);
  gap: 30px;
  align-items: center;
}

.vms-client-logos {
  margin: 0;
}

.vms-client-logos img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.vms-client-logos figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.vms-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.vms-video-card {
  display: grid;
  gap: 14px;
}

.vms-video-card h3 {
  margin: 0;
}

.vms-video-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}

.vms-video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transition: transform .18s ease, opacity .18s ease;
}

.vms-video-frame span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(16, 24, 39, .24);
}

.vms-video-frame:hover img {
  opacity: .96;
  transform: scale(1.02);
}

.vms-signup-form h2 {
  margin-top: 0;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #b9c7c4;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.checkbox input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.form-status {
  min-height: 24px;
  color: var(--teal-dark);
  font-weight: 800;
}

.next-step-list {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.next-step-list ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.next-step-list li {
  margin: 6px 0;
  color: var(--muted);
}

.notice {
  padding: 16px;
  border: 1px solid #f4c27a;
  border-radius: 8px;
  background: #fff7e8;
  color: #684000;
}

.mini-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-modules span {
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--wash);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.software-visual {
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.visual-header b {
  color: #9ff1d8;
}

.visual-lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.visual-lines div {
  display: grid;
  min-height: 118px;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0)),
    var(--wash);
}

.visual-lines div:nth-child(2n) {
  background: var(--paper);
}

.visual-lines span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.visual-lines b {
  align-self: end;
  color: var(--teal-dark);
}

.module-section {
  margin: 30px 0;
}

.module-grid,
.process-grid,
.workflow-board,
.pricing-board {
  display: grid;
  gap: 14px;
}

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

.module-grid article,
.process-grid article,
.workflow-board article,
.price-card {
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.module-grid article {
  display: flex;
  gap: 12px;
}

.module-grid span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--mint);
}

.module-grid p,
.process-grid p,
.workflow-board p,
.price-card p {
  margin: 0;
  color: var(--muted);
}

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

.process-grid article,
.workflow-board article {
  display: grid;
  gap: 10px;
}

.process-grid span,
.workflow-board span,
.price-card span {
  color: var(--teal-dark);
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.workflow-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-board article {
  border-top: 4px solid var(--teal);
}

.workflow-board article:nth-child(2) {
  border-top-color: var(--blue);
}

.workflow-board article:nth-child(3) {
  border-top-color: var(--amber);
}

.workflow-board article:nth-child(4) {
  border-top-color: var(--coral);
}

.compact-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
}

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

.price-card {
  display: grid;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(223, 245, 239, .82), rgba(255, 255, 255, .96) 42%),
    var(--paper);
}

.price-card h3 {
  margin: 0;
}

.decision-panel {
  position: sticky;
  top: 96px;
}

.site-footer {
  padding: 42px 0 28px;
  background: var(--ink);
  color: #dce6e4;
}

.site-footer a {
  color: #dff5ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, .8fr));
  gap: 24px;
}

.footer-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 121, 107, .22), rgba(37, 99, 235, .16));
}

.footer-callout .eyebrow,
.footer-callout h2 {
  margin: 0;
}

.footer-callout .eyebrow {
  color: #9ff1d8;
}

.footer-callout h2 {
  max-width: 700px;
  color: var(--paper);
}

.footer-grid h2,
.footer-grid h3 {
  margin-top: 0;
  color: var(--paper);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: #aac0bd;
  font-size: .92rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 102px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .hero-grid,
  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .capability-strip,
  .clarity-grid,
  .intent-panel,
  .footer-grid,
  .pricing-layout,
  .product-snapshot,
  .vms-offer-strip,
  .vms-pricing-grid,
  .vms-client-panel,
  .vms-video-grid {
    grid-template-columns: 1fr;
  }

  .vms-pricing-header {
    display: grid;
  }

  .vms-billing-toggle {
    width: min(360px, 100%);
  }

  .hero-grid {
    min-height: auto;
    padding-top: 46px;
  }

  .site-nav a {
    padding: 8px 4px;
  }

  .hero h1,
  .page-hero h1,
  .vms-hero h1 {
    font-size: 2.2rem;
  }

  .vms-hero {
    min-height: auto;
    padding-top: 42px;
  }

  .vms-hero-content {
    min-height: auto;
    justify-content: flex-start;
  }

  .vms-hero-video {
    grid-template-columns: 1fr;
  }

  .metric-row,
  .form-grid,
  .ledger-card,
  .module-grid,
  .process-grid,
  .workflow-board,
  .compact-board,
  .pricing-board,
  .visual-lines {
    grid-template-columns: 1fr;
  }

  .decision-panel {
    position: static;
  }

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

@media (max-width: 520px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1160px);
  }

  .brand small {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .hero h1,
  .page-hero h1,
  .vms-hero h1 {
    font-size: 1.9rem;
  }

  .hero-actions .button,
  .cta-row .button {
    width: 100%;
  }

  .vms-pill-row span {
    width: 100%;
    justify-content: center;
  }

  .vms-price-body {
    padding: 18px;
  }

  .vms-price-amount span {
    font-size: 2.55rem;
  }

  .vms-feature-card {
    grid-template-columns: 1fr;
  }

  .vms-feature-card p {
    grid-column: auto;
  }

  .preview-tabs {
    flex-direction: column;
  }

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