: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 0;
  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;
  white-space: nowrap;
}

.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);
}

.preview-command-panel {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid #d9efe9;
  border-radius: 8px;
  background: #f2fbf8;
}

.preview-command-panel strong {
  color: #087f6b;
  font-weight: 900;
}

.preview-command-panel p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 72px 0;
}

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

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

.home-priority {
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fbfc 100%);
}

.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));
}

.priority-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 18px;
}

.priority-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.priority-grid article:first-child {
  border-color: rgba(111, 99, 255, .28);
  background:
    linear-gradient(135deg, rgba(111, 99, 255, .09), rgba(87, 216, 232, .10)),
    var(--paper);
}

.priority-grid span,
.scenario-grid span,
.journey-strip span,
.readiness-grid span,
.ad-match-panel .eyebrow {
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.priority-grid h3,
.priority-grid p {
  margin: 0;
}

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

.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);
}

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

.service-market-grid article {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(87, 216, 232, .08), rgba(255, 255, 255, 0)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.service-market-grid span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--amber));
}

.service-market-grid h3,
.service-market-grid p {
  margin: 0;
}

.service-market-grid p {
  color: var(--muted);
}

.small-heading {
  margin-bottom: 18px;
}

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

.scenario-grid article,
.confidence-grid article,
.readiness-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

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

.confidence-grid strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.scenario-grid h3,
.scenario-grid p,
.confidence-grid p,
.readiness-grid h3,
.readiness-grid p {
  margin: 0;
}

.scenario-grid p,
.confidence-grid p,
.readiness-grid p {
  color: var(--muted);
}

.side-next {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid #d9efe9;
  border-radius: 8px;
  background: #f2fbf8;
}

.side-next strong {
  color: #087f6b;
}

.side-next span {
  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(720px, calc(100vh - 112px));
  padding: 34px 0 54px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(112deg, rgba(111, 99, 255, .12), transparent 48%),
    linear-gradient(292deg, rgba(87, 216, 232, .10), transparent 42%),
    #fbfcff;
}

.vms-ad-match {
  background: var(--ink);
}

.ad-match-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(111, 99, 255, .20), rgba(87, 216, 232, .12)),
    #121c2c;
  color: var(--paper);
}

.ad-match-panel h2,
.ad-match-panel p {
  margin: 0;
}

.ad-match-panel h2 {
  max-width: 840px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.ad-match-panel p {
  max-width: 880px;
  margin-top: 8px;
  color: #c7d2e6;
}

.ad-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.vms-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
  gap: 56px;
  align-items: center;
  min-height: min(580px, calc(100vh - 220px));
}

.vms-hero-content {
  display: grid;
  align-content: center;
}

.vms-brand-line {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  margin: 0 0 20px;
  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: 760px;
  margin: 8px 0 20px;
  font-size: 4.35rem;
  line-height: 1.01;
  letter-spacing: 0;
}

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

.vms-hero h1 .vms-campaign-slogan {
  display: block;
}

.vms-hero h1 small {
  display: block;
  max-width: 650px;
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.25;
}

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

.vms-specific-note {
  max-width: 660px;
  margin: 18px 0 0;
  padding-left: 15px;
  border-left: 4px solid var(--blue);
  color: var(--muted);
}

.vms-specific-note strong {
  color: var(--ink);
}

.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-one-button-demo {
  overflow: hidden;
  border: 1px solid #d8ddea;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(16, 24, 39, .17);
}

.vms-demo-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  background: #f8f9fd;
  font-weight: 900;
}

.vms-demo-bar b {
  color: var(--teal-dark);
  font-size: .82rem;
}

.vms-demo-body {
  display: grid;
  gap: 15px;
  padding: 20px;
}

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

.vms-demo-invoice div {
  min-height: 78px;
  padding: 13px;
  background: var(--paper);
}

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

.vms-demo-invoice small {
  color: var(--muted);
}

.vms-print-button {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0)),
    #5f24c8;
  color: var(--paper);
  box-shadow: 0 18px 38px rgba(95, 36, 200, .30);
}

.vms-print-button span,
.vms-print-button small {
  display: block;
}

.vms-print-button span {
  font-size: 1.75rem;
  font-weight: 900;
}

.vms-print-button small {
  color: #e5dcff;
  font-size: .82rem;
  font-weight: 700;
}

.vms-done-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #bfe9dc;
  border-radius: 8px;
  background: #eefbf7;
}

.vms-done-state > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #18a979;
  color: var(--paper);
  font-weight: 900;
}

.vms-done-state strong,
.vms-done-state small {
  display: block;
}

.vms-done-state small {
  color: var(--muted);
}

.vms-one-button-demo > p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: .78rem;
}

.vms-top-training {
  background: var(--paper);
}

.vms-training-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.vms-training-teaser h2,
.vms-training-teaser p {
  margin: 0;
}

.vms-training-teaser p:not(.eyebrow) {
  margin-top: 8px;
  color: var(--muted);
}

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

.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-readiness-block {
  background: #ffffff;
}

.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 iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.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;
}

.journey-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);
  box-shadow: var(--shadow-soft);
}

.journey-strip div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--paper);
}

.journey-strip strong {
  font-size: 1.05rem;
}

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

.fs-route-band {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #111827;
}

.fs-route-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fs-route-strip a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, .14);
  color: #dbe4f0;
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
}

.fs-route-strip a:last-child {
  border-right: 0;
}

.fs-route-strip a:hover,
.fs-route-strip a:focus-visible {
  background: rgba(45, 212, 191, .12);
  color: #72ead6;
}

.ob-sales-hero {
  padding: 56px 0 52px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(112deg, rgba(111, 99, 255, .10), transparent 48%),
    linear-gradient(292deg, rgba(87, 216, 232, .09), transparent 42%),
    #fbfcff;
}

.ob-sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  gap: 52px;
  align-items: center;
  min-height: 590px;
}

.ob-sales-copy {
  display: grid;
  align-content: center;
}

.ob-sales-copy .fs-brand-line {
  margin-bottom: 20px;
}

.ob-sales-copy h1 {
  max-width: 760px;
  margin: 8px 0 20px;
  color: var(--ink);
  font-size: 4.15rem;
  line-height: 1.01;
  letter-spacing: 0;
}

.ob-sales-copy h1 > span {
  color: #6f42e8;
}

.ob-sales-copy h1 > strong {
  display: block;
  margin-top: 12px;
  font-size: .53em;
  line-height: 1.12;
}

.ob-sales-lead {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.ob-sales-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.ob-sales-highlights span {
  padding: 9px 12px;
  border: 1px solid #dfe2ff;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 850;
}

.ob-sales-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.ob-sales-contact a {
  color: #5f24c8;
}

.ob-sales-sequence {
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  background: #111827;
  color: var(--paper);
  box-shadow: 0 28px 70px rgba(16, 24, 39, .2);
}

.ob-sequence-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: #dbe4f0;
  font-size: .86rem;
}

.ob-sequence-heading strong {
  color: #2dd4bf;
}

.ob-sequence-logo {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
}

.ob-sequence-logo img {
  width: min(190px, 56%);
  max-height: 72px;
  object-fit: contain;
}

.ob-sequence-steps {
  display: grid;
  gap: 8px;
}

.ob-sequence-steps > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #152033;
  opacity: .62;
  animation: ob-sequence-focus 6s infinite;
}

.ob-sequence-steps > div:nth-child(2) {
  animation-delay: 2s;
}

.ob-sequence-steps > div:nth-child(3) {
  animation-delay: 4s;
}

.ob-sequence-steps > div > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(45, 212, 191, .12);
  color: #72ead6;
  font-size: .76rem;
  font-weight: 900;
}

.ob-sequence-steps p,
.ob-sequence-steps small,
.ob-sequence-steps strong {
  display: block;
  margin: 0;
}

.ob-sequence-steps small {
  color: #9caac0;
}

.ob-sequence-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  padding: 13px 14px;
  border-radius: 8px;
  background: #e8fbf5;
  color: #087f6b;
  font-weight: 900;
}

.ob-sequence-result span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: #12a981;
  color: var(--paper);
}

@keyframes ob-sequence-focus {
  0%, 30% {
    border-color: #2dd4bf;
    background: #1b2a40;
    opacity: 1;
    transform: translateX(4px);
  }
  36%, 100% {
    border-color: rgba(255, 255, 255, .14);
    background: #152033;
    opacity: .62;
    transform: translateX(0);
  }
}

.fs-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(111, 99, 255, .11), transparent 46%),
    linear-gradient(300deg, rgba(87, 216, 232, .12), transparent 44%),
    var(--paper);
}

@media (min-width: 901px) {
  .fs-hero .section-inner {
    width: min(100% - 48px, 1240px);
  }
}

.fs-hero-grid {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
  gap: 28px;
  align-items: center;
  min-height: 640px;
  padding: 34px 0 54px;
}

.fs-hero-position-spacer {
  height: 75px;
}

.fs-hero-copy {
  position: relative;
  z-index: 2;
  transform: translateY(-75px);
}

.fs-hero-statement {
  max-width: 720px;
  margin: 0;
  font-size: 3.3rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.fs-call-number {
  display: inline-block;
  margin-top: 18px;
  color: #6b2bd9;
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
  transition: color .9s cubic-bezier(.4, 0, .2, 1);
}

.fs-hero[data-active-system="xero"] .fs-call-number {
  color: #0089b8;
}

.fs-hero[data-active-system="odoo"] .fs-call-number {
  color: #714b67;
}

.fs-hero[data-active-system="salesright"] .fs-call-number {
  color: #16804b;
}

.fs-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 12px;
}

.fs-brand-line > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.fs-brand-line strong {
  font-size: 1.15rem;
}

.fs-brand-line small {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 700;
}

.fs-system-rotator {
  display: grid;
  width: min(100%, 340px);
  aspect-ratio: 1.32;
  grid-template-rows: 45% 55%;
  margin-bottom: 3px;
  overflow: hidden;
}

.fs-inside-label {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.fs-system-word-cycle {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
}

.fs-system-word-cycle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
}

.fs-system-logo-myob {
  width: 100% !important;
}

.fs-system-logo-xero {
  width: 100% !important;
}

.fs-system-word-cycle img.is-active {
  opacity: 1;
}

.fs-sales-form {
  position: absolute;
  z-index: 1;
  top: -124.86px;
  right: -48px;
  width: 893.76px;
  aspect-ratio: 2362 / 1961;
  max-width: none;
  margin: 0;
  pointer-events: none;
}

.fs-sales-form img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity;
  filter: drop-shadow(0 28px 38px rgba(47, 25, 84, .18));
}

.fs-sales-form img.is-active {
  opacity: 1;
}

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

.fs-architecture article {
  min-height: 210px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.fs-architecture article:last-child {
  border-right: 0;
}

.fs-architecture .fs-core {
  background: var(--ink);
  color: var(--paper);
}

.fs-architecture span,
.fs-path-grid span,
.fs-commercial-options span {
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fs-architecture .fs-core span {
  color: #9ff1d8;
}

.fs-architecture h3,
.fs-architecture p {
  margin: 14px 0 0;
}

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

.fs-architecture .fs-core p {
  color: #c6d0df;
}

.fs-offer-section {
  background: var(--paper);
}

.fs-offer-panel {
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  padding: 20px 20px 16px;
  border-radius: 8px;
  background: #111827;
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(16, 24, 39, .15);
}

.fs-offer-heading {
  display: block;
}

.fs-offer-heading h2,
.fs-offer-heading p,
.fs-offer-heading .cta-row {
  margin: 0;
}

.fs-offer-heading h2 {
  max-width: 720px;
  color: var(--paper);
  font-size: 2.125rem;
  line-height: 1.12;
}

.fs-offer-heading h2 span {
  color: #2dd4bf;
}

.fs-offer-heading > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 10px;
  color: #dbe4f0;
  font-size: .94rem;
  line-height: 1.53;
}

.fs-offer-heading .eyebrow {
  margin-bottom: 6px;
  color: #2dd4bf;
  font-size: .8rem;
}

.fs-offer-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.fs-offer-items article {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 92px;
  padding: 14px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.fs-offer-items strong {
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.17;
}

.fs-offer-items span {
  color: #253047;
  font-size: .82rem;
  font-weight: 850;
}

.fs-offer-note {
  color: #b9c6d8;
}

.fs-offer-items .fs-offer-purple strong {
  color: #6f42e8;
}

.fs-offer-items .fs-offer-green strong {
  color: #059669;
}

.fs-offer-note {
  margin: 8px 0 0;
  color: #b8c4d6;
  font-size: .75rem;
  line-height: 1.5;
}

.fs-video-heading {
  max-width: 720px;
}

.fs-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
}

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

.fs-training-video-section {
  background: var(--paper);
}

.fs-video-single {
  max-width: 760px;
}

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

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

.fs-value-grid article {
  padding-left: 18px;
  border-left: 4px solid var(--blue);
}

.fs-value-grid article:nth-child(2) {
  border-left-color: var(--amber);
}

.fs-value-grid article:nth-child(3) {
  border-left-color: var(--coral);
}

.fs-value-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.fs-path-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  min-height: 300px;
  padding: 22px;
  border: 1px solid #dedbd6;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.fs-path-grid h3,
.fs-path-grid p {
  margin: 0;
}

.fs-path-grid p {
  color: var(--muted);
}

.fs-readiness-layout {
  display: grid;
  grid-template-columns: minmax(270px, .75fr) minmax(0, 1.25fr);
  gap: 54px;
  align-items: start;
}

.fs-readiness-copy {
  position: sticky;
  top: 112px;
}

.fs-check-grid {
  display: grid;
  gap: 10px;
}

.fs-check-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.fs-check-grid > article > span {
  color: var(--teal-dark);
  font-weight: 900;
}

.fs-check-grid h3,
.fs-check-grid p {
  margin: 0;
}

.fs-check-grid p {
  margin-top: 6px;
  color: var(--muted);
}

.fs-implementation-section {
  color: var(--paper);
  background: var(--ink);
}

.fs-implementation-section .eyebrow {
  color: #9ff1d8;
}

.fs-implementation-section .section-heading p,
.fs-implementation-grid p {
  color: #b9c6d8;
}

.fs-implementation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}

.fs-implementation-grid article {
  min-height: 234px;
  padding: 22px;
  background: #152033;
}

.fs-implementation-grid span {
  color: #9ff1d8;
  font-weight: 900;
}

.fs-implementation-grid h3 {
  margin: 48px 0 10px;
  color: var(--paper);
}

.fs-implementation-grid p {
  margin: 0;
}

.fs-commercial-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

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

.fs-commercial-options article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
  padding: 24px;
  border: 1px solid #dedbd6;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.fs-commercial-options strong {
  font-size: 1.8rem;
}

.fs-commercial-options p {
  color: var(--muted);
}

.fs-commercial-options .button {
  align-self: end;
}

.fs-language-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.fs-language-panel .mini-modules {
  margin: 16px 0;
}

.fs-language-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.fs-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border: 1px solid #dfe2ff;
  border-radius: 8px;
  background: var(--mint);
}

.fs-final-cta h2,
.fs-final-cta .eyebrow,
.fs-final-cta .cta-row {
  margin: 0;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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;
}

.onebutton-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  gap: 28px;
  align-items: start;
}

.onebutton-order-form {
  display: grid;
  gap: 28px;
}

.order-form-heading h2,
.order-form-heading p {
  margin-top: 0;
}

.order-no-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--mint);
}

.order-no-payment span {
  color: var(--muted);
  font-size: .92rem;
}

.order-fieldset {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-fieldset legend {
  padding: 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
}

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

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

.order-choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.order-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-choice span {
  display: grid;
  min-height: 100%;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.order-choice small {
  color: var(--muted);
  font-weight: 600;
}

.order-choice b {
  margin-top: 8px;
  color: var(--teal-dark);
}

.order-choice input:checked + span {
  border-color: var(--violet);
  background: #f4f2ff;
  box-shadow: 0 0 0 2px rgba(109, 74, 255, .12);
}

.order-choice input:focus-visible + span {
  outline: 3px solid rgba(87, 216, 232, .55);
  outline-offset: 2px;
}

.order-billing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 18px;
}

.order-billing-row label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-billing-row input {
  width: auto;
  min-height: 0;
}

.order-setup-option {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.order-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.order-submit-row p {
  margin: 4px 0 0;
  color: #dce5f5;
}

.onebutton-order-summary {
  position: sticky;
  top: 112px;
}

.onebutton-order-summary h2 {
  margin-top: 0;
}

.onebutton-order-summary dl {
  margin: 0;
}

.onebutton-order-summary dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.onebutton-order-summary dl div[hidden] {
  display: none;
}

.onebutton-order-summary dt {
  color: var(--muted);
}

.onebutton-order-summary dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.order-summary-total {
  display: grid;
  gap: 5px;
  margin: 20px 0;
  padding: 18px;
  border-radius: 8px;
  background: var(--mint);
}

.order-summary-total strong {
  font-size: 1.35rem;
}

.onebutton-order-summary ul {
  padding-left: 20px;
}

.onebutton-order-summary li {
  margin: 8px 0;
}

.order-summary-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .9rem;
}

.order-received-section h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.02;
}

.order-reference {
  overflow-wrap: anywhere;
  color: var(--violet);
  font-size: 1.15rem;
  font-weight: 900;
}

.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;
}

.resource-heading {
  margin-top: 42px;
}

.resource-blog-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 42px 0 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--paper);
}

.resource-blog-callout h2,
.resource-blog-callout p {
  margin: 0;
}

.resource-blog-callout .eyebrow {
  margin-bottom: 6px;
}

.resource-blog-callout p:not(.eyebrow) {
  margin-top: 6px;
  color: var(--muted);
}

.resource-blog-callout .button {
  flex: 0 0 auto;
}

.blog-hub-hero {
  padding: 74px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(111, 99, 255, .1), transparent 48%),
    linear-gradient(310deg, rgba(87, 216, 232, .12), transparent 46%),
    var(--paper);
}

.blog-hub-hero h1 {
  margin: 6px 0 14px;
  font-size: 4.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.blog-hub-hero .lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.65;
}

.blog-hub-section {
  background: var(--wash);
}

.blog-section-heading {
  margin-bottom: 20px;
}

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

.blog-section-heading h2 {
  margin-top: 5px;
  font-size: 2rem;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.blog-featured-media {
  display: block;
  min-height: 100%;
  background: var(--wash-strong);
}

.blog-featured-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: contain;
}

.blog-featured-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
}

.blog-featured-copy h2 {
  margin: 20px 0 14px;
  font-size: 2.25rem;
  line-height: 1.16;
}

.blog-featured-copy h2 a,
.blog-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-featured-copy h2 a:hover,
.blog-card h3 a:hover {
  color: var(--teal-dark);
}

.blog-featured-copy > p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.blog-latest {
  margin-top: 60px;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--wash-strong);
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-copy {
  padding: 22px;
}

.blog-card h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
  line-height: 1.28;
}

.blog-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.blog-card-copy > a:last-child {
  font-weight: 800;
}

.resource-article-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.resource-article-image {
  display: block;
  min-height: 100%;
  background: var(--wash);
}

.resource-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-article-card-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.resource-article-card-body h3,
.resource-article-card-body p {
  margin: 0;
}

.resource-article-card-body .button {
  justify-self: start;
}

.resource-date {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.article-hero {
  padding: 52px 0 58px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, rgba(111, 99, 255, .09), transparent 45%),
    linear-gradient(315deg, rgba(87, 216, 232, .12), transparent 42%),
    var(--paper);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.article-hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.article-standfirst {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 22px 0 24px;
  color: var(--muted);
  font-size: .88rem;
}

.article-meta span,
.article-meta time {
  position: relative;
}

.article-meta span:not(:last-child)::after,
.article-meta time::after {
  position: absolute;
  top: .7em;
  right: -11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.article-hero-media {
  margin: 0;
}

.article-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-hero-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .82rem;
}

.article-section {
  background: var(--paper);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(250px, 320px);
  gap: 72px;
  justify-content: center;
  align-items: start;
}

.article-copy {
  min-width: 0;
}

.article-copy > p,
.article-copy-section p,
.article-copy-section li,
.article-sources li {
  font-size: 1.04rem;
  line-height: 1.76;
}

.article-copy > p {
  margin: 0 0 22px;
}

.article-copy > p:first-child {
  color: #2f3a4c;
  font-size: 1.16rem;
}

.article-copy-section {
  margin-top: 48px;
  scroll-margin-top: 118px;
}

.article-copy-section h2,
.article-sources h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.2;
}

.article-copy-section p {
  margin: 0 0 20px;
}

.article-copy-section ul,
.article-copy-section ol,
.article-sources ol {
  margin: 0 0 24px;
  padding-left: 26px;
}

.article-copy-section li,
.article-sources li {
  margin: 9px 0;
  padding-left: 5px;
}

.article-copy a,
.article-related a:not(.button) {
  color: var(--teal-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

.article-copy blockquote {
  margin: 26px 0;
  padding: 22px 26px;
  border-left: 5px solid var(--blue);
  background: var(--wash);
}

.article-copy blockquote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 750;
}

.article-primary-cta {
  margin-top: 46px;
  padding: 26px;
  border: 1px solid rgba(111, 99, 255, .24);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(111, 99, 255, .09), rgba(87, 216, 232, .09)),
    var(--paper);
}

.article-primary-cta .eyebrow {
  margin: 0 0 14px;
}

.article-primary-cta-action {
  display: flex;
  align-items: center;
  gap: 18px;
}

.article-primary-cta-action span {
  color: var(--muted);
}

.article-sources {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 118px;
}

.article-source-note {
  margin-bottom: 34px;
  padding: 20px;
  border-left: 4px solid var(--amber);
  background: var(--amber-soft);
  color: #59421d;
}

.article-aside {
  position: sticky;
  top: 116px;
  display: grid;
  gap: 22px;
}

.article-toc,
.article-aside-action {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.article-toc {
  display: grid;
  gap: 0;
}

.article-toc .eyebrow {
  margin: 0 0 10px;
}

.article-toc a {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
  text-decoration: none;
}

.article-toc a:last-child {
  border-bottom: 0;
}

.article-toc a:hover {
  color: var(--teal-dark);
}

.article-aside-action h2 {
  margin: 0;
  font-size: 1.35rem;
}

.article-aside-action p {
  color: var(--muted);
}

.article-aside-action .button {
  width: 100%;
}

@media (max-width: 900px) {
  .resource-article-card,
  .blog-featured,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .blog-featured-media img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .resource-article-card {
    grid-column: auto;
  }

  .resource-article-image {
    aspect-ratio: 16 / 9;
  }

  .article-hero-grid {
    gap: 34px;
  }

  .article-aside {
    position: static;
  }

  .article-toc {
    display: none;
  }
}

@media (max-width: 520px) {
  .resource-blog-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .resource-blog-callout .button {
    width: 100%;
  }

  .blog-hub-hero {
    padding: 48px 0 50px;
  }

  .blog-hub-hero h1 {
    font-size: 3rem;
  }

  .blog-hub-hero .lead {
    font-size: 1.05rem;
  }

  .blog-featured-copy {
    padding: 24px;
  }

  .blog-featured-copy h2 {
    font-size: 1.7rem;
  }

  .blog-latest-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 38px 0 44px;
  }

  .article-hero h1 {
    font-size: 2.2rem;
  }

  .article-standfirst {
    font-size: 1.02rem;
  }

  .article-meta {
    display: grid;
    gap: 6px;
  }

  .article-meta span::after,
  .article-meta time::after {
    display: none;
  }

  .article-copy > p,
  .article-copy-section p,
  .article-copy-section li,
  .article-sources li {
    font-size: 1rem;
  }

  .article-copy-section {
    margin-top: 40px;
  }

  .article-copy-section h2,
  .article-sources h2 {
    font-size: 1.55rem;
  }

  .article-primary-cta-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-primary-cta-action .button {
    width: 100%;
  }
}

.resource-block {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.resource-block:last-child {
  border-bottom: 0;
}

.resource-block h2 {
  margin: 0 0 10px;
}

.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;
}

.footer-cookie-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dff5ef;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.consent-layer {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 18, 33, .5);
}

.consent-layer[hidden] {
  display: none;
}

.consent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  width: min(100%, 720px);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.consent-copy .eyebrow,
.consent-copy h2,
.consent-copy p {
  margin-top: 0;
}

.consent-copy h2 {
  margin-bottom: 7px;
  font-size: 1.15rem;
}

.consent-copy p {
  max-width: 720px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}

.consent-actions {
  display: grid;
  min-width: 190px;
  gap: 7px;
}

.consent-actions .button {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  font-size: .78rem;
}

.consent-close {
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.consent-open {
  overflow: hidden;
}

@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,
  .ob-sales-grid,
  .fs-hero-grid,
  .fs-architecture,
  .fs-value-grid,
  .fs-path-grid,
  .fs-readiness-layout,
  .fs-implementation-grid,
  .fs-commercial-layout,
  .fs-commercial-options,
  .fs-offer-items,
  .fs-video-grid,
  .vms-hero-grid,
  .vms-training-teaser,
  .split,
  .grid.two,
  .grid.three,
  .grid.four,
  .priority-grid,
  .capability-strip,
  .clarity-grid,
  .scenario-grid,
  .confidence-grid,
  .service-market-grid,
  .readiness-grid,
  .journey-strip,
  .onebutton-order-layout,
  .order-choice-grid-plans,
  .intent-panel,
  .footer-grid,
  .pricing-layout,
  .product-snapshot,
  .vms-offer-strip,
  .vms-pricing-grid,
  .vms-client-panel,
  .vms-video-grid {
    grid-template-columns: 1fr;
  }

  .ad-match-panel {
    grid-template-columns: 1fr;
  }

  .ad-match-actions {
    justify-content: flex-start;
  }

  .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,
  .ob-sales-copy h1,
  .fs-hero-statement,
  .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;
  }

  .fs-hero-grid {
    min-height: auto;
    padding: 34px 0 58px;
  }

  .ob-sales-grid {
    min-height: auto;
  }

  .fs-system-rotator {
    width: min(100%, 320px);
  }

  .fs-sales-form {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 680px);
    max-width: 100%;
    justify-self: center;
  }

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

  .fs-route-strip a:nth-child(2) {
    border-right: 0;
  }

  .fs-route-strip a:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .fs-architecture article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fs-architecture article:last-child {
    border-bottom: 0;
  }

  .fs-readiness-copy {
    position: static;
  }

  .fs-implementation-grid article {
    min-height: auto;
  }

  .fs-implementation-grid h3 {
    margin-top: 20px;
  }

  .fs-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .fs-offer-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .fs-offer-items article {
    min-height: auto;
  }

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

  .metric-row,
  .form-grid,
  .fiscalsync-flow div,
  .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;
  }

  .onebutton-order-summary {
    position: static;
  }

  .consent-panel {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }

  .consent-actions {
    min-width: 0;
  }
}

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

  .brand small {
    display: none;
  }

  .section {
    padding: 54px 0;
  }

  .consent-layer {
    padding: 10px;
  }

  .consent-panel {
    gap: 12px;
    padding: 16px;
  }

  .consent-copy h2 {
    font-size: 1.08rem;
  }

  .hero h1,
  .ob-sales-copy h1,
  .fs-hero-statement,
  .page-hero h1,
  .vms-hero h1 {
    font-size: 1.9rem;
  }

  .vms-hero h1 small {
    font-size: 1rem;
  }

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

  .order-choice-grid,
  .order-choice-grid-plans {
    grid-template-columns: 1fr;
  }

  .order-fieldset {
    padding: 16px;
  }

  .order-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .order-no-payment {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .order-submit-row .button {
    width: 100%;
  }

  .fs-offer-heading {
    padding: 0;
  }

  .fs-offer-note {
    padding: 0;
  }

  .fs-system-rotator {
    width: min(100%, 270px);
  }

  .ob-sales-hero {
    padding: 38px 0 46px;
  }

  .ob-sales-copy h1 {
    font-size: 2.25rem;
  }

  .ob-sales-copy h1 > strong {
    font-size: .6em;
  }

  .ob-sales-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ob-sales-sequence {
    padding: 16px;
  }

  .fs-route-strip,
  .vms-demo-invoice {
    grid-template-columns: 1fr;
  }

  .fs-route-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .fs-route-strip a:last-child {
    border-bottom: 0;
  }

  .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;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ob-sequence-steps > div {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
