:root {
  --canvas: #f4f6f3;
  --paper: #ffffff;
  --paper-soft: #eef2ee;
  --ink: #17211d;
  --ink-soft: #43514b;
  --ink-muted: #68756f;
  --deep: #14241f;
  --deep-soft: #1d332b;
  --line: #cdd6d1;
  --line-dark: #375047;
  --teal: #006b5e;
  --teal-dark: #005247;
  --teal-soft: #dceee9;
  --blue: #285f85;
  --blue-soft: #e2edf4;
  --coral: #a63f2d;
  --coral-soft: #f4e5e1;
  --amber: #8a5a00;
  --amber-soft: #f3ead6;
  --shadow: 0 14px 36px rgba(23, 33, 29, 0.12);
  --container: 1240px;
  --reading: 760px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #58a9d5;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  font-weight: 680;
  line-height: 1.12;
}

h1 {
  margin-bottom: 24px;
  font-size: 64px;
}

h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

p {
  margin-bottom: 18px;
  color: var(--ink-soft);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), var(--reading));
}

.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%);
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--paper);
  background: var(--deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.prototype-bar {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 5px 24px;
  color: #f4f8f6;
  background: var(--deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.prototype-bar span + span {
  color: #b9c9c2;
  font-weight: 500;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(205, 214, 209, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 780;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 29px;
  height: 29px;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 3px;
  padding: 4px;
  border: 1px solid #aac3ba;
  border-radius: 5px;
  background: var(--paper);
}

.brand__mark span {
  display: block;
  border-radius: 1px;
  background: var(--teal);
}

.brand__mark span:nth-child(1) {
  height: 44%;
}

.brand__mark span:nth-child(2) {
  height: 78%;
  background: var(--blue);
}

.brand__mark span:nth-child(3) {
  height: 60%;
  background: var(--coral);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav > a,
.nav-dropdown > button,
.header-login {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  color: #33423c;
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}

.primary-nav > a:hover,
.nav-dropdown > button:hover,
.header-login:hover,
.primary-nav [aria-current="page"],
.nav-dropdown > button.is-current {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  width: 410px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: grid;
}

.nav-dropdown__menu a {
  display: grid;
  min-height: 72px;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  padding: 12px;
  border-radius: 4px;
  color: var(--ink);
  text-decoration: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a[aria-current="page"] {
  background: var(--paper-soft);
}

.nav-dropdown__menu svg {
  margin-top: 3px;
  color: var(--teal);
}

.nav-dropdown__menu strong,
.nav-dropdown__menu small {
  display: block;
}

.nav-dropdown__menu strong {
  margin-bottom: 3px;
  font-size: 14px;
}

.nav-dropdown__menu small {
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.4;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-button,
.nav-mobile-only {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button--primary,
.button--header {
  color: var(--paper);
  background: var(--teal);
}

.button--primary:hover,
.button--header:hover {
  background: var(--teal-dark);
}

.button--secondary {
  border-color: #8ea49b;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.button--secondary:hover {
  border-color: var(--teal);
  background: var(--paper);
}

.button--header {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 13px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button-row--center {
  justify-content: center;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: var(--teal-dark);
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover span {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.link-stack {
  display: grid;
  justify-items: start;
  gap: 2px;
}

.eyebrow,
.product-kicker,
.card-label {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 620px;
  height: calc(100svh - 136px);
  max-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero__media,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  background-color: #e7ece8;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero__wash {
  z-index: -2;
  right: auto;
  width: 59%;
  background: rgba(247, 249, 247, 0.94);
}

.hero__inner {
  display: flex;
  height: 100%;
  align-items: center;
}

.hero__copy {
  width: min(56%, 680px);
  padding-block: 54px;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: #304039;
  font-size: 20px;
  line-height: 1.55;
}

.hero__boundary {
  display: flex;
  max-width: 660px;
  gap: 9px;
  align-items: flex-start;
  margin-top: 24px;
  margin-bottom: 0;
  color: #47564f;
  font-size: 13px;
  line-height: 1.55;
}

.hero__boundary svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--teal);
}

.hero--home .hero__media {
  background-position: center center;
}

.hero--home .hero__copy {
  width: min(53%, 640px);
}

.band {
  padding-block: 104px;
  background: var(--canvas);
}

.band--white {
  background: var(--paper);
}

.band--ink {
  color: var(--paper);
  background: var(--deep);
}

.band--ink h2,
.band--ink h3,
.band--ink .eyebrow,
.band--ink .product-kicker,
.band--ink .text-link {
  color: var(--paper);
}

.band--ink p,
.band--ink li {
  color: #c8d5cf;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 52px;
}

.section-heading p:last-child {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.62;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.split--visual-left {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split--wide {
  gap: 88px;
}

.split .section-heading {
  margin-bottom: 34px;
}

.product-route {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 70px;
  align-items: center;
  padding-block: 72px;
  border-top: 1px solid var(--line);
}

.product-route:last-child {
  padding-bottom: 0;
}

.product-route--reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.72fr);
}

.product-route--reverse .product-route__copy {
  grid-column: 2;
  grid-row: 1;
}

.product-route--reverse .product-visual {
  grid-column: 1;
  grid-row: 1;
}

.product-route__copy h3 {
  font-size: 32px;
}

.product-route__copy p:not(.product-kicker) {
  font-size: 17px;
}

.product-visual {
  position: relative;
  min-width: 0;
  margin: 0;
}

.product-visual picture {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #becac4;
  border-radius: 6px;
  background: #e5ebe7;
  box-shadow: 0 12px 28px rgba(23, 33, 29, 0.1);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-visual figcaption {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 12px;
  line-height: 1.5;
}

.product-visual figcaption strong {
  color: var(--ink-soft);
}

.product-visual figcaption span {
  color: var(--coral);
}

.product-visual--on-dark picture {
  border-color: var(--line-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.product-visual--on-dark figcaption,
.product-visual--on-dark figcaption strong {
  color: #b9c9c2;
}

.product-visual--on-dark figcaption span {
  color: #f2baac;
}

.visual-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-color: rgba(190, 202, 196, 0.88);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 18px rgba(23, 33, 29, 0.13);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.info-card__icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.info-card h3 {
  font-size: 20px;
}

.info-card p:last-child {
  margin-bottom: 0;
  font-size: 14px;
}

.info-card .text-link {
  display: flex;
  width: fit-content;
  margin-top: 12px;
}

.state-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.state-grid .info-card {
  display: grid;
  grid-template-columns: 42px 110px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-color: var(--line-dark);
  background: var(--deep-soft);
}

.state-grid .info-card__icon {
  width: 38px;
  height: 38px;
  margin: 0;
}

.state-grid h3,
.state-grid p {
  margin: 0;
}

.state-grid h3 {
  color: var(--paper);
  font-size: 16px;
}

.state-grid p {
  font-size: 13px;
}

.info-card--supported .info-card__icon {
  color: var(--teal-dark);
  background: #bfe1d7;
}

.info-card--ambiguous .info-card__icon {
  color: var(--amber);
  background: var(--amber-soft);
}

.info-card--unsupported .info-card__icon {
  color: var(--coral);
  background: var(--coral-soft);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: workflow;
}

.step-grid li {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding-right: 24px;
  counter-increment: workflow;
}

.step-grid li:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: 10px;
  width: calc(100% - 70px);
  height: 1px;
  transform: translateX(100%);
  background: var(--line);
  content: "";
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #98b4aa;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--paper);
  font-size: 13px;
  font-weight: 780;
}

.step-number::before {
  content: counter(workflow, decimal-leading-zero);
}

.step-grid h3 {
  margin-top: 9px;
  font-size: 17px;
}

.step-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.split .step-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.split .step-grid li {
  padding-right: 0;
}

.split .step-grid li:not(:last-child)::after {
  top: 44px;
  left: 22px;
  width: 1px;
  height: calc(100% - 24px);
  transform: none;
}

.band--ink .step-number {
  border-color: #5f7c70;
  color: var(--paper);
  background: var(--deep-soft);
}

.band--ink .step-grid li:not(:last-child)::after {
  background: var(--line-dark);
}

.step-grid--compact {
  gap: 14px !important;
}

.step-grid--compact p {
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  color: var(--ink-soft);
}

.check-list svg {
  margin-top: 4px;
  color: var(--teal);
}

.boundary-callout {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 20px;
  border: 1px solid #d4b88c;
  border-left: 4px solid var(--amber);
  border-radius: 4px;
  background: #fffaf0;
}

.boundary-callout > div:first-child {
  color: var(--amber);
}

.boundary-callout h3 {
  margin-bottom: 5px;
  font-size: 16px;
}

.boundary-callout p {
  margin: 0;
  color: #5d5039;
  font-size: 14px;
}

.band--ink .boundary-callout {
  border-color: #6d5e3d;
  border-left-color: #e1b65f;
  background: #27372f;
}

.band--ink .boundary-callout > div:first-child,
.band--ink .boundary-callout h3 {
  color: #f1d28e;
}

.band--ink .boundary-callout p {
  color: #d4ddd9;
}

.outcome-panel {
  padding-left: 34px;
  border-left: 4px solid var(--teal);
}

.outcome-panel h2 {
  font-size: 32px;
}

.endpoint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.endpoint-grid li {
  display: grid;
  min-height: 70px;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  padding: 15px;
  background: var(--paper);
  font-size: 14px;
  font-weight: 630;
}

.endpoint-grid svg {
  color: var(--blue);
}

.question-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.question-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}

.question-list span {
  color: #89b5a6;
  font-size: 13px;
  font-weight: 780;
}

.question-list p {
  margin: 0;
  font-size: 15px;
}

.question-list--light li {
  border-color: var(--line);
}

.question-list--light span {
  color: var(--teal);
}

.question-list--light p {
  color: var(--ink-soft);
}

.boundary-band {
  padding-block: 46px;
  border-top: 1px solid #dac9aa;
  background: #f7f0e4;
}

.boundary-band .boundary-callout {
  padding: 0;
  border: 0;
  background: transparent;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
}

thead th {
  color: var(--paper);
  background: var(--deep);
  font-size: 13px;
}

tbody th {
  width: 30%;
  color: var(--ink);
  background: #f7f9f7;
}

tbody td {
  color: var(--ink-soft);
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 720;
}

.status--current {
  color: var(--teal-dark);
  background: var(--teal-soft);
}

.status--gated {
  color: var(--amber);
  background: var(--amber-soft);
}

.status--scoped {
  color: var(--blue);
  background: var(--blue-soft);
}

.evidence-standard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evidence-standard article {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.evidence-standard article:last-child {
  border-right: 0;
}

.evidence-standard span {
  display: block;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 780;
}

.evidence-standard h3 {
  font-size: 19px;
}

.evidence-standard p {
  margin: 0;
  font-size: 14px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 72px;
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 108px;
}

.contact-expectations {
  margin-top: 34px;
}

.contact-expectations h2 {
  font-size: 18px;
}

.demo-form {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--canvas);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.field label span,
.checkbox-field span span {
  color: var(--coral);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #9cacaa;
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
}

input,
select {
  padding: 10px 12px;
}

textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(40, 95, 133, 0.2);
}

[aria-invalid="true"] {
  border-color: var(--coral);
  background: #fff9f8;
}

.field-error,
.field-hint {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.field-error {
  min-height: 0;
  color: var(--coral);
  font-weight: 680;
}

.field-error:empty {
  display: none;
}

.field-hint {
  color: var(--ink-muted);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 13px;
  cursor: pointer;
}

.checkbox-field input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.button--submit {
  width: fit-content;
}

.form-status {
  padding: 16px;
  border: 1px solid #90bbae;
  border-radius: 4px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-weight: 680;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.access-grid article {
  padding: 32px;
  background: var(--paper);
}

.access-grid h2 {
  font-size: 24px;
}

.closing-cta {
  padding-block: 74px;
  color: var(--paper);
  background: var(--deep);
}

.closing-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.closing-cta h2 {
  max-width: 710px;
  margin-bottom: 12px;
  color: var(--paper);
}

.closing-cta p {
  max-width: 750px;
  margin-bottom: 0;
  color: #c9d6d0;
}

.closing-cta .eyebrow {
  color: #9fc8ba;
}

.closing-cta .button--secondary,
.band--ink .button--secondary {
  border-color: #6f8b80;
  color: var(--paper);
  background: transparent;
}

.closing-cta .button--secondary:hover,
.band--ink .button--secondary:hover {
  background: var(--deep-soft);
}

.site-footer {
  padding-top: 70px;
  color: #d9e2de;
  background: #0f1b17;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 54px;
  padding-bottom: 54px;
}

.brand--footer {
  color: var(--paper);
}

.footer-brand p {
  max-width: 330px;
  margin-top: 15px;
  color: #9fb0a8;
  font-size: 14px;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 14px;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid > div:not(.footer-brand) a {
  color: #b7c5bf;
  font-size: 13px;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-boundary {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid #2d4038;
}

.footer-boundary p {
  max-width: 850px;
  margin: 0;
  color: #84978e;
  font-size: 11px;
  line-height: 1.55;
}

.footer-boundary p:last-child {
  flex: 0 0 auto;
}

.lightbox {
  width: min(calc(100% - 40px), 1220px);
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox::backdrop {
  background: rgba(8, 15, 12, 0.78);
}

.lightbox__header {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.lightbox__header .eyebrow {
  margin-bottom: 3px;
}

.lightbox__header h2 {
  margin: 0;
  font-size: 22px;
}

.lightbox > img {
  width: 100%;
  background: var(--paper-soft);
}

.lightbox > p {
  margin: 0;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .site-header__inner {
    gap: 20px;
  }

  .primary-nav > a,
  .nav-dropdown > button {
    padding-inline: 8px;
    font-size: 13px;
  }

  .header-login span {
    display: none;
  }

  .hero__wash {
    width: 64%;
  }

  .hero__copy {
    width: 61%;
  }

  .split,
  .split--visual-left {
    gap: 46px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-standard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evidence-standard article:nth-child(2) {
    border-right: 0;
  }

  .evidence-standard article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-menu-button {
    display: inline-grid;
    grid-column: 3;
    grid-row: 1;
  }

  .header-actions {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100svh - var(--header-height));
    align-items: stretch;
    padding: 14px 16px 24px;
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a,
  .nav-dropdown > button {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding-inline: 12px;
    font-size: 15px;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    border: 0;
    border-left: 2px solid var(--teal);
    border-radius: 0;
    box-shadow: none;
  }

  .nav-mobile-only {
    display: flex !important;
  }

  .hero {
    min-height: 610px;
    height: calc(100svh - 112px);
    max-height: 720px;
  }

  .hero__media {
    background-position: center;
  }

  .hero__wash {
    width: 100%;
    background: rgba(247, 249, 247, 0.88);
  }

  .hero__copy,
  .hero--home .hero__copy {
    width: min(100%, 680px);
  }

  h1 {
    font-size: 52px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .split,
  .split--visual-left,
  .split--balanced,
  .product-route,
  .product-route--reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .product-route--reverse .product-route__copy,
  .product-route--reverse .product-visual {
    grid-column: 1;
  }

  .product-route--reverse .product-route__copy {
    grid-row: 1;
  }

  .product-route--reverse .product-visual {
    grid-row: 2;
  }

  .split--visual-left > .product-visual {
    grid-row: 2;
  }

  .form-intro {
    position: static;
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .step-grid li:not(:last-child)::after {
    display: none;
  }

  .endpoint-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .closing-cta .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .prototype-bar {
    min-height: 30px;
    padding-inline: 12px;
  }

  .prototype-bar span + span {
    display: none;
  }

  h1 {
    margin-bottom: 18px;
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    min-height: 620px;
    height: calc(100svh - 102px);
    max-height: 700px;
  }

  .hero__inner {
    align-items: flex-end;
  }

  .hero__copy {
    padding-block: 46px;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero__boundary {
    margin-top: 18px;
    font-size: 12px;
  }

  .hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .button {
    width: 100%;
  }

  .band {
    padding-block: 74px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading p:last-child {
    font-size: 16px;
  }

  .split,
  .split--visual-left,
  .split--wide,
  .product-route,
  .product-route--reverse,
  .form-layout {
    gap: 38px;
  }

  .product-route {
    padding-block: 54px;
  }

  .product-route__copy h3 {
    font-size: 27px;
  }

  .card-grid,
  .step-grid,
  .endpoint-grid,
  .evidence-standard,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .evidence-standard article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .evidence-standard article:last-child {
    border-bottom: 0;
  }

  .state-grid .info-card {
    grid-template-columns: 38px 1fr;
  }

  .state-grid p {
    grid-column: 2;
  }

  .outcome-panel {
    padding-left: 20px;
  }

  .demo-form {
    padding: 22px 18px;
  }

  .button--submit {
    width: 100%;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-boundary {
    display: grid;
  }

  .footer-boundary p:last-child {
    flex: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
