:root {
  --ink: #061a3a;
  --blue: #0057b8;
  --electric: #0877dc;
  --ice: #e8f2fa;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: #b9c8d6;
  --muted: #536679;
  --verify: #087a3b;
  --human: #f2ed62;
  --display: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--human);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

.global-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  height: var(--header-height);
  padding: 0 28px 0 34px;
  border-bottom: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.97);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-copy b {
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand-copy b span {
  font-weight: 600;
}

.brand-copy small {
  color: var(--ink);
  font-family: var(--body);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.header-case {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-case span {
  margin-left: 7px;
  color: var(--blue);
}

.navigation {
  display: flex;
  align-items: center;
  height: 100%;
}

.navigation a {
  display: grid;
  place-items: center;
  height: 100%;
  min-width: 106px;
  padding: 0 16px;
  border-left: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 120ms linear, background 120ms linear;
}

.navigation a:hover {
  color: var(--white);
  background: var(--blue);
}

.navigation .nav-download {
  grid-auto-flow: column;
  gap: 20px;
  color: var(--white);
  background: var(--ink);
}

.menu-button {
  display: none;
}

.case-rail {
  position: fixed;
  inset: var(--header-height) auto 0 0;
  z-index: 20;
  display: flex;
  width: 34px;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding-block: 25px;
  border-right: 1px solid var(--ink);
  background: var(--white);
  writing-mode: vertical-rl;
}

.case-rail span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.2em;
}

.case-rail span:first-child {
  color: var(--blue);
  font-weight: 800;
}

.case-rail i {
  flex: 1;
  width: 1px;
  background: var(--line);
}

main,
.site-footer {
  margin-left: 34px;
}

.hero {
  padding-top: var(--header-height);
  border-bottom: 1px solid var(--ink);
  background-color: var(--white);
  background-image:
    linear-gradient(to right, rgba(6, 26, 58, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 26, 58, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-grid {
  display: grid;
  grid-template-columns: 18% minmax(0, 1fr) 18%;
  width: min(1320px, calc(100% - 72px));
  margin-inline: auto;
}

.hero-copy {
  min-height: 640px;
  align-items: center;
  padding-block: 74px 64px;
}

.hero-label,
.section-index {
  align-self: start;
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-label span,
.hero-label b,
.section-index span,
.section-index b {
  display: block;
}

.hero-label span,
.section-index span {
  color: var(--blue);
  font-weight: 800;
}

.hero-label b,
.section-index b {
  color: var(--muted);
  font-weight: 500;
}

.hero-message {
  padding-inline: 28px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
}

h1 {
  max-width: 860px;
  font-size: clamp(72px, 9vw, 142px);
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
}

h1 span {
  color: var(--blue);
}

.hero-message > p {
  max-width: 680px;
  margin: 50px 0 0;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.action-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 305px;
  min-height: 55px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.action-link:hover {
  background: var(--blue);
}

.quiet-link {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.hero-side-note {
  align-self: end;
  display: grid;
  padding-bottom: 11px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-side-note span {
  padding: 9px 0;
  border-top: 1px solid var(--line);
}

.hero-side-note span:last-child {
  color: var(--verify);
  font-weight: 800;
}

.lens-wrap {
  width: min(1320px, calc(100% - 72px));
  margin: 0 auto 60px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.lens-header,
.lens-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lens-header {
  border-bottom: 1px solid var(--ink);
}

.lens-header p {
  margin: 0;
}

.lens-header p:first-child span {
  margin-right: 16px;
  color: var(--blue);
  font-weight: 800;
}

.lens-readout {
  color: var(--verify);
}

.archive-lens {
  position: relative;
  height: 490px;
  overflow: hidden;
  background: #eef1f3;
  cursor: ew-resize;
}

.raw-field,
.resolved-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.compact-lens-legend {
  display: none;
}

.raw-field {
  z-index: 2;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% 100%, var(--cut) 100%);
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(6, 26, 58, 0.035) 23px 24px),
    #e6e9eb;
}

.field-caption {
  position: absolute;
  top: 13px;
  z-index: 3;
  display: grid;
  gap: 2px;
  width: min(390px, calc(100% - 38px));
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-caption span {
  color: var(--blue);
  font-size: 7px;
  font-weight: 800;
}

.field-caption strong {
  color: var(--ink);
  font-size: 10px;
  line-height: 1.15;
}

.field-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.25;
  text-transform: none;
}

.raw-caption {
  right: 19px;
  text-align: right;
}

.resolved-caption {
  left: 19px;
}

.file-slip {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 260px;
  min-height: 85px;
  padding: 17px;
  border: 1px solid #85929c;
  background: #fff;
  box-shadow: 6px 7px 0 rgba(6, 26, 58, 0.08);
  transform: rotate(var(--turn));
}

.file-slip::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 13px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.file-slip b {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-slip span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.file-a { top: 78px; left: 7%; --turn: -4deg; }
.file-b { top: 220px; left: 16%; --turn: 2.5deg; }
.file-c { bottom: 43px; left: 2%; --turn: -1.5deg; }
.file-d { top: 63px; left: 37%; --turn: 1deg; }
.file-e { bottom: 58px; left: 44%; --turn: -3deg; }
.file-f { top: 190px; left: 57%; --turn: 4deg; }

.raw-noise {
  position: absolute;
  right: 25px;
  bottom: 17px;
  color: rgba(6, 26, 58, 0.2);
  font-family: var(--mono);
  font-size: 10px;
}

.resolved-field {
  z-index: 1;
  padding: 58px 5% 28px;
  color: var(--ink);
  background-color: var(--ice);
  background-image:
    linear-gradient(to right, rgba(0, 87, 184, 0.075) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 87, 184, 0.075) 1px, transparent 1px);
  background-size: 32px 32px;
}

.dossier-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--ink);
}

.dossier-head span,
.dossier-head em {
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dossier-head span {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
}

.dossier-head b {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}

.dossier-head em {
  padding: 5px 8px;
  color: var(--white);
  background: var(--blue);
}

.metadata-key {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metadata-key span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.metadata-key span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72869a;
  content: "";
}

.metadata-key span[data-kind="extract"]::before {
  background: var(--blue);
}

.metadata-key span[data-kind="human"]::before {
  background: #c5b700;
}

.object-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.object-cards::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: -15px;
  left: 7%;
  height: 1px;
  background: var(--blue);
}

.object-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  min-width: 0;
  min-height: 296px;
  padding: 11px 13px 9px;
  border: 1px solid #71869b;
  background: rgba(255, 255, 255, 0.88);
}

.object-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ice);
  background: var(--blue);
  transform: translateX(-50%) rotate(45deg);
}

.card-top,
.object-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-top span {
  color: var(--blue);
  font-weight: 800;
}

.card-top em {
  padding: 3px 5px;
  border: 1px solid #87a4be;
  color: var(--verify);
  font-style: normal;
}

.document-file {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  padding: 6px;
  border: 1px solid #a8bac8;
  background: #f1f6f9;
}

.document-file > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 800;
}

.document-file div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.document-file small {
  color: var(--verify);
  font-family: var(--mono);
  font-size: 5.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.document-file code {
  overflow: hidden;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.object-card h3 {
  min-height: 34px;
  margin: 8px 0 7px;
  font-family: var(--display);
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 0.98;
}

.object-card dl {
  margin: 0;
}

.object-card dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 7px;
  padding: 5px 0;
  border-top: 1px solid #b4c2ce;
}

.object-card dt,
.object-card dd {
  font-size: 9px;
  line-height: 1.2;
}

.object-card dt {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.object-card dd {
  overflow: hidden;
  margin: 0;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.object-card footer {
  margin-top: 7px;
  padding-top: 7px;
  border-top: 1px solid var(--ink);
}

.object-card footer b {
  color: var(--verify);
  font-size: inherit;
}

.dossier-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 23px 0 0;
  color: var(--verify);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dossier-proof b {
  margin-left: auto;
  color: var(--ink);
}

.lens-blade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--cut);
  z-index: 5;
  width: 2px;
  background: var(--blue);
  pointer-events: none;
}

.lens-blade::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  background: rgba(8, 119, 220, 0.08);
}

.lens-blade span {
  position: absolute;
  top: 16px;
  left: 50%;
  padding: 8px 10px;
  color: var(--white);
  background: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.lens-blade i {
  position: absolute;
  bottom: 19px;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 6px solid var(--white);
  outline: 1px solid var(--blue);
  background: var(--blue);
  transform: translateX(-50%) rotate(45deg);
}

.lens-control {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.lens-scale {
  border-top: 1px solid var(--ink);
  color: var(--muted);
}

.lens-scale i {
  flex: 1;
  height: 1px;
  margin-inline: 18px;
  background: linear-gradient(to right, #8795a1 0 49%, var(--blue) 49% 100%);
}

.quality-bar {
  display: grid;
  grid-template-columns: 18% 1fr;
  gap: 24px;
  padding: 22px max(42px, 6vw);
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quality-bar p,
.quality-bar ul {
  margin: 0;
}

.quality-bar p {
  color: #9eb1c5;
}

.quality-bar ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}

.quality-bar li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--human);
}

.case-section {
  display: grid;
  grid-template-columns: 18% minmax(0, 1fr);
  width: min(1260px, calc(100% - 84px));
  margin-inline: auto;
  padding-block: clamp(100px, 11vw, 170px);
}

.section-index {
  padding-right: 32px;
}

.section-body {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

h2 {
  max-width: 1020px;
  font-size: clamp(52px, 6.5vw, 96px);
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-transform: uppercase;
}

.two-column-copy,
.heading-with-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(45px, 8vw, 120px);
  margin-top: 65px;
}

.two-column-copy p,
.heading-with-note p,
.wide-intro {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.two-column-copy .intro-copy,
.wide-intro {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.43;
}

.inventory {
  margin-top: 80px;
  border-top: 2px solid var(--ink);
}

.inventory > div {
  display: grid;
  grid-template-columns: 1fr 1fr 0.65fr;
  gap: 25px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
}

.inventory .inventory-head {
  min-height: 35px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inventory b {
  font-family: var(--display);
  font-size: 20px;
}

.inventory div > span,
.inventory em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.inventory em {
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.human-decision {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 620px;
  border-block: 1px solid var(--ink);
  background: var(--human);
}

.decision-stamp {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 70px 7vw;
  border-right: 1px solid var(--ink);
}

.decision-stamp span,
.utility-label {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-stamp b {
  font-family: var(--display);
  font-size: clamp(50px, 6.3vw, 96px);
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.decision-copy {
  align-self: center;
  max-width: 760px;
  padding: 90px 7vw;
}

.decision-copy h2 {
  margin-top: 30px;
  font-size: clamp(40px, 4.5vw, 70px);
}

.decision-copy > p:last-child {
  max-width: 620px;
  margin: 38px 0 0;
}

.heading-with-note {
  align-items: end;
  margin-top: 0;
}

.heading-with-note h2 {
  font-size: clamp(48px, 5.5vw, 82px);
}

.method-list {
  margin: 85px 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 90px 0.72fr 1.5fr 0.65fr;
  gap: 28px;
  align-items: center;
  min-height: 115px;
  border-bottom: 1px solid var(--line);
}

.method-code,
.method-list i {
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.method-code {
  color: var(--blue);
}

.method-list h3 {
  font-size: 25px;
  text-transform: uppercase;
}

.method-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.method-list i {
  justify-self: end;
  color: var(--verify);
}

.method-list i::before {
  content: "✓";
  margin-right: 8px;
}

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

.wide-intro {
  max-width: 820px;
  margin-top: 50px;
}

.finding-register {
  margin-top: 75px;
  border-top: 2px solid var(--ink);
}

.finding-register > div {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr 0.45fr;
  gap: 35px;
  align-items: center;
  min-height: 85px;
  border-bottom: 1px solid var(--line);
}

.finding-register span {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  text-transform: uppercase;
}

.finding-register p {
  color: var(--muted);
  font-size: 13px;
}

.finding-register b {
  justify-self: end;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.passport-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-block: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
}

.passport-intro,
.passport-schema {
  padding: clamp(80px, 8vw, 130px) clamp(45px, 6vw, 100px);
}

.passport-intro {
  border-right: 1px solid #50617a;
}

.utility-label.light {
  color: #8cd1ff;
}

.passport-intro h2 {
  margin-top: 35px;
  font-size: clamp(45px, 5.5vw, 78px);
}

.passport-intro > p:last-child {
  max-width: 600px;
  margin-top: 42px;
  color: #a8b8ca;
}

.passport-schema {
  align-self: center;
}

.schema-head,
.passport-schema dl div {
  display: grid;
  grid-template-columns: 0.65fr 1.4fr auto;
  gap: 28px;
  align-items: center;
}

.schema-head {
  padding-bottom: 18px;
  border-bottom: 2px solid var(--white);
  color: #8cd1ff;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.schema-head b {
  grid-column: 2 / -1;
  justify-self: end;
  color: var(--white);
}

.passport-schema dl {
  margin: 0;
}

.passport-schema dl div {
  min-height: 64px;
  border-bottom: 1px solid #50617a;
}

.passport-schema dt,
.passport-schema span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.passport-schema dt {
  color: #8cd1ff;
}

.passport-schema dd {
  margin: 0;
  color: #dce5ee;
  font-size: 12px;
}

.passport-schema span {
  color: #7de29b;
}

.architecture-map {
  display: grid;
  grid-template-columns: 1fr 45px 1fr 45px 1fr;
  margin-top: 80px;
  border-block: 2px solid var(--ink);
}

.architecture-map > div {
  min-height: 230px;
  padding: 30px;
}

.architecture-map > i {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  color: var(--blue);
  font-size: 24px;
  font-style: normal;
}

.architecture-map span,
.sovereignty-notes span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.architecture-map b {
  display: block;
  margin-top: 50px;
  font-family: var(--display);
  font-size: 27px;
  text-transform: uppercase;
}

.architecture-map p {
  color: var(--muted);
  font-size: 12px;
}

.architecture-map .map-focus {
  color: var(--white);
  background: var(--blue);
}

.architecture-map .map-focus span,
.architecture-map .map-focus p {
  color: var(--white);
}

.sovereignty-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.sovereignty-notes > div {
  min-height: 150px;
  padding: 28px;
}

.sovereignty-notes > div + div {
  border-left: 1px solid var(--line);
}

.sovereignty-notes p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.audit-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  padding: clamp(100px, 11vw, 170px) max(45px, 7vw);
  background: var(--ice);
}

.audit-copy h2 {
  margin-top: 32px;
  font-size: clamp(45px, 5.4vw, 78px);
}

.audit-copy > p:not(.utility-label) {
  max-width: 650px;
  color: var(--muted);
}

.audit-copy h2 + p {
  margin-top: 45px;
}

.audit-ledger {
  align-self: center;
  border: 1px solid var(--ink);
  background: var(--white);
}

.ledger-head,
.ledger-hash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding-inline: 15px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.ledger-head {
  color: var(--white);
  background: var(--ink);
}

.audit-ledger ol {
  margin: 0;
  padding: 0 15px;
  list-style: none;
}

.audit-ledger li {
  display: grid;
  grid-template-columns: 85px 1fr 90px 20px;
  gap: 16px;
  align-items: center;
  min-height: 67px;
  border-bottom: 1px solid var(--line);
}

.audit-ledger time,
.audit-ledger li b {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
}

.audit-ledger li span {
  font-size: 12px;
  font-weight: 600;
}

.audit-ledger li em {
  color: var(--verify);
  font-style: normal;
}

.ledger-hash {
  min-height: 58px;
  background: var(--paper);
}

.ledger-hash span {
  color: var(--blue);
  font-weight: 800;
}

.ledger-hash code {
  font-size: 8px;
}

.ledger-hash b {
  color: var(--verify);
}

.compliance-line {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compliance-line span::before {
  content: "■";
  margin-right: 8px;
  color: var(--blue);
}

.manifesto {
  padding: clamp(95px, 10vw, 155px) max(45px, 8vw);
  border-block: 1px solid var(--ink);
  color: var(--white);
  background: var(--blue);
}

.manifesto p {
  margin: 0 0 35px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.manifesto h2 {
  max-width: 1250px;
  font-size: clamp(47px, 6.5vw, 96px);
}

.pilot-section {
  padding: clamp(100px, 11vw, 170px) max(45px, 8vw);
  color: var(--white);
  background: var(--ink);
}

.pilot-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.pilot-heading .utility-label {
  grid-column: 1 / -1;
}

.pilot-heading h2 {
  font-size: clamp(54px, 7vw, 104px);
}

.pilot-heading > p:last-child {
  margin: 0 0 5px;
  color: #a8b8ca;
}

.pilot-scope {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  margin-top: 85px;
  border-block: 1px solid #64758c;
}

.scope-id {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 45px;
  border-right: 1px solid #64758c;
}

.scope-id span,
.scope-id p {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scope-id span {
  color: #8cd1ff;
}

.scope-id b {
  margin-top: 55px;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.scope-id p {
  margin-top: 20px;
  color: #7de29b;
}

.pilot-scope ul {
  margin: 0;
  padding: 20px 40px;
  list-style: none;
}

.pilot-scope li {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 59px;
  border-bottom: 1px solid #43536a;
  color: #dce5ee;
  font-size: 13px;
}

.pilot-scope li:last-child {
  border: 0;
}

.pilot-scope li span {
  width: 11px;
  height: 11px;
  border: 1px solid #8cd1ff;
}

.pilot-outcome {
  display: grid;
  grid-template-columns: 0.25fr 1fr 0.65fr;
  gap: 45px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #64758c;
}

.pilot-outcome span {
  color: var(--human);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pilot-outcome p {
  margin: 0;
  font-size: 14px;
}

.pilot-outcome .pilot-terms {
  color: #8fa0b6;
  font-size: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(55px, 7vw, 110px);
  padding: clamp(95px, 10vw, 150px) max(45px, 8vw);
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(to right, rgba(0, 87, 184, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 87, 184, 0.055) 1px, transparent 1px),
    var(--ice);
  background-size: 44px 44px;
}

.contact-intro {
  align-self: start;
}

.contact-intro h2 {
  max-width: 640px;
  margin-top: 34px;
  font-size: clamp(50px, 5.3vw, 78px);
}

.contact-intro > p:last-child {
  max-width: 520px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.contact-register {
  align-self: end;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.contact-person {
  display: grid;
  grid-template-columns: 150px minmax(190px, 1fr) minmax(280px, 0.9fr);
  min-height: 196px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-mark {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--blue);
}

.contact-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 240ms ease;
}

.contact-mark img[src$="hans-timmerman.jpg"] {
  object-position: 50% 38%;
}

.contact-person:hover .contact-mark img {
  transform: scale(1.025);
}

.contact-identity span,
.contact-identity p,
.contact-actions span {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-identity {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
}

.contact-identity span {
  color: var(--blue);
  font-weight: 800;
}

.contact-identity h3 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 0.95;
}

.contact-identity p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-left: 1px solid var(--ink);
}

.contact-actions a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 8px 12px;
  align-content: center;
  min-width: 0;
  padding: 20px 22px;
  text-decoration: none;
  transition: color 120ms linear, background 120ms linear;
}

.contact-actions a + a {
  border-top: 1px solid var(--ink);
}

.contact-actions a:hover {
  color: var(--white);
  background: var(--blue);
}

.contact-actions span {
  grid-column: 1 / -1;
  color: var(--muted);
}

.contact-actions a:hover span {
  color: #c6e6fb;
}

.contact-actions b {
  min-width: 0;
  align-self: end;
  font-family: var(--mono);
  font-size: 11px;
  overflow-wrap: anywhere;
}

.contact-actions i {
  align-self: end;
  font-size: 18px;
  font-style: normal;
}

.final-action {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--ink);
  background: var(--human);
}

.final-action > p {
  margin: 0;
  padding: clamp(60px, 7vw, 110px);
  border-right: 1px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.final-action > a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding: clamp(60px, 7vw, 110px);
  text-decoration: none;
  transition: color 120ms linear, background 120ms linear;
}

.final-action > a:hover {
  color: var(--white);
  background: var(--blue);
}

.final-action a span {
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.final-action a b {
  align-self: end;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.final-action a i {
  grid-row: 1 / -1;
  grid-column: 2;
  margin-left: 40px;
  font-size: 50px;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 50px;
  align-items: center;
  min-height: 115px;
  padding: 22px 42px;
}

.footer-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
}

.footer-brand .brand-mark {
  width: 50px;
  height: 50px;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--ink);
  text-underline-offset: 4px;
}

@media (max-width: 1050px) {
  .navigation a {
    min-width: 84px;
    padding-inline: 12px;
    font-size: 9px;
  }

  .page-grid {
    grid-template-columns: 150px 1fr;
  }

  .hero-side-note {
    display: none;
  }

  .case-section {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .two-column-copy,
  .heading-with-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .architecture-map {
    grid-template-columns: 1fr;
  }

  .architecture-map > i {
    min-height: 45px;
    border: 0;
    border-block: 1px solid var(--line);
    transform: rotate(90deg);
  }

  .file-slip {
    width: 220px;
  }

  .passport-section,
  .audit-section {
    grid-template-columns: 1fr;
  }

  .passport-intro {
    border-right: 0;
    border-bottom: 1px solid #50617a;
  }

  .audit-ledger {
    width: 100%;
  }

  .compliance-line {
    grid-column: auto;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-intro {
    max-width: 820px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 66px;
  }

  .global-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px 10px;
  }

  .wordmark {
    gap: 7px;
  }

  .wordmark .brand-mark {
    width: 43px;
    height: 43px;
  }

  .wordmark .brand-copy b {
    font-size: 20px;
  }

  .wordmark .brand-copy small {
    font-size: 5px;
  }

  .header-case {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 3;
    display: grid;
    align-content: center;
    gap: 7px;
    width: 48px;
    height: 48px;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    display: block;
    height: 1px;
    background: var(--ink);
    transition: transform 150ms linear;
  }

  .menu-button[aria-expanded="true"] span {
    background: var(--white);
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .navigation {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: grid;
    align-content: center;
    height: auto;
    padding: 32px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity 150ms linear, visibility 150ms linear;
  }

  .navigation.open {
    opacity: 1;
    visibility: visible;
  }

  .navigation a {
    display: flex;
    justify-content: flex-start;
    min-width: auto;
    height: 72px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #52637a;
    font-family: var(--display);
    font-size: 34px;
    letter-spacing: -0.02em;
  }

  .navigation .nav-download {
    justify-content: space-between;
    color: var(--human);
    background: transparent;
  }

  .case-rail {
    display: none;
  }

  main,
  .site-footer {
    margin-left: 0;
  }

  .page-grid,
  .case-section {
    grid-template-columns: minmax(0, 1fr);
    width: min(100% - 32px, 610px);
  }

  .hero-copy {
    min-height: auto;
    padding-block: 55px 50px;
  }

  .hero-label {
    margin-bottom: 60px;
  }

  .hero-message {
    padding: 0;
  }

  h1 {
    font-size: clamp(54px, 17vw, 76px);
    line-height: 0.82;
  }

  .hero-message > p {
    margin-top: 42px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .action-link {
    min-width: min(100%, 330px);
  }

  .lens-wrap {
    width: calc(100% - 32px);
    margin-bottom: 32px;
  }

  .lens-header p:first-child {
    max-width: 220px;
  }

  .lens-header p:first-child span {
    display: block;
  }

  .archive-lens {
    height: 590px;
  }

  .file-slip {
    width: 205px;
  }

  .file-a { top: 70px; left: 5%; }
  .file-b { top: 195px; left: 19%; }
  .file-c { bottom: 55px; left: 3%; }
  .file-d { top: 310px; left: 9%; }
  .file-e { display: none; }
  .file-f { top: 120px; left: 48%; }

  .resolved-field {
    padding: 76px 18px 20px;
  }

  .field-caption {
    display: none;
  }

  .compact-lens-legend {
    position: absolute;
    inset: 0 0 auto;
    z-index: 6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(233, 245, 252, 0.97) 0 50%, rgba(230, 233, 235, 0.97) 50% 100%);
    font-family: var(--mono);
    pointer-events: none;
  }

  .compact-lens-legend div {
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 9px 12px;
  }

  .compact-lens-legend div:last-child {
    border-left: 1px solid var(--line);
    text-align: right;
  }

  .compact-lens-legend span {
    color: var(--blue);
    font-size: 6px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .compact-lens-legend b {
    font-size: 9px;
    letter-spacing: 0.03em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .compact-lens-legend small {
    color: var(--muted);
    font-size: 6px;
    line-height: 1.2;
  }

  .lens-blade span {
    display: none;
  }

  .dossier-head b {
    font-size: 22px;
  }

  .metadata-key {
    gap: 8px;
    margin-top: 6px;
    font-size: 5.5px;
  }

  .metadata-key span {
    gap: 3px;
  }

  .metadata-key span::before {
    width: 5px;
    height: 5px;
  }

  .object-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 9px;
  }

  .object-card:nth-child(3) {
    display: none;
  }

  .object-card {
    min-height: 312px;
    padding: 8px 7px 7px;
  }

  .card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    font-size: 5.5px;
  }

  .card-top em {
    padding: 2px 3px;
  }

  .document-file {
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 4px;
    margin-top: 6px;
    padding: 4px;
  }

  .document-file > span {
    width: 25px;
    height: 25px;
    font-size: 5px;
  }

  .document-file small {
    font-size: 4.5px;
  }

  .document-file code {
    font-size: 5.5px;
  }

  .object-card h3 {
    min-height: 42px;
    margin: 7px 0 5px;
    font-size: 15px;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .object-card dl div {
    display: block;
    min-height: 34px;
    padding: 4px 0;
  }

  .object-card dt {
    font-size: 5.5px;
  }

  .object-card dd {
    margin-top: 2px;
    font-size: 7.5px;
  }

  .object-card footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    font-size: 5.5px;
  }

  .dossier-proof {
    justify-content: space-between;
    gap: 6px;
    margin-top: 8px;
    font-size: 6px;
  }

  .dossier-proof b {
    margin-left: 0;
  }

  .quality-bar {
    grid-template-columns: 1fr;
    padding: 22px 16px;
  }

  .quality-bar ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 22px;
  }

  .case-section {
    padding-block: 85px;
  }

  .section-index {
    margin-bottom: 55px;
  }

  .section-body {
    padding-left: 0;
    border: 0;
  }

  h2 {
    font-size: clamp(42px, 11.5vw, 58px);
  }

  .heading-with-note h2 {
    font-size: clamp(38px, 10.5vw, 54px);
    overflow-wrap: anywhere;
  }

  .two-column-copy,
  .heading-with-note {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    margin-top: 45px;
  }

  .inventory > div {
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
    padding-block: 18px;
  }

  .inventory em {
    grid-column: 2;
  }

  .inventory .inventory-head {
    display: none;
  }

  .human-decision {
    grid-template-columns: 1fr;
  }

  .decision-stamp {
    min-height: 380px;
    padding: 60px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .decision-copy {
    padding: 75px 24px;
  }

  .method-list li {
    grid-template-columns: 58px 1fr;
    gap: 7px 18px;
    padding-block: 25px;
  }

  .method-code {
    grid-row: 1 / span 3;
  }

  .method-list p {
    grid-column: 2;
  }

  .method-list i {
    grid-column: 2;
    justify-self: start;
  }

  .finding-register > div {
    grid-template-columns: 1fr auto;
    gap: 7px 20px;
    padding-block: 20px;
  }

  .finding-register p {
    grid-column: 1 / -1;
    margin: 0;
  }

  .passport-section {
    grid-template-columns: 1fr;
  }

  .passport-intro,
  .passport-schema {
    padding: 75px 24px;
  }

  .schema-head,
  .passport-schema dl div {
    grid-template-columns: 105px 1fr;
    gap: 18px;
  }

  .schema-head b {
    grid-column: 2;
  }

  .passport-schema span {
    grid-column: 2;
    padding-bottom: 12px;
  }

  .architecture-map {
    grid-template-columns: 1fr;
  }

  .architecture-map > i {
    min-height: 45px;
    border: 0;
    border-block: 1px solid var(--line);
    transform: rotate(90deg);
  }

  .sovereignty-notes {
    grid-template-columns: 1fr;
  }

  .sovereignty-notes > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .audit-section {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 85px 16px;
  }

  .audit-ledger li {
    grid-template-columns: 65px 1fr 18px;
  }

  .audit-ledger li b {
    display: none;
  }

  .ledger-hash code {
    display: none;
  }

  .compliance-line {
    flex-wrap: wrap;
    gap: 18px;
  }

  .manifesto,
  .pilot-section {
    padding: 85px 16px;
  }

  .pilot-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .pilot-heading .utility-label {
    grid-column: auto;
  }

  .pilot-scope {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .scope-id {
    min-height: 320px;
    padding: 30px;
    border-right: 0;
    border-bottom: 1px solid #64758c;
  }

  .pilot-scope ul {
    padding: 18px;
  }

  .pilot-outcome {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-section {
    gap: 45px;
    padding: 85px 16px;
  }

  .contact-intro h2 {
    margin-top: 26px;
  }

  .contact-intro > p:last-child {
    margin-top: 28px;
  }

  .contact-person {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .contact-mark {
    min-height: 150px;
  }

  .contact-identity {
    padding: 24px 20px;
  }

  .contact-identity h3 {
    font-size: 34px;
  }

  .contact-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .contact-actions a {
    min-height: 92px;
    padding: 16px;
  }

  .contact-actions b {
    font-size: 9px;
    white-space: nowrap;
  }

  .contact-actions a + a {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

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

  .final-action > p,
  .final-action > a {
    width: 100%;
    min-width: 0;
    padding: 70px 24px;
  }

  .final-action a span {
    overflow-wrap: anywhere;
  }

  .final-action > p {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 35px 16px;
  }
}

@media (max-width: 390px) {
  .lens-wrap {
    width: calc(100% - 16px);
  }

  .lens-header,
  .lens-scale {
    padding-inline: 10px;
    font-size: 6px;
  }

  .lens-header p:first-child {
    max-width: 190px;
  }

  .archive-lens {
    height: 540px;
  }

  .compact-lens-legend {
    min-height: 58px;
  }

  .compact-lens-legend div {
    padding: 8px;
  }

  .compact-lens-legend b {
    font-size: 8px;
  }

  .compact-lens-legend small {
    font-size: 5.5px;
  }

  .file-slip {
    width: 175px;
    min-height: 72px;
    padding: 13px;
  }

  .file-slip b {
    font-size: 8px;
  }

  .file-a { top: 77px; }
  .file-b { top: 184px; }
  .file-d { top: 286px; }
  .file-f { top: 112px; }

  .resolved-field {
    padding: 70px 10px 14px;
  }

  .dossier-head {
    gap: 6px;
    padding-bottom: 8px;
  }

  .dossier-head span,
  .dossier-head em {
    font-size: 6px;
  }

  .dossier-head b {
    font-size: 19px;
  }

  .dossier-head em {
    padding: 3px 4px;
  }

  .metadata-key {
    justify-content: space-between;
    gap: 3px;
    margin-top: 5px;
    font-size: 4.2px;
  }

  .metadata-key span {
    gap: 2px;
  }

  .metadata-key span::before {
    width: 4px;
    height: 4px;
  }

  .object-cards {
    gap: 4px;
    margin-top: 7px;
  }

  .object-card {
    min-height: 276px;
    padding: 6px 4px;
  }

  .card-top {
    gap: 2px;
    font-size: 5px;
  }

  .card-top em {
    padding: 2px;
  }

  .document-file {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 3px;
    margin-top: 4px;
    padding: 3px;
  }

  .document-file > span {
    width: 22px;
    height: 22px;
    font-size: 4.5px;
  }

  .document-file small {
    font-size: 4px;
  }

  .document-file code {
    overflow: visible;
    font-size: 4.7px;
    line-height: 1.1;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .object-card h3 {
    min-height: 35px;
    margin: 5px 0 4px;
    font-size: 11.5px;
    line-height: 0.96;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .object-card dl div {
    min-height: 27px;
    padding: 3px 0;
    padding-left: 3px;
  }

  .object-card dt {
    font-size: 5px;
  }

  .object-card dd {
    margin-top: 1px;
    overflow: visible;
    font-size: 6.5px;
    line-height: 1.15;
    text-overflow: clip;
    white-space: normal;
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .object-card footer {
    gap: 1px;
    font-size: 4.7px;
    overflow-wrap: anywhere;
  }

  .dossier-proof {
    gap: 3px;
    margin-top: 7px;
    font-size: 4.5px;
    white-space: nowrap;
  }

  .final-action a i {
    margin-left: 12px;
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
