:root {
  --navy-950: #0b2a20;
  --navy-900: #173c31;
  --navy-800: #31574c;
  --navy-700: #536b64;
  --teal-700: #087052;
  --teal-600: #0a8060;
  --teal-500: #3b9279;
  --teal-100: #dbece5;
  --teal-050: #eef5f1;
  --paper: #f2efe7;
  --paper-light: #faf9f5;
  --white: #ffffff;
  --sand: #d9ddd6;
  --sand-dark: #bcc7c0;
  --brass: #765b29;
  --ink: #18372d;
  --muted: #5f6f69;
  --danger: #a33a2c;
  --danger-bg: #fff0ed;
  --success: #17634e;
  --success-bg: #e9f6f0;
  --warning: #7a5719;
  --warning-bg: #fff7df;
  --shadow-sm: 0 1px 3px rgba(11, 42, 32, 0.04);
  --shadow-md: 0 18px 45px rgba(11, 42, 32, 0.07);
  --shadow-lg: 0 28px 70px rgba(11, 42, 32, 0.1);
  --radius-sm: 0.15rem;
  --radius-md: 0.2rem;
  --radius-lg: 0.25rem;
  --content: 78rem;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Avenir Next", Avenir, Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

input::placeholder,
textarea::placeholder {
  color: #5f726b;
  opacity: 1;
}

button,
select {
  cursor: pointer;
}

a {
  color: var(--teal-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy-900);
}

:focus-visible {
  outline: 3px solid #b56f16;
  outline-offset: 3px;
}

::selection {
  background: var(--teal-100);
  color: var(--navy-950);
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.container {
  width: min(calc(100% - 2rem), var(--content));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 7vw, 6.75rem);
}

.section--compact {
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

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

.section--dark {
  border-block: 1px solid var(--sand);
  background: #edf4f0;
  color: var(--navy-700);
}

.section--dark h2,
.section--dark h3,
.section--dark .eyebrow {
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--navy-950);
  font-weight: 800;
}

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

.utility-bar {
  display: none;
  border-bottom: 1px solid #d6e4dc;
  background: #edf5f0;
  color: var(--navy-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.utility-bar__inner {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.utility-bar a {
  color: var(--navy-900);
  font-weight: 750;
  text-decoration: none;
}

.utility-bar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(24, 53, 46, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  display: grid;
  min-height: 5rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.72rem;
  color: var(--navy-950);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #b9d0c4;
  border-radius: 0.7rem;
  background: var(--teal-050);
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: -0.08em;
}

.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.36rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand__tagline {
  display: block;
  margin-top: 0.28rem;
  color: var(--teal-700);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-flex;
  min-width: 2.9rem;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 1.3rem;
  height: 2px;
  background: var(--navy-950);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before {
  position: absolute;
  top: -0.42rem;
}

.nav-toggle__icon::after {
  position: absolute;
  top: 0.42rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.primary-nav {
  grid-column: 1 / -1;
  margin-inline: -1rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--sand);
  background: var(--white);
}

.js .primary-nav[hidden] {
  display: none;
}

.primary-nav__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__link {
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  border-bottom: 1px solid var(--sand);
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav__link:hover {
  color: var(--teal-700);
}

.primary-nav__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.button,
.button:visited {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.84rem 1.35rem;
  border: 1px solid var(--teal-700);
  border-radius: var(--radius-sm);
  background: var(--teal-700);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--navy-950);
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline-color: #b56f16;
  outline-offset: 3px;
}

.button--secondary,
.button--secondary:visited {
  border-color: var(--navy-900);
  background: transparent;
  color: var(--navy-900);
}

.button--secondary:hover {
  background: var(--navy-900);
  color: var(--white);
}

.button--light,
.button--light:visited {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-950);
}

.button--light:hover {
  border-color: var(--teal-100);
  background: var(--teal-100);
  color: var(--navy-950);
}

.button--text,
.button--text:visited {
  min-height: 2.75rem;
  padding-inline: 0;
  border: 0;
  background: transparent;
  color: var(--teal-700);
  justify-content: flex-start;
}

.button--text:hover {
  background: transparent;
  color: var(--navy-950);
  transform: none;
}

.arrow {
  font-size: 1.25em;
  line-height: 1;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--teal-700);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.lede {
  max-width: 45rem;
  color: var(--navy-700);
  font-size: clamp(1.1rem, 2vw, 1.33rem);
  line-height: 1.6;
}

.text-arrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  color: var(--teal-700);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.text-arrow:hover {
  color: var(--navy-950);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

.section-intro {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.section-intro--wide {
  max-width: 59rem;
}

.section-intro h2 {
  max-width: 17ch;
  margin-bottom: 1.15rem;
}

.section-intro > p:last-child {
  max-width: 47rem;
  margin-bottom: 0;
  color: var(--navy-700);
  font-size: 1.08rem;
}

.home-hero {
  border-bottom: 1px solid var(--sand);
  background: #f8f6ef;
}

.home-hero__grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 5rem);
  padding-block: clamp(3.25rem, 7vw, 5.75rem);
}

.home-hero__copy {
  align-self: center;
}

.home-hero__copy h1 {
  max-width: 16.5ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 5.25vw, 4.7rem);
}

.home-hero__lede {
  max-width: 43rem;
  margin-bottom: 0;
  color: var(--navy-700);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.home-search {
  max-width: 46rem;
  margin-top: 2.15rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid #cfdbd3;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.home-search__field {
  position: relative;
}

.home-search__field > label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--navy-900);
  font-size: 0.79rem;
  font-weight: 750;
}

.home-search__control {
  display: grid;
  gap: 0.65rem;
}

.home-search input {
  min-height: 3.75rem;
  border-color: #afc1b7;
  border-radius: var(--radius-sm);
  background: #fdfefd;
}

.home-search input::placeholder {
  color: #5f726b;
}

.home-search .button {
  min-height: 3.75rem;
}

.home-search .search-suggestions {
  top: calc(100% + 0.6rem);
  border-radius: var(--radius-sm);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.4rem;
  margin-top: 1.35rem;
}

.professional-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.professional-note span {
  color: var(--teal-700);
  font-weight: 900;
}

.marketplace-map {
  align-self: center;
  padding: clamp(1.35rem, 4vw, 2.25rem);
  border: 1px solid #cbdad1;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.marketplace-map__header {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--sand);
}

.marketplace-map__header .eyebrow {
  margin-bottom: 0.55rem;
}

.marketplace-map__header h2 {
  max-width: 17ch;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.marketplace-map__status {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid #c7dbcf;
  border-radius: 999px;
  background: var(--teal-050);
  color: var(--teal-700);
  font-size: 0.7rem;
  font-weight: 800;
}

.marketplace-map__steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.marketplace-map__steps li {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.9rem;
  padding-block: 1rem;
}

.marketplace-map__steps li + li {
  border-top: 1px solid var(--sand);
}

.marketplace-map__number {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: #e5f0ea;
  color: var(--teal-700);
  font-size: 0.68rem;
  font-weight: 850;
}

.marketplace-map__steps small,
.marketplace-map__steps strong,
.marketplace-map__steps div > span {
  display: block;
}

.marketplace-map__steps small {
  margin-bottom: 0.18rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketplace-map__steps strong {
  color: var(--navy-950);
  font-size: 0.96rem;
  line-height: 1.4;
}

.marketplace-map__steps div > span {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.audience-band {
  border-bottom: 1px solid var(--sand);
  background: var(--white);
}

.audience-band__grid {
  display: grid;
}

.audience-band article {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr);
  gap: 0.85rem;
  padding-block: 1.35rem;
}

.audience-band article + article {
  border-top: 1px solid var(--sand);
}

.audience-band__index {
  display: grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid #bed2c7;
  border-radius: 50%;
  color: var(--teal-700);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.audience-band strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--navy-950);
  font-size: 0.91rem;
}

.audience-band p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.5;
}

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

.workflow-track {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-track > li {
  position: relative;
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0 0 2.3rem;
}

.workflow-track > li:not(:last-child)::after {
  position: absolute;
  top: 2.75rem;
  bottom: 0;
  left: 1.34rem;
  width: 1px;
  background: #b9cec2;
  content: "";
}

.workflow-track > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid #a9c5b6;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 850;
}

.workflow-track__actor {
  margin-bottom: 0.45rem;
  color: var(--teal-700);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.workflow-track h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.workflow-track li div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section--soft-blue {
  border-block: 1px solid #dbe5e5;
  background: #f0f5f5;
}

.marketplace-paths {
  display: grid;
  gap: 1rem;
}

.path-card {
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #d4ded7;
  border-radius: var(--radius-lg);
}

.path-card--buyer {
  background: #fbf7ef;
}

.path-card--seller {
  background: #e7f1eb;
}

.path-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.path-card h3 {
  max-width: 14ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

.path-card > p {
  max-width: 35rem;
  color: var(--navy-700);
}

.path-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.15rem 0 2rem;
  padding: 0;
  color: var(--navy-900);
  font-size: 0.9rem;
  list-style: none;
}

.path-card li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.5rem;
}

.path-card li::before {
  color: var(--teal-700);
  content: "✓";
  font-weight: 900;
}

.path-card .button {
  width: fit-content;
  margin-top: auto;
}

.workspace-comparison {
  display: grid;
  gap: clamp(2rem, 5vw, 4.25rem);
}

.workspace-comparison .section-intro {
  margin-bottom: 0;
}

.workspace-comparison__table {
  display: grid;
  overflow: hidden;
  border: 1px solid #cedbd3;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.workspace-comparison__table section {
  padding: clamp(1.5rem, 4vw, 2.35rem);
}

.workspace-comparison__table section + section {
  border-top: 1px solid var(--sand);
  background: var(--teal-050);
}

.workspace-comparison__label {
  display: inline-flex;
  min-height: 1.85rem;
  align-items: center;
  margin-bottom: 1.35rem;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  background: #e4efe9;
  color: var(--teal-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-comparison__table h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.workspace-comparison__table ul {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
  padding-left: 1.15rem;
  color: var(--navy-700);
}

.workspace-comparison__table section > p {
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
  color: var(--muted);
  font-size: 0.82rem;
}

.featured-marketplace {
  border-top: 1px solid var(--sand);
  background: #f8f5ee;
}

.catalog-grid--featured .product-card {
  min-height: 18rem;
}

.compliance-note {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
  border-block: 1px solid #ded6c8;
  background: #f4efe5;
}

.compliance-note__grid {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}

.compliance-note h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.compliance-note__grid > div:last-child {
  max-width: 40rem;
  color: var(--navy-700);
}

.compliance-note__grid > div:last-child p {
  margin-bottom: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #f8f6ef;
}

.hero::after {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(4rem, 9vw, 8.5rem);
}

.hero__title {
  max-width: 12ch;
  margin-bottom: 1.5rem;
}

.hero__title em {
  color: var(--teal-700);
  font-weight: inherit;
}

.hero__copy {
  max-width: 39rem;
  color: var(--navy-700);
  font-size: clamp(1.1rem, 2.3vw, 1.36rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__actions--centred {
  justify-content: center;
}

.section-action {
  margin-top: 2rem;
}

.hero-card {
  position: relative;
  padding: clamp(1.5rem, 5vw, 2.7rem);
  border: 1px solid #cbdad1;
  border-top: 3px solid var(--teal-600);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.hero-card__label {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card__title {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.hero-card__list {
  display: grid;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card__list li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.65rem;
  padding-block: 0.72rem;
  border-top: 1px solid var(--sand);
}

.hero-card__list li::before {
  color: var(--teal-700);
  content: "✓";
  font-weight: 900;
}

.trust-strip {
  border-block: 1px solid var(--sand);
  background: var(--paper-light);
}

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

.trust-item {
  min-height: 7.2rem;
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--sand);
}

.trust-item:nth-child(2n) {
  border-right: 0;
}

.trust-item:nth-child(n + 3) {
  border-top: 1px solid var(--sand);
}

.trust-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 400;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.83rem;
}

.split-heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.split-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.split-heading__copy {
  max-width: 37rem;
  align-self: end;
  color: var(--navy-700);
}

.step-grid,
.card-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.step-card,
.info-card,
.feature-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--sand);
  background: var(--white);
}

.step-card__number {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 3.2rem;
  place-items: center;
  border: 1px solid var(--teal-600);
  border-radius: 50%;
  color: var(--teal-700);
  font-size: 0.74rem;
  font-weight: 800;
}

.step-card h3,
.feature-card h3 {
  margin-bottom: 0.8rem;
}

.step-card p,
.feature-card p,
.info-card p {
  color: var(--muted);
}

.role-grid {
  display: grid;
  gap: 1rem;
}

.role-card {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.6rem, 5vw, 3rem);
  border: 1px solid #cddbd3;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--navy-700);
}

.role-card h3 {
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.role-card p {
  max-width: 31rem;
}

.role-card .button--text {
  color: var(--teal-700);
}

.role-card .button--text:hover {
  color: var(--navy-950);
}

.page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--sand);
  background: #f7f5ee;
}

.page-hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.page-hero__inner::after {
  display: none;
}

.page-hero h1 {
  max-width: 21ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.65rem, 5.4vw, 4.35rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.8rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.5rem;
  color: var(--sand-dark);
  content: "/";
}

.breadcrumbs a {
  color: var(--teal-700);
}

.catalog-toolbar {
  position: relative;
  z-index: 2;
  margin-top: -2.25rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--sand);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.search-form {
  display: grid;
  gap: 0.75rem;
}

.search-form__field {
  position: relative;
}

.search-form input {
  min-height: 3.5rem;
  padding-right: 3.25rem;
}

.search-form__icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: var(--teal-700);
  font-size: 1.3rem;
  pointer-events: none;
}

.search-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  max-height: min(28rem, 65vh);
  overflow-y: auto;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.search-suggestions[hidden] {
  display: none;
}

.search-suggestion {
  display: grid;
  min-height: 4.2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--sand);
  color: var(--navy-950);
  text-decoration: none;
}

.search-suggestion:last-child {
  border-bottom: 0;
}

.search-suggestion:hover,
.search-suggestion[aria-selected="true"] {
  background: var(--teal-050);
  color: var(--navy-950);
}

.search-suggestion strong,
.search-suggestion small {
  display: block;
}

.search-suggestion small,
.search-suggestion__code {
  color: var(--muted);
  font-size: 0.76rem;
}

.search-suggestions__message {
  margin: 0;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 2.2rem 0 1.2rem;
  color: var(--muted);
}

.catalog-meta strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
}

.catalog-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  display: flex;
  min-height: 18.5rem;
  flex-direction: column;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
  border-color: var(--teal-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-card:focus-within {
  border-color: var(--teal-700);
  outline: 3px solid rgba(31, 106, 85, 0.2);
  outline-offset: 3px;
  box-shadow: var(--shadow-md);
}

.product-card h2 a:focus-visible,
.product-card h3 a:focus-visible {
  outline: 0;
}

.product-card__topline {
  display: flex;
  min-height: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-card__badge,
.status-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 1.8rem;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: var(--teal-050);
  color: var(--teal-700);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card__monogram {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #cedbd3;
  border-radius: 0.55rem;
  background: #faf7f0;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 1rem;
}

.product-card__code {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.product-card__body {
  margin-block: 1.65rem auto;
}

.product-card h2,
.product-card h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.product-card h2 a,
.product-card h3 a {
  color: var(--navy-950);
  text-decoration: none;
}

.product-card h2 a::after,
.product-card h3 a::after {
  position: absolute;
  inset: 0;
  content: "";
}

.product-card {
  position: relative;
}

.product-card__generic {
  color: var(--teal-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-card__details span:not(:last-child)::after {
  display: none;
}

.product-card__details span {
  padding: 0.24rem 0.5rem;
  border: 1px solid #dde6e0;
  border-radius: 999px;
  background: #f8faf8;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--sand);
}

.product-card__price {
  color: var(--navy-950);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 750;
}

.product-card__price small {
  display: block;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-card__link {
  color: var(--teal-700);
  font-size: 1.35rem;
  text-decoration: none;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: grid;
  min-width: 2.8rem;
  min-height: 2.8rem;
  place-items: center;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  color: var(--navy-900);
  font-weight: 750;
  text-decoration: none;
}

.pagination a:hover,
.pagination [aria-current="page"] {
  border-color: var(--teal-700);
  background: var(--teal-700);
  color: var(--white);
}

.pagination .is-disabled {
  color: #929ca2;
  cursor: not-allowed;
}

.empty-state {
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--sand);
  background: var(--white);
  text-align: center;
}

.empty-state h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.empty-state p {
  max-width: 35rem;
  margin-inline: auto;
  color: var(--muted);
}

.product-hero {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  border-bottom: 1px solid var(--sand);
  background: #f7f5ee;
}

.product-hero__grid {
  display: grid;
  gap: 2.2rem;
}

.product-hero h1 {
  max-width: 15ch;
  margin-bottom: 0.7rem;
  font-size: clamp(2.65rem, 6vw, 4.75rem);
  overflow-wrap: anywhere;
}

.product-hero__generic {
  margin-bottom: 1.5rem;
  color: var(--teal-700);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
}

.product-summary {
  padding: clamp(1.45rem, 4vw, 2.3rem);
  border: 1px solid #cbdad1;
  border-top: 3px solid var(--teal-600);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.product-summary__price {
  margin-bottom: 1.4rem;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
}

.product-summary__price small {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-summary__status {
  margin-bottom: 1.4rem;
  color: var(--navy-950);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 750;
  line-height: 1.4;
}

.product-summary__status small {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.definition-grid {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--sand);
}

.definition-grid > div {
  padding-block: 1rem;
  border-bottom: 1px solid var(--sand);
}

.definition-grid dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.definition-grid dd {
  margin: 0.25rem 0 0;
  color: var(--navy-950);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.record-list {
  display: grid;
  margin: 2rem 0 0;
  border-top: 1px solid var(--sand);
}

.record-list > div {
  display: grid;
  gap: 0.35rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--sand);
}

.record-list dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.record-list dd {
  margin: 0;
  color: var(--navy-950);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.content-grid {
  display: grid;
  gap: 2.5rem;
}

.prose {
  max-width: 49rem;
  color: var(--navy-700);
  font-size: 1.06rem;
}

.prose h2 {
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3rem);
}

.prose h3 {
  margin-top: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--navy-950);
}

.prose p,
.prose li {
  max-width: 70ch;
}

.prose li + li {
  margin-top: 0.6rem;
}

.prose a {
  font-weight: 700;
}

.sidebar-card {
  height: fit-content;
  padding: 1.5rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: #f7f5ee;
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

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

.sidebar-card .button {
  width: 100%;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--sand);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--sand);
  vertical-align: top;
}

.data-table th {
  background: var(--paper);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table strong {
  color: var(--navy-950);
}

.notice {
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--teal-600);
  background: var(--teal-050);
  color: var(--navy-900);
}

.notice strong {
  display: block;
  margin-bottom: 0.25rem;
}

.notice--spaced {
  margin-top: 2rem;
}

.summary-action {
  margin: 1.5rem 0 0;
}

.sidebar-note {
  margin: 1rem 0 0;
}

.legal-note {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label,
.field legend {
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field label .optional {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid #9eaaa9;
  border-radius: 0;
  background: var(--white);
  box-shadow: none;
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--teal-700);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal-700);
  outline: 3px solid var(--teal-700);
  outline-offset: 2px;
}

.field__hint,
.character-count {
  color: var(--muted);
  font-size: 0.78rem;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checkbox-field input {
  width: 1.25rem;
  min-height: 1.25rem;
  margin-top: 0.2rem;
}

.checkbox-field label {
  color: var(--navy-700);
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--sand);
  border-radius: var(--radius-md);
  background: var(--white);
}

.contact-aside {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #cbdad1;
  border-radius: var(--radius-md);
  background: var(--teal-050);
  color: var(--navy-700);
}

.contact-aside h2,
.contact-aside h3 {
  color: var(--navy-950);
}

.contact-aside a {
  color: var(--teal-700);
}

.contact-aside__list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-aside__list li {
  padding-block: 1rem;
  border-top: 1px solid var(--sand);
}

.fee-calculator {
  margin-top: 3.5rem;
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border: 1px solid var(--sand-dark);
  background: var(--paper);
}

.calculator-form {
  margin-block: 1.5rem;
}

.calculator-results {
  margin-top: 1.25rem;
  padding: 0.25rem 1.25rem;
  background: var(--white);
}

.calculator-results[hidden] {
  display: none;
}

.calculator-results .definition-grid dd {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.flash-stack {
  display: grid;
  gap: 0.7rem;
  width: min(calc(100% - 2rem), var(--content));
  margin: 1rem auto 0;
}

.flash {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--teal-700);
  background: var(--teal-050);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.flash::before {
  content: "●";
  color: var(--teal-700);
  font-size: 0.72rem;
}

.flash--success {
  border-color: var(--success);
  background: var(--success-bg);
}

.flash--success::before {
  color: var(--success);
}

.flash--error,
.flash--danger {
  border-color: var(--danger);
  background: var(--danger-bg);
  color: #70271d;
}

.flash--error::before,
.flash--danger::before {
  color: var(--danger);
}

.flash--warning {
  border-color: var(--warning);
  background: var(--warning-bg);
  color: #62440f;
}

.flash--warning::before {
  color: var(--warning);
}

.faq-list {
  border-top: 1px solid var(--sand);
}

.faq-list details {
  border-bottom: 1px solid var(--sand);
}

.faq-list summary {
  display: grid;
  min-height: 4.8rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  color: var(--navy-950);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--teal-700);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  max-width: 51rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--navy-700);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  border-block: 1px solid #cfe0d7;
  background: #e8f2ec;
  color: var(--navy-700);
}

.cta-band::after {
  display: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-band h2 {
  max-width: 14ch;
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
}

.cta-band--light {
  background: #edf5f0;
}

.cta-band--light .eyebrow {
  margin-bottom: 0.7rem;
}

.cta-band--light .cta-band__inner > div:last-child {
  max-width: 38rem;
}

.cta-band--light .cta-band__inner > div:last-child p {
  margin-bottom: 1.25rem;
}

.cta-band .button--light,
.cta-band .button--light:visited {
  border-color: var(--teal-700);
  background: var(--teal-700);
  color: var(--white);
}

.cta-band .button--light:hover {
  border-color: var(--navy-950);
  background: var(--navy-950);
}

.site-footer {
  border-top: 1px solid #d3dfd7;
  background: #f7faf7;
  color: var(--navy-700);
}

.site-footer__main {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.site-footer .brand {
  color: var(--navy-950);
}

.site-footer .brand__mark {
  border-color: #b9d0c4;
  color: var(--teal-700);
}

.site-footer .brand__tagline {
  color: var(--teal-700);
}

.site-footer__intro p {
  max-width: 28rem;
  margin-top: 1.4rem;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer__nav h2 {
  margin-bottom: 1rem;
  color: var(--teal-700);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__nav li + li {
  margin-top: 0.6rem;
}

.site-footer__nav a {
  color: var(--navy-900);
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--teal-700);
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-block: 1.3rem;
  border-top: 1px solid #d7e1db;
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer__bottom p {
  margin: 0;
}

.error-page {
  display: grid;
  min-height: 65vh;
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.error-page__code {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 9rem);
  line-height: 0.85;
}

.error-page h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
}

.error-page p {
  max-width: 37rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

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

@media (min-width: 36rem) {
  .home-search__control {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-search .button {
    min-width: 11rem;
  }

  .marketplace-map__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

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

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

  .search-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .search-form .button {
    min-width: 10rem;
  }

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

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

  .definition-grid > div:nth-child(odd) {
    padding-right: 1.25rem;
    border-right: 1px solid var(--sand);
  }

  .definition-grid > div:nth-child(even) {
    padding-left: 1.25rem;
  }

  .record-list > div {
    grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 0.65fr);
    gap: 1.5rem;
  }
}

@media (min-width: 48rem) {
  .utility-bar {
    display: block;
  }

  .hero__inner,
  .product-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    align-items: center;
  }

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

  .audience-band article {
    padding: 1.45rem 1.5rem;
  }

  .audience-band article:first-child {
    padding-left: 0;
  }

  .audience-band article:last-child {
    padding-right: 0;
  }

  .audience-band article + article {
    border-top: 0;
    border-left: 1px solid var(--sand);
  }

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

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

  .workspace-comparison__table section + section {
    border-top: 0;
    border-left: 1px solid var(--sand);
  }

  .compliance-note__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  }

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

  .trust-item,
  .trust-item:nth-child(2n),
  .trust-item:nth-child(n + 3) {
    border-top: 0;
    border-right: 1px solid var(--sand);
  }

  .trust-item:last-child {
    border-right: 0;
  }

  .split-heading,
  .cta-band__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  }

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

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

  .site-footer__main {
    grid-template-columns: minmax(18rem, 1.15fr) minmax(22rem, 0.85fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
    align-items: start;
  }
}

@media (min-width: 64rem) {
  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
  }

  .site-header__inner {
    min-height: 5.5rem;
    grid-template-columns: auto 1fr;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav,
  .js .primary-nav[hidden] {
    display: flex;
    grid-column: auto;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-inline: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
  }

  .primary-nav__list {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }

  .primary-nav__link {
    min-height: 2.75rem;
    border: 0;
    font-size: 0.82rem;
  }

  .primary-nav__actions {
    display: flex;
    margin-top: 0;
  }

  .primary-nav__actions .button {
    min-height: 2.8rem;
    padding: 0.7rem 1rem;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    align-items: center;
  }

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

  .workflow-track > li {
    display: block;
    padding: 0 1.7rem 0 0;
  }

  .workflow-track > li:not(:last-child)::after {
    top: 1.34rem;
    right: 0;
    bottom: auto;
    left: 2.7rem;
    width: auto;
    height: 1px;
  }

  .workflow-track > li > span {
    margin-bottom: 1.6rem;
  }

  .workspace-comparison {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
  }

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

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

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 19rem;
    align-items: start;
  }

  .sidebar-card {
    position: sticky;
    top: 7.5rem;
  }
}

@media (min-width: 78rem) {
  .catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 35.99rem) {
  .home-hero__actions .button,
  .path-card .button {
    width: 100%;
  }

  .home-hero__actions .text-arrow {
    min-height: 2.75rem;
  }

  .marketplace-map__status {
    margin-top: -0.3rem;
  }
}

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

@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .cta-band,
  .button,
  .catalog-toolbar {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .section,
  .product-hero {
    padding-block: 1.5rem;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}

/* Editorial public identity — restrained, private-marketplace presentation */
.utility-bar {
  border-color: #d5d9d2;
  background: #eceae3;
  color: #51645d;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  border-color: #d4d8d1;
  background: rgba(250, 249, 245, 0.97);
  box-shadow: none;
}

.site-header__inner {
  min-height: 5.4rem;
}

.brand {
  min-height: auto;
  gap: 0;
}

.brand__name {
  font-size: 1.65rem;
  letter-spacing: -0.045em;
}

.brand__name > span {
  color: var(--teal-700);
}

.brand__tagline {
  margin-top: 0.34rem;
  color: #65756f;
  font-size: 0.51rem;
  letter-spacing: 0.17em;
}

.primary-nav__link {
  color: #40574f;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.primary-nav__link[aria-current="page"] {
  color: var(--teal-700);
}

.button,
.button:visited {
  min-height: 3.35rem;
  padding-inline: 1.6rem;
  border-radius: 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.nav-toggle {
  border-radius: 50%;
}

.editorial-hero {
  overflow: hidden;
  border-bottom: 1px solid #d0d5ce;
  background: var(--paper);
}

.editorial-hero__grid {
  display: grid;
  padding-block: clamp(1rem, 2vw, 1.75rem);
}

.editorial-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 10vw, 7.5rem);
}

.editorial-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.65rem;
  color: var(--teal-700);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.editorial-kicker > span {
  display: block;
  width: 1.3rem;
  height: 1px;
  background: var(--brass);
}

.editorial-hero h1 {
  max-width: 10.5ch;
  margin-bottom: 1.8rem;
  font-size: clamp(3.25rem, 7.2vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.editorial-hero h1 em {
  color: var(--teal-700);
  font-weight: 400;
}

.editorial-hero__lede {
  max-width: 38rem;
  margin-bottom: 0;
  color: #465c55;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.editorial-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.55rem;
  margin-top: 2.25rem;
}

.editorial-link {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--brass);
  color: var(--navy-950);
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.editorial-link:hover {
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.editorial-hero__note {
  max-width: 34rem;
  margin: 2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid #ccd1ca;
  color: #65756f;
  font-size: 0.72rem;
  line-height: 1.55;
}

.market-brief {
  display: flex;
  min-height: 40rem;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--navy-950);
  color: #e9efe9;
}

.market-brief__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #b8cac2;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-brief__statement {
  margin-block: auto;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.market-brief__statement p {
  margin-bottom: 0.25rem;
  color: #93aaa1;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.market-brief__statement h2 {
  max-width: 10ch;
  margin-bottom: 0;
  color: #f3f0e7;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.market-brief__flow {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  list-style: none;
}

.market-brief__flow li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.market-brief__number {
  color: var(--color, #d4b36e);
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.market-brief__flow small,
.market-brief__flow strong {
  display: block;
}

.market-brief__flow small {
  margin-bottom: 0.2rem;
  color: #91a69d;
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.market-brief__flow strong {
  color: #eef2ed;
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.4;
}

.market-brief__state {
  color: #b9cbc4;
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.market-brief__foot {
  padding-top: 1rem;
  color: #8fa49b;
  font-size: 0.64rem;
  line-height: 1.5;
}

.credential-strip {
  border-bottom: 1px solid #cbd3ce;
  background: #dce8e7;
}

.credential-strip__grid {
  display: grid;
}

.credential-strip__grid > div {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0 0.75rem;
  padding-block: 1.4rem;
}

.credential-strip__grid > div + div {
  border-top: 1px solid rgba(11, 42, 32, 0.15);
}

.credential-strip span {
  grid-row: 1 / 3;
  color: #536a62;
  font-family: var(--font-display);
  font-size: 0.76rem;
}

.credential-strip strong {
  color: var(--navy-950);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.credential-strip p {
  margin: 0.25rem 0 0;
  color: #536b63;
  font-size: 0.68rem;
  line-height: 1.5;
}

.editorial-section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
  border-bottom: 1px solid #d5d9d2;
  background: #fff;
}

.numbered-layout {
  display: grid;
  gap: 2rem;
}

.section-number {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.numbered-layout__content {
  min-width: 0;
}

.editorial-heading {
  max-width: 53rem;
  margin-bottom: clamp(2.75rem, 6vw, 5rem);
}

.editorial-heading h2,
.standards-editorial h2 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1;
}

.editorial-heading > p:last-child,
.editorial-heading--split > p,
.standards-editorial__grid > div:last-child {
  color: #536861;
  font-size: 1rem;
  line-height: 1.75;
}

.editorial-heading--split {
  display: grid;
  max-width: none;
  gap: 1.75rem;
  align-items: end;
}

.editorial-heading--split h2 {
  margin-bottom: 0;
}

.editorial-heading--split > p {
  max-width: 34rem;
  margin-bottom: 0;
}

.ruled-process {
  display: grid;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid #9faea7;
  list-style: none;
}

.ruled-process li {
  min-width: 0;
  padding: 1.7rem 0 2rem;
  border-bottom: 1px solid #cfd5d0;
}

.ruled-process li > span,
.role-ledger__label {
  display: block;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--teal-700);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ruled-process h3,
.role-ledger h3 {
  max-width: 15ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.ruled-process p,
.role-ledger p {
  max-width: 29rem;
  margin-bottom: 0;
  color: #5d7069;
  font-size: 0.88rem;
  line-height: 1.7;
}

.role-editorial {
  background: #e7efef;
}

.role-ledger {
  display: grid;
  border-top: 1px solid #9fafa9;
  border-bottom: 1px solid #9fafa9;
}

.role-ledger article {
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding-block: clamp(2rem, 5vw, 3rem);
}

.role-ledger article + article {
  border-top: 1px solid #afbbb6;
}

.role-ledger .editorial-link {
  margin-top: auto;
}

.medicine-editorial {
  background: #fbfaf7;
}

.medicine-ledger {
  margin: 0;
  padding: 0;
  border-top: 1px solid #99aaa3;
  list-style: none;
}

.medicine-ledger li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.2rem 0.85rem;
  align-items: baseline;
  padding-block: 1.35rem;
  border-bottom: 1px solid #d0d5d0;
}

.medicine-ledger__index {
  grid-row: 1 / 3;
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.medicine-ledger strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.medicine-ledger li > span:not(.medicine-ledger__index) {
  color: #60716b;
  font-size: 0.76rem;
}

.medicine-ledger small {
  display: none;
  color: #5a6d66;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-directory-note {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #9fafa8;
}

.member-directory-note p {
  max-width: 46rem;
  margin-bottom: 0;
  color: #5a6d66;
  font-size: 0.87rem;
}

.member-directory-note p strong {
  color: var(--navy-950);
}

.member-directory-note .button {
  width: fit-content;
}

.standards-editorial {
  background: var(--paper);
}

.standards-editorial__grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.standards-editorial h2 {
  margin-bottom: 0;
}

.standards-editorial__grid > div:last-child p {
  margin-bottom: 1.5rem;
}

.editorial-cta {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--navy-950);
  color: #d6e0da;
}

.editorial-cta__grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.editorial-cta span:not(.arrow) {
  display: block;
  margin-bottom: 1rem;
  color: #9eb4ab;
  font-size: 0.59rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-cta h2 {
  max-width: 14ch;
  margin-bottom: 0;
  color: #f2efe7;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1;
}

.editorial-cta__grid > div:last-child {
  max-width: 34rem;
}

.editorial-cta p {
  margin-bottom: 1.5rem;
  color: #b9c9c2;
}

.page-hero {
  background: var(--paper);
}

.page-hero__inner,
.product-hero .container {
  position: relative;
}

.page-hero h1,
.product-hero h1 {
  letter-spacing: -0.045em;
}

.role-card,
.product-card,
.workspace-comparison__table,
.sidebar-card,
.product-summary,
.notice {
  border-radius: 0;
  box-shadow: none;
}

.site-footer {
  background: #f7f5ef;
}

.site-footer__main {
  padding-block: clamp(3.25rem, 7vw, 5rem);
}

.site-footer__intro p {
  color: #5b6e67;
  font-size: 0.88rem;
}

/* Transaction model: a plain-language view of the platform and wholesale roles. */
.page-hero--operating {
  position: relative;
  border-bottom-color: #c9d5cf;
  background: #e7efed;
}

.page-hero--operating::after {
  position: absolute;
  right: clamp(1rem, 8vw, 8rem);
  bottom: 0;
  width: min(28vw, 22rem);
  height: 1px;
  background: var(--brass);
  content: "";
}

.page-hero--operating h1 {
  max-width: 18ch;
}

.operating-model,
.operating-roles,
.seller-access-model,
.transaction-model,
.invoice-model,
.operating-guardrails {
  border-bottom: 1px solid #d2d8d3;
}

.operating-model {
  background: #fbfaf7;
}

.operating-partner {
  display: grid;
  gap: 1.75rem;
  padding-block: clamp(1.75rem, 4vw, 3rem);
  border-block: 1px solid #9eada6;
}

.operating-partner__index {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.operating-partner__copy h2 {
  max-width: 17ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1;
}

.operating-partner__copy > p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
  color: #526760;
  font-size: 1rem;
  line-height: 1.75;
}

.operating-partner__copy strong {
  color: var(--navy-950);
}

.operating-partner__facts {
  align-self: end;
  margin: 0;
  border-top: 1px solid #b9c4be;
}

.operating-partner__facts > div {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 0.85rem;
  border-bottom: 1px solid #d4dad5;
}

.operating-partner__facts dt,
.invoice-ledger article > span,
.platform-invoice-note > span {
  color: var(--teal-700);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.operating-partner__facts dd {
  margin: 0;
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 700;
}

.operating-partner__note {
  max-width: 68rem;
  margin: 1.25rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--brass);
  color: #5a6d66;
  font-size: 0.78rem;
  line-height: 1.65;
}

.operating-partner__note strong {
  color: var(--navy-950);
}

.operating-roles {
  background: #e7efef;
}

.operating-role-grid {
  display: grid;
  border-block: 1px solid #9fafa9;
}

.operating-role-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.operating-role-grid article + article {
  border-top: 1px solid #aebbb5;
}

.operating-role-grid__label {
  display: block;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--teal-700);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.operating-role-grid h3 {
  max-width: 17ch;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
}

.operating-role-grid article > p:not(.operating-role-grid__note) {
  max-width: 34rem;
  color: #536861;
}

.operating-role-grid ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 2rem;
  padding: 0;
  list-style: none;
}

.operating-role-grid li {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.55rem;
  color: #304e44;
  font-size: 0.84rem;
  line-height: 1.55;
}

.operating-role-grid li::before {
  color: var(--brass);
  content: "—";
}

.operating-role-grid__note {
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid #b9c5bf;
  color: #5b6d67;
  font-size: 0.75rem;
  line-height: 1.6;
}

.seller-access-model {
  background: #fbfaf7;
}

.seller-account-grid {
  display: grid;
  border-block: 1px solid #9fada7;
}

.seller-account-grid article {
  min-width: 0;
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}

.seller-account-grid article + article {
  border-top: 1px solid #c6cec9;
}

.seller-account-grid article > span,
.seller-assurance > span {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  color: var(--teal-700);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.seller-account-grid h3 {
  max-width: 15ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.seller-account-grid p {
  max-width: 34rem;
  margin-bottom: 0;
  color: #566a63;
  font-size: 0.86rem;
  line-height: 1.7;
}

.seller-region-heading {
  display: grid;
  gap: 0.6rem;
  margin: clamp(3.25rem, 7vw, 5.75rem) 0 2rem;
}

.seller-region-heading .editorial-kicker {
  margin-bottom: 0.25rem;
}

.seller-region-heading h3 {
  max-width: 18ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.seller-region-heading > p:last-child {
  max-width: 43rem;
  margin-bottom: 0;
  color: #586c65;
  font-size: 0.88rem;
}

.seller-region-grid {
  display: grid;
  border-top: 1px solid #9fada7;
}

.seller-region-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-block: 1.75rem 2.25rem;
  border-bottom: 1px solid #cfd5d1;
}

.seller-region-grid__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.seller-region-grid__head > span {
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.seller-region-grid__head > small {
  color: var(--teal-700);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.seller-region-grid h3 {
  max-width: 16ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
}

.seller-region-grid article > p {
  max-width: 32rem;
  margin-bottom: 1.5rem;
  color: #586c65;
  font-size: 0.8rem;
  line-height: 1.7;
}

.seller-region-grid__links {
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
}

.seller-region-grid__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.65rem;
  border-top: 1px solid #d0d6d1;
  color: var(--navy-900);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-decoration: none;
  text-transform: uppercase;
}

.seller-region-grid__links a:hover {
  border-color: var(--brass);
  color: var(--teal-700);
}

.seller-assurance {
  display: grid;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid #aab7b0;
  background: #e7efed;
}

.seller-assurance > span {
  margin-bottom: 0;
}

.seller-assurance h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}

.seller-assurance p {
  max-width: 62rem;
  margin-bottom: 0;
  color: #52665f;
  font-size: 0.82rem;
  line-height: 1.7;
}

.transaction-model {
  background: #fff;
}

.transaction-route {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid #99aaa3;
  list-style: none;
  counter-reset: route;
}

.transaction-route li {
  min-width: 0;
  padding-block: 1.65rem 2.15rem;
  border-bottom: 1px solid #cfd6d1;
}

.transaction-route li > span,
.guardrail-list article > span {
  display: block;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--brass);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.transaction-route h3 {
  max-width: 16ch;
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

.transaction-route p {
  max-width: 31rem;
  margin-bottom: 0;
  color: #5b6e67;
  font-size: 0.84rem;
  line-height: 1.7;
}

.invoice-model {
  background: var(--paper);
}

.invoice-ledger {
  display: grid;
  border: 1px solid #a8b4ae;
  background: #fbfaf7;
}

.invoice-ledger article {
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.invoice-ledger article + article {
  border-top: 1px solid #c4ccc7;
}

.invoice-ledger article > span {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.invoice-ledger article > strong {
  display: block;
  max-width: 19ch;
  margin-bottom: 0.8rem;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
  font-weight: 400;
  line-height: 1.1;
}

.invoice-ledger article > p {
  max-width: 30rem;
  margin-bottom: 0;
  color: #5c6f68;
  font-size: 0.8rem;
  line-height: 1.65;
}

.invoice-ledger__partner {
  background: #dce8e4;
}

.invoice-ledger__partner > strong {
  color: var(--teal-700) !important;
}

.platform-invoice-note {
  display: grid;
  gap: 0.65rem 1.5rem;
  margin-top: 1.25rem;
  padding: 1.15rem 0;
  border-block: 1px solid #a7b3ad;
}

.platform-invoice-note p {
  max-width: 62rem;
  margin: 0;
  color: #52665f;
  font-size: 0.82rem;
  line-height: 1.65;
}

.operating-guardrails {
  background: #fbfaf7;
}

.guardrail-list {
  display: grid;
  border-top: 1px solid #9fada7;
}

.guardrail-list article {
  min-width: 0;
  padding-block: 1.75rem 2.25rem;
  border-bottom: 1px solid #d0d6d1;
}

.guardrail-list h3 {
  max-width: 16ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
}

.guardrail-list p {
  max-width: 31rem;
  margin-bottom: 0;
  color: #5a6d66;
  font-size: 0.82rem;
  line-height: 1.7;
}

.site-footer__partner {
  display: grid;
  gap: 0.2rem;
  max-width: 24rem;
  padding-block: 0.9rem;
  border-block: 1px solid #d4dad5;
}

.site-footer__partner span {
  color: var(--teal-700);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__partner strong {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
}

@media (min-width: 48rem) {
  .editorial-hero__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(24rem, 1.05fr);
    padding-block: 0;
  }

  .editorial-hero__copy {
    padding-right: clamp(2rem, 6vw, 5rem);
  }

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

  .credential-strip__grid > div {
    padding: 1.5rem 1.5rem;
  }

  .credential-strip__grid > div:first-child {
    padding-left: 0;
  }

  .credential-strip__grid > div:last-child {
    padding-right: 0;
  }

  .credential-strip__grid > div + div {
    border-top: 0;
    border-left: 1px solid rgba(11, 42, 32, 0.15);
  }

  .numbered-layout {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
  }

  .section-number {
    padding-top: 0.15rem;
    border-right: 1px solid #d0d6d1;
  }

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

  .ruled-process li {
    padding: 1.7rem 1.6rem 2.4rem;
  }

  .ruled-process li:first-child {
    padding-left: 0;
  }

  .ruled-process li + li {
    border-left: 1px solid #cfd5d0;
  }

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

  .role-ledger article {
    padding-inline: clamp(2rem, 5vw, 4rem);
  }

  .role-ledger article:first-child {
    padding-left: 0;
  }

  .role-ledger article + article {
    border-top: 0;
    border-left: 1px solid #afbbb6;
  }

  .editorial-heading--split,
  .standards-editorial__grid,
  .editorial-cta__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(2rem, 6vw, 6rem);
  }

  .medicine-ledger li {
    grid-template-columns: 3rem minmax(12rem, 0.75fr) minmax(10rem, 1fr) auto;
    gap: 1rem;
  }

  .medicine-ledger__index {
    grid-row: auto;
  }

  .medicine-ledger small {
    display: block;
  }

  .member-directory-note {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .operating-partner {
    grid-template-columns: 4rem minmax(0, 1.3fr) minmax(15rem, 0.7fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
  }

  .operating-partner__index {
    align-self: stretch;
    padding-top: 0.2rem;
    border-right: 1px solid #d0d6d1;
  }

  .operating-partner__facts {
    margin-top: 3.85rem;
  }

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

  .operating-role-grid article {
    padding-inline: clamp(2rem, 5vw, 4rem);
  }

  .operating-role-grid article:first-child {
    padding-left: 0;
  }

  .operating-role-grid article + article {
    border-top: 0;
    border-left: 1px solid #aebbb5;
  }

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

  .seller-account-grid article {
    padding-inline: clamp(2rem, 5vw, 4rem);
  }

  .seller-account-grid article:first-child {
    padding-left: 0;
  }

  .seller-account-grid article + article {
    border-top: 0;
    border-left: 1px solid #c6cec9;
  }

  .seller-region-heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    align-items: end;
    column-gap: clamp(2rem, 5vw, 5rem);
  }

  .seller-region-heading .editorial-kicker,
  .seller-region-heading h3 {
    grid-column: 1;
  }

  .seller-region-heading > p:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .seller-region-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .seller-region-grid article {
    padding-inline: 1.5rem;
  }

  .seller-region-grid article:first-child {
    padding-left: 0;
  }

  .seller-region-grid article:last-child {
    padding-right: 0;
  }

  .seller-region-grid article + article {
    border-left: 1px solid #cfd5d1;
  }

  .seller-assurance {
    grid-template-columns: 9rem minmax(0, 1fr);
    align-items: start;
  }

  .transaction-route,
  .guardrail-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .transaction-route li,
  .guardrail-list article {
    padding-inline: 1.5rem;
  }

  .transaction-route li:nth-child(3n + 1),
  .guardrail-list article:first-child {
    padding-left: 0;
  }

  .transaction-route li:nth-child(3n),
  .guardrail-list article:last-child {
    padding-right: 0;
  }

  .transaction-route li:not(:nth-child(3n + 1)),
  .guardrail-list article + article {
    border-left: 1px solid #cfd6d1;
  }

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

  .invoice-ledger article + article {
    border-top: 0;
    border-left: 1px solid #c4ccc7;
  }

  .platform-invoice-note {
    grid-template-columns: 9rem minmax(0, 1fr);
    align-items: baseline;
  }
}

@media (min-width: 64rem) {
  .site-header__inner {
    min-height: 5.7rem;
  }

  .primary-nav {
    gap: 2rem;
  }

  .primary-nav__list {
    gap: 1.85rem;
  }

  .editorial-hero__copy {
    min-height: 44rem;
  }

  .market-brief {
    min-height: 44rem;
  }
}

@media (max-width: 47.99rem) {
  .market-brief {
    margin-inline: -1rem;
  }

  .market-brief__state {
    display: none;
  }

  .market-brief__flow li {
    grid-template-columns: 2rem minmax(0, 1fr);
  }
}

@media (max-width: 35.99rem) {
  .editorial-hero__actions .button,
  .member-directory-note .button,
  .editorial-cta .button {
    width: 100%;
  }

  .editorial-hero__actions .editorial-link {
    width: 100%;
  }

  .market-brief {
    min-height: 34rem;
  }
}

@media print {
  .market-brief,
  .credential-strip,
  .editorial-cta {
    background: #fff;
    color: #000;
  }
}

/* Public knowledge centre */
.resource-hero .page-hero__inner,
.resource-article__hero .page-hero__inner {
  max-width: 68rem;
}

.resource-index__heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.resource-index__heading > p {
  color: var(--muted);
  max-width: 44rem;
}

.resource-card-grid {
  border-left: 1px solid var(--sand);
  border-top: 1px solid var(--sand);
  display: grid;
}

.resource-card {
  background: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
  display: flex;
  flex-direction: column;
  min-height: 30rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
}

.resource-card__meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 2.75rem;
  text-transform: uppercase;
}

.resource-card__meta span {
  color: var(--brass);
}

.resource-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.resource-card h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.resource-card h2 a,
.resource-card h3 a {
  color: inherit;
  text-decoration: none;
}

.resource-card h2 a:hover,
.resource-card h3 a:hover {
  color: var(--teal-700);
}

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

.resource-home .resource-card {
  min-height: 25rem;
}

.resource-home__all {
  margin: 2rem 0 0;
}

.resource-card dl {
  border-top: 1px solid var(--sand);
  margin: auto 0 1.75rem;
  padding-top: 1rem;
}

.resource-card dl div {
  display: grid;
  gap: 0.25rem;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  padding: 0.35rem 0;
}

.resource-card dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card dd {
  margin: 0;
}

.resource-article__meta {
  border-top: 1px solid rgba(207, 214, 209, 0.85);
  display: grid;
  gap: 0;
  margin: 2.5rem 0 0;
}

.resource-article__meta div {
  border-bottom: 1px solid rgba(207, 214, 209, 0.85);
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0;
}

.resource-article__meta dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.resource-article__meta dd {
  margin: 0;
}

.resource-article__layout {
  display: grid;
  gap: 2rem;
  padding-bottom: clamp(4rem, 9vw, 8rem);
  padding-top: clamp(3rem, 7vw, 6rem);
}

.resource-answer {
  align-self: start;
  background: var(--navy-950);
  color: #f4f0e7;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.resource-answer > span,
.resource-related > h2 {
  color: #d4b574;
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-answer h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0.45rem 0 1rem;
}

.resource-answer p {
  margin-bottom: 0;
}

.resource-article__body {
  min-width: 0;
}

.resource-article__body > section {
  border-top: 1px solid var(--sand);
  padding: clamp(2.25rem, 5vw, 4.25rem) 0;
}

.resource-article__body > section:first-child {
  border-top: 0;
  padding-top: 0;
}

.resource-article__body h2 {
  font-size: clamp(2rem, 4.3vw, 3.35rem);
  max-width: 48rem;
}

.resource-article__body > section > p:not(.resource-article__section-number):not(.resource-note) {
  color: #354f46;
  font-size: 1.08rem;
  max-width: 47rem;
}

.resource-article__section-number {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.resource-checklist {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.resource-checklist li {
  border-top: 1px solid var(--sand);
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  padding: 0.9rem 0;
}

.resource-checklist li:last-child {
  border-bottom: 1px solid var(--sand);
}

.resource-checklist li span {
  color: var(--teal-700);
  font-weight: 800;
}

.resource-steps {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.resource-steps li {
  border-top: 1px solid var(--sand);
  display: grid;
  gap: 1rem;
  grid-template-columns: 2rem minmax(0, 1fr);
  padding: 1.25rem 0;
}

.resource-steps li:last-child {
  border-bottom: 1px solid var(--sand);
}

.resource-steps li > span {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.resource-steps h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

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

.resource-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
}

.resource-table {
  border-collapse: collapse;
  min-width: 44rem;
  width: 100%;
}

.resource-table th,
.resource-table td {
  border: 1px solid var(--sand);
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
}

.resource-table thead th {
  background: var(--navy-950);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-table tbody th {
  background: var(--teal-050);
  font-weight: 700;
}

.resource-note {
  border-left: 3px solid #b68b36;
  color: #4f442d;
  margin: 2rem 0 0;
  padding: 0.65rem 0 0.65rem 1rem;
}

.resource-related {
  align-self: start;
  border: 1px solid var(--sand);
  padding: 1.5rem;
}

.resource-related > h2 {
  color: var(--brass);
  font-family: var(--font-body);
  margin-bottom: 1rem;
}

.resource-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.resource-related li + li {
  border-top: 1px solid var(--sand);
}

.resource-related li a {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 0;
  text-decoration: none;
}

.resource-related li span,
.resource-related li small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-related li strong {
  color: var(--ink);
}

.resource-related > p {
  background: var(--teal-050);
  color: var(--muted);
  font-size: 0.84rem;
  margin: 1.25rem -0.5rem -0.5rem;
  padding: 1rem;
}

.resource-sources ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.resource-sources li {
  border-top: 1px solid var(--sand);
  padding: 0.8rem 0;
}

.resource-sources li:last-child {
  border-bottom: 1px solid var(--sand);
}

@media (min-width: 48rem) {
  .resource-index__heading {
    align-items: end;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  }

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

  .resource-article__meta {
    grid-template-columns: 1.1fr 1.2fr 0.8fr;
  }

  .resource-article__meta div {
    border-bottom: 0;
    border-right: 1px solid rgba(207, 214, 209, 0.85);
    padding: 1rem;
  }

  .resource-article__meta div:first-child {
    padding-left: 0;
  }

  .resource-article__meta div:last-child {
    border-right: 0;
  }
}

@media (min-width: 72rem) {
  .resource-article__layout {
    align-items: start;
    grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 2fr) minmax(14rem, 0.75fr);
  }

  .resource-answer,
  .resource-related {
    position: sticky;
    top: 1.5rem;
  }
}
