/*
 * The Trust Controller microsite.
 *
 * One rule governs colour here, and it is the reason the palette looks the way
 * it does: the brand colour never carries state. Gold is identity and structure.
 * Mint means proven, amber means in progress, rust means refused or withdrawn,
 * and grey means not yet claimed. Nothing on this site can be read as further
 * along than it is because it happened to be painted in the house colour.
 */

:root {
  --ink: #05090c;
  --deep: #080f14;
  --raise: #0b1319;
  --line: rgba(150, 180, 190, 0.15);
  --line-strong: rgba(150, 180, 190, 0.3);

  --paper: #e8f0f2;
  --dim: #8fa6ae;
  --faint: #62777f;

  --gold: #ffc400;
  --gold-soft: rgba(255, 196, 0, 0.14);

  --mint: #3ddc97;
  --amber: #ffd166;
  --rust: #ff5d6c;
  --steel: #79a6d2;
  --cyan: #6fd3e0;

  --font-display: 'Cabinet Grotesk', 'Switzer', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'Switzer', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  --gutter: clamp(20px, 5vw, 64px);
  --measure: 1240px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.wrap {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #10130a;
  padding: 10px 16px;
  font-weight: 700;
  z-index: 200;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------------------------------------------------------------- masthead */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 9, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  flex-wrap: wrap;
}

.mh-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 16px;
  white-space: nowrap;
}
.mh-brand .mark {
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  display: inline-block;
  align-self: center;
}
.mh-brand .sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 400;
}

.mh-nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}
.mh-nav a {
  text-decoration: none;
  color: var(--dim);
  font-size: 13.5px;
  padding: 6px 11px;
  border-radius: 2px;
  transition: color 0.15s, background 0.15s;
}
.mh-nav a:hover { color: var(--paper); background: rgba(255, 255, 255, 0.04); }
.mh-nav a[aria-current='page'] { color: var(--gold); }

/* ------------------------------------------------------------------- type */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}

h1 { font-size: clamp(34px, 5.4vw, 66px); }
h2 { font-size: clamp(26px, 3.4vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 22px); letter-spacing: -0.01em; }
h4 { font-size: 15px; font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 1em; }
.lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--dim); max-width: 66ch; }
.measure { max-width: 68ch; }
.dim { color: var(--dim); }
.small { font-size: 13px; }

/*
 * The eyebrow carries the objective ids the section answers to. The numbering on
 * this site is never decorative: it is CBA's own numbering, and it is the thing
 * an evaluator is hunting.
 */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow .quiet { color: var(--faint); letter-spacing: 0.14em; }

/* ------------------------------------------------------------------- bands */

.band { padding: clamp(56px, 8vw, 104px) 0; border-top: 1px solid var(--line); }
.band-raise { background: var(--deep); }
.band-tight { padding-top: clamp(36px, 5vw, 56px); }

.band-head { display: grid; gap: 18px; margin-bottom: clamp(30px, 4vw, 48px); }
@media (min-width: 900px) {
  .band-head { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: end; gap: 42px; }
}

/* -------------------------------------------------------------------- hero */

.hero { padding: clamp(46px, 7vw, 86px) 0 clamp(40px, 5vw, 64px); }
.hero-grid { display: grid; gap: clamp(32px, 4vw, 54px); }
@media (min-width: 1040px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr); align-items: start; }
}

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero .lede { margin-bottom: 26px; }

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--line-strong);
  border-radius: 2px;
  padding: 4px 11px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 26px;
}
.stamp .dot { width: 6px; height: 6px; background: var(--dim); transform: rotate(45deg); }

.hero-beats { display: grid; gap: 0; margin-top: 34px; border-top: 1px solid var(--line); }
.beat { display: grid; gap: 4px 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
@media (min-width: 620px) { .beat { grid-template-columns: 92px minmax(0, 1fr); } }
.beat .n {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  padding-top: 4px;
}
.beat b { font-family: var(--font-display); font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.beat p { margin: 4px 0 0; color: var(--dim); font-size: 14.5px; }

/* --------------------------------------------------------------- specimen */

.specimen {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 196, 0, 0.03), transparent 30%), var(--raise);
  border-radius: 3px;
  overflow: hidden;
}

.sp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.sp-head .state {
  margin-left: auto;
  color: var(--mint);
  border: 1px solid rgba(61, 220, 151, 0.4);
  padding: 2px 9px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}
.specimen.is-suspended .sp-head .state { color: var(--rust); border-color: rgba(255, 93, 108, 0.45); }

.sp-body { padding: 16px; font-family: var(--font-mono); font-size: 12.2px; line-height: 1.75; }
.sp-body .k { color: var(--faint); }
.sp-body .v { color: var(--paper); }
.sp-body .s { color: var(--mint); }
.sp-body .brace { color: var(--faint); }
.sp-line { display: block; white-space: pre-wrap; word-break: break-word; padding-left: 1.2em; text-indent: -1.2em; }
.sp-line.withdrawn .v, .sp-line.withdrawn .s { color: var(--rust); text-decoration: line-through; text-decoration-thickness: 1px; }
.specimen.is-suspended .sp-body .s { color: var(--rust); }

.sp-consumers { border-top: 1px solid var(--line); padding: 14px 16px 16px; }
.sp-consumers h4 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dim); margin-bottom: 10px; font-weight: 400; }
.sp-consumer {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 5px 0;
  font-size: 13px;
  border-bottom: 1px dotted rgba(150, 180, 190, 0.12);
}
.sp-consumer:last-child { border-bottom: none; }
.sp-consumer .nm { color: var(--paper); }
.sp-consumer .verdict {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mint);
  white-space: nowrap;
  transition: color 0.28s ease;
}
.specimen.is-suspended .sp-consumer .verdict { color: var(--rust); }

.sp-foot {
  border-top: 1px solid var(--line);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sp-note { font-size: 12px; color: var(--faint); flex: 1 1 220px; margin: 0; }

.sp-toggle {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 9px 16px;
  cursor: pointer;
  transition: filter 0.15s;
}
.sp-toggle:hover { filter: brightness(1.08); }
.specimen.is-suspended .sp-toggle { background: transparent; color: var(--gold); }

/* ------------------------------------------------------------------- grids */

.grid { display: grid; gap: 1px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.cell { background: var(--ink); padding: 22px 24px; box-shadow: 0 0 0 1px var(--line); }
.band-raise .cell { background: var(--deep); }

.figures { display: grid; grid-template-columns: repeat(auto-fit, minmax(148px, 1fr)); gap: 1px; }
.figure { background: var(--ink); padding: 20px 22px; box-shadow: 0 0 0 1px var(--line); }
.band-raise .figure { background: var(--deep); }
.figure b { display: block; font-family: var(--font-display); font-size: 38px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.figure span { display: block; margin-top: 8px; font-size: 12.5px; color: var(--dim); line-height: 1.4; }

/* --------------------------------------------------------------- treatment */

.treat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--dim);
  white-space: nowrap;
}
.treat i { width: 9px; height: 9px; flex: none; display: inline-block; }
.treat-raidiam-product i { background: var(--gold); }
.treat-reference-implementation i { border: 1.5px solid var(--steel); background: transparent; }
.treat-cba-side i { background: var(--cyan); }

.treatkey { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.treatkey .tk { display: grid; grid-template-columns: 14px 1fr; gap: 4px 10px; }
.treatkey .tk i { width: 10px; height: 10px; margin-top: 5px; }
.treatkey .tk b { font-size: 13px; font-weight: 600; }
.treatkey .tk span { font-size: 12.5px; color: var(--dim); grid-column: 2; line-height: 1.45; }

/* ------------------------------------------------------------------- chips */

.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  color: var(--dim);
  border-radius: 2px;
  padding: 2px 8px;
}
.chip-proven { color: var(--mint); border-color: rgba(61, 220, 151, 0.45); }
.chip-progress { color: var(--amber); border-color: rgba(255, 209, 102, 0.45); }
.chip-open { color: var(--rust); border-color: rgba(255, 93, 108, 0.4); }
.chip-muted { color: var(--dim); }
.chip-gold { color: var(--gold); border-color: rgba(255, 196, 0, 0.4); }

/* ------------------------------------------------------------------ scenes */

.scene-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.scene-item {
  background: var(--ink);
  padding: 22px 24px;
  display: grid;
  gap: 8px 26px;
  text-decoration: none;
  transition: background 0.15s;
}
.band-raise .scene-item { background: var(--deep); }
.scene-item:hover { background: rgba(255, 196, 0, 0.05); }
@media (min-width: 860px) {
  .scene-item { grid-template-columns: 74px minmax(0, 1fr) 210px; align-items: start; }
}
.scene-item .ord {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding-top: 4px;
}
.scene-item h3 { margin-bottom: 6px; }
.scene-item p { margin: 0; color: var(--dim); font-size: 14px; }
.scene-meta { display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
@media (min-width: 860px) { .scene-meta { align-items: flex-end; } }
.scene-proves { display: flex; gap: 5px; flex-wrap: wrap; }
.scene-proves a, .scene-proves span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--dim);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 1px 7px;
  text-decoration: none;
}
.scene-proves a:hover { color: var(--gold); border-color: rgba(255, 196, 0, 0.5); }

.player { border: 1px solid var(--line); background: var(--raise); border-radius: 3px; overflow: hidden; }
.player video { display: block; width: 100%; height: auto; background: #000; }
.player-empty { padding: 40px 26px; text-align: center; }
.player-empty b { display: block; font-family: var(--font-display); font-size: 18px; margin-bottom: 8px; }
.player-empty p { margin: 0 auto; max-width: 52ch; color: var(--dim); font-size: 14px; }

/* ---------------------------------------------------------------- crossing */

/*
 * The exchange, drawn as what it is: a token held at one platform, presented at
 * another, and coming back narrower. The narrowing is the argument, so the two
 * sides carry the detail types rather than an unlabelled arrow between logos.
 */
.crossing-strip {
  display: grid;
  gap: 1px;
  margin-top: 26px;
  align-items: stretch;
}
@media (min-width: 860px) {
  .crossing-strip { grid-template-columns: minmax(0, 1fr) 190px minmax(0, 1fr); }
}
.cx { background: var(--ink); padding: 20px 24px; box-shadow: 0 0 0 1px var(--line); }
.band-raise .cx { background: var(--deep); }
.cx-k { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.cx b { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.cx-t { display: block; margin-top: 10px; font-family: var(--font-mono); font-size: 11.5px; color: var(--dim); word-break: break-word; }
/* Mint means what actually holds. The set presented is neutral; the narrower set
   the exchange issues is the one that governs, so it is the one in mint. */
.cx-t-issued { color: var(--mint); }
.cx-arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; box-shadow: none; }
.cx-line { display: block; width: 100%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cx-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-align: center; }

/* ------------------------------------------------------------------- links */

.launch-group { margin-bottom: 34px; }
.launch-group:last-of-type { margin-bottom: 0; }
.launch-head { margin-bottom: 14px; }
.launch-head h3 { margin-bottom: 5px; }
.launch-head p { margin: 0; max-width: 74ch; }

.launch { display: grid; gap: 1px; }
.launch-row {
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--line);
  padding: 16px 20px;
  display: grid;
  gap: 6px 20px;
  align-items: center;
  text-decoration: none;
  transition: background 0.15s;
}
.band-raise .launch-row { background: var(--deep); }
.launch-row:hover { background: rgba(255, 196, 0, 0.05); }
@media (min-width: 760px) { .launch-row { grid-template-columns: 200px minmax(0, 1fr) auto; } }
.launch-row b { font-size: 15px; font-weight: 600; }
.launch-row p { margin: 0; font-size: 13.5px; color: var(--dim); }
.launch-row .host { font-family: var(--font-mono); font-size: 11.5px; color: var(--faint); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 10px 18px;
  transition: border-color 0.15s, background 0.15s;
}
.btn:hover { border-color: var(--gold); background: var(--gold-soft); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #10130a; }
.btn-gold:hover { filter: brightness(1.08); background: var(--gold); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ---------------------------------------------------------------- coverage */

.cov-head { display: grid; gap: 20px; }
@media (min-width: 900px) { .cov-head { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: 46px; align-items: end; } }

.cv-keys { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.cv-key { background: var(--ink); display: grid; grid-template-columns: auto 1fr; gap: 0 14px; padding: 16px 18px; border-left: 2px solid var(--dim); box-shadow: 0 0 0 1px var(--line); }
.band-raise .cv-key { background: var(--deep); }
.cv-key.cv-proven { border-left-color: var(--mint); }
.cv-key.cv-progress { border-left-color: var(--amber); }
.cv-key.cv-open { border-left-color: var(--rust); }
.cv-key.cv-muted { border-left-color: var(--faint); }
.cv-count { font-family: var(--font-display); font-size: 30px; font-weight: 800; line-height: 1; grid-row: span 2; align-self: center; letter-spacing: -0.03em; }
.cv-keylabel { font-size: 13px; font-weight: 600; }
.cv-keymeaning { font-size: 12px; color: var(--dim); line-height: 1.45; }

.cv-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.cv-table th, .cv-table td { text-align: left; vertical-align: top; padding: 16px 14px; border-top: 1px solid var(--line); }
.cv-table thead th {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  font-weight: 400;
  border-top: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 10px;
}
.cv-row:target { background: var(--gold-soft); }
.cv-id { white-space: nowrap; font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--gold); }
.cv-domain, .cv-phase { display: block; font-family: var(--font-body); font-weight: 400; font-size: 11.5px; color: var(--faint); letter-spacing: 0; margin-top: 3px; }
.cv-obj p { margin: 0 0 8px; max-width: 60ch; }
.cv-levels span { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); border: 1px solid var(--line); border-radius: 2px; padding: 1px 7px; margin: 0 4px 4px 0; }
.cv-handoff { font-size: 12.5px; color: var(--dim); border-left: 2px solid var(--line-strong); padding-left: 12px; margin: 10px 0 0; max-width: 58ch; }
.cv-chip { display: inline-block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--line-strong); border-radius: 2px; padding: 2px 8px; white-space: nowrap; color: var(--dim); }
.cv-chip-proven { color: var(--mint); border-color: rgba(61, 220, 151, 0.45); }
.cv-chip-progress { color: var(--amber); border-color: rgba(255, 209, 102, 0.45); }
.cv-chip-open { color: var(--rust); border-color: rgba(255, 93, 108, 0.4); }
.cv-chip-muted { color: var(--dim); }
.cv-owner { white-space: nowrap; color: var(--dim); }
.cv-by { font-family: var(--font-mono); font-size: 11.5px; }
.cv-by a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.cv-by a:hover { border-bottom-color: var(--gold); }
.cv-kindline { display: block; font-family: var(--font-body); font-size: 11.5px; color: var(--faint); margin-top: 4px; }
.cv-art { display: block; color: var(--paper); text-decoration: none; font-size: 12.5px; margin-bottom: 5px; }
.cv-art:hover .cv-artname { border-bottom-color: var(--gold); }
.cv-kind { display: inline-block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-right: 8px; }
.cv-none { color: var(--faint); font-size: 12.5px; }
.cv-warn { color: var(--rust); font-size: 12.5px; }
.cv-note { color: var(--faint); font-size: 11.5px; }

@media (max-width: 900px) {
  .cv-table, .cv-table tbody, .cv-table tr, .cv-table td, .cv-table th { display: block; }
  .cv-table thead { display: none; }
  .cv-table tr { border-top: 1px solid var(--line); padding: 14px 0; }
  .cv-table td, .cv-table th { border-top: none; padding: 3px 0; }
  .cv-obj p { max-width: none; }
}

/* --------------------------------------------------------------- artefact */

.md { max-width: 78ch; font-size: 15.5px; }
.md h1 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 18px; }
.md h2 { font-size: clamp(21px, 2.6vw, 27px); margin: 46px 0 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.md h3 { font-size: 18px; margin: 30px 0 10px; }
.md p { color: #cfdde1; }
.md li { color: #cfdde1; margin-bottom: 6px; }
.md ul, .md ol { padding-left: 22px; }
.md code { font-family: var(--font-mono); font-size: 0.88em; color: var(--gold); background: rgba(255, 196, 0, 0.07); padding: 1px 5px; border-radius: 2px; }
.md pre { background: var(--raise); border: 1px solid var(--line); border-radius: 3px; padding: 16px; overflow-x: auto; }
.md pre code { color: var(--paper); background: none; padding: 0; font-size: 12.5px; line-height: 1.6; }
.md blockquote { margin: 18px 0; padding: 12px 18px; border-left: 2px solid var(--gold); background: var(--gold-soft); color: var(--paper); }
.md a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.md a:hover { border-bottom-color: var(--gold); }
.md hr { border: none; border-top: 1px solid var(--line); margin: 34px 0; }
.md-table { overflow-x: auto; margin: 18px 0; border: 1px solid var(--line); }
.md-table table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.md-table th, .md-table td { text-align: left; vertical-align: top; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.md-table th { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-weight: 400; }
.md-table tr:last-child td { border-bottom: none; }

/* ---------------------------------------------------------------- footer */

.site-foot { border-top: 1px solid var(--line); padding: 46px 0 60px; background: var(--deep); }
.foot-grid { display: grid; gap: 34px; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 60px; } }
.foot-note { font-size: 12.5px; color: var(--faint); line-height: 1.6; max-width: 62ch; }

/* --------------------------------------------------------------- motion */

.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.shown { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
