@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-latin-400.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/source-sans-3-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/montserrat-latin-600.woff2") format("woff2");
}

:root {
  --color-navy-950: #0b1323;
  --color-navy-900: #111c30;
  --color-steel-700: #3a4d6b;
  --color-steel-500: #657a98;
  --color-steel-200: #c6d0df;
  --color-gold-500: #c8a24a;
  --color-gold-600: #ab8430;
  --color-gold-100: #f8f1df;
  --color-white: #ffffff;
  --color-slate-50: #f5f7fa;
  --color-slate-100: #edf1f6;
  --color-slate-200: #d8dee8;
  --color-slate-300: #c2ccda;
  --color-control-border: #7b8ca5;
  --color-ink-800: #263244;
  --color-ink-600: #536176;
  --color-red-700: #a93636;
  --color-red-100: #faeeee;
  --color-green-700: #23734d;
  --color-green-100: #e9f5ee;
  --color-blue-100: #eaf0f7;
  --shadow-menu: 0 18px 48px rgba(11, 19, 35, 0.16);
  --shadow-evidence: 0 24px 64px rgba(11, 19, 35, 0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shell: 1200px;
  --measure: 720px;
  --header-height: 76px;
  --font-body: "Source Sans 3", Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Montserrat, "Avenir Next", "Source Sans 3", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--color-white);
  color: var(--color-ink-800);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--color-navy-950);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  line-height: 1.06;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.14;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  line-height: 1.22;
}

h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.shell-narrow {
  width: min(calc(100% - 48px), var(--measure));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy-950);
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-menu);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-navy-950);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--color-white);
}

.site-header {
  position: sticky;
  z-index: 200;
  top: 0;
  border-bottom: 1px solid rgba(216, 222, 232, 0.9);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 156px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.client-link {
  color: var(--color-steel-700);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}

.client-link:hover {
  text-decoration-color: currentColor;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-navigation > a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  color: var(--color-ink-800);
  padding: 8px 10px;
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-navigation > a:not(.button):hover,
.primary-navigation > a[aria-current="page"]:not(.button) {
  background: var(--color-slate-50);
  color: var(--color-navy-950);
}

.primary-navigation > a[aria-current="page"]:not(.button) {
  box-shadow: inset 0 -2px var(--color-gold-500);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-navy-950);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.button-primary {
  background: var(--color-navy-950);
  color: var(--color-white);
}

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

.button-gold {
  background: var(--color-gold-500);
  color: var(--color-navy-950);
}

.button-gold:hover {
  background: #d9b75f;
}

.button-secondary {
  border-color: var(--color-steel-700);
  background: transparent;
  color: var(--color-navy-950);
}

.button-secondary:hover {
  border-color: var(--color-navy-950);
  background: var(--color-slate-50);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.button-light:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

.button-block {
  width: 100%;
}

.button[aria-disabled="true"],
.button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: var(--color-navy-950);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link-light {
  color: var(--color-white);
}

.icon-inline {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--color-steel-700);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--color-gold-500);
  content: "";
}

.eyebrow-light {
  color: var(--color-steel-200);
}

.hero {
  overflow: hidden;
  background: var(--color-navy-950);
  color: var(--color-white);
  padding: 88px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.hero h1,
.hero h2,
.hero h3,
.page-hero h1,
.page-hero h2 {
  color: var(--color-white);
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d6dfeb;
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero-microcopy {
  max-width: 580px;
  margin: 18px 0 0;
  color: #aebbd0;
  font-size: 0.9rem;
}

.example-label,
.status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.3;
}

.example-label {
  border: 1px solid rgba(116, 144, 178, 0.62);
  background: rgba(72, 103, 143, 0.34);
  color: #f4f7fb;
}

.proof-card {
  border: 1px solid rgba(198, 208, 223, 0.26);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-ink-800);
  box-shadow: var(--shadow-evidence);
  overflow: hidden;
}

.proof-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--color-slate-200);
  padding: 18px 20px;
}

.proof-card-header strong {
  color: var(--color-navy-950);
  font-size: 0.95rem;
}

.status-label-pending {
  background: var(--color-gold-100);
  color: #785815;
}

.status-label-neutral {
  background: var(--color-blue-100);
  color: var(--color-steel-700);
}

.status-label-success {
  background: var(--color-green-100);
  color: var(--color-green-700);
}

.proof-card-body {
  padding: 22px;
}

.proof-card-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.proof-card-title h2 {
  margin: 3px 0 0;
  color: var(--color-navy-950);
  font-size: 1.6rem;
}

.micro-label {
  margin-bottom: 4px;
  color: var(--color-ink-600);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.amount-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  background: var(--color-slate-200);
  overflow: hidden;
}

.amount-row > div {
  background: var(--color-slate-50);
  padding: 14px;
}

.amount-row span,
.field-row span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-ink-600);
  font-size: 0.75rem;
}

.amount-row strong {
  display: block;
  color: var(--color-navy-950);
  font-size: 1rem;
  line-height: 1.25;
}

.amount-row .amount-alert {
  background: var(--color-gold-100);
}

.field-list {
  border-top: 1px solid var(--color-slate-200);
}

.field-row {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 18px;
  border-bottom: 1px solid var(--color-slate-200);
  padding: 12px 0;
}

.field-row strong {
  color: var(--color-navy-950);
  font-size: 0.9rem;
  line-height: 1.4;
}

.decision-boundary {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-top: 18px;
  border-left: 3px solid var(--color-gold-500);
  background: var(--color-slate-50);
  padding: 14px 16px;
}

.decision-boundary img {
  width: 30px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.decision-boundary strong,
.decision-boundary span {
  display: block;
}

.decision-boundary strong {
  color: var(--color-navy-950);
  font-size: 0.92rem;
}

.decision-boundary span {
  color: var(--color-ink-600);
  font-size: 0.82rem;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 72px 0;
}

.section-soft {
  background: var(--color-slate-50);
}

.section-dark {
  background: var(--color-navy-950);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark .eyebrow {
  color: var(--color-steel-200);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-ink-600);
  font-size: 1.08rem;
}

.section-dark .section-heading > p:last-child {
  color: #bdc9d9;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 64px;
}

.boundary-facts {
  display: grid;
  gap: 18px;
  margin: 28px 0 24px;
}

.boundary-fact {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
}

.boundary-fact > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-sm);
  color: var(--color-steel-700);
  font-size: 0.8rem;
  font-weight: 600;
}

.boundary-fact strong {
  display: block;
  margin-bottom: 3px;
  color: var(--color-navy-950);
}

.boundary-fact p {
  margin: 0;
  color: var(--color-ink-600);
  font-size: 0.93rem;
}

.workflow-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 58px minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  padding: 28px;
}

.diagram-node {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  background: var(--color-slate-50);
  padding: 18px;
}

.diagram-node strong {
  color: var(--color-navy-950);
  line-height: 1.3;
}

.diagram-node span {
  margin-top: 5px;
  color: var(--color-ink-600);
  font-size: 0.8rem;
  line-height: 1.35;
}

.diagram-arrow {
  display: grid;
  place-items: center;
  color: var(--color-steel-500);
  text-align: center;
}

.diagram-arrow .icon-inline {
  width: 22px;
  height: 22px;
}

.diagram-gate {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: var(--color-steel-700);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.diagram-gate img {
  width: 44px;
}

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

.workflow-card {
  border-top: 3px solid var(--color-steel-700);
  background: var(--color-white);
  padding: 28px 24px 24px;
  box-shadow: inset 0 0 0 1px var(--color-slate-200);
}

.workflow-card:first-child {
  border-top-color: var(--color-gold-500);
}

.workflow-card p {
  color: var(--color-ink-600);
  font-size: 0.94rem;
}

.workflow-details {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
}

.workflow-details div {
  border-top: 1px solid var(--color-slate-200);
  padding-top: 10px;
}

.workflow-details dt {
  color: var(--color-steel-700);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.workflow-details dd {
  margin: 3px 0 0;
  color: var(--color-navy-950);
  font-size: 0.88rem;
  line-height: 1.42;
}

.comparison {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
}

.comparison-head {
  background: var(--color-navy-950);
  color: var(--color-white);
  font-size: 0.82rem;
  font-weight: 600;
}

.comparison-row:nth-child(odd) {
  background: var(--color-slate-50);
}

.comparison-head > div,
.comparison-row > div {
  border-right: 1px solid var(--color-slate-200);
  padding: 14px 18px;
}

.comparison-head > div:last-child,
.comparison-row > div:last-child {
  border-right: 0;
}

.comparison-row > div:first-child {
  color: var(--color-navy-950);
  font-weight: 600;
}

.comparison-row > div:not(:first-child) {
  color: var(--color-ink-600);
  font-size: 0.92rem;
}

.stage-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  counter-reset: stages;
}

.stage-item {
  position: relative;
  padding: 46px 20px 0 0;
  counter-increment: stages;
}

.stage-item::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--color-gold-500);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-navy-950);
  content: counter(stages, decimal-leading-zero);
  font-size: 0.7rem;
  font-weight: 600;
}

.stage-item::after {
  position: absolute;
  top: 16px;
  right: 0;
  left: 34px;
  height: 1px;
  background: var(--color-slate-300);
  content: "";
}

.stage-item:last-child::after {
  display: none;
}

.stage-item h3 {
  font-size: 1.06rem;
}

.stage-item p {
  margin: 0;
  color: var(--color-ink-600);
  font-size: 0.88rem;
  line-height: 1.48;
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 48px;
  align-items: start;
}

.evidence-intro p:not(.eyebrow) {
  color: #bdc9d9;
}

.evidence-notes {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.evidence-note {
  border-left: 2px solid var(--color-steel-500);
  padding-left: 14px;
  color: #d3dce8;
  font-size: 0.9rem;
}

.tab-shell {
  overflow: hidden;
  border: 1px solid rgba(198, 208, 223, 0.34);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  color: var(--color-ink-800);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--color-slate-200);
  background: var(--color-slate-50);
}

.tab-list button {
  min-height: 48px;
  border: 0;
  border-right: 1px solid var(--color-slate-200);
  background: transparent;
  color: var(--color-ink-600);
  font-weight: 600;
  cursor: pointer;
}

.tab-list button:last-child {
  border-right: 0;
}

.tab-list button[aria-selected="true"] {
  background: var(--color-white);
  color: var(--color-navy-950);
  box-shadow: inset 0 -3px var(--color-gold-500);
}

.tab-panel {
  min-height: 386px;
  padding: 28px;
}

.tab-panel[hidden] {
  display: none;
}

.tab-panel h3 {
  max-width: 560px;
}

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

.panel-field {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  background: var(--color-slate-50);
  padding: 14px;
}

.panel-field span,
.panel-field strong {
  display: block;
}

.panel-field span {
  margin-bottom: 4px;
  color: var(--color-ink-600);
  font-size: 0.74rem;
}

.panel-field strong {
  color: var(--color-navy-950);
  font-size: 0.9rem;
  line-height: 1.35;
}

.panel-callout {
  margin-top: 18px;
  border-left: 3px solid var(--color-gold-500);
  background: var(--color-gold-100);
  padding: 14px 16px;
  color: var(--color-navy-950);
  font-size: 0.9rem;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, minmax(0, 1fr));
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.responsibility-grid .grid-row {
  display: contents;
}

.responsibility-grid .grid-row > div {
  border-right: 1px solid var(--color-slate-200);
  border-bottom: 1px solid var(--color-slate-200);
  padding: 14px 16px;
}

.responsibility-grid .grid-row > div:nth-child(4) {
  border-right: 0;
}

.responsibility-grid .grid-row:last-child > div {
  border-bottom: 0;
}

.responsibility-grid .grid-head {
  background: var(--color-navy-950);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
}

.responsibility-grid .grid-label {
  color: var(--color-navy-950);
  font-weight: 600;
}

.responsibility-grid .grid-cell {
  color: var(--color-ink-600);
  font-size: 0.88rem;
}

.price-summary {
  display: grid;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.price-row {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.75fr 0.9fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--color-slate-200);
  padding: 22px 24px;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row:nth-child(even) {
  background: var(--color-slate-50);
}

.price-row h3 {
  margin: 0 0 4px;
  font-size: 1.12rem;
}

.price-row p,
.price-row small {
  margin: 0;
  color: var(--color-ink-600);
  font-size: 0.85rem;
  line-height: 1.4;
}

.price-value span,
.price-value strong {
  display: block;
}

.price-value span {
  margin-bottom: 3px;
  color: var(--color-ink-600);
  font-size: 0.74rem;
}

.price-value strong {
  color: var(--color-navy-950);
  font-size: 1rem;
  line-height: 1.3;
}

.checkout-note,
.disclosure {
  margin-top: 16px;
  border-left: 3px solid var(--color-steel-500);
  background: var(--color-slate-50);
  padding: 12px 14px;
  color: var(--color-ink-600);
  font-size: 0.84rem;
  line-height: 1.45;
}

.cta-band {
  background: var(--color-navy-950);
  color: var(--color-white);
  padding: 78px 0;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--color-white);
}

.cta-band p {
  max-width: 660px;
  margin-bottom: 0;
  color: #bdc9d9;
}

.prompt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 20px 0 0;
  padding: 0;
  color: #d7dfeb;
  font-size: 0.88rem;
  list-style: none;
}

.prompt-list li::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: var(--color-gold-500);
  content: "";
}

.page-hero {
  background: var(--color-navy-950);
  color: var(--color-white);
  padding: 82px 0 78px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: 60px;
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #c6d0df;
  font-size: 1.15rem;
}

.page-hero-aside {
  border-left: 2px solid var(--color-gold-500);
  padding-left: 20px;
}

.page-hero-aside strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-white);
}

.page-hero-aside p {
  font-size: 0.92rem !important;
  line-height: 1.5;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.sticky-intro p:not(.eyebrow) {
  color: var(--color-ink-600);
}

.detail-stack {
  display: grid;
  gap: 28px;
}

.detail-block {
  border-top: 1px solid var(--color-slate-300);
  padding-top: 24px;
}

.detail-block p {
  color: var(--color-ink-600);
}

.detail-block ul,
.check-list,
.plain-list {
  margin: 16px 0 0;
  padding-left: 1.15em;
}

.detail-block li,
.check-list li,
.plain-list li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: var(--color-green-700);
  content: "";
  mask: url("/assets/ashvun-icon-check.svg") center / contain no-repeat;
}

.not-fit-list li::before {
  background-color: var(--color-red-700);
  mask-image: url("/assets/ashvun-icon-x.svg");
}

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

.scope-card {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 24px;
}

.scope-card p,
.scope-card li {
  color: var(--color-ink-600);
  font-size: 0.92rem;
}

.process-stack {
  display: grid;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--color-slate-200);
  padding: 30px 0;
}

.process-step:first-child {
  padding-top: 0;
}

.process-step:last-child {
  border-bottom: 0;
}

.process-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--color-gold-500);
  border-radius: 50%;
  color: var(--color-navy-950);
  font-size: 0.82rem;
  font-weight: 600;
}

.process-step p {
  color: var(--color-ink-600);
}

.process-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.process-meta div {
  border-left: 2px solid var(--color-slate-300);
  padding-left: 12px;
}

.process-meta span,
.process-meta strong {
  display: block;
}

.process-meta span {
  color: var(--color-ink-600);
  font-size: 0.72rem;
}

.process-meta strong {
  color: var(--color-navy-950);
  font-size: 0.88rem;
  line-height: 1.4;
}

.notice {
  border: 1px solid var(--color-slate-300);
  border-radius: var(--radius-md);
  background: var(--color-slate-50);
  padding: 20px;
}

.notice-gold {
  border-color: #e4cf94;
  background: var(--color-gold-100);
}

.notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-navy-950);
}

.notice p {
  margin: 0;
  color: var(--color-ink-600);
  font-size: 0.92rem;
}

.demo-workspace {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-evidence);
  overflow: hidden;
}

.demo-step-list {
  display: grid;
  align-content: start;
  background: var(--color-navy-950);
  padding: 18px 0;
}

.demo-step-list button {
  min-height: 76px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: #c6d0df;
  padding: 12px 18px;
  text-align: left;
  cursor: pointer;
}

.demo-step-list button span,
.demo-step-list button strong,
.demo-step-list button small {
  display: block;
}

.demo-step-list button span {
  color: var(--color-gold-500);
  font-size: 0.7rem;
}

.demo-step-list button strong {
  color: var(--color-white);
  font-size: 0.92rem;
}

.demo-step-list button small {
  color: #98a8bd;
  font-size: 0.74rem;
}

.demo-step-list button[aria-selected="true"] {
  border-left-color: var(--color-gold-500);
  background: rgba(255, 255, 255, 0.08);
}

.demo-stage {
  min-height: 570px;
  padding: 34px;
}

.demo-panel[hidden] {
  display: none;
}

.demo-panel h2 {
  max-width: 690px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.demo-panel > p:not(.micro-label) {
  max-width: 700px;
  color: var(--color-ink-600);
}

.stage-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stage-card {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-sm);
  background: var(--color-slate-50);
  padding: 16px;
}

.stage-card span,
.stage-card strong,
.stage-card small {
  display: block;
}

.stage-card span {
  color: var(--color-ink-600);
  font-size: 0.75rem;
}

.stage-card strong {
  margin: 4px 0;
  color: var(--color-navy-950);
}

.stage-card small {
  color: var(--color-ink-600);
  line-height: 1.35;
}

.stage-card-alert {
  border-color: #dfc881;
  background: var(--color-gold-100);
}

.record-list {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.record-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--color-slate-200);
  padding: 16px;
}

.record-item:last-child {
  border-bottom: 0;
}

.record-item > span {
  color: var(--color-steel-700);
  font-size: 0.78rem;
  font-weight: 600;
}

.record-item strong,
.record-item small {
  display: block;
}

.record-item strong {
  color: var(--color-navy-950);
}

.record-item small {
  color: var(--color-ink-600);
}

.pricing-table {
  display: grid;
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.65fr 0.7fr 1fr;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid var(--color-slate-200);
  padding: 24px;
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row:nth-child(even) {
  background: var(--color-slate-50);
}

.pricing-row-head {
  background: var(--color-navy-950) !important;
  color: var(--color-white);
  padding-block: 14px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pricing-row h2,
.pricing-row h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.pricing-row p,
.pricing-row small {
  margin: 0;
  color: var(--color-ink-600);
  font-size: 0.86rem;
  line-height: 1.42;
}

.pricing-row strong {
  color: var(--color-navy-950);
}

.price-cell span,
.price-cell strong {
  display: block;
}

.price-cell span {
  margin-bottom: 4px;
  color: var(--color-ink-600);
  font-size: 0.73rem;
}

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

.commercial-column {
  border-top: 2px solid var(--color-steel-700);
  padding-top: 20px;
}

.commercial-column p,
.commercial-column li {
  color: var(--color-ink-600);
  font-size: 0.92rem;
}

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

.trust-item {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-md);
  padding: 24px;
}

.trust-item p {
  color: var(--color-ink-600);
  font-size: 0.93rem;
}

.claim-list {
  display: grid;
  gap: 14px;
}

.claim-item {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--color-slate-200);
  padding-bottom: 14px;
}

.claim-item:last-child {
  border-bottom: 0;
}

.claim-item strong {
  color: var(--color-navy-950);
  font-size: 0.85rem;
}

.claim-item span {
  color: var(--color-ink-600);
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
}

.contact-panel {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  background: var(--color-slate-50);
  padding: 28px;
}

.contact-route {
  display: block;
  border-bottom: 1px solid var(--color-slate-200);
  padding: 14px 0;
  text-decoration: none;
}

.contact-route:last-child {
  border-bottom: 0;
}

.contact-route span,
.contact-route strong,
.contact-route small {
  display: block;
}

.contact-route span {
  color: var(--color-ink-600);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-route strong {
  color: var(--color-navy-950);
}

.contact-route small {
  color: var(--color-ink-600);
}

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 64px;
}

.audit-form-card {
  border: 1px solid var(--color-slate-200);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  padding: 30px;
  box-shadow: var(--shadow-evidence);
}

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

.form-group {
  margin-bottom: 18px;
}

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

.form-group label,
.fieldset-legend {
  display: block;
  margin-bottom: 6px;
  color: var(--color-navy-950);
  font-size: 0.88rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--color-control-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-ink-800);
  padding: 11px 13px;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7c8799;
  opacity: 1;
}

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: var(--color-red-700);
  background: var(--color-red-100);
}

.field-help {
  display: block;
  margin-top: 5px;
  color: var(--color-ink-600);
  font-size: 0.78rem;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 20px;
  color: var(--color-ink-600);
  font-size: 0.88rem;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--color-steel-700);
}

.form-status {
  margin: 16px 0 0;
  border-radius: var(--radius-sm);
  padding: 0;
  font-size: 0.88rem;
}

.form-status:not(:empty) {
  border: 1px solid var(--color-slate-300);
  background: var(--color-slate-50);
  padding: 12px 14px;
}

.form-status[data-state="error"] {
  border-color: #d8a2a2;
  background: var(--color-red-100);
  color: var(--color-red-700);
}

.form-status[data-state="success"] {
  border-color: #aad0ba;
  background: var(--color-green-100);
  color: var(--color-green-700);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  background: var(--color-navy-950);
  color: #c6d0df;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(120px, 0.65fr));
  gap: 40px;
}

.footer-brand-logo {
  width: 174px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 330px;
  margin-bottom: 14px;
  color: #aebbd0;
  font-size: 0.9rem;
}

.footer-brand a {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nav strong {
  margin-bottom: 3px;
  color: var(--color-white);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: #aebbd0;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  border-top: 1px solid rgba(198, 208, 223, 0.24);
  padding-top: 22px;
  color: #8f9eb3;
  font-size: 0.76rem;
}

.footer-bottom p {
  max-width: 700px;
  margin: 0;
}

.footer-bottom span {
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .header-actions > .client-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    z-index: 190;
    top: var(--header-height);
    right: 0;
    left: 0;
    max-height: calc(100dvh - var(--header-height));
    display: none;
    overflow-y: auto;
    align-items: stretch;
    border-top: 1px solid var(--color-slate-200);
    background: var(--color-white);
    padding: 20px 24px 30px;
    box-shadow: var(--shadow-menu);
  }

  .primary-navigation.is-open {
    display: grid;
  }

  .primary-navigation > a:not(.button) {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-slate-200);
    border-radius: 0;
    padding-inline: 4px;
    font-size: 1rem;
  }

  .primary-navigation > a[aria-current="page"]:not(.button) {
    box-shadow: inset 3px 0 var(--color-gold-500);
    padding-left: 14px;
  }

  .primary-navigation .mobile-client-link {
    display: inline-flex;
  }

  .primary-navigation .button {
    margin-top: 14px;
  }

  html:not(.js) .menu-button {
    display: none;
  }

  html:not(.js) .header-inner {
    min-height: auto;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 14px;
  }

  html:not(.js) .header-actions {
    width: 100%;
  }

  html:not(.js) .primary-navigation {
    position: static;
    max-height: none;
    display: flex;
    overflow: visible;
    flex-wrap: wrap;
    border: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  html:not(.js) .primary-navigation > a:not(.button) {
    width: auto;
    min-height: 44px;
    border: 0;
    padding-inline: 8px;
    font-size: 0.9rem;
  }

  html:not(.js) .primary-navigation > a[aria-current="page"]:not(.button) {
    padding-left: 8px;
    box-shadow: inset 0 -2px var(--color-gold-500);
  }

  html:not(.js) .primary-navigation .button {
    margin-top: 0;
  }

  .hero-grid,
  .fit-layout,
  .evidence-layout,
  .page-hero-grid,
  .split-layout,
  .contact-layout,
  .audit-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .proof-card {
    max-width: 660px;
  }

  .fit-layout,
  .split-layout,
  .contact-layout,
  .audit-layout {
    gap: 46px;
  }

  .sticky-intro {
    position: static;
  }

  .stage-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .stage-item:nth-child(3)::after {
    display: none;
  }

  .price-row {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .price-row > :last-child {
    grid-column: 1 / -1;
  }

  .pricing-row {
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
  }

  .pricing-row > :nth-child(4),
  .pricing-row > :nth-child(5) {
    grid-column: auto;
  }

  .pricing-row-head {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }
}

@media (min-width: 1081px) {
  .mobile-client-link {
    display: none !important;
  }
}

@media (max-width: 800px) {
  body {
    font-size: 17px;
  }

  .shell,
  .shell-narrow {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section {
    padding: 72px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  .hero {
    padding: 66px 0 72px;
  }

  .page-hero {
    padding: 64px 0 62px;
  }

  .workflow-grid,
  .scope-cards,
  .commercial-grid,
  .trust-index {
    grid-template-columns: 1fr;
  }

  .workflow-diagram {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .diagram-node {
    min-height: auto;
  }

  .diagram-arrow {
    transform: rotate(90deg);
  }

  .diagram-gate {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
  }

  .stage-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stage-item {
    min-height: 128px;
    padding: 0 0 30px 58px;
  }

  .stage-item::before {
    top: 0;
  }

  .stage-item::after,
  .stage-item:nth-child(3)::after {
    top: 34px;
    right: auto;
    bottom: 0;
    left: 16px;
    width: 1px;
    height: auto;
    display: block;
  }

  .stage-item:last-child::after {
    display: none;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--color-slate-300);
    padding: 16px;
  }

  .comparison-row:last-child {
    border-bottom: 0;
  }

  .comparison-row > div {
    border: 0;
    padding: 5px 0;
  }

  .comparison-row > div:nth-child(2)::before,
  .comparison-row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 2px;
    color: var(--color-steel-700);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
  }

  .comparison-row > div:nth-child(2)::before {
    content: "Before";
  }

  .comparison-row > div:nth-child(3)::before {
    content: "With the scoped workflow";
  }

  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .responsibility-grid .grid-row > div,
  .responsibility-grid .grid-row > div:nth-child(4),
  .responsibility-grid .grid-row:last-child > div {
    border-right: 0;
    border-bottom: 1px solid var(--color-slate-200);
  }

  .responsibility-grid .grid-row:last-child > div:last-child {
    border-bottom: 0;
  }

  .responsibility-grid .grid-head:first-child {
    display: none;
  }

  .responsibility-grid .grid-head {
    padding-block: 8px;
  }

  .price-row,
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .price-row > :last-child,
  .pricing-row > :nth-child(4),
  .pricing-row > :nth-child(5) {
    grid-column: auto;
  }

  .price-value,
  .price-cell {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-layout .button {
    width: 100%;
  }

  .demo-workspace {
    grid-template-columns: 1fr;
  }

  .demo-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .demo-step-list button {
    min-height: 82px;
    border-left: 0;
    border-bottom: 3px solid transparent;
    padding: 10px;
  }

  .demo-step-list button[aria-selected="true"] {
    border-bottom-color: var(--color-gold-500);
  }

  .demo-stage {
    min-height: 0;
    padding: 24px;
  }

  .form-grid,
  .process-meta {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 520px) {
  .shell,
  .shell-narrow {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.15rem);
  }

  .brand-logo {
    width: 140px;
  }

  .header-inner {
    min-height: 70px;
  }

  :root {
    --header-height: 70px;
  }

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

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

  .amount-row,
  .panel-grid,
  .stage-card-grid {
    grid-template-columns: 1fr;
  }

  .amount-row {
    gap: 0;
  }

  .amount-row > div {
    border-bottom: 1px solid var(--color-slate-200);
  }

  .amount-row > div:last-child {
    border-bottom: 0;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .proof-card-body,
  .workflow-diagram,
  .audit-form-card {
    padding: 20px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .tab-list button {
    border-right: 0;
    border-bottom: 1px solid var(--color-slate-200);
  }

  .tab-list button:last-child {
    border-bottom: 0;
  }

  .tab-list button[aria-selected="true"] {
    box-shadow: inset 3px 0 var(--color-gold-500);
  }

  .tab-panel {
    min-height: 0;
    padding: 20px;
  }

  .claim-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .demo-step-list {
    grid-template-columns: 1fr;
  }

  .demo-step-list button {
    min-height: 66px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 520px) and (max-height: 650px) {
  .hero {
    padding-top: 42px;
  }

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

  .hero-lede {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-microcopy {
    margin-top: 14px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .menu-button,
  .button,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 12pt;
  }

  .hero,
  .page-hero,
  .section-dark,
  .cta-band {
    background: #fff !important;
    color: #000 !important;
  }

  h1,
  h2,
  h3,
  .hero h1,
  .page-hero h1 {
    color: #000 !important;
  }
}
