:root {
  --ink: #0d1d1a;
  --muted: #4b615c;
  --paper: #f6f8f2;
  --paper-2: #fffdf7;
  --paper-3: #e7f1ec;
  --paper-warm: #fff5e8;
  --paper-panel: rgb(255 253 247 / 96%);
  --paper-panel-soft: rgb(255 253 247 / 94%);
  --line: #aac4ba;
  --line-soft: rgb(13 29 26 / 14%);
  --line-inverse: rgb(255 255 255 / 24%);
  --teal: #0b4f43;
  --teal-dark: #06372f;
  --mint: #5eaf83;
  --blue: #173f5f;
  --blue-dark: #0b263a;
  --amber: #bd741e;
  --amber-ink: #704313;
  --red: #9f312d;
  --teal-soft: #dceee8;
  --green-soft: #e0f0e8;
  --blue-soft: #e4eef6;
  --amber-soft: #f6e3c8;
  --red-soft: #f2d8d6;
  --on-dark: #f7fbf7;
  --on-dark-soft: #eaf7f1;
  --on-dark-accent: #86d3ad;
  --on-dark-muted: rgb(232 242 238 / 78%);
  --shadow: 0 28px 80px rgb(8 38 34 / 20%);
  --shadow-strong: 0 36px 100px rgb(5 18 16 / 34%);
  --record-shadow: 0 18px 42px rgb(8 38 34 / 10%);
  --lift-shadow: 0 20px 48px rgb(8 38 34 / 14%);
  --control-shadow: 0 10px 24px rgb(8 38 34 / 10%);
  --authority-glow: 0 0 0 1px rgb(199 125 36 / 18%), 0 36px 100px rgb(5 18 16 / 42%);
  --page-progress: 0;
  --hero-tilt-x: 0px;
  --hero-tilt-y: 0px;
  --radius: 8px;
  --control-radius: 5px;
  --chrome-radius: 6px;
  --max: 1180px;
  --page-gutter: 32px;
  --page-gutter-mobile: 24px;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --text-xs: 0.8125rem;
  --text-sm: 0.875rem;
  --text-md: 0.9375rem;
  --text-body: 1rem;
  --text-lede: 1.1875rem;
  --text-card-title: 1.25rem;
  --text-subhead: 1.5rem;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-control:
    transform 150ms var(--ease-out-quart),
    background 180ms var(--ease-out-quart),
    border-color 180ms var(--ease-out-quart),
    color 180ms var(--ease-out-quart),
    box-shadow 180ms var(--ease-out-quart);
  --transition-surface:
    transform 190ms var(--ease-out-quart),
    box-shadow 190ms var(--ease-out-quart),
    border-color 190ms var(--ease-out-quart);
  --font-body: "Source Sans 3", Aptos, "Segoe UI", Arial, sans-serif;
  --font-heading: "Source Serif 4", Georgia, serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

@keyframes fieldReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes registrySettle {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes resultIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgb(94 175 131 / 18%);
  }

  50% {
    box-shadow: 0 0 0 9px rgb(94 175 131 / 8%);
  }
}

@keyframes registrySweep {
  0% {
    transform: translateY(-130%);
    opacity: 0;
  }

  18%,
  68% {
    opacity: 1;
  }

  100% {
    transform: translateY(130%);
    opacity: 0;
  }
}

@keyframes sealIssue {
  0% {
    transform: scale(0.96) rotate(-2deg);
    filter: drop-shadow(0 0 0 rgb(189 116 30 / 0));
  }

  100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 14px 22px rgb(8 38 34 / 18%));
  }
}

body {
  margin: 0;
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  background:
    linear-gradient(90deg, rgb(11 79 67 / 10%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(189 116 30 / 8%) 1px, transparent 1px),
    var(--paper);
  background-size: 64px 64px;
  color: var(--ink);
  font-family: var(--font-body);
  font-kerning: normal;
  font-optical-sizing: auto;
  font-size: 1.125rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

.authority-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 4px;
  background: rgb(5 31 27 / 18%);
  pointer-events: none;
}

.authority-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--blue));
  box-shadow: 0 0 18px rgb(199 125 36 / 38%);
  transform: scaleX(var(--page-progress));
  transform-origin: left center;
}

img {
  display: block;
  max-width: 100%;
  color: var(--muted);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  background: var(--ink);
  color: var(--paper-2);
  border-radius: var(--chrome-radius);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(250 252 247 / 94%);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-dark), var(--amber), var(--blue-dark));
}

.header-inner {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 44px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 800;
}

.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.1;
  text-decoration: none;
  transition: color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal-dark);
}

@media (hover: hover) {
  .nav a:hover {
    transform: translateY(-1px);
  }
}

.nav-toggle {
  display: none;
  width: 44px;
  min-width: 44px;
  flex: 0 0 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--chrome-radius);
  background: var(--paper-2);
  padding: 10px;
  transition: border-color 180ms var(--ease-out-quart), background 180ms var(--ease-out-quart), transform 140ms var(--ease-out-quart);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--teal-dark);
  background: var(--teal-soft);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
  transition: transform 180ms var(--ease-out-quart), opacity 180ms var(--ease-out-quart);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-42deg);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: var(--on-dark);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(255 255 255 / 7%) 1px, transparent 1px),
    linear-gradient(116deg, #051f1b 0%, #073c33 48%, #092b42 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgb(255 255 255 / 9%) 0 1px, transparent 1px 100%),
    linear-gradient(70deg, transparent 0 62%, rgb(255 255 255 / 7%) 62% 63%, transparent 63%);
  background-size: 260px 260px, 100% 100%;
  mask-image: linear-gradient(90deg, rgb(5 18 16), transparent 78%);
  pointer-events: none;
}

.hero::after {
  content: "GTF";
  position: absolute;
  right: clamp(-26px, 3vw, 44px);
  bottom: -34px;
  color: transparent;
  font-family: var(--font-heading);
  font-size: clamp(150px, 24vw, 330px);
  font-weight: 800;
  line-height: 0.8;
  -webkit-text-stroke: 1px rgb(255 255 255 / 11%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - var(--page-gutter)));
  min-height: calc(100vh - 126px);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 74px) 0 clamp(36px, 5vw, 66px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  transform: translate3d(var(--hero-tilt-x), var(--hero-tilt-y), 0);
  transition: transform 260ms var(--ease-out-quart);
}

.hero-copy > .eyebrow,
.hero-copy h1,
.authority-ribbon,
.hero-lede,
.hero-actions,
.proof-strip {
  animation: fieldReveal 620ms var(--ease-out-expo) both;
}

.hero-copy h1 {
  animation-delay: 70ms;
}

.authority-ribbon {
  animation-delay: 130ms;
}

.hero-lede {
  animation-delay: 190ms;
}

.hero-actions {
  animation-delay: 250ms;
}

.proof-strip {
  animation-delay: 310ms;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 6.3vw, 5.25rem);
  line-height: 0.96;
}

h2 {
  max-width: 20ch;
  font-size: clamp(2.125rem, 4.8vw, 3.875rem);
  line-height: 1;
}

h3 {
  font-size: var(--text-subhead);
  line-height: 1.12;
}

p {
  overflow-wrap: anywhere;
  text-wrap: pretty;
}

.hero-lede {
  max-width: 58ch;
  margin: 25px 0 0;
  color: var(--on-dark-muted);
  font-size: clamp(1.125rem, 1.7vw, 1.3125rem);
  line-height: 1.62;
}

.hero .eyebrow {
  color: var(--on-dark-accent);
}

.authority-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 680px;
  margin-top: 26px;
}

.authority-ribbon span {
  border: 1px solid rgb(245 199 132 / 28%);
  border-radius: 4px;
  background: rgb(255 253 247 / 8%);
  color: var(--on-dark-soft);
  padding: 7px 11px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    var(--transition-control),
    opacity 180ms var(--ease-out-quart);
}

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

@media (hover: hover) {
  .button:hover,
  .text-control:hover,
  .chip:hover {
    box-shadow: var(--control-shadow);
  }

  .text-control:hover,
  .chip:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    transform: translateY(-1px);
  }
}

.button:active,
.text-control:active,
.chip:active {
  transform: translateY(0) scale(0.985);
}

.button:disabled {
  opacity: 0.76;
  cursor: wait;
}

.button.feedback-active {
  box-shadow: 0 0 0 4px rgb(189 116 30 / 18%);
}

.button:focus-visible,
.chip:focus-visible,
.text-control:focus-visible,
input:focus-visible {
  outline: 3px solid rgb(199 125 36 / 38%);
  outline-offset: 2px;
}

.button.primary {
  background: var(--teal-dark);
  color: var(--paper-2);
}

.hero .button.primary {
  background: var(--on-dark);
  color: var(--teal-dark);
}

.button.secondary {
  border-color: var(--teal-dark);
  background: transparent;
  color: var(--teal-dark);
}

.hero .button.secondary {
  border-color: rgb(255 255 255 / 48%);
  color: var(--on-dark);
}

.button.compact {
  background: var(--ink);
  color: var(--paper-2);
  white-space: nowrap;
}

.proof-strip {
  max-width: 640px;
  margin: 42px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-strip div {
  border-top: 1px solid rgb(255 255 255 / 28%);
  padding-top: 12px;
}

.proof-strip dt {
  color: var(--on-dark);
  font-size: var(--text-body);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip dd {
  margin: 0;
  color: var(--on-dark-muted);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.registry-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(11 79 67 / 5%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(189 116 30 / 4%) 1px, transparent 1px),
    var(--paper-2);
  background-size: 28px 28px;
  border: 1px solid rgb(184 203 195 / 90%);
  border-radius: var(--radius);
  box-shadow: var(--authority-glow);
  color: var(--ink);
  padding: clamp(18px, 3vw, 28px);
  animation: registrySettle 720ms var(--ease-out-expo) 160ms both;
}

.registry-panel::before {
  content: "";
  display: block;
  height: 5px;
  margin: calc(clamp(18px, 3vw, 28px) * -1) calc(clamp(18px, 3vw, 28px) * -1) 22px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--teal-dark), var(--amber), var(--blue-dark));
}

.registry-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, transparent 0 42%, rgb(94 175 131 / 13%) 48%, rgb(199 125 36 / 18%) 50%, transparent 58%),
    radial-gradient(circle at 82% 8%, rgb(199 125 36 / 16%), transparent 24%);
  mix-blend-mode: multiply;
  pointer-events: none;
  animation: registrySweep 5400ms var(--ease-out-quart) 900ms infinite;
}

.registry-panel > * {
  position: relative;
  z-index: 1;
}

.registry-lockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.registry-lockup img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  animation: sealIssue 520ms var(--ease-out-expo) 440ms both;
}

.panel-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgb(94 175 131 / 18%);
  animation: statusPulse 2600ms var(--ease-out-quart) infinite;
}

.registry-controls {
  margin-top: 22px;
}

.registry-controls label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--text-md);
  font-weight: 800;
}

input[type="search"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--paper-2);
  padding: 14px;
  color: var(--ink);
}

.input-hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.35;
}

.registry-toolrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.text-control {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--paper-2);
  color: var(--teal-dark);
  padding: 9px 12px;
  font-size: var(--text-sm);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-control);
}

.text-control[aria-expanded="true"] {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--paper-2);
}

.muted-control {
  color: var(--amber-ink);
}

.help-link {
  margin-left: auto;
}

.registry-filters {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.registry-filters:not([hidden]) {
  animation: panelIn 220ms var(--ease-out-quart) both;
}

.filter-hint {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 800;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.filter-row + .filter-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chip {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--control-radius);
  background: var(--paper-2);
  color: var(--muted);
  padding: 6px 10px;
  font-size: var(--text-sm);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-control);
}

.chip.active {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: var(--paper-2);
}

.chip.active:hover {
  color: var(--paper-2);
}

.registry-summary {
  margin: 18px 0 10px;
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 800;
}

.trainer-results {
  display: grid;
  gap: 12px;
}

.trainer-card,
.empty-state,
.split-grid article,
.process-grid article,
.apply-grid article,
.governance-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-panel);
  box-shadow: var(--record-shadow);
}

.trainer-card,
.empty-state {
  position: relative;
  padding: 14px;
  animation: resultIn 260ms var(--ease-out-quart) both;
}

.trainer-card::before,
.empty-state::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--amber));
}

.trainer-card::after {
  content: "Verified record";
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: rgb(11 79 67 / 18%);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: rotate(-1deg);
  pointer-events: none;
}

.trainer-card,
.split-grid article,
.process-grid article,
.apply-grid article,
.governance-grid article,
.standards-help details,
.rfp-box {
  transition: var(--transition-surface);
}

@media (hover: hover) {
  .trainer-card:hover,
  .split-grid article:hover,
  .apply-grid article:hover,
  .governance-grid article:hover,
  .standards-help details:hover,
  .rfp-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--lift-shadow);
  }
}

.trainer-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.trainer-card header > div:first-child {
  min-width: 0;
}

.registry-tier {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  gap: 7px;
}

.registry-badge-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.record-id {
  display: block;
  color: var(--amber-ink);
  font-size: var(--text-xs);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.trainer-card h3,
.empty-state h3 {
  margin-top: 3px;
  font-size: var(--text-card-title);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.trainer-card p,
.empty-state p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: var(--text-md);
}

.trainer-status,
.trainer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trainer-status {
  margin-top: 12px;
  align-items: center;
}

.program-line {
  font-size: var(--text-md);
  overflow-wrap: anywhere;
}

.badge,
.trainer-status span,
.trainer-meta span {
  border-radius: 999px;
  padding: 4px 9px;
  font-size: var(--text-xs);
  font-weight: 800;
}

.badge.tier {
  background: var(--blue-soft);
  color: var(--blue);
}

.badge.active {
  background: var(--green-soft);
  color: var(--teal);
}

.badge.review {
  background: var(--amber-soft);
  color: var(--amber-ink);
}

.badge.danger {
  background: var(--red-soft);
  color: var(--red);
}

.trainer-status span:not(.badge),
.trainer-meta span {
  border: 1px solid var(--line);
  color: var(--muted);
}

.registry-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.section {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: clamp(var(--space-2xl), 8vw, 118px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-heading.compact {
  display: block;
  max-width: 820px;
}

.section-heading.narrow {
  display: block;
  max-width: 900px;
}

.section-heading p:not(.eyebrow) {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: var(--text-lede);
  line-height: 1.58;
}

.trust-band {
  padding-top: clamp(82px, 9vw, 132px);
  padding-bottom: clamp(82px, 9vw, 128px);
  border-bottom: 1px solid var(--line);
}

.split-grid,
.governance-grid,
.process-grid,
.apply-grid {
  display: grid;
  gap: 14px;
}

.split-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.16fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: clamp(14px, 2vw, 22px);
}

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

.split-grid article,
.governance-grid article,
.apply-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.split-grid article:nth-child(2) {
  transform: translateY(-14px);
}

.split-grid article {
  border-top: 5px solid var(--teal);
  background: linear-gradient(180deg, var(--teal-soft), rgb(255 253 247 / 96%));
}

.split-grid article:nth-child(2) {
  border-top-color: var(--amber);
  background:
    linear-gradient(180deg, rgb(246 227 200 / 78%), rgb(255 253 247 / 96%));
}

.split-grid article:nth-child(3) {
  border-top-color: var(--red);
  background: linear-gradient(180deg, rgb(242 216 214 / 62%), rgb(255 253 247 / 96%));
}

.section-badge {
  width: 94px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 18px;
}

.section-badge.round {
  width: 74px;
  height: 74px;
}

.mini-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.mini-badge-row img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.split-grid p,
.governance-grid p,
.process-grid p,
.apply-grid p,
.apply-grid li,
.endorsement-rules li,
.hire-copy p,
.community-inner p {
  color: var(--muted);
}

.evidence {
  padding-top: clamp(70px, 7vw, 106px);
  padding-bottom: clamp(84px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
}

.evidence-ladder {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 6px solid var(--amber);
  background: var(--paper-2);
  box-shadow: var(--record-shadow);
  counter-reset: evidence-step;
}

.evidence-ladder article {
  counter-increment: evidence-step;
  min-width: 0;
  padding: clamp(20px, 2vw, 28px);
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgb(255 253 247 / 0), rgb(220 238 232 / 18%)),
    var(--paper-panel);
}

.evidence-ladder article::before {
  content: counter(evidence-step, decimal-leading-zero);
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgb(189 116 30 / 34%);
  border-radius: 50%;
  color: var(--amber-ink);
  font-size: var(--text-sm);
  font-weight: 900;
  line-height: 42px;
  text-align: center;
  box-shadow: inset 0 0 0 4px rgb(246 227 200 / 46%);
}

.evidence-ladder article:last-child {
  border-right: 0;
}

.evidence-ladder span,
.process-grid span {
  color: var(--amber-ink);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-ladder h3,
.process-grid h3,
.apply-grid h3,
.governance-grid h3 {
  margin-top: 12px;
}

.evidence-ladder p {
  color: var(--muted);
}

.standards-help {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  background: rgb(255 253 247 / 94%);
  box-shadow: var(--record-shadow);
  margin-top: clamp(22px, 3vw, 34px);
}

.standards-help details {
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 18px clamp(18px, 3vw, 28px);
}

.standards-help details:first-child {
  border-top: 0;
}

.standards-help summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms var(--ease-out-quart);
}

.standards-help p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.55;
}

.standards-help details[open] {
  border-color: rgb(11 79 67 / 48%);
}

.standards-help details[open] summary {
  color: var(--blue-dark);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-top: 5px solid var(--amber);
  background: var(--paper-2);
  box-shadow: var(--record-shadow);
}

.process-grid article {
  position: relative;
  min-width: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 26px;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 68px;
  right: 22px;
  height: 1px;
  background: rgb(112 67 19 / 24%);
}

.tier-table {
  margin-top: clamp(34px, 5vw, 54px);
  border: 1px solid var(--line);
  border-top: 6px solid var(--teal-dark);
  background:
    linear-gradient(90deg, rgb(11 79 67 / 4%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(189 116 30 / 4%) 1px, transparent 1px),
    var(--paper-2);
  background-size: 34px 34px;
  box-shadow: 0 24px 64px rgb(8 38 34 / 16%);
  font-variant-numeric: tabular-nums;
}

.tier-row {
  display: grid;
  grid-template-columns: 0.72fr 1.12fr 1.24fr 1fr;
  border-top: 1px solid var(--line);
}

.tier-row:first-child {
  border-top: 0;
}

.tier-row > div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.tier-row > div:last-child {
  border-right: 0;
}

.tier-head {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px),
    linear-gradient(90deg, var(--teal-dark), var(--blue-dark));
  background-size: 34px 34px, auto;
  color: var(--paper-2);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier-row strong {
  display: block;
  font-size: var(--text-card-title);
  line-height: 1.12;
}

.tier-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 12px;
}

.tier-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 800;
}

.tier-row.emphasis {
  background: linear-gradient(90deg, rgb(228 238 246 / 94%), var(--paper-2));
  box-shadow: inset 6px 0 0 var(--amber);
}

.governance-grid article:nth-child(1) {
  border-color: rgb(11 79 67 / 30%);
  background: linear-gradient(180deg, var(--teal-soft), rgb(255 253 247 / 96%));
}

.governance-grid article:nth-child(2) {
  border-color: rgb(189 116 30 / 34%);
  background: linear-gradient(180deg, var(--amber-soft), rgb(255 253 247 / 96%));
}

.governance-grid article:nth-child(3) {
  border-color: rgb(23 63 95 / 28%);
  background: linear-gradient(180deg, var(--blue-soft), rgb(255 253 247 / 96%));
}

.governance-grid {
  margin-top: clamp(16px, 2vw, 24px);
  gap: clamp(14px, 2vw, 22px);
}

.standard-heading-mark {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
}

.standard-heading-mark img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgb(8 38 34 / 16%));
  animation: sealIssue 560ms var(--ease-out-expo) both;
}

.hire-band {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 6%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(255 255 255 / 6%) 1px, transparent 1px),
    radial-gradient(circle at 12% 30%, rgb(94 175 131 / 14%), transparent 28%),
    linear-gradient(135deg, var(--blue-dark), #102f45 58%, var(--teal-dark));
  background-size: 56px 56px, 56px 56px, 100% 100%, auto;
  color: var(--paper-2);
}

.hire-inner {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: clamp(84px, 10vw, 144px) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.hire-media {
  min-height: 520px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 80px rgb(5 18 16 / 28%);
}

.hire-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}

.hire-copy .eyebrow,
.hire-copy p {
  color: var(--on-dark-soft);
}

.buyer-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.buyer-checklist span {
  border: 1px solid var(--line-inverse);
  border-radius: var(--control-radius);
  padding: 9px 12px;
  color: var(--on-dark);
  font-weight: 800;
}

.credential-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.credential-strip img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 999px;
  background: rgb(255 255 255 / 90%);
  padding: 5px;
}

.rfp-box {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: var(--radius);
  border-top: 5px solid var(--amber);
  background: linear-gradient(180deg, var(--paper-warm), var(--paper-2));
  color: var(--ink);
  padding: 18px;
}

.rfp-box span {
  color: var(--teal-dark);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rfp-box p {
  max-width: 68ch;
  margin: 8px 0 0;
  color: var(--ink);
  line-height: 1.52;
}

.badge-callout {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.badge-callout img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.badge-callout p {
  max-width: 64ch;
  margin: 0;
}

.endorsement-rules {
  margin-top: clamp(18px, 3vw, 30px);
  border-top: 5px solid var(--amber);
  background: var(--paper-warm);
  padding: clamp(22px, 3vw, 32px);
}

.endorsement-rules ul,
.apply-grid ul {
  padding-left: 20px;
  margin: 14px 0 0;
}

.endorsement-rules li + li,
.apply-grid li + li {
  margin-top: 7px;
}

.apply {
  padding-top: clamp(86px, 9vw, 132px);
  padding-bottom: clamp(90px, 10vw, 144px);
  border-top: 1px solid var(--line);
}

.apply-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  grid-template-areas:
    "trainer program"
    "trainer system";
  gap: clamp(16px, 2.4vw, 28px);
}

.apply-grid article:nth-child(1) {
  grid-area: trainer;
  border-top: 5px solid var(--teal);
  background: linear-gradient(180deg, var(--teal-soft), rgb(255 253 247 / 96%));
  padding: clamp(28px, 3vw, 38px);
}

.apply-grid article:nth-child(2) {
  grid-area: program;
  border-top: 5px solid var(--red);
  background: linear-gradient(180deg, rgb(242 216 214 / 58%), rgb(255 253 247 / 96%));
}

.apply-grid article:nth-child(3) {
  grid-area: system;
  border-top: 5px solid var(--blue);
  background: linear-gradient(180deg, var(--blue-soft), rgb(255 253 247 / 96%));
}

.apply-grid article {
  display: flex;
  flex-direction: column;
}

.apply-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.apply-grid article > a,
.link-stack {
  margin-top: auto;
}

.link-stack {
  display: grid;
  gap: 8px;
}

.link-stack a {
  padding-top: 0;
}

.community {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 6%) 1px, transparent 1px),
    linear-gradient(180deg, rgb(255 255 255 / 6%) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgb(189 116 30 / 14%), transparent 24%),
    linear-gradient(135deg, #052a24, var(--teal-dark));
  background-size: 56px 56px, 56px 56px, 100% 100%, auto;
  color: var(--paper-2);
}

.community-inner {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.community-inner .eyebrow,
.community-inner p {
  color: var(--on-dark-soft);
}

.community-badge {
  width: 132px;
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 14px 24px rgb(5 18 16 / 18%));
}

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

.community-list span {
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: var(--control-radius);
  padding: 10px 12px;
  color: var(--on-dark);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  width: min(var(--max), calc(100% - var(--page-gutter)));
  margin: 0 auto;
  padding: 42px 0 58px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 78px;
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  font-weight: 800;
}

.site-footer nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper-2);
    box-shadow: var(--shadow);
    padding: 8px;
  }

  .nav.open {
    display: flex;
    animation: menuIn 180ms var(--ease-out-quart) both;
  }

  .nav a {
    min-height: 48px;
    padding: 12px;
  }

  .hero-inner,
  .section-heading,
  .hire-inner,
  .community-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

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

  .standards-help {
    grid-template-columns: 1fr;
  }

  .evidence-ladder article {
    border-bottom: 1px solid var(--line);
  }

  .tier-row {
    grid-template-columns: 1fr 1fr;
  }

  .tier-head {
    display: none;
  }

  .split-grid,
  .governance-grid,
  .process-grid,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .split-grid article:nth-child(2) {
    transform: none;
  }

  .apply-grid {
    grid-template-areas:
      "trainer"
      "program"
      "system";
  }

  .process-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process-grid article::before {
    display: none;
  }
}

@supports (animation-timeline: view()) {
  .dossier-section {
    animation: dossierFocus both linear;
    animation-timeline: view();
    animation-range: entry 10% cover 32%;
  }

  @keyframes dossierFocus {
    from {
      filter: saturate(0.94);
    }

    to {
      filter: saturate(1.04);
    }
  }
}

@media (min-width: 681px) and (max-width: 1080px) {
  .hero-inner {
    padding-top: clamp(46px, 7vw, 74px);
    padding-bottom: clamp(52px, 8vw, 86px);
  }

  .registry-panel {
    max-width: 760px;
  }

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

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

  .governance-grid article:last-child {
    grid-column: 1 / -1;
  }

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

  .tier-row {
    grid-template-columns: 0.84fr 1.16fr;
  }

  .buyer-checklist,
  .community-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hire-media,
  .hire-media img {
    min-height: 380px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 1.0625rem;
  }

  .header-inner,
  .hero-inner,
  .section,
  .hire-inner,
  .community-inner,
  .site-footer {
    width: min(100% - var(--page-gutter-mobile), var(--max));
  }

  .hero-inner {
    padding-top: clamp(30px, 9vw, 44px);
    padding-bottom: clamp(34px, 10vw, 48px);
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    max-width: 190px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 12.5vw, 3.5rem);
    line-height: 0.98;
  }

  h2 {
    max-width: 16ch;
    font-size: clamp(2rem, 9.3vw, 2.875rem);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: clamp(1.0625rem, 4.6vw, 1.25rem);
    line-height: 1.62;
  }

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

  .registry-toolrow > * {
    flex: 1 1 100%;
  }

  .help-link {
    margin-left: 0;
  }

  .proof-strip,
  .filter-row,
  .filter-row + .filter-row,
  .evidence-ladder,
  .tier-row,
  .buyer-checklist,
  .community-list {
    grid-template-columns: 1fr;
  }

  .registry-panel {
    padding: 16px;
  }

  .trainer-card header,
  .rfp-box,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .registry-tier {
    justify-items: start;
  }

  .badge-callout {
    grid-template-columns: 1fr;
  }

  .standard-heading-mark {
    grid-template-columns: 1fr;
  }

  .standard-heading-mark img {
    width: 94px;
    height: 94px;
  }

  .badge-callout img {
    width: 74px;
    height: 74px;
  }

  .tier-row > div,
  .evidence-ladder article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tier-row > div:last-child,
  .evidence-ladder article:last-child {
    border-bottom: 0;
  }

  .hire-media,
  .hire-media img {
    min-height: 300px;
  }

  .section,
  .trust-band,
  .evidence,
  .apply {
    padding-top: clamp(58px, 16vw, 74px);
    padding-bottom: clamp(62px, 17vw, 82px);
  }
}

@media (max-width: 760px) and (orientation: landscape) {
  .header-inner {
    min-height: 58px;
  }

  .nav {
    top: 62px;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }

  .hero-inner {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.25rem, 7.2vw, 3.25rem);
  }
}

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

  .authority-progress,
  .registry-panel::after {
    display: none;
  }

  .hero-inner {
    transform: none !important;
  }
}
