.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--crumb-color, var(--muted));
  margin-bottom: var(--crumb-margin-bottom, 24px);
}

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

.crumb a:hover,
.crumb a:focus-visible {
  color: var(--crumb-hover, var(--acid-ink));
}

.crumb .sep {
  opacity: var(--crumb-sep-opacity, 0.45);
}

.page-hero h1 .italic {
  font-family: Newsreader, serif;
  font-style: italic;
  font-weight: 400;
}

.related-links {
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}

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

.related-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
}

.related-card:hover,
.related-card:focus-visible {
  background: var(--paper-2);
}

.related-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.related-card span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: #444;
}

html {
  overflow-x: hidden;
}

.page-body {
  overflow-x: clip;
}

html body .skip-link {
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

html body .skip-link:focus {
  left: 16px;
  top: 12px;
  transform: translateY(0);
}

html body .crumb {
  flex-wrap: wrap;
}

html body .page-body .cta-row {
  align-items: stretch;
}

html body .page-body .cta-row > a,
html body .page-body .cta-row > .btn {
  min-width: 0;
}

@media (max-width: 900px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  html body .page-hero {
    padding: 56px 0 24px;
  }

  html body .page-hero h1 {
    font-size: clamp(34px, 12vw, 58px);
    line-height: 0.94;
    margin-bottom: 16px;
  }

  html body .page-hero .lede {
    font-size: 17px;
    line-height: 1.5;
    max-width: 100%;
  }

  html body .page-body > section:first-child {
    padding-top: 40px;
  }

  html body .crumb {
    gap: 6px;
    margin-bottom: 18px;
  }

  html body .page-body .cta-row {
    flex-direction: column;
  }

  html body .page-body .cta-row > a,
  html body .page-body .cta-row > .btn {
    width: 100%;
    justify-content: center;
  }

  html body .cta-band {
    padding: 72px 0;
  }

  html body .cta-band::before,
  html body .cta-band::after {
    display: none;
  }

  html body .cta-band h2 {
    font-size: clamp(32px, 11vw, 48px);
    line-height: 0.96;
  }

  html body .manifesto {
    padding-top: 96px !important;
  }

  html body .manifesto-inner {
    padding: 28px 24px;
  }

  html body .manifesto h1,
  html body .manifesto h2 {
    margin-bottom: 28px;
  }

  html body .manifesto p {
    font-size: 18px;
  }

  html body .manifesto .eyebrow {
    margin-bottom: 24px;
  }

  html body .manifesto .signoff {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  html body .team-card,
  html body .board-card,
  html body .subproc {
    padding: 22px 20px;
  }

  html body .team-card {
    min-height: 0;
  }

  html body .team-name,
  html body .board-name,
  html body .subproc-name {
    font-size: 17px;
  }

  html body .subproc-name {
    align-items: flex-start;
    gap: 8px;
  }

  html body .manifesto-next-links {
    flex-direction: column;
    align-items: stretch;
  }

  html body .manifesto-next-links > a {
    width: 100%;
    justify-content: center;
  }

  html body .hero-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  html body .hero-metric-grid > div > div:first-child {
    font-size: clamp(34px, 11vw, 42px) !important;
  }

  html body .security-pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  html body .security-docs-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 900px) {
  html body .manifesto {
    padding-top: 112px !important;
  }
}

@media (max-width: 520px) {
  html body .hero-metric-grid {
    grid-template-columns: 1fr !important;
  }

  html body .manifesto-inner {
    padding: 24px 18px;
  }
}