/* Commission page — extends /src/styles.css tokens */

/* ───── EU Hub token additions (not in styles.css) ───── */
:root {
  --st-live:     #69c47f;
  --st-live-bg:  rgba(105,196,127,.12);
  --st-vote:     #e35d5d;
  --st-vote-bg:  rgba(227,93,93,.12);
}

/* ───── Layout container ───── */
.frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── Pulse animation ───── */
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  60%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ───── Chip filter buttons ───── */
.chip-filter {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--ink-3);
  font: 500 11.5px/1 var(--mono);
  letter-spacing: 0.04em;
  transition: all var(--t-fast) var(--ease-out);
  white-space: nowrap;
}
.chip-filter:hover { color: var(--ink); border-color: var(--line-strong); }
.chip-filter[aria-pressed="true"] {
  background: var(--brass);
  color: oklch(0.14 0 0);
  border-color: var(--brass);
}

.section-tools {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* ───── ⌘K command palette ───── */
.cmdk-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: oklch(0.05 0 0 / 0.6);
  backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 14vh;
  transition: opacity var(--t-fast) var(--ease-out);
}
.cmdk-overlay[aria-hidden="true"] { opacity: 0; pointer-events: none; }
.cmdk-overlay[aria-hidden="false"] { opacity: 1; }

.cmdk-panel {
  width: min(620px, 94vw);
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  box-shadow: 0 40px 80px oklch(0 0 0 / 0.55);
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: 68vh;
}

.cmdk-input-row {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.cmdk-input-row svg { flex-shrink: 0; color: var(--ink-3); }

.cmdk-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font: 500 15px/1 var(--sans);
  color: var(--ink);
}
.cmdk-input::placeholder { color: var(--ink-4); }

.cmdk-list { overflow-y: auto; flex: 1; padding: 8px 0; }
.cmdk-list::-webkit-scrollbar { width: 4px; }
.cmdk-list::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 2px; }

.cmdk-group-label {
  padding: 8px 20px 4px;
  font: 500 10.5px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.cmdk-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; text-align: left;
  padding: 10px 20px;
  font-size: 13.5px; color: var(--ink-2);
  transition: all var(--t-fast) var(--ease-out);
}
.cmdk-item:hover { background: var(--surface-2); color: var(--ink); }
.cmdk-item small { font: 500 11px/1 var(--mono); color: var(--ink-4); flex-shrink: 0; }

.cmdk-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  border-top: 1px solid var(--line);
  font: 500 11px/1 var(--mono);
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
.cmdk-foot kbd {
  padding: 3px 7px;
  border-radius: 5px;
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  font: inherit;
  font-size: 10px;
}

/* ───── Toast ───── */
.toast {
  position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(12px);
  z-index: 300;
  background: var(--surface-3, var(--surface-2));
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 10px 18px;
  font: 500 13px/1 var(--mono);
  color: var(--ink-2);
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.4);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base) var(--ease-snap);
  white-space: nowrap;
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ───── Brand (used in footer) ───── */
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font: 600 15px/1 var(--sans);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.brand-mark {
  width: 26px; height: 26px;
  background: var(--brass);
  border-radius: 7px;
  display: inline-block;
  flex-shrink: 0;
}
footer.foot .brand-mark {
  background: linear-gradient(135deg, #1f6feb, #0b3d91);
}

/* ───── Footer ───── */
footer.foot {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 40px;
  background: transparent !important;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
footer.foot p {
  font-size: 14px; line-height: 1.6; color: var(--ink-3);
  margin: 0; max-width: 44ch;
}
footer.foot h6 {
  font: 500 10.5px/1 var(--mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
}
footer.foot ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 10px;
}
footer.foot li a,
footer.foot li span {
  font: 500 13px/1 var(--mono);
  color: var(--ink-3);
  letter-spacing: 0.02em;
  transition: color var(--t-fast) var(--ease-out);
}
footer.foot li a:hover { color: var(--brass); }
footer.foot li a[aria-current="page"] { color: var(--ink); }
footer.foot li span { opacity: 0.45; cursor: default; }

.foot-note {
  grid-column: 1 / -1;
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font: 500 11.5px/1 var(--mono);
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  footer.foot { grid-template-columns: 1fr 1fr; }
  footer.foot > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  footer.foot { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   Original commission.css — institution-specific styles
   ═══════════════════════════════════════════════════════ */

/* ───── Sub-tabs strip (7 institutions) ───── */
.subtabs {
  position: sticky; top: 56px; z-index: 70;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  max-width: 100vw;
  overflow-x: clip;
}
.subtabs-inner {
  display: flex; gap: 6px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}
.subtabs-inner::-webkit-scrollbar { display: none; }
.subtab {
  flex: 0 0 auto;
  padding: 9px 16px;
  border-radius: 999px;
  font: 500 13px/1 var(--sans);
  letter-spacing: -0.005em;
  color: var(--ink-3);
  border: 1px solid transparent;
  transition: all var(--t-fast) var(--ease-out);
  white-space: nowrap;
}
.subtab:hover { color: var(--ink); background: var(--surface); }
.subtab[aria-current="page"] {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line-2);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.05);
}
.subtab .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  background: currentColor;
  opacity: 0.5;
}
.subtab[aria-current="page"] .dot { opacity: 1; background: var(--brass); }

/* ───── Page anchor nav (sticky, slim) ───── */
.page-toc {
  position: static; top: auto; z-index: auto;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  max-width: 100vw;
  overflow-x: clip;
}
.page-toc-inner {
  display: flex; align-items: center; gap: 2px;
  justify-content: space-between;
  padding: 5px 0;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-4);
  overflow-x: auto;
  scrollbar-width: none;
  max-width: 100%;
  min-width: 0;
  -webkit-overflow-scrolling: touch;
}
.page-toc-inner::-webkit-scrollbar { display: none; }
.page-toc-label {
  flex: 0 0 auto;
  padding: 4px 10px 4px 0;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  border-right: 1px solid var(--line);
  margin-right: 6px;
}
.page-toc a {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--ink-4);
  text-transform: uppercase;
  transition: all var(--t-fast) var(--ease-out);
  white-space: nowrap;
}
.page-toc a:hover { color: var(--ink-2); background: var(--surface); }
.page-toc a.is-active {
  color: var(--brass);
  background: color-mix(in oklab, var(--brass-soft) 35%, transparent);
}

/* ───── Institution hero ───── */
.ins-hero {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.ins-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: end;
}
.ins-hero-eyebrow {
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
}
.ins-hero-eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--brass); }
.ins-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  max-width: 14ch;
}
.ins-hero-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 50ch;
  margin: 0 0 32px;
}
.ins-hero-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ins-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.ins-hero-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

/* Hero quick-card */
.ins-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: grid; gap: 18px;
  position: relative;
  overflow: hidden;
}
.ins-card-row { display: flex; align-items: center; gap: 12px; font: 500 11.5px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.ins-card-row .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--st-live); position: relative;
}
.ins-card-row .pulse::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--st-live); animation: pulse 2.4s var(--ease-out) infinite;
}
.ins-card-bigval {
  font-family: var(--serif);
  font-size: 56px; line-height: 0.95;
  letter-spacing: -0.02em;
}
.ins-card-bigval small {
  font: 500 14px var(--mono); color: var(--ink-3); margin-left: 6px;
}
.ins-card-line {
  font-size: 13.5px; line-height: 1.5; color: var(--ink-2);
}
.ins-card-divider { height: 1px; background: var(--line); }
.ins-card-foot {
  display: flex; gap: 14px;
  font: 500 11.5px/1.4 var(--mono);
  color: var(--ink-3); letter-spacing: 0.04em;
}
.ins-card-foot a { color: var(--ink-3); }
.ins-card-foot a:hover { color: var(--brass); }

/* ───── Facts strip ───── */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}
.fact {
  background: var(--surface);
  padding: 22px 24px;
  display: grid; gap: 10px;
  transition: background var(--t-fast) var(--ease-out);
}
.fact:hover { background: var(--surface-2); }
.fact-label { font: 500 11px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.fact-val { font-family: var(--serif); font-size: 36px; letter-spacing: -0.015em; line-height: 1; }
.fact-val small { font: 500 13px var(--mono); color: var(--ink-3); margin-left: 4px; letter-spacing: 0; }
.fact-meta { font: 500 12px/1.4 var(--mono); color: var(--ink-3); }

/* ───── Plain-language callout ───── */
.plain {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.plain-card {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.plain-card::after {
  content: "";
  position: absolute; right: -40px; top: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--brass-soft) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.plain-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.plain-eyebrow {
  font: 500 11px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brass);
}
.plain-eyebrow::before {
  content: "✱"; margin-right: 8px; color: var(--brass);
}

.plain-body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  max-width: 60ch;
  position: relative;
  z-index: 1;
}
.plain-body em { font-style: italic; color: var(--brass); }

/* ───── Section ───── */
.csection { padding: 88px 0; border-bottom: 1px solid var(--line); }
.csection:last-of-type { border-bottom: 0; }
.csection-head {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.csection-eyebrow {
  font: 500 11.5px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 14px;
}
.csection-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 52px;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0 0 12px;
  max-width: 22ch;
}
.csection-lede {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 54ch;
  margin: 0;
}


/* ───── 3 core roles ───── */
.roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.role-tile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 30px;
  display: grid; gap: 20px;
  transition: all var(--t-base) var(--ease-out);
  overflow: hidden;
  min-height: 360px;
  align-content: start;
}
.role-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(1 0 0 / 0.05), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  pointer-events: none;
}
.role-tile:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 18px 40px rgba(0,0,0,.18); }
.role-tile:hover::before { opacity: 1; }
.role-tile-num {
  font: 500 11px/1 var(--mono); letter-spacing: 0.12em; color: var(--brass);
}
.role-tile-title {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.role-tile-body {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.role-tile-vis {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid; gap: 10px;
}
.role-tile-vis .label {
  font: 500 10.5px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.role-tile-vis .val {
  font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; line-height: 1;
}
.role-tile-vis .val small { font: 500 12px var(--mono); color: var(--ink-3); margin-left: 4px; }

/* Flow mini */
.flow-mini { display: flex; align-items: center; gap: 6px; margin-top: 14px; }
.flow-mini .box {
  flex: 1;
  padding: 8px 10px;
  text-align: center;
  font: 500 10.5px/1.3 var(--mono);
  color: var(--ink-2);
  background: color-mix(in oklab, var(--bg-card), white 5%);
  border: 1px solid var(--line-2);
  border-radius: 6px;
}
.flow-mini .box.is-self { background: var(--brass-soft); color: var(--brass); border-color: var(--brass-deep); }
.flow-mini .arr { color: var(--ink-4); }

/* Donut */
.donut { display: flex; align-items: center; gap: 18px; margin-top: 12px; }
.donut svg { flex: 0 0 auto; }
.donut-leg { display: grid; gap: 6px; font: 500 11px/1.3 var(--mono); color: var(--ink-2); }
.donut-leg i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 8px; vertical-align: middle; }
.donut-leg b { font-weight: 500; color: var(--ink); }
.donut-leg span { color: var(--ink-3); margin-left: 4px; }

/* ───── Stepper ───── */
.stepper { display: grid; gap: 14px; }
.stepper-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
.stepper-track::before {
  content: "";
  position: absolute;
  top: 18px; left: 32px; right: 32px;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px 18px;
  display: grid; gap: 10px;
  text-align: left;
  transition: all var(--t-base) var(--ease-out);
}
.step::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(1 0 0 / 0.05), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease-out);
  pointer-events: none;
}
.step:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 12px 28px rgba(0,0,0,.15);
}
.step:hover::before { opacity: 1; }
.step:active { transform: scale(0.99); }
.step.is-active {
  border-color: var(--brass);
  background: linear-gradient(180deg, color-mix(in oklab, var(--brass-soft) 30%, var(--surface)) 0%, var(--surface) 100%);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brass) 15%, transparent);
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font: 600 12px var(--mono);
  color: var(--ink-2);
  margin-bottom: 4px;
}
.step.is-active .step-num {
  background: var(--brass); color: oklch(0.14 0 0); border-color: var(--brass);
}
.step-name {
  font-family: var(--serif); font-size: 19px; line-height: 1.2;
  letter-spacing: -0.01em;
}
.step-byline {
  font: 500 11px/1.4 var(--mono); letter-spacing: 0.04em; color: var(--ink-3);
}
.step-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 34px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  margin-top: 8px;
}
.step-detail-body { display: grid; gap: 14px; align-content: start; }
.step-detail-head {
  display: flex; align-items: center; gap: 12px;
  font: 500 11px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brass);
}
.step-detail-head .pn {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--brass); color: oklch(0.14 0 0);
  display: grid; place-items: center; font-weight: 600;
}
.step-detail h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.015em;
  margin: 0;
}
.step-detail p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.step-detail-aside {
  display: grid; gap: 14px;
  align-content: start;
}
.step-stat {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  display: grid; gap: 6px;
}
.step-stat-label { font: 500 10.5px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.step-stat-val { font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em; line-height: 1; }
.step-stat-meta { font: 500 12px/1.4 var(--mono); color: var(--ink-3); }
.step-example {
  border-left: 2px solid var(--brass);
  padding: 4px 0 4px 16px;
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2);
}
.step-example b { color: var(--ink); font-weight: 500; }

/* ───── President card ───── */
.pres {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pres::after {
  content: "";
  position: absolute; right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--brass-soft) 0%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
}
.pres-avatar {
  width: 200px; height: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-deep) 100%);
  position: relative;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 80px;
  color: oklch(0.14 0 0);
  box-shadow: 0 24px 60px oklch(0 0 0 / 0.4);
  letter-spacing: -0.02em;
  overflow: hidden;
}
.pres-avatar .commission-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  display: block;
}

.pres-body { display: grid; gap: 14px; align-content: start; position: relative; z-index: 1; }
.pres-role { font: 500 11.5px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); }
.pres-name { font-family: var(--serif); font-weight: 400; font-size: 56px; line-height: 1; letter-spacing: -0.02em; margin: 0; }
.pres-meta { display: flex; gap: 24px; flex-wrap: wrap; font: 500 12.5px/1.4 var(--mono); color: var(--ink-3); }
.pres-meta b { color: var(--ink); font-weight: 500; margin-right: 4px; }
.pres-bio { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 4px 0; max-width: 62ch; }
.pres-focus { display: flex; gap: 8px; flex-wrap: wrap; }
.pres-focus a,
.pres-focus span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: color-mix(in oklab, var(--bg-card), white 8%);
  font: 500 12px/1 var(--mono); letter-spacing: 0.04em;
  color: var(--ink-2);
  transition: all var(--t-fast) var(--ease-out);
}
.pres-focus a:hover { color: var(--brass); border-color: var(--brass); }

/* ───── College grid ───── */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.coll-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  text-align: left;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.coll-card::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, oklch(1 0 0 / 0.05), transparent 65%);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease-out);
  pointer-events: none;
}
.coll-card:hover {
  border-color: var(--line-2);
  background: var(--surface-2);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 18px 40px rgba(0,0,0,.18);
}
.coll-card:hover::before { opacity: 1; }
.coll-card:active { transform: translateY(0); }
.coll-card.is-vp { border-color: color-mix(in oklab, var(--brass) 40%, var(--line)); }
.coll-card.is-vp::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--brass);
  border-radius: 14px 0 0 14px;
  opacity: 1;
}
.coll-av {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 22px;
  color: oklch(0.14 0 0);
  letter-spacing: -0.01em;
  box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.15);
}
.commission-photo { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

.coll-body { display: grid; gap: 5px; min-width: 0; }
.coll-head {
  display: flex; align-items: center; gap: 7px;
  font: 500 10px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}
.coll-head .country {
  display: inline-flex; align-items: center;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.coll-head .vp {
  background: var(--brass);
  color: oklch(0.14 0 0);
  border-color: var(--brass);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.coll-name {
  font-family: var(--serif); font-size: 17px; line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.coll-port {
  font-size: 12.5px; line-height: 1.35;
  color: var(--ink-3);
}

/* ───── Bio drawer ───── */
.bio-scrim {
  position: fixed; inset: 0; z-index: 210;
  background: oklch(0.05 0 0 / 0.55);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-base) var(--ease-out);
}
.bio-scrim[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.bio {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 220;
  width: min(540px, 92vw);
  background: var(--surface);
  border-left: 1px solid var(--line-2);
  transform: translateX(100%);
  transition: transform var(--t-base) var(--ease-snap);
  overflow-y: auto;
  box-shadow: -30px 0 60px oklch(0 0 0 / 0.4);
}
.bio[aria-hidden="false"] { transform: translateX(0); }
.bio-head {
  position: sticky; top: 0;
  padding: 18px 24px;
  background: color-mix(in oklab, var(--surface) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.bio-head .meta { font: 500 11px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.bio-close {
  margin-left: auto;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--ink-3);
  transition: all var(--t-fast) var(--ease-out);
}
.bio-close:hover { color: var(--ink); background: var(--surface-3, var(--surface-2)); }
.bio-body { padding: 28px 28px 60px; display: grid; gap: 24px; }
.bio-portrait {
  display: grid; grid-template-columns: 96px 1fr; gap: 22px;
  align-items: center;
}
.bio-portrait .av {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 38px;
  color: oklch(0.14 0 0); letter-spacing: -0.01em;
  box-shadow: 0 14px 40px oklch(0 0 0 / 0.4);
}
.bio-name { font-family: var(--serif); font-size: 32px; line-height: 1.05; letter-spacing: -0.015em; margin: 0; }
.bio-role { font: 500 11px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass); margin-top: 8px; }
.bio-grid {
  display: grid; grid-template-columns: max-content 1fr; gap: 10px 18px;
  font: 500 12.5px/1.55 var(--mono); color: var(--ink-2);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bio-grid dt { color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }
.bio-grid dd { margin: 0; color: var(--ink); }
.bio-prose p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0 0 12px; }
.bio-actions {
  display: flex; gap: 10px;
}
.bio-actions a,
.bio-actions button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--bg-deep);
  font: 500 12px/1 var(--mono); letter-spacing: 0.06em;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
}
.bio-actions a:hover,
.bio-actions button:hover { color: var(--brass); border-color: var(--brass); }
.bio-actions a.is-primary {
  background: var(--brass); color: oklch(0.14 0 0); border-color: var(--brass);
}

/* ───── Decisions rail (recent + enforcement + proposed) ───── */
.dec-list { display: grid; gap: 14px; }
.dec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  display: grid; gap: 14px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all var(--t-fast) var(--ease-out);
}
.dec-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
}
.dec-card:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 20px 40px rgba(0,0,0,.18); }
.dec-card.kind-adopted::before    { background: transparent; }
.dec-card.kind-enforcement::before { background: transparent; }
.dec-card.kind-proposed::before    { background: var(--brass); }
.dec-card.kind-adopted    { border-top: 2px solid rgba(105,196,127,.35); }
.dec-card.kind-enforcement { border-top: 2px solid rgba(227,93,93,.35); }
.dec-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; }
.dec-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  font: 600 10.5px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid transparent;
}
.dec-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.dec-badge.kind-adopted { color: #69c47f; background: rgba(105,196,127,.12); border-color: rgba(105,196,127,.35); }
.dec-badge.kind-enforcement { color: #e35d5d; background: rgba(227,93,93,.12); border-color: rgba(227,93,93,.35); }
.dec-badge.kind-proposed { color: #e6bf58; background: rgba(230,191,88,.12); border-color: rgba(230,191,88,.35); }
.dec-state {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-3);
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dec-date { margin-left: auto; font: 500 11.5px/1 var(--mono); color: var(--ink-3); letter-spacing: 0.04em; }
.dec-title { font-family: var(--serif); font-size: 24px; line-height: 1.18; letter-spacing: -0.012em; margin: 0; max-width: 40ch; }
.dec-live-doc {
  width: fit-content;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-3);
  font: 600 11px/1 var(--mono);
  letter-spacing: 0.04em;
}
.dec-summary { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 70ch; }
.dec-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dec-live-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-2);
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.04em;
}
.dec-live-meta b {
  color: var(--ink-3);
  font-weight: 600;
  text-transform: uppercase;
}
.dec-impact {
  display: grid; grid-template-columns: max-content 1fr; gap: 6px 16px;
  font-size: 13.5px; color: var(--ink-2);
  padding: 12px 14px;
  background: var(--surface-2);
  border-radius: 10px;
  border-left: 2px solid var(--brass);
}
.dec-impact dt { font: 500 10.5px/1.4 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); padding-top: 1px; }
.dec-impact dd { margin: 0; }
.dec-impact dd b { color: var(--ink); font-weight: 500; }
.dec-foot {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 4px;
  font: 500 11.5px/1 var(--mono); color: var(--ink-3); letter-spacing: 0.04em;
}
.dec-foot a,
.dec-foot button {
  color: var(--ink-2);
  background: none; border: none; padding: 0;
  cursor: pointer;
  font: inherit; letter-spacing: inherit;
  transition: color var(--t-fast);
}
.dec-foot a:hover,
.dec-foot button:hover { color: var(--brass); }
.dec-foot .spacer { flex: 1; }
.dec-source { color: var(--ink-3); }
.dec-source-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 2px;
  font: 500 11.5px/1 var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.dec-source-row::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--line-2);
}
.dec-source-row a {
  color: var(--ink-2);
  text-decoration: none;
  transition: color var(--t-fast);
}
.dec-source-row a:hover { color: var(--brass); }

.governance-event-card-v3 {
  padding: 30px;
  gap: 18px;
  border-color: color-mix(in oklab, var(--line) 72%, transparent);
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--surface) 94%, white 6%) 0%, var(--surface) 100%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
}
.governance-event-card-v3:hover {
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--brass) 24%, var(--line));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}
.dec-v3-head {
  display: flex;
  align-items: center;
}
.dec-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font: 650 11px/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dec-status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}
.dec-status-badge.status-adopted {
  color: #2f9e44;
  background: color-mix(in oklab, #2f9e44 12%, transparent);
}
.dec-status-badge.status-rejected {
  color: #c92a2a;
  background: color-mix(in oklab, #c92a2a 12%, transparent);
}
.dec-status-badge.status-negotiation {
  color: #d08a00;
  background: color-mix(in oklab, #d08a00 14%, transparent);
}
.dec-status-badge.status-published {
  color: #2f6fed;
  background: color-mix(in oklab, #2f6fed 12%, transparent);
}
.dec-status-badge.status-updated {
  color: var(--ink-2);
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
}
.dec-status-badge.status-green {
  color: #2f9e44;
  background: color-mix(in oklab, #2f9e44 12%, transparent);
}
.dec-status-badge.status-red {
  color: #c92a2a;
  background: color-mix(in oklab, #c92a2a 12%, transparent);
}
.dec-status-badge.status-amber {
  color: #d08a00;
  background: color-mix(in oklab, #d08a00 14%, transparent);
}
.dec-status-badge.status-blue {
  color: #2f6fed;
  background: color-mix(in oklab, #2f6fed 12%, transparent);
}
.dec-status-badge.status-neutral {
  color: var(--ink-2);
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
}
.dec-title-v3 {
  max-width: 18ch;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.018em;
}
.dec-summary-v3 {
  max-width: 58ch;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
}
.dec-v3-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 18px 28px;
  margin: 4px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}
.dec-v3-meta div {
  display: grid;
  gap: 5px;
}
.dec-v3-meta dt {
  color: var(--ink-3);
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dec-v3-meta dd {
  margin: 0;
  color: var(--ink);
  font: 500 14px/1.3 var(--sans);
}
.dec-v3-source {
  width: fit-content;
  color: var(--ink-3);
  text-decoration: none;
  font: 500 12px/1.4 var(--sans);
  transition: color var(--t-fast);
}
.dec-v3-source:hover { color: var(--brass); }

/* Live card loading / empty states */
@keyframes dec-shimmer {
  from { background-position: -200% 0; }
  to   { background-position:  200% 0; }
}
.dec-skeleton { pointer-events: none; background: var(--surface-2); }
.dec-skel-line {
  display: inline-block;
  background: linear-gradient(90deg, var(--surface-3) 25%, var(--surface-2) 50%, var(--surface-3) 75%);
  background-size: 200% 100%;
  animation: dec-shimmer 1.6s ease-in-out infinite;
  color: transparent !important;
  border-radius: 4px;
  min-height: 1em;
}
@media (prefers-reduced-motion: reduce) {
  .dec-skel-line { animation: none; background: var(--surface-3); }
}
.dec-empty {
  grid-column: 1 / -1;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  font: 500 13px/1.5 var(--mono);
  letter-spacing: 0.03em;
  color: var(--ink-3);
  text-align: center;
  margin: 14px 0 0;
}

.dec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Mini-section header (Adopted / Enforcement / Proposed) */
.dec-mini-head {
  display: flex; align-items: center; gap: 12px;
  margin: 32px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.dec-mini-head h3 {
  font-family: var(--serif); font-weight: 400; font-size: 24px;
  letter-spacing: -0.01em; margin: 0;
}
.dec-mini-head .count {
  margin-left: auto;
  font: 500 11.5px/1 var(--mono); letter-spacing: 0.06em;
  color: var(--ink-3);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.dec-mini-head .swatch {
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
  border: 1px solid transparent;
}

/* ───── Card spotlight (cursor-following) ───── */
.card-spotlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  background: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 30%),
    rgba(255,255,255,.08),
    transparent 70%
  );
}
.coll-card:hover .card-spotlight,
.dec-card:hover .card-spotlight,
.role-tile:hover .card-spotlight,
.step:hover .card-spotlight,
.event:hover .card-spotlight,
.ins-card:hover .card-spotlight,
.plain-card:hover .card-spotlight,
.pres:hover .card-spotlight,
.acc-card:hover .card-spotlight,
.why-card:hover .card-spotlight { opacity: 1; }

/* ───── Events list ───── */
.events { display: grid; gap: 10px; }
.event {
  display: grid;
  grid-template-columns: 72px 1fr max-content;
  gap: 22px;
  align-items: center;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-fast) var(--ease-out);
}
.event::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--brass); opacity: 0.6;
}
.event:hover { border-color: var(--line-2); background: var(--surface-2); transform: translateX(2px); box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 14px 32px rgba(0,0,0,.15); }
.event-date {
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 12px 0;
  text-align: center;
  display: grid; gap: 4px;
}
.event-date .num { font-family: var(--serif); font-size: 26px; line-height: 1; letter-spacing: -0.015em; }
.event-date .mo { font: 500 10px/1 var(--mono); letter-spacing: 0.1em; color: var(--ink-3); text-transform: uppercase; }
.event-body { display: grid; gap: 4px; }
.event-kind { font: 500 10.5px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); }
.event-title { font-family: var(--serif); font-size: 19px; line-height: 1.25; letter-spacing: -0.005em; }
.event-desc { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin: 2px 0 0; max-width: 70ch; }
.event-loc { font: 500 12px/1 var(--mono); color: var(--ink-3); margin-top: 6px; letter-spacing: 0.04em; }
.event-add {
  font: 500 11px/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--bg-deep);
  color: var(--ink-2); transition: all var(--t-fast) var(--ease-out);
}
.event-add:hover { color: var(--brass); border-color: var(--brass); }

/* ───── Accountability grid ───── */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.acc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 30px;
  display: grid; gap: 14px;
  transition: all var(--t-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.acc-card:hover { border-color: var(--line-2); background: var(--surface-2); }
.acc-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--bg-deep);
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  color: var(--brass);
}
.acc-head { display: flex; align-items: center; gap: 14px; }
.acc-title { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }
.acc-body { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0; }

/* ───── Why-it-matters cards ───── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-card {
  background: linear-gradient(180deg, color-mix(in oklab, var(--brass-soft) 25%, var(--surface)) 0%, var(--surface) 100%);
  border: 1px solid color-mix(in oklab, var(--brass) 20%, var(--line));
  border-radius: 18px;
  padding: 32px 32px 30px;
  display: grid; gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}
.why-card::after {
  content: "";
  position: absolute; right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--brass-soft) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.why-card:hover { transform: translateY(-2px); border-color: color-mix(in oklab, var(--brass) 35%, var(--line-2)); }
.why-num { font: 500 11px/1 var(--mono); letter-spacing: 0.1em; color: var(--brass); position: relative; z-index: 1; }
.why-title { font-family: var(--serif); font-size: 24px; line-height: 1.15; letter-spacing: -0.015em; margin: 0; position: relative; z-index: 1; }
.why-body { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; position: relative; z-index: 1; }
.why-body b { color: var(--ink); font-weight: 500; }

/* ───── Floating action cluster ───── */
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  display: grid; gap: 8px;
}
.fab button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  display: grid; place-items: center;
  transition: all var(--t-fast) var(--ease-out);
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.4);
}
.fab button:hover { color: var(--brass); border-color: var(--brass); transform: scale(1.06); }
.fab button:active { transform: scale(0.94); }

/* ───── Responsive ───── */
@media (max-width: 1100px) {
  .ins-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .roles { grid-template-columns: 1fr; }
  .stepper-track { grid-template-columns: repeat(2, 1fr); }
  .stepper-track::before { display: none; }
  .step-detail { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: repeat(3, 1fr); }
  .dec-grid { grid-template-columns: 1fr; }
  .pres { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
  .pres-avatar { width: 140px; height: 140px; font-size: 56px; }
  .acc-grid, .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .page-toc,
  .page-toc-inner,
  .ins-hero,
  .ins-hero-grid,
  .facts,
  .event,
  .pres,
  .plain-card,
  .role-tile,
  .step,
  .acc-card,
  .why-card {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  .page-toc-inner {
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .page-toc a,
  .page-toc-label,
  .ins-hero-title,
  .csection-title,
  .pres-name {
    overflow-wrap: anywhere;
  }
  .ins-hero-grid,
  .pres,
  .governance-event-card-v3 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .event { grid-template-columns: 60px 1fr; }
  .event-add { display: none; }
  .governance-event-card-v3 { padding: 24px; }
  .dec-v3-meta { grid-template-columns: 1fr; }
  .dec-v3-source { max-width: 100%; }
  .csection-title { font-size: 36px; }
  .ins-hero-title { font-size: 42px; }
  .plain-body { font-size: 20px; }
  .pres-name { font-size: 40px; }
}

@media (max-width: 430px) {
  .facts,
  .coll-grid {
    grid-template-columns: 1fr;
  }
  .ins-hero-title,
  .csection-title,
  .pres-name {
    font-size: clamp(30px, 10vw, 38px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coll-card:hover,
  .dec-card:hover,
  .role-tile:hover,
  .step:hover,
  .event:hover { transform: none; }
  .coll-card::before,
  .step::before { transition: none; opacity: 0; }
  .card-spotlight { transition: none; }
  .coll-card:hover .card-spotlight,
  .dec-card:hover .card-spotlight,
  .role-tile:hover .card-spotlight,
  .step:hover .card-spotlight,
  .event:hover .card-spotlight,
  .ins-card:hover .card-spotlight,
  .plain-card:hover .card-spotlight,
  .pres:hover .card-spotlight,
  .acc-card:hover .card-spotlight,
  .why-card:hover .card-spotlight { opacity: 0; }
}
