
:root {
  --paper: #f5f7f5;
  --surface: #ffffff;
  --surface-soft: #edf2ef;
  --ink: #17201c;
  --ink-soft: #34413b;
  --muted: #657069;
  --rule: #d8dfda;
  --rule-strong: #bcc7c0;
  --green: #0b7554;
  --green-dark: #075c42;
  --green-soft: #e0eee7;
  --coral: #d63b5b;
  --coral-dark: #a72b47;
  --coral-soft: #f7e7eb;
  --night: #15201b;
  --night-2: #1d2b25;
  --night-text: #f3f6f4;
  --night-muted: #acb9b2;
  --finding: #a9483d;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 44px);
  --display: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shadow: 0 16px 46px rgba(21, 32, 27, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--body);
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
  background: var(--green);
  color: white;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--night);
  color: white;
}

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

.section-inner,
.header-inner,
.footer-inner {
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(188, 199, 192, 0.72);
  background: rgba(245, 247, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-lockup {
  white-space: nowrap;
}

.brand-wordmark {
  width: 208px;
  height: auto;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--green);
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-dark);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--night);
  border-radius: 4px;
  background: var(--night);
  color: white;
  font-weight: 600;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: white;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle {
  position: relative;
}

.menu-toggle::before {
  top: 14px;
}

.menu-toggle span {
  top: 20px;
}

.menu-toggle::after {
  top: 26px;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::after {
  top: 20px;
  transform: rotate(-45deg);
}

/* Shared type and actions */

.v5-eyebrow,
.kicker,
.meta,
.breadcrumb,
.v5-service-tag {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-transform: uppercase;
}

.v5-eyebrow,
.kicker {
  margin-bottom: 22px;
}

.breadcrumb {
  display: flex;
  margin-bottom: 52px;
  gap: 8px;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: none;
}

.breadcrumb a {
  color: var(--green-dark);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border: 1px solid var(--night);
  border-radius: 4px;
  background: var(--night);
  color: white;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button-secondary,
.product-button-secondary {
  border-color: var(--rule-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover,
.product-button-secondary:hover {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}

.button-light {
  border-color: var(--night-text);
  background: var(--night-text);
  color: var(--night);
}

.button-light:hover {
  border-color: white;
  background: white;
  color: var(--green-dark);
}

.button-row,
.v5-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.v5-text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.v5-text-link span,
.card-link span {
  transition: transform 160ms ease;
}

.v5-text-link:hover span,
.card-link:hover span {
  transform: translateX(3px);
}

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

/* Homepage */

.v5-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 7vw, 92px) 0 clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--rule);
  background: #eef3f0;
}

.v5-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 5px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--green) 0 84%, var(--coral) 84% 100%);
  animation: hero-signal-in 720ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
  content: "";
}

.v5-hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.v5-hero-topline .v5-eyebrow {
  margin-bottom: 0;
}

.v5-hero-location {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v5-hero-location > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.v5-hero-grid {
  display: grid;
  margin-top: clamp(50px, 6vw, 78px);
  grid-template-columns: minmax(0, 7.2fr) minmax(310px, 3.8fr);
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

.v5-hero h1 {
  max-width: 870px;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 6.6vw, 5.35rem);
  font-stretch: 88%;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.v5-hero h1 > span {
  display: block;
}

.v5-hero h1 > span + span {
  margin-top: 0.12em;
  color: var(--green-dark);
}

.v5-hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--coral-dark);
  font-style: normal;
}

.v5-hero h1 em::before,
.v5-hero h1 em::after {
  position: absolute;
  width: 18px;
  height: 12px;
  opacity: 0.7;
  content: "";
  pointer-events: none;
}

.v5-hero h1 em::before {
  top: -7px;
  left: -9px;
  border-top: 2px solid var(--coral);
  border-left: 2px solid var(--coral);
}

.v5-hero h1 em::after {
  right: -9px;
  bottom: -7px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
}

.v5-hero-intro {
  padding-top: 8px;
}

.v5-hero-intro > p:first-child {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.65vw, 1.34rem);
  line-height: 1.5;
}

.v5-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin: 25px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.5;
}

.v5-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.v5-trust-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.v5-hero .button-primary {
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.v5-hero .button-primary:hover {
  border-color: var(--night);
  background: var(--night);
}

.v5-test-route {
  margin: clamp(48px, 6vw, 76px) 0 0;
  border-top: 1px solid var(--rule-strong);
}

.v5-test-route figcaption {
  display: flex;
  padding: 17px 0 8px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.v5-test-route figcaption strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.v5-test-route figcaption > span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v5-test-route figcaption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.v5-legend-probe {
  background: var(--coral);
}

.v5-legend-record {
  margin-left: 8px;
  background: var(--green);
}

.v5-test-route-canvas {
  position: relative;
  min-height: 240px;
}

.v5-test-route-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.v5-route-line,
.v5-route-scan,
.v5-route-record {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
}

.v5-route-line {
  stroke: #b8c6be;
}

.v5-route-scan {
  stroke: var(--coral);
  stroke-dasharray: 2 11;
  animation: route-scan 4s linear infinite;
}

.v5-route-record {
  stroke: var(--green);
  stroke-width: 3;
}

.v5-route-node circle {
  fill: #eef3f0;
  stroke: var(--coral);
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 180ms ease, fill 180ms ease, stroke 180ms ease;
}

.v5-route-node {
  cursor: crosshair;
}

.v5-route-node text {
  fill: var(--green-dark);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.7px;
}

.v5-route-node .v5-route-detail {
  fill: var(--muted);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  transition: fill 180ms ease;
}

.v5-route-node:hover circle {
  fill: #f9fbfa;
  stroke: var(--green);
  transform: scale(1.16);
}

.v5-route-node:hover .v5-route-detail {
  fill: var(--ink);
}

.v5-route-node-record circle {
  fill: var(--green-soft);
  stroke: var(--green);
  animation: route-record-pulse 3.2s ease-in-out infinite;
}

.v5-route-runner {
  fill: var(--coral);
  stroke: #eef3f0;
  stroke-width: 3;
  filter: drop-shadow(0 2px 3px rgba(167, 43, 71, 0.25));
}

.v5-test-route-mobile {
  display: none;
}

@keyframes hero-signal-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes route-scan {
  to {
    stroke-dashoffset: -26;
  }
}

@keyframes route-record-pulse {
  0%,
  100% {
    stroke-width: 3;
  }
  50% {
    stroke-width: 7;
  }
}

.v5-credential-folio {
  padding: clamp(54px, 7vw, 84px) 0;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.v5-folio-head {
  display: grid;
  margin-bottom: clamp(38px, 5vw, 58px);
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.65fr);
  align-items: end;
  gap: clamp(46px, 8vw, 112px);
}

.v5-folio-head .v5-eyebrow {
  margin-bottom: 18px;
}

.v5-folio-head h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.8vw, 3.2rem);
}

.v5-folio-head > p {
  max-width: 520px;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 1.03rem;
}

.v5-folio-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.v5-folio-clients {
  min-width: 0;
  padding: 28px clamp(34px, 5vw, 62px) 32px 0;
}

.v5-folio-institutions {
  min-width: 0;
  border-left: 1px solid var(--rule);
}

.v5-folio-partners,
.v5-folio-programs {
  padding: 28px 0 30px clamp(34px, 5vw, 62px);
}

.v5-folio-partners {
  border-bottom: 1px solid var(--rule);
}

.v5-folio-label {
  display: flex;
  margin-bottom: 28px;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.v5-folio-label h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.v5-folio-label > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.v5-client-marks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px clamp(28px, 4vw, 50px);
}

.v5-client-mark {
  display: flex;
  min-width: 0;
  min-height: 60px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  line-height: 1;
}

.v5-client-mark b {
  font-family: var(--display);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.v5-client-mark small {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.59rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.v5-client-mark img {
  width: auto;
  max-width: 124px;
  max-height: 36px;
  object-fit: contain;
  object-position: left center;
}

.v5-partner-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.v5-partner-types span {
  padding-top: 13px;
  border-top: 2px solid var(--green);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.28;
}

.v5-program-marks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.v5-program-marks > span {
  display: flex;
  min-height: 54px;
  padding: 10px 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--rule);
  background: var(--paper);
  line-height: 1;
}

.v5-program-marks b {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.v5-program-marks small {
  margin-top: 5px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.59rem;
}

.v5-folio-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
}

.v5-section,
.section {
  padding: clamp(76px, 9vw, 110px) 0;
}

.v5-section-head,
.section-head {
  display: grid;
  max-width: 930px;
  margin-bottom: clamp(46px, 6vw, 72px);
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: clamp(34px, 7vw, 100px);
}

.v5-section-head .v5-eyebrow,
.section-head .kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.v5-section-head h2,
.section-head h2 {
  margin-bottom: 0;
}

.v5-section-head > p:last-child,
.section-lede {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.06rem;
}

.v5-section-head-inline {
  max-width: none;
  grid-template-columns: 1fr auto;
}

.v5-section-head-inline .v5-eyebrow {
  margin-bottom: 18px;
}

.v5-service-list {
  border-top: 1px solid var(--rule-strong);
}

.v5-service-row {
  position: relative;
  display: grid;
  min-height: 164px;
  padding: 30px 4px;
  grid-template-columns: 180px minmax(300px, 1fr) 240px 32px;
  align-items: start;
  gap: clamp(22px, 4vw, 52px);
  border-bottom: 1px solid var(--rule);
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, padding 160ms ease;
}

.v5-service-row::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  content: "";
  transform: scaleY(0);
  transform-origin: center;
  border-radius: 3px;
  background: var(--coral);
  transition: transform 180ms ease;
}

.v5-service-row:hover {
  padding-right: 14px;
  padding-left: 14px;
  background: var(--surface);
}

.v5-service-row:hover::before {
  transform: scaleY(1);
}

.v5-service-tag {
  padding-top: 4px;
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.v5-service-row h3 {
  margin-bottom: 10px;
  font-size: 1.62rem;
}

.v5-service-row p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.v5-service-row ul {
  margin: 4px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.7;
  list-style: none;
}

.v5-service-row li::before {
  margin-right: 8px;
  color: var(--green);
  content: "—";
}

.v5-row-arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.v5-service-row:hover .v5-row-arrow {
  transform: translate(3px, -3px);
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.v6-report-section {
  padding: clamp(70px, 8vw, 96px) 0;
  border-bottom: 1px solid var(--rule);
  background: #e9efec;
}

.v6-report-simple-head {
  display: grid;
  margin-bottom: clamp(36px, 5vw, 52px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(48px, 8vw, 112px);
}

.v6-report-simple-head .v5-eyebrow {
  margin-bottom: 18px;
}

.v6-report-simple-head h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 3.35rem);
}

.v6-report-simple-head > p {
  max-width: 510px;
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.v6-report-includes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.v6-report-includes span {
  padding: 18px 20px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.v6-report-includes span:first-child {
  padding-left: 0;
}

.v6-report-includes span + span {
  border-left: 1px solid var(--rule);
}

.v6-ai-safety {
  padding: clamp(78px, 9vw, 114px) 0;
  background: var(--night);
  color: var(--night-text);
}

.v6-ai-safety h2,
.v6-ai-safety h3 {
  color: var(--night-text);
}

.v6-ai-safety .v5-eyebrow {
  color: #7ed1ad;
}

.v6-ai-head {
  display: grid;
  margin-bottom: clamp(48px, 7vw, 76px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(50px, 9vw, 124px);
}

.v6-ai-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.v6-ai-head > p {
  margin-bottom: 4px;
  color: var(--night-muted);
  font-size: 1.03rem;
}

.v6-ai-use-cases {
  border-top: 1px solid #3a4942;
}

.v6-ai-use-cases article {
  display: grid;
  padding: 28px 0 31px;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr) minmax(220px, 0.72fr);
  align-items: start;
  gap: clamp(32px, 6vw, 78px);
  border-bottom: 1px solid #3a4942;
}

.v6-ai-use-cases article > div {
  position: relative;
  padding-left: 19px;
}

.v6-ai-use-cases article > div::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  background: var(--coral);
  content: "";
}

.v6-ai-use-cases article:nth-child(even) > div::before {
  background: var(--green);
}

.v6-ai-use-cases article span {
  display: block;
  margin-bottom: 10px;
  color: #7ed1ad;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.v6-ai-use-cases h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.15;
}

.v6-ai-use-cases article > p {
  margin-bottom: 0;
  color: var(--night-muted);
  font-size: 0.94rem;
}

.v6-ai-use-cases article > small {
  color: #dce4df;
  font-family: var(--mono);
  font-size: 0.67rem;
  line-height: 1.65;
}

.v6-ai-contexts {
  display: grid;
  padding-top: 27px;
  grid-template-columns: 180px 1fr;
  gap: 30px;
}

.v6-ai-contexts > span {
  color: #7ed1ad;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.v6-ai-contexts p {
  margin-bottom: 0;
  color: #dce4df;
  font-size: 0.86rem;
}

.v5-scope-matrix-wrap {
  margin-top: clamp(72px, 9vw, 112px);
}

.v5-matrix-intro {
  display: grid;
  margin-bottom: clamp(34px, 5vw, 52px);
  grid-template-columns: minmax(170px, 0.55fr) minmax(420px, 1.45fr);
  align-items: end;
  gap: clamp(40px, 8vw, 110px);
}

.v5-matrix-intro .v5-eyebrow,
.v5-matrix-intro h3 {
  margin-bottom: 0;
}

.v5-matrix-intro h3 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.v5-scope-matrix {
  border-top: 1px solid var(--rule-strong);
}

.v5-scope-row {
  display: grid;
  padding: 22px 0;
  grid-template-columns: minmax(160px, 0.58fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 62px);
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.v5-scope-row strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.v5-scope-head {
  padding: 14px 0;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.v5-reading {
  background: var(--surface);
}

.v5-reading-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
}

.v5-reading-grid > a {
  min-height: 260px;
  padding: 28px 32px 32px 0;
  color: inherit;
  text-decoration: none;
}

.v5-reading-grid > a + a {
  padding-left: 32px;
  border-left: 1px solid var(--rule);
}

.v5-reading-grid > a span,
.v5-reading-grid > aside > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.v5-reading-grid h3 {
  margin: 28px 0 13px;
}

.v5-reading-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.v5-reading-grid > a:hover h3 {
  color: var(--green-dark);
}

.v5-reading-grid > aside {
  display: grid;
  margin-top: 32px;
  padding: 28px 30px;
  grid-column: 1 / -1;
  grid-template-columns: 180px 1fr minmax(260px, 0.8fr) auto;
  align-items: center;
  gap: 30px;
  border: 1px solid #cbd9d1;
  border-radius: 6px;
  background: var(--green-soft);
}

.v5-reading-grid > .v5-beta-card {
  grid-template-columns: 160px minmax(260px, 1.05fr) minmax(280px, 1fr) auto;
  border-color: #e2c4cb;
  background: var(--coral-soft);
  box-shadow: inset 4px 0 0 var(--coral);
}

.v5-beta-card > span {
  color: var(--coral-dark) !important;
}

.v5-beta-card > h3,
.v5-beta-card > p {
  align-self: start;
}

.v5-beta-card > h3 {
  margin: 0;
}

.v5-beta-card > p {
  margin: 0;
}

.v5-beta-card > .v5-beta-mini-loop {
  grid-column: 2 / 4;
}

.v5-beta-card > div {
  grid-row: 1 / 3;
  grid-column: 4;
  align-self: center;
  flex-direction: column;
  white-space: nowrap;
}

.v5-reading-grid > aside h3,
.v5-reading-grid > aside p {
  margin: 0;
}

.v5-reading-grid > aside div {
  display: flex;
  gap: 18px;
}

.v5-reading-grid > aside a {
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Private beta */

.v5-beta-hero {
  border-bottom-color: #e1c5cc;
  background: var(--coral-soft);
  box-shadow: inset 0 -4px 0 var(--coral);
}

.v5-beta-hero .v5-eyebrow {
  color: var(--coral-dark);
}

.v5-beta-hero > .section-inner > .v5-actions {
  margin-top: 38px;
}

.v5-eyebrow-accent {
  color: var(--coral-dark);
}

.v5-beta-section {
  border-top: 1px solid #e3cbd1;
  border-bottom: 1px solid #e3cbd1;
  background: var(--coral-soft);
}

.v5-beta-panel {
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid #dfc4cb;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.v5-beta-panel > p:first-child {
  color: var(--ink-soft);
  font-size: 1.06rem;
}

p.v5-beta-note {
  margin: 22px 0 26px;
  padding-top: 17px;
  border-top: 1px solid #dfc4cb;
  color: var(--muted) !important;
  font-size: 0.88rem;
}

.v5-beta-note:not(p) {
  margin: 0;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #e1c6cd;
  border-left: 4px solid var(--coral);
  border-radius: 6px;
  background: var(--coral-soft);
}

.v5-beta-note:not(p) h2 {
  max-width: 860px;
  margin-bottom: 20px;
}

.v5-beta-note:not(p) > p:not(.v5-eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.v5-beta-panel .button,
.v5-beta-hero .button {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
}

.v5-beta-panel .button:hover,
.v5-beta-hero .button:hover {
  border-color: var(--night);
  background: var(--night);
}

.v5-beta-mini-loop,
.v5-beta-loop {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.v5-beta-mini-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(78px, 1fr));
  gap: 0;
}

.v5-beta-mini-loop::before,
.v5-beta-mini-loop::after {
  position: absolute;
  top: 6px;
  content: "";
}

.v5-beta-mini-loop::before {
  right: 7px;
  left: 7px;
  height: 1px;
  background: #cdaab3;
}

.v5-beta-mini-loop::after {
  left: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid var(--coral-soft);
  border-radius: 50%;
  background: var(--coral);
  animation: beta-tracer 6s ease-in-out infinite;
}

.v5-beta-mini-loop li {
  position: relative;
  padding: 20px 8px 0 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.66rem;
  line-height: 1.3;
}

.v5-beta-mini-loop li::before {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 0;
  width: 7px;
  height: 7px;
  border: 2px solid var(--coral-soft);
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.v5-beta-mini-loop li:nth-child(even)::before {
  background: var(--coral);
}

.v5-beta-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
}

.v5-beta-loop::before {
  position: absolute;
  top: 34px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--rule-strong);
  content: "";
}

.v5-beta-loop::after {
  position: absolute;
  top: 30px;
  left: 12.5%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--coral);
  content: "";
  animation: beta-loop-tracer 7s ease-in-out infinite;
}

.v5-beta-stage {
  position: relative;
  padding: 60px 26px 30px 0;
}

.v5-beta-stage + .v5-beta-stage {
  padding-left: 26px;
  border-left: 1px solid var(--rule);
}

.v5-beta-stage::before {
  position: absolute;
  z-index: 1;
  top: 29px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.v5-beta-stage + .v5-beta-stage::before {
  left: 26px;
}

.v5-beta-stage:nth-child(even)::before {
  background: var(--coral);
}

.v5-beta-stage > span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.v5-beta-stage > .v5-eyebrow {
  margin-bottom: 12px;
  color: var(--coral-dark);
}

.v5-beta-stage h3 {
  margin-bottom: 9px;
}

.v5-beta-stage p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.v5-beta-panel h3 {
  margin-bottom: 18px;
}

.v5-beta-panel ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #dfc4cb;
  list-style: none;
}

.v5-beta-panel li {
  padding: 11px 0;
  border-bottom: 1px solid #dfc4cb;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.v5-beta-panel li::before {
  display: inline-block;
  width: 22px;
  color: var(--coral-dark);
  content: "↳";
}

@keyframes beta-tracer {
  0%,
  12% {
    left: 4px;
  }
  88%,
  100% {
    left: calc(100% - 11px);
  }
}

@keyframes beta-loop-tracer {
  0%,
  12% {
    left: 12.5%;
  }
  88%,
  100% {
    left: calc(87.5% - 9px);
  }
}

.v5-contact-band,
.v5-cta {
  padding: clamp(62px, 8vw, 90px) 0;
  border-top: 1px solid var(--rule);
  background: var(--surface-soft);
}

.v5-contact-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.v5-contact-band::after {
  position: absolute;
  right: -34px;
  bottom: -58px;
  z-index: 0;
  width: 252px;
  aspect-ratio: 40 / 44;
  background: url("logo-shield.svg") center / contain no-repeat;
  content: "";
  opacity: 0.038;
  pointer-events: none;
}

.v5-contact-band .section-inner,
.v5-cta .section-inner,
.v5-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: clamp(48px, 9vw, 130px);
}

.v5-contact-band .section-inner {
  position: relative;
  z-index: 1;
}

.v5-contact-band h2,
.v5-cta h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.v5-contact-band > .section-inner > div:last-child > p,
.v5-cta-copy {
  margin-bottom: 26px;
  color: var(--ink-soft);
}

/* Interior page foundation */

.page-hero,
.v5-page-hero {
  padding: clamp(62px, 8vw, 96px) 0 clamp(72px, 9vw, 112px);
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.page-hero-grid,
.v5-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(46px, 9vw, 130px);
}

.page-hero h1,
.v5-page-hero h1 {
  max-width: 890px;
  margin-bottom: 25px;
  font-size: clamp(3.25rem, 6vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.page-hero h1 em,
.v5-page-hero h1 em {
  color: var(--green-dark);
  font-style: normal;
}

.page-lede,
.v5-page-lede {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  line-height: 1.5;
}

.v5-page-intro > p,
.v5-page-intro > div > p:not(.v5-page-note) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.52;
}

.v5-page-intro > div > p + p {
  margin-top: 22px;
}

.v5-page-intro .v5-actions {
  margin-top: 28px;
}

.page-note,
.v5-page-note {
  margin: 0 0 5px;
  padding: 22px 0 0;
  border-top: 1px solid var(--rule-strong);
  color: var(--muted);
  font-size: 0.91rem;
}

.section-compact {
  padding-top: clamp(60px, 7vw, 84px);
}

.section-blue,
.section-coral {
  background: var(--surface);
  color: inherit;
}

.v5-section.v5-feature {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.v5-company-profile {
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(circle at 82% 20%, rgba(214, 59, 91, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 20%, transparent 0 42px, rgba(11, 117, 84, 0.1) 43px 44px, transparent 45px),
    var(--surface-soft);
  background-size: auto, auto, auto;
}

.v5-company-facts {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}

.v5-company-facts > div {
  min-width: 0;
  padding: 26px 26px 30px 0;
}

.v5-company-facts > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--rule);
}

.v5-company-facts dt {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.v5-company-facts dt::before {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.v5-company-facts dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.32;
}

.split-layout,
.v5-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(52px, 10vw, 140px);
}

.split-copy h2,
.v5-two-col h2 {
  margin-bottom: 24px;
}

.split-copy > p,
.v5-two-col > div > p {
  color: var(--muted);
}

/* Editorial lists and detail rows */

.detail-list,
.v5-editorial-list,
.v5-numbered-list {
  border-top: 1px solid var(--rule-strong);
}

.detail-card {
  display: grid;
  padding: clamp(30px, 4.5vw, 48px) 0;
  grid-template-columns: 150px minmax(300px, 1fr) minmax(220px, 0.55fr);
  align-items: start;
  gap: clamp(28px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
  background: transparent;
}

.detail-card > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.04em;
}

.detail-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.detail-card p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
}

.detail-card ul {
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
  list-style: none;
}

.detail-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}

.detail-card li:first-child {
  padding-top: 0;
}

.v5-editorial-row {
  display: grid;
  padding: clamp(28px, 4vw, 44px) 0;
  grid-template-columns: minmax(190px, 0.78fr) minmax(280px, 1.22fr) minmax(190px, 0.52fr);
  align-items: start;
  gap: clamp(24px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
  color: inherit;
  text-decoration: none;
}

.v5-editorial-row > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.v5-editorial-row h2,
.v5-editorial-row h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.12;
}

.v5-editorial-row .v5-eyebrow {
  margin-bottom: 16px;
}

.v5-editorial-row p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.v5-editorial-row > p {
  padding-top: 2px;
}

.v5-editorial-row ul {
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.5;
  list-style: none;
}

.v5-editorial-row li {
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}

.v5-editorial-row li:first-child {
  padding-top: 0;
}

.v5-two-col > .v5-editorial-list .v5-editorial-row,
.v5-two-col > * > .v5-editorial-list .v5-editorial-row {
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 42px);
}

.v5-two-col > .v5-editorial-list .v5-editorial-row > ul,
.v5-two-col > * > .v5-editorial-list .v5-editorial-row > ul {
  grid-column: 2;
}

.v5-about .v5-editorial-row {
  grid-template-columns: 150px minmax(0, 1fr);
}

.v5-insights .v5-editorial-row {
  grid-template-columns: 180px minmax(0, 1fr) 28px;
  align-items: center;
}

.v5-insights .v5-editorial-row:hover h3 {
  color: var(--green-dark);
}

.service-grid,
.insight-grid,
.v5-feature-grid,
.v5-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
}

.service-card,
.insight-card,
.v5-feature-grid > .v5-feature,
.v5-card {
  min-width: 0;
  padding: 30px 30px 34px 0;
  border-bottom: 1px solid var(--rule);
  background: transparent;
}

.service-card + .service-card,
.insight-card + .insight-card,
.v5-feature-grid > .v5-feature + .v5-feature,
.v5-card + .v5-card {
  padding-left: 30px;
  border-left: 1px solid var(--rule);
}

.service-card h3,
.insight-card h2,
.insight-card h3,
.v5-feature-grid > .v5-feature h3,
.v5-card h3 {
  margin: 18px 0 12px;
}

.service-card p,
.insight-card p,
.v5-feature-grid > .v5-feature p,
.v5-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-code {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.method-list,
.v5-steps {
  margin: 0;
  padding: 0;
  counter-reset: method;
  border-top: 1px solid var(--rule-strong);
  list-style: none;
}

.method-step,
.v5-step {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--rule);
  counter-increment: method;
}

.method-step::before,
.v5-step::before {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
  content: counter(method, decimal-leading-zero);
}

.method-step h3,
.v5-step h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.method-step p,
.v5-step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.v5-steps {
  counter-reset: none;
}

.v5-steps > li {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--rule);
}

.v5-steps > li > span {
  padding-top: 3px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.v5-steps h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.v5-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.v5-numbered-list {
  margin: 0;
  padding: 0;
  counter-reset: numbered;
  list-style: none;
}

.v5-numbered-list > li {
  display: grid;
  padding: 24px 0;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--rule);
  counter-increment: numbered;
}

.v5-numbered-list > li::before {
  padding-top: 3px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  content: counter(numbered, decimal-leading-zero);
}

.v5-numbered-list h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.v5-numbered-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-panel {
  display: grid;
  padding: clamp(40px, 6vw, 68px);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--surface);
}

.cta-panel h2 {
  margin-bottom: 12px;
}

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

/* Product and industry fallbacks */

.product-section {
  background: var(--surface);
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(52px, 10vw, 140px);
}

.product-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.private-badge {
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid #b9d5c7;
  border-radius: 3px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.product-copy h2 {
  margin: 22px 0 20px;
}

.product-copy > p {
  color: var(--muted);
}

.product-family {
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 600;
}

.product-points {
  margin: 28px 0 34px;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.product-points li {
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

.industry-visual {
  min-height: 220px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--surface-soft);
}

.deliverable {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

/* Contact */

.contact-grid,
.v5-contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(52px, 10vw, 140px);
}

.contact-aside h2,
.v5-contact-grid h2 {
  margin-bottom: 22px;
}

.contact-points,
.v5-direct-contact-list {
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.contact-points li,
.v5-direct-contact-list > *,
.v5-direct-contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}

.v5-direct-contact {
  display: flex;
  margin: 30px 0;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  color: var(--green-dark);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.v5-direct-contact:hover {
  color: var(--green);
}

.secure-contact-card {
  padding: 24px;
  border: 1px solid #bfd4c8;
  border-radius: 6px;
  background: var(--green-soft);
}

.secure-contact-card h3 {
  font-size: 1.15rem;
}

.secure-contact-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.contact-form {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--surface);
}

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

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  background: white;
  color: var(--ink);
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form :focus {
  border-color: var(--green);
  outline: 3px solid rgba(11, 117, 84, 0.13);
}

.form-actions {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 18px;
}

.form-status {
  display: none;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status.visible {
  display: block;
}

/* Policies */

.policy-layout,
.v5-policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px);
  justify-content: space-between;
  gap: clamp(50px, 10vw, 150px);
}

.policy-nav,
.v5-policy-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  padding-top: 17px;
  border-top: 1px solid var(--rule-strong);
}

.policy-nav > span,
.v5-policy-nav > span,
.v5-policy-nav > p {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.policy-nav a,
.v5-policy-nav a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-decoration: none;
}

.policy-nav a:hover,
.v5-policy-nav a:hover {
  color: var(--green-dark);
}

.policy-section,
.v5-policy-section {
  padding: 0 0 clamp(56px, 7vw, 80px);
}

.policy-section + .policy-section,
.v5-policy-section + .v5-policy-section {
  padding-top: clamp(56px, 7vw, 80px);
  border-top: 1px solid var(--rule);
}

.policy-section h2,
.v5-policy-section h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.policy-section p,
.v5-policy-section p {
  color: var(--ink-soft);
}

.channel-grid {
  display: grid;
  margin: 34px 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
}

.channel-grid > div {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--rule);
}

.channel-grid > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--rule);
}

.channel-grid ul {
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.91rem;
}

.policy-note,
.v5-callout,
.callout {
  margin: 32px 0;
  padding: 24px;
  border-left: 3px solid var(--green);
  background: var(--surface-soft);
}

.policy-note p,
.v5-callout p,
.callout p {
  margin: 8px 0 0;
}

.v5-callout .v5-eyebrow {
  margin: 0 0 12px;
}

.v5-callout h3 {
  max-width: 620px;
  margin-bottom: 14px;
}

.v5-framework-line {
  display: flex;
  margin-top: 22px;
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--rule);
}

.v5-framework-line span {
  padding: 7px 10px;
  border: 1px solid var(--rule-strong);
  background: var(--surface);
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 500;
}

.policy-action {
  margin-top: 8px;
}

.policy-updated {
  margin-top: 40px;
  color: var(--muted) !important;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.v5-policy-compare {
  display: grid;
  margin: 36px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule);
}

.v5-policy-compare > div {
  padding: 28px 28px 28px 0;
}

.v5-policy-compare > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--rule);
}

.v5-policy-compare h3 {
  margin-bottom: 18px;
  font-size: 1.12rem;
}

.v5-policy-compare ul {
  margin-bottom: 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Articles */

.v5-article-header {
  padding: clamp(64px, 9vw, 112px) 0 clamp(68px, 9vw, 108px);
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.v5-article-header h1 {
  max-width: 940px;
  margin-bottom: 30px;
  font-size: clamp(3.1rem, 6.2vw, 4.9rem);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.v5-article-header .page-lede {
  max-width: 800px;
}

.article-layout,
.v5-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 740px) 240px;
  justify-content: space-between;
  align-items: start;
  gap: clamp(56px, 10vw, 150px);
}

.article-body,
.v5-article-body {
  min-width: 0;
}

.article-body > p:first-child,
.v5-article-body > p:first-child {
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.v5-article-deck {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft) !important;
  font-size: 1.23rem !important;
  line-height: 1.55;
}

.article-body h2,
.v5-article-body h2 {
  margin: clamp(56px, 7vw, 78px) 0 22px;
  font-size: clamp(1.95rem, 3.5vw, 2.75rem);
  scroll-margin-top: 100px;
}

.article-body h3,
.v5-article-body h3 {
  margin: 36px 0 14px;
  font-size: 1.35rem;
}

.article-body p,
.article-body li,
.v5-article-body p,
.v5-article-body li {
  color: var(--ink-soft);
}

.article-body li + li,
.v5-article-body li + li {
  margin-top: 10px;
}

.article-aside,
.v5-article-aside {
  position: sticky;
  top: 110px;
  padding-top: 17px;
  border-top: 1px solid var(--rule-strong);
  color: var(--muted);
  font-size: 0.86rem;
}

.article-aside a,
.v5-article-aside a {
  display: block;
  padding: 6px 0;
  color: var(--ink-soft);
  text-decoration: none;
}

.article-aside a:hover,
.v5-article-aside a:hover {
  color: var(--green-dark);
}

.v5-article-body > .v5-cta {
  margin-top: clamp(56px, 7vw, 80px);
  padding: 30px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--surface-soft);
}

.v5-article-body > .v5-cta h3 {
  margin: 0 0 10px;
}

.v5-article-body > .v5-cta p {
  margin-bottom: 18px;
}

/* Error page */

.v5-error-page {
  min-height: 100vh;
  background: var(--surface);
}

.v5-error-page .v5-page-hero {
  min-height: 100vh;
  padding: clamp(36px, 6vw, 72px) 0;
}

.v5-error-wrap {
  display: flex;
  min-height: calc(100vh - 144px);
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}

.v5-error-brand {
  align-self: flex-start;
}

.v5-error-page .v5-page-intro {
  max-width: 900px;
}

.v5-error-page .button-row {
  margin-top: 34px;
}

/* Footer */

.site-footer {
  padding: 0;
  background: var(--night);
  color: var(--night-text);
}

.footer-mast {
  display: grid;
  padding: 64px 0 48px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: start;
  gap: clamp(50px, 10vw, 140px);
  border-bottom: 1px solid #39473f;
}

.footer-identity .brand-wordmark {
  width: 202px;
}

.footer-identity > p {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--night-muted);
  font-size: 0.92rem;
}

.footer-contact-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.footer-contact-block span {
  display: block;
  margin-bottom: 8px;
  color: var(--night-muted);
  font-size: 0.76rem;
}

.footer-contact-block a {
  color: var(--night-text);
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-grid {
  display: grid;
  padding: 42px 0;
  grid-template-columns: 1.35fr 0.8fr 1fr 0.9fr;
  gap: clamp(28px, 6vw, 78px);
  border-bottom: 1px solid #39473f;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-col h2 {
  margin-bottom: 11px;
  color: var(--night-muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-col a {
  color: #dce4df;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--night-muted);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
    font-size: 14px;
  }

  .v5-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 54px;
  }

  .v5-service-row {
    grid-template-columns: 140px 1fr 190px 32px;
    gap: 26px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

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

  .site-header {
    background: rgba(245, 247, 245, 0.98);
  }

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

  .brand-wordmark {
    width: 194px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    padding: 14px var(--gutter) 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--rule-strong);
    background: var(--paper);
    box-shadow: 0 18px 34px rgba(21, 32, 27, 0.08);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    min-height: 46px;
    margin-top: 14px;
    padding: 0 16px;
    justify-content: center;
    border-bottom: 1px solid var(--night);
  }

  .v5-hero-grid,
  .page-hero-grid,
  .v5-page-intro,
  .v5-section-head,
  .section-head,
  .split-layout,
  .v5-two-col,
  .product-shell,
  .contact-grid,
  .v5-contact-grid,
  .v5-contact-band .section-inner,
  .v5-cta .section-inner,
  .v5-cta-inner {
    grid-template-columns: 1fr;
  }

  .v6-report-simple-head,
  .v6-ai-head {
    grid-template-columns: 1fr;
  }

  .v6-report-simple-head,
  .v6-ai-head {
    align-items: start;
    gap: 25px;
  }

  .v6-report-simple-head > p {
    max-width: 660px;
  }

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

  .v6-report-includes span:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .v6-report-includes span:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .v6-ai-head > p {
    max-width: 680px;
  }

  .v6-ai-use-cases article {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px 42px;
  }

  .v6-ai-use-cases article > small {
    grid-column: 2;
  }

  .v5-folio-head,
  .v5-folio-grid {
    grid-template-columns: 1fr;
  }

  .v5-folio-head {
    align-items: start;
    gap: 24px;
  }

  .v5-folio-head > p {
    max-width: 680px;
  }

  .v5-folio-clients {
    padding-right: 0;
  }

  .v5-folio-institutions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .v5-folio-partners,
  .v5-folio-programs {
    padding: 28px 0 30px;
  }

  .v5-folio-partners {
    padding-right: 28px;
    border-right: 1px solid var(--rule);
    border-bottom: 0;
  }

  .v5-folio-programs {
    padding-left: 28px;
  }

  .v5-partner-types {
    grid-template-columns: 1fr;
  }

  .v5-matrix-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .v5-hero-grid,
  .page-hero-grid,
  .v5-page-intro {
    gap: 38px;
  }

  .v5-hero h1 {
    max-width: 700px;
  }

  .v5-hero-intro {
    max-width: 620px;
  }

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

  .v5-company-facts > div:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .v5-company-facts > div:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .v5-section-head .v5-eyebrow,
  .section-head .kicker {
    margin-bottom: 0;
  }

  .v5-section-head-inline {
    grid-template-columns: 1fr auto;
  }

  .v5-service-row {
    grid-template-columns: 130px 1fr 32px;
  }

  .v5-service-row ul {
    display: none;
  }

  .v5-reading-grid {
    grid-template-columns: 1fr;
  }

  .v5-reading-grid > a {
    min-height: 0;
    padding: 28px 0 32px;
    border-bottom: 1px solid var(--rule);
  }

  .v5-reading-grid > a + a {
    padding-left: 0;
    border-left: 0;
  }

  .v5-reading-grid > aside {
    grid-template-columns: 150px 1fr;
  }

  .v5-reading-grid > aside p {
    grid-column: 2;
  }

  .v5-reading-grid > aside div {
    grid-column: 2;
  }

  .v5-reading-grid > .v5-beta-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .v5-beta-card > span {
    grid-row: 1 / 3;
    grid-column: 1;
  }

  .v5-beta-card > h3,
  .v5-beta-card > p,
  .v5-beta-card > .v5-beta-mini-loop,
  .v5-beta-card > div {
    grid-row: auto;
    grid-column: 2;
  }

  .v5-beta-card > div {
    align-self: start;
    flex-direction: row;
    white-space: normal;
  }

  .detail-card,
  .v5-editorial-row {
    grid-template-columns: 110px 1fr;
  }

  .detail-card > ul,
  .v5-editorial-row > ul {
    grid-column: 2;
  }

  .service-grid,
  .insight-grid,
  .v5-feature-grid,
  .v5-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(odd),
  .insight-card:nth-child(odd),
  .v5-feature-grid > .v5-feature:nth-child(odd),
  .v5-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .policy-layout,
  .v5-policy-layout,
  .article-layout,
  .v5-article-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav,
  .v5-policy-nav,
  .article-aside,
  .v5-article-aside {
    position: static;
  }

  .policy-nav,
  .v5-policy-nav {
    display: grid;
    overflow: visible;
    padding: 14px 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 20px;
    border-bottom: 1px solid var(--rule);
    white-space: normal;
  }

  .policy-nav > span,
  .v5-policy-nav > span,
  .v5-policy-nav > p {
    display: none;
  }

  .article-aside,
  .v5-article-aside {
    order: -1;
  }

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

  .v5-article-aside > p {
    grid-column: 1 / -1;
  }

  .footer-mast {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 38px;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .v5-hero {
    padding: 48px 0 28px;
  }

  .v5-credential-folio {
    padding: 48px 0;
  }

  .v6-report-section {
    padding: 56px 0;
  }

  .v6-report-simple-head {
    margin-bottom: 30px;
  }

  .v6-report-simple-head h2 {
    font-size: 2.15rem;
  }

  .v6-report-simple-head > p {
    font-size: 1rem;
  }

  .v6-report-includes span {
    padding: 14px 10px;
    font-size: 0.59rem;
    line-height: 1.35;
  }

  .v6-report-includes span:nth-child(2),
  .v6-report-includes span:nth-child(4) {
    padding-left: 12px;
  }

  .v6-ai-safety {
    padding: 56px 0;
  }

  .v6-ai-head {
    margin-bottom: 38px;
  }

  .v6-ai-use-cases article {
    padding: 25px 0 27px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v6-ai-use-cases article > small {
    grid-column: 1;
  }

  .v6-ai-contexts {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .v5-folio-head {
    margin-bottom: 34px;
  }

  .v5-folio-head h2 {
    font-size: 2.05rem;
  }

  .v5-folio-grid {
    border-bottom: 0;
  }

  .v5-folio-label {
    margin-bottom: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .v5-client-marks {
    gap: 22px 20px;
  }

  .v5-client-mark {
    min-height: 54px;
  }

  .v5-folio-institutions {
    grid-template-columns: 1fr;
  }

  .v5-folio-partners {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .v5-folio-programs {
    padding-left: 0;
  }

  .v5-partner-types {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

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

  .v5-folio-note {
    margin-top: 17px;
    line-height: 1.55;
  }

  .v5-hero::before {
    height: 5px;
  }

  .v5-hero-topline {
    align-items: flex-start;
  }

  .v5-hero-location {
    max-width: 138px;
    justify-content: flex-end;
    font-size: 0.61rem;
    text-align: right;
  }

  .v5-hero-grid {
    margin-top: 38px;
    gap: 28px;
  }

  .page-hero,
  .v5-page-hero {
    padding: 44px 0 56px;
  }

  .v5-article-header {
    padding: 44px 0 58px;
  }

  .breadcrumb {
    margin-bottom: 34px;
  }

  .v5-page-hero .v5-eyebrow,
  .v5-article-header .v5-eyebrow {
    margin-bottom: 16px;
  }

  .v5-hero h1,
  .page-hero h1,
  .v5-page-hero h1 {
    font-size: clamp(2.6rem, 12.4vw, 3.35rem);
    line-height: 1;
  }

  .v5-page-hero h1,
  .v5-article-header h1 {
    margin-bottom: 20px;
  }

  .v5-page-intro {
    gap: 28px;
  }

  .v5-page-note {
    padding-top: 16px;
  }

  .services-page .v5-page-hero {
    padding-bottom: 42px;
  }

  .services-page .v5-page-hero .breadcrumb {
    margin-bottom: 24px;
  }

  .services-page .v5-page-intro {
    gap: 20px;
  }

  .services-page .v5-page-intro .v5-actions {
    margin-top: 20px;
  }

  .services-page .v5-page-note {
    padding-top: 12px;
  }

  .v5-hero-intro > p:first-child,
  .page-lede,
  .v5-page-lede {
    font-size: 1.08rem;
  }

  .v5-hero-intro {
    padding-top: 0;
  }

  .v5-hero-trust {
    margin-top: 20px;
    font-size: 0.65rem;
  }

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

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

  .v5-actions .v5-text-link,
  .button-row .v5-text-link {
    justify-content: center;
    min-height: 44px;
  }

  .v5-test-route {
    margin-top: 40px;
  }

  .v5-test-route figcaption {
    padding: 14px 0 4px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .v5-test-route figcaption strong {
    font-size: 1rem;
  }

  .v5-test-route figcaption > span {
    font-size: 0.62rem;
  }

  .v5-test-route-canvas {
    min-height: 126px;
  }

  .v5-test-route-svg {
    display: none;
  }

  .v5-test-route-mobile {
    position: relative;
    display: grid;
    padding-top: 35px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .v5-test-route-mobile::before {
    position: absolute;
    top: 15px;
    right: 14%;
    left: 14%;
    height: 2px;
    background: linear-gradient(90deg, var(--coral) 0 68%, var(--green) 68% 100%);
    content: "";
  }

  .v5-test-route-mobile::after {
    position: absolute;
    top: 10px;
    left: 14%;
    width: 11px;
    height: 11px;
    border: 3px solid #eef3f0;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 1px rgba(167, 43, 71, 0.22);
    content: "";
    animation: route-mobile-run 5.5s ease-in-out infinite;
  }

  .v5-test-route-mobile > span {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .v5-test-route-mobile > span::before {
    position: absolute;
    top: -25px;
    left: calc(50% - 5px);
    width: 10px;
    height: 10px;
    border: 3px solid #eef3f0;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 1px var(--coral);
    content: "";
  }

  .v5-test-route-mobile > span:last-child::before {
    background: var(--green);
    box-shadow: 0 0 0 1px var(--green);
  }

  .v5-test-route-mobile img {
    position: absolute;
    top: -33px;
    left: 50%;
    z-index: 2;
    width: 22px;
    transform: translateX(-50%);
  }

  .v5-test-route-mobile b {
    color: var(--ink);
    font-family: var(--display);
    font-size: 0.8rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
  }

  .v5-test-route-mobile small {
    max-width: 105px;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .v5-company-facts {
    grid-template-columns: 1fr;
  }

  .v5-company-facts > div,
  .v5-company-facts > div + div {
    padding: 20px 0 22px;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .v5-company-facts > div:first-child {
    border-top: 0;
  }

  .v5-company-facts dd {
    font-size: 1.04rem;
  }

  .v5-section-head-inline {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .v5-service-row {
    min-height: 0;
    padding: 27px 0;
    grid-template-columns: 1fr 32px;
    gap: 10px 18px;
  }

  .v5-service-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .v5-service-tag {
    grid-column: 1;
  }

  .v5-service-row > div {
    grid-column: 1;
  }

  .v5-row-arrow {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .v5-contact-band::after {
    right: -24px;
    bottom: -34px;
    width: 154px;
  }

  .v5-scope-matrix-wrap {
    margin-top: 64px;
  }

  .v5-matrix-intro {
    margin-bottom: 30px;
  }

  .v5-scope-head {
    display: none;
  }

  .v5-scope-row {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .v5-scope-row:not(.v5-scope-head) > span::before {
    display: block;
    margin-bottom: 4px;
    color: var(--green-dark);
    font-family: var(--mono);
    font-size: 0.61rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .v5-scope-row:not(.v5-scope-head) > span:nth-child(2)::before {
    content: "Controls + boundaries";
  }

  .v5-scope-row:not(.v5-scope-head) > span:nth-child(3)::before {
    content: "Consequences tested";
  }

  .v5-reading-grid > aside {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v5-reading-grid > aside p,
  .v5-reading-grid > aside div {
    grid-column: 1;
  }

  .v5-reading-grid > aside div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .v5-reading-grid > .v5-beta-card {
    grid-template-columns: 1fr;
  }

  .v5-beta-card > span,
  .v5-beta-card > h3,
  .v5-beta-card > p,
  .v5-beta-card > .v5-beta-mini-loop,
  .v5-beta-card > div {
    grid-row: auto;
    grid-column: 1;
  }

  .v5-beta-mini-loop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .v5-beta-mini-loop::before,
  .v5-beta-mini-loop::after {
    display: none;
  }

  .v5-beta-mini-loop li {
    padding: 13px 0 0;
    border-top: 1px solid #cdaab3;
  }

  .v5-beta-mini-loop li::before {
    top: -4px;
  }

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

  .v5-beta-loop::before,
  .v5-beta-loop::after {
    display: none;
  }

  .v5-beta-stage,
  .v5-beta-stage + .v5-beta-stage {
    padding: 42px 18px 24px 0;
    border-left: 0;
  }

  .v5-beta-stage:nth-child(even) {
    padding-left: 18px;
    border-left: 1px solid var(--rule);
  }

  .v5-beta-stage:nth-child(3),
  .v5-beta-stage:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .v5-beta-stage::before,
  .v5-beta-stage + .v5-beta-stage::before {
    top: 19px;
    left: 0;
  }

  .v5-beta-stage:nth-child(even)::before {
    left: 18px;
  }

  .detail-card,
  .v5-editorial-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .v5-two-col > .v5-editorial-list .v5-editorial-row,
  .v5-two-col > * > .v5-editorial-list .v5-editorial-row,
  .v5-about .v5-editorial-row {
    grid-template-columns: 1fr;
  }

  .detail-card > ul,
  .v5-editorial-row > ul {
    grid-column: 1;
  }

  .v5-two-col > .v5-editorial-list .v5-editorial-row > ul,
  .v5-two-col > * > .v5-editorial-list .v5-editorial-row > ul {
    grid-column: 1;
  }

  .v5-insights .v5-editorial-row {
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 14px 18px;
  }

  .v5-insights .v5-editorial-row > span:first-child,
  .v5-insights .v5-editorial-row > div {
    grid-column: 1;
  }

  .v5-insights .v5-editorial-row > span:last-child {
    grid-row: 1 / 3;
    grid-column: 2;
    align-self: start;
  }

  .service-grid,
  .insight-grid,
  .v5-feature-grid,
  .v5-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .insight-card,
  .v5-feature-grid > .v5-feature,
  .v5-card,
  .service-card + .service-card,
  .insight-card + .insight-card,
  .v5-feature-grid > .v5-feature + .v5-feature,
  .v5-card + .v5-card {
    padding: 26px 0 30px;
    border-left: 0;
  }

  .cta-panel {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .channel-grid,
  .v5-policy-compare,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .channel-grid > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .v5-policy-compare > div + div {
    padding-left: 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .field-wide {
    grid-column: 1;
  }

  .footer-mast {
    padding: 34px 0 26px;
    gap: 26px;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px 0;
    gap: 24px 22px;
  }

  .footer-col {
    gap: 5px;
  }

  .footer-col h2 {
    margin-bottom: 6px;
  }

  .footer-col a {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .footer-bottom {
    min-height: 0;
    padding: 18px 0 22px;
    align-items: center;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 10px 18px;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 8px 16px;
  }
}

@keyframes route-mobile-run {
  0%,
  12% {
    left: 14%;
  }
  78%,
  100% {
    left: calc(86% - 11px);
    background: var(--green);
  }
}

@media (max-width: 350px) {
  .v5-hero-topline {
    gap: 12px;
  }

  .v5-hero h1 {
    font-size: 2.55rem;
  }

  .v5-hero h1 em::before,
  .v5-hero h1 em::after {
    width: 14px;
    height: 10px;
  }

  .v5-hero h1 em::before {
    top: -5px;
    left: -6px;
  }

  .v5-hero h1 em::after {
    right: -6px;
    bottom: -5px;
  }

  .v5-test-route-mobile {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .v5-route-runner {
    display: none;
  }

  .v5-hero::before {
    transform: scaleX(1);
  }
}

/* ============================================================
   INTAKE — scoping and access-request forms
   The site's first real conversion surface. Tokens, type and
   rhythm follow the existing v5 system; no new primitives.
   ============================================================ */

.v5-intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 900px) {
  .v5-intake-grid { grid-template-columns: 1fr; }
}

.v5-form {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: clamp(22px, 3.4vw, 34px);
}

.v5-fieldset { border: 0; padding: 0; margin: 0 0 30px; }
.v5-fieldset:last-of-type { margin-bottom: 22px; }

.v5-fieldset > legend {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  width: 100%;
}

.v5-field { display: grid; gap: 6px; margin-bottom: 18px; }
.v5-field:last-child { margin-bottom: 0; }

.v5-field > label,
.v5-choice-label {
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
}

.v5-req {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-left: 7px;
}

.v5-hint {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.v5-field input[type="text"],
.v5-field input[type="email"],
.v5-field input[type="url"],
.v5-field select,
.v5-field textarea {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  padding: 11px 13px;
  width: 100%;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.v5-field textarea { min-height: 112px; resize: vertical; }
.v5-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

.v5-field input:focus-visible,
.v5-field select:focus-visible,
.v5-field textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 1px;
  border-color: var(--green);
}
.v5-field input[aria-invalid="true"],
.v5-field textarea[aria-invalid="true"],
.v5-field select[aria-invalid="true"] {
  border-color: var(--coral-dark);
  box-shadow: inset 0 0 0 1px var(--coral-dark);
}

.v5-field-error {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--coral-dark);
}

.v5-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .v5-field-row { grid-template-columns: 1fr; gap: 0; } }

.v5-choices { display: grid; gap: 9px; margin-top: 4px; }
.v5-choices-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .v5-choices-2 { grid-template-columns: 1fr; } }

.v5-choice {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 11px 13px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.4;
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}
.v5-choice:hover { border-color: var(--rule-strong); }
.v5-choice input { flex: none; margin-top: 2px; width: 17px; height: 17px; accent-color: var(--green); }
.v5-choice:has(input:checked) { border-color: var(--green); background: var(--green-soft); }
.v5-choice:has(input:focus-visible) { outline: 2px solid var(--green); outline-offset: 1px; }
.v5-choice b { display: block; font-weight: 600; color: var(--ink); }
.v5-choice small { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 1px; }

/* the authorization gate — deliberately heavier than the fields around it */
.v5-authz {
  border: 1px solid var(--rule-strong);
  border-left: 3px solid var(--coral-dark);
  border-radius: 0 3px 3px 0;
  background: var(--surface-soft);
  padding: 17px 19px;
  margin-bottom: 22px;
}
.v5-authz-title {
  font-family: var(--mono);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 9px;
}
.v5-authz p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 12px; }
.v5-authz .v5-choice { background: var(--surface); }

.v5-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.v5-alt { font-size: 0.87rem; color: var(--muted); }

.v5-form-status {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 0.92rem;
  line-height: 1.5;
  display: none;
}
.v5-form-status[data-state="error"] {
  display: block;
  background: var(--coral-soft);
  border: 1px solid var(--coral-dark);
  color: var(--coral-dark);
}
.v5-form-status[data-state="sent"] {
  display: block;
  background: var(--green-soft);
  border: 1px solid var(--green);
  color: var(--green-dark);
}

.v5-intake-note {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 18px;
}

.v5-intake-aside > * + * { margin-top: 26px; }
.v5-aside-block { border-left: 2px solid var(--green); padding-left: 17px; }
.v5-aside-block h2,
.v5-aside-block h3 {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}
.v5-aside-block p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.55; }
.v5-aside-block ul { margin: 9px 0 0; padding-left: 18px; }
.v5-aside-block li { font-size: 0.89rem; color: var(--ink-soft); line-height: 1.5; margin-bottom: 6px; }

.v5-aside-steps { list-style: none; margin: 9px 0 0; padding: 0; counter-reset: astep; }
.v5-aside-steps li {
  counter-increment: astep;
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
}
.v5-aside-steps li::before {
  content: counter(astep);
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.v5-aside-steps li b { display: block; color: var(--ink); font-weight: 600; }

/* content placeholder — unverified factual claims only */
.v5-tk {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78em;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 3px 8px 4px;
  border-radius: 2px;
  color: #6d5300;
  background: #fbf3d8;
  border: 1px dashed #cdb063;
}

/* Footer height at the narrowest supported viewport.
   qa/browser-check.py asserts footerHeight <= 760 at 320px; the stacked
   mast + 2x2 link grid + legal row exceeded it. Tighten the vertical
   rhythm only below 360px, leaving wider layouts untouched. */
@media (max-width: 360px) {
  .footer-mast { padding: 26px 0 18px; gap: 20px; }
  .footer-grid { padding: 20px 0; gap: 18px 20px; }
  .footer-identity p { font-size: 0.8rem; line-height: 1.45; }
  .footer-contact-block { gap: 14px; }
  .footer-bottom { padding: 14px 0 16px; gap: 8px 18px; }
}

/* The phone and office rows added to .footer-contact-block pushed
   footerHeight past the qa/browser-check.py ceiling on mobile widths.
   Tighten the mast rhythm below 520px to absorb the extra row. */
@media (max-width: 520px) {
  .footer-mast { padding: 22px 0 18px; gap: 18px; }
  .footer-identity p { font-size: 0.84rem; line-height: 1.5; margin-top: 18px; }
  .footer-contact-block { gap: 12px 18px; }
  .footer-contact-block span { margin-bottom: 4px; }
  .footer-contact-block a { font-size: 0.88rem; }
  .footer-grid { padding: 20px 0; }
  .footer-bottom { padding: 14px 0 16px; }
}

/* ------------------------------------------------------------
   Mobile-native polish: in-page anchors glide, taps give feedback
   instead of the grey highlight rectangle, and the hero trust row
   stacks as marked items rather than wrapping mid-phrase.
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

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

h2, h3 { text-wrap: balance; }

@media (hover: none) {
  .button:active { transform: translateY(1px); filter: brightness(0.94); }
  .v5-service-row:active,
  .v5-reading-grid a:active,
  .v5-direct-contact:active { background: var(--surface-soft); }
  .v5-text-link:active { opacity: 0.6; }
}

@media (max-width: 520px) {
  .v5-hero-topline .v5-eyebrow { font-size: 0.64rem; letter-spacing: 0.06em; }
}

/* Placed after the 520px block so these tighter values win at the
   narrowest supported viewport, where the ceiling is hardest to meet. */
@media (max-width: 360px) {
  .footer-mast { padding: 18px 0 14px; gap: 14px; }
  .footer-identity p { font-size: 0.78rem; line-height: 1.45; margin-top: 14px; }
  .footer-contact-block { gap: 10px 14px; }
  .footer-contact-block span { font-size: 0.7rem; margin-bottom: 3px; }
  .footer-contact-block a { font-size: 0.82rem; }
  .footer-grid { padding: 16px 0; gap: 14px 18px; }
  .footer-col h2 { margin-bottom: 4px; }
  .footer-bottom { padding: 12px 0 14px; gap: 6px 14px; }
}

/* services.html hero exceeded qa/browser-check.py limits at the two mobile
   widths (786>760 at 320px, 711>700 at 430px). The .services-page block above
   already compresses this hero; these extend it. Scoped to that page so no
   other interior hero shifts. */
@media (max-width: 600px) {
  .services-page .v5-page-hero { padding-bottom: 30px; }
  .services-page .v5-page-hero .breadcrumb { margin-bottom: 16px; }
  .services-page .v5-page-hero h1 { margin-bottom: 14px; }
  .services-page .v5-page-note { padding-top: 8px; line-height: 1.4; }
}

/* ------------------------------------------------------------
   Brand lockup — authoritative wordmark only.
   "Labs" was removed from the mark: the combined logo-labs-*.svg
   carried it as outlined glyphs from a different typeface than
   the wordmark, and the company name still appears in page
   titles, the footer and the legal row.
   ------------------------------------------------------------ */

.brand-lockup {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.brand-wordmark { width: 176px; height: auto; }
.footer-identity .brand-wordmark { width: 176px; }

@media (max-width: 600px) {
  .brand-wordmark,
  .footer-identity .brand-wordmark { width: 150px; }
}

/* ------------------------------------------------------------
   Report contents — the deliverable's own contents sheet.
   Replaces four undifferentiated text chips. Each row names the
   section, who reads it and what it carries; numbering is used
   because report sections have a real order.
   ------------------------------------------------------------ */

.v6-report-contents {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  background: var(--surface);
}

.v6-rc-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 13px 22px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.v6-rc-caption b { color: var(--ink); font-weight: 500; }

.v6-rc-row {
  display: grid;
  grid-template-columns: 46px 34px minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 0 18px;
  align-items: start;
  padding: 20px 22px;
  border-bottom: 1px solid var(--rule);
  transition: background-color 150ms ease;
}
.v6-rc-row:last-child { border-bottom: 0; }
.v6-rc-row:hover { background: color-mix(in srgb, var(--green-soft) 42%, transparent); }

.v6-rc-num {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-top: 4px;
}

.v6-rc-icon { width: 26px; height: 26px; margin-top: 1px; }
.v6-rc-icon path,
.v6-rc-icon rect,
.v6-rc-icon circle,
.v6-rc-icon polyline {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.v6-rc-icon .rc-acc { stroke: var(--green); }
.v6-rc-icon .rc-accf { fill: var(--green); stroke: none; }
.v6-rc-row:hover .v6-rc-icon .rc-acc { stroke: var(--green-dark); }

.v6-rc-title {
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 3px;
}
.v6-rc-what { font-size: 0.91rem; color: var(--ink-soft); line-height: 1.5; }

.v6-rc-reader {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 2px;
  padding: 4px 9px;
  margin-top: 3px;
  white-space: nowrap;
}
.v6-rc-reader::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.v6-rc-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--rule);
  background: var(--surface-soft);
  font-size: 0.87rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .v6-rc-row {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 0 14px;
    padding: 17px 18px;
  }
  .v6-rc-num { display: none; }
  /* the chip is a direct grid child; without this it lands in the 34px
     icon column and its background clips behind the nowrap text */
  .v6-rc-reader { margin-top: 9px; grid-column: 1 / -1; justify-self: start; }
  .v6-rc-caption, .v6-rc-foot { padding-inline: 18px; }
}

@media (max-width: 600px) {
  .v6-rc-caption { font-size: 0.62rem; letter-spacing: 0.1em; }
  .v6-rc-title { font-size: 1rem; }
  .v6-rc-what { font-size: 0.88rem; }
}

/* ------------------------------------------------------------
   Credibility components — client result, partner marks and
   credential roster. Structure is production-ready; the content
   in sample-credibility.html is placeholder and marked as such.
   ------------------------------------------------------------ */

/* sample-page banner */
.v6-sample-banner {
  border: 1px dashed #cdb063;
  background: #fbf3d8;
  border-radius: 3px;
  padding: 18px 22px;
  margin-bottom: 36px;
}
.v6-sample-banner p { color: #5d4700; font-size: 0.93rem; line-height: 1.6; margin-bottom: 0; }
.v6-sample-banner p + p { margin-top: 9px; }
.v6-sample-banner strong { color: #4a3800; }

.v6-sample-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6d5300;
  background: #f6e8bd;
  border: 1px dashed #cdb063;
  border-radius: 2px;
  padding: 3px 8px;
  margin-bottom: 14px;
}

/* ---------- A. client result ---------- */

.v6-result {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.v6-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 22px 26px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface-soft);
}
.v6-result-client {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 4px;
}
.v6-result-meta {
  font-family: var(--mono);
  font-size: 0.71rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 3px 14px;
}
.v6-result-body { padding: 24px 26px; }
.v6-result-body h4 {
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.v6-result-body h4:not(:first-child) { margin-top: 24px; }
.v6-result-body p { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.62; margin-bottom: 0; }

.v6-result-findings { list-style: none; margin: 0; padding: 0; }
.v6-result-findings li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.v6-result-findings li:last-child { border-bottom: 0; }

.v6-sev {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
}
.v6-sev.crit { color: #ffffff; background: #8c0f2f; }
.v6-sev.high { color: var(--coral-dark); background: var(--coral-soft); }
.v6-sev.med { color: #7d5209; background: #f8f0e1; }
.v6-sev.low { color: #1f5f8b; background: #e4eff6; }

.v6-result-quote {
  margin: 26px 0 0;
  padding: 20px 22px;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 3px 3px 0;
}
.v6-result-quote p {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 12px;
}
.v6-result-quote footer {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--green-dark);
}
.v6-result-permission {
  padding: 14px 26px;
  border-top: 1px solid var(--rule);
  background: var(--surface-soft);
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .v6-result-head { grid-template-columns: 1fr; }
  .v6-result-head, .v6-result-body, .v6-result-permission { padding-inline: 18px; }
  .v6-result-findings li { grid-template-columns: 1fr; gap: 6px; }
  .v6-sev { justify-self: start; }
}

/* ---------- B. partner marks ---------- */

.v6-marks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.v6-mark {
  background: var(--surface);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-height: 128px;
}
.v6-mark-slot {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.v6-mark-slot img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 180ms ease, opacity 180ms ease;
}
.v6-mark:hover .v6-mark-slot img { filter: grayscale(0); opacity: 1; }
.v6-mark-slot.empty {
  border: 1px dashed var(--rule-strong);
  border-radius: 2px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.v6-mark-rel {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
}
.v6-mark-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.v6-mark-verify { font-size: 0.82rem; margin-top: auto; }

/* ---------- C. credential roster ---------- */

.v6-roster { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; }
.v6-tester {
  background: var(--surface);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}
.v6-tester-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-soft);
  border: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.v6-tester-name { font-family: var(--display); font-size: 1.02rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.v6-tester-role { font-size: 0.87rem; color: var(--muted); margin-top: 2px; }
.v6-certs { display: flex; flex-wrap: wrap; gap: 6px; }
.v6-cert {
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 3px 8px;
  white-space: nowrap;
}
.v6-cert.verified { color: var(--green-dark); background: var(--green-soft); border-color: color-mix(in srgb, var(--green) 32%, transparent); }

.v6-roster-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  padding: 20px 22px;
  background: var(--surface-soft);
}
.v6-roster-summary div { min-width: 0; }
.v6-roster-summary b {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.05;
}
.v6-roster-summary span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 760px) {
  .v6-tester { grid-template-columns: 44px minmax(0, 1fr); gap: 14px; padding: 16px 18px; }
  .v6-certs { grid-column: 1 / -1; }
  .v6-roster-summary { gap: 18px 28px; padding: 18px; }
  .v6-roster-summary b { font-size: 1.45rem; }
}
