:root {
  --bg: #0b1020;
  --panel: rgba(15, 23, 42, 0.84);
  --panel-2: rgba(15, 23, 42, 0.64);
  --border: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --good: #4ade80;
  --warn: #fbbf24;
  --bad: #fb7185;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(125, 211, 252, 0.12), transparent 35%),
    radial-gradient(circle at 80% 15%, rgba(167, 139, 250, 0.15), transparent 30%),
    linear-gradient(180deg, #050816 0%, var(--bg) 100%);
}

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

.shell {
  width: min(1360px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.topbar, .hero, .panel, .metric, .station, .trust-item, .coverage-table, .run-row, .bug-row, .shot {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.76));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.topbar {
  border-radius: 24px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.brand h1 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 68ch;
}

.pill-row, .link-row, .sparkline, .trust-row, .node-row, .shot-grid, .metric-grid, .station-grid, .run-grid, .bug-grid, .coverage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill, .link-pill, .chip {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 7px 12px;
  text-decoration: none;
  color: var(--text);
  background: rgba(15, 23, 42, 0.75);
  font-size: 12px;
  white-space: nowrap;
}

.pill strong, .chip strong { color: #fff; }
.pill.good, .chip.good { border-color: rgba(74, 222, 128, 0.35); color: var(--good); }
.pill.warn, .chip.warn { border-color: rgba(251, 191, 36, 0.35); color: var(--warn); }
.pill.bad, .chip.bad { border-color: rgba(251, 113, 133, 0.35); color: var(--bad); }
.pill.muted, .chip.muted { color: var(--muted); }

.hero {
  border-radius: 28px;
  padding: 24px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 20px;
}

.hero-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  max-width: 66ch;
}

.hero-aside {
  border-radius: 22px;
  padding: 18px;
  background: rgba(2, 6, 23, 0.36);
  border: 1px solid rgba(125, 211, 252, 0.15);
}

.label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.metric-grid, .station-grid, .coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric, .station, .trust-item, .coverage-table, .run-row, .bug-row, .shot {
  border-radius: 22px;
}

.metric, .station, .trust-item {
  padding: 18px;
}

.metric .title, .station .title, .trust-item .title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.metric h3, .station h3, .trust-item h3 {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.metric .value {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.metric .subtext, .station .subtext, .trust-item .subtext {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.sparkline {
  align-items: end;
  min-height: 46px;
}

.spark {
  width: 10px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0.88;
}

.section {
  margin-bottom: 18px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

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

.station {
  min-height: 164px;
}

.station .status {
  font-size: 12px;
  color: var(--accent);
}

.trust-row {
  gap: 12px;
}

.trust-item {
  flex: 1 1 180px;
  min-width: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
}

.panel {
  border-radius: 24px;
  padding: 18px;
}

.panel h2 {
  margin-top: 0;
}

.run-grid, .bug-grid, .shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.run-row, .bug-row, .shot {
  padding: 14px;
}

.run-head, .bug-head, .shot-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.run-id, .bug-title, .shot-title {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--muted);
}

.badge {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.badge.pass { color: var(--good); border-color: rgba(74, 222, 128, 0.3); }
.badge.fail { color: var(--bad); border-color: rgba(251, 113, 133, 0.3); }
.badge.run { color: var(--accent); border-color: rgba(125, 211, 252, 0.3); }
.badge.pending { color: var(--warn); border-color: rgba(251, 191, 36, 0.3); }

.meta {
  color: var(--muted);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.coverage-table th, .coverage-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.coverage-table th {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.coverage-table tr:last-child td { border-bottom: 0; }

.node-util-grid, .image-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.node-util-card, .image-status-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.76));
  box-shadow: var(--shadow);
  padding: 14px;
}

.node-util-head, .image-status-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.node-gauge-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.node-gauge-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.72);
  overflow: hidden;
}

.node-gauge-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.node-load-row {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 8px 0 10px;
}

.node-load-spark {
  display: flex;
  align-items: end;
  gap: 4px;
  min-height: 34px;
}

.node-load-bar {
  width: 6px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, rgba(125, 211, 252, 0.9), rgba(167, 139, 250, 0.9));
}

.node-load-empty {
  color: var(--muted);
  font-size: 12px;
}

.node-version-row {
  margin-top: 6px;
  line-height: 1.4;
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  margin-top: 10px;
}

.footer {
  color: var(--muted);
  font-size: 12px;
  padding: 2px 4px 0;
}

.loading, .error {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero, .split, .metric-grid, .station-grid, .coverage-grid, .run-grid, .bug-grid, .shot-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .shell { width: min(100vw - 18px, 1360px); padding-top: 10px; }
  .topbar, .hero, .panel { border-radius: 20px; }
  .hero, .split, .metric-grid, .station-grid, .coverage-grid, .run-grid, .bug-grid, .shot-grid {
    grid-template-columns: 1fr;
  }
  .node-util-grid, .image-status-grid { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; align-items: start; }
}

.twpr-section { border-radius: 24px; padding: 22px; }
.twpr-heading h2 { margin: 0 0 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.twpr-tag { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 8px; border-radius: 999px; background: rgba(125, 211, 252, 0.12); color: var(--accent); border: 1px solid var(--border); }
.twpr-intro { color: var(--muted); margin: 0 0 14px; font-size: 14px; line-height: 1.55; }
.twpr-intro a { color: var(--accent); text-decoration: underline; text-decoration-color: rgba(125, 211, 252, 0.4); }
.twpr-tabs { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.twpr-tab { background: var(--panel-2); border: 1px solid var(--border); color: var(--muted); padding: 8px 14px; border-radius: 999px; cursor: pointer; font: inherit; font-size: 13px; transition: color .15s, border-color .15s, background .15s; }
.twpr-tab:hover { color: var(--text); }
.twpr-tab.active { color: var(--text); border-color: var(--accent); background: rgba(125, 211, 252, 0.08); }
.twpr-count { display: inline-block; margin-left: 6px; padding: 1px 7px; border-radius: 999px; background: rgba(148, 163, 184, 0.18); font-size: 11px; }
.twpr-panel { display: none; }
.twpr-panel.active { display: block; }
.twpr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.twpr-tile { border: 1px solid var(--border); background: var(--panel-2); border-radius: 16px; padding: 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.twpr-tile-header { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-bottom: 4px; }
.twpr-key { font-size: 12px; color: var(--muted); }
.twpr-value { font-size: 28px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; }
.twpr-ci { font-size: 13px; color: var(--text); }
.twpr-method { font-size: 12px; color: var(--muted); }
.twpr-fmea-row { margin-top: 6px; }
.twpr-fmea { display: inline-block; }
.twpr-fmea summary { list-style: none; cursor: pointer; }
.twpr-fmea summary::-webkit-details-marker { display: none; }
.twpr-fmea-chip { display: inline-block; font-size: 12px; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--border); }
.twpr-fmea-active { color: var(--warn); border-color: rgba(251, 191, 36, 0.4); background: rgba(251, 191, 36, 0.08); }
.twpr-fmea-clean { color: var(--good); border-color: rgba(74, 222, 128, 0.4); background: rgba(74, 222, 128, 0.08); }
.twpr-fmea ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.twpr-fmea li { margin-bottom: 4px; }
.twpr-empty { color: var(--muted); font-size: 13px; margin: 6px 0; }

/* ===== rigor ladder (replaces lone "research-grade" tag) ===== */
.rigor-ladder {
  margin: 12px 0 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel-2);
  padding: 14px 16px;
}
.rigor-ladder-head { display: flex; flex-direction: column; gap: 2px; margin-bottom: 10px; }
.rigor-ladder-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.rigor-ladder-tagline { color: var(--muted); font-size: 13px; line-height: 1.4; }
.rigor-rungs { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; counter-reset: rung; }
.rigor-rung { border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; background: rgba(255,255,255,0.015); }
.rigor-rung.rigor-achieved { border-color: rgba(74, 222, 128, 0.35); background: rgba(74, 222, 128, 0.04); }
.rigor-rung.rigor-current  { border-color: var(--accent); background: rgba(125, 211, 252, 0.10); box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.25); }
.rigor-rung.rigor-future   { opacity: 0.55; }
.rigor-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.rigor-mark { font-size: 14px; line-height: 1; }
.rigor-achieved .rigor-mark { color: var(--good); }
.rigor-current  .rigor-mark { color: var(--accent); }
.rigor-future   .rigor-mark { color: var(--muted); }
.rigor-step { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.rigor-name { font-size: 14px; color: var(--text); font-weight: 700; }
.rigor-badge { font-size: 10px; padding: 1px 7px; border-radius: 999px; background: var(--accent); color: #0b1220; font-weight: 700; letter-spacing: 0.04em; }
.rigor-def { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.rigor-current .rigor-def { color: var(--text); }

/* ===== per-tile sparkline ===== */
.tile-spark { display: block; width: 100%; height: 28px; margin-top: 4px; color: var(--accent); }
.tile-spark.empty { color: var(--border); }
.tile-spark.empty line { stroke: currentColor; stroke-width: 1; stroke-dasharray: 2 3; }

/* ===== section subtitle (teaching line) ===== */
.section-sub { color: var(--muted); font-size: 13px; line-height: 1.45; margin: 2px 0 10px; max-width: 70ch; }

/* ===== factory pulse cards ===== */
.pulse-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.pulse-card { border: 1px solid var(--border); background: var(--panel-2); border-radius: 16px; padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.pulse-card header { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.pulse-card h3 { margin: 0; font-size: 15px; letter-spacing: -0.005em; color: var(--text); text-transform: none; }
.pulse-sub { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.pulse-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.pulse-stat { display: flex; flex-direction: column; gap: 2px; min-width: 70px; }
.pulse-stat-value { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.01em; line-height: 1.1; }
.pulse-stat-value.tone-good { color: var(--good); }
.pulse-stat-value.tone-bad  { color: var(--bad); }
.pulse-stat-value.tone-warn { color: var(--warn); }
.pulse-stat-name { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.fabric-source { font-size: 10px; letter-spacing: 0.06em; }

/* ===== redesign: section headers + dense layouts ===== */
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.section-head h2 { margin: 0; }
.section-link { color: var(--accent); font-size: 13px; text-decoration: none; }
.section-link:hover { text-decoration: underline; }
.section-meta { font-size: 13px; }
.section-meta strong { color: var(--text); }

/* ===== cluster nodes panel (replaces hero) ===== */
.nodes-section { padding: 0; border: none; background: none; box-shadow: none; backdrop-filter: none; }
.nodes-header { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.nodes-summary { display: flex; flex-wrap: wrap; gap: 6px; }
.nodes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.node-card { border: 1px solid var(--border); background: var(--panel-2); border-radius: 20px; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.node-card header { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.node-card h3 { margin: 0; font-size: 18px; letter-spacing: -0.01em; color: var(--text); text-transform: none; }
.node-role { color: var(--muted); font-size: 13px; text-transform: lowercase; }
.node-stats { display: flex; flex-wrap: wrap; gap: 6px; }
.node-card-total { background: rgba(125, 211, 252, 0.06); border-color: rgba(125, 211, 252, 0.25); }

/* ===== Thunderbolt / USB4 fabric strip ===== */
.fabric-strip {
  border: 1px solid rgba(125, 211, 252, 0.28);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.08), rgba(125, 211, 252, 0.02));
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 12px;
}
.fabric-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.fabric-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent, #7dd3fc); font-weight: 600; }
.fabric-tagline { color: var(--muted); font-size: 12px; }
.fabric-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.fabric-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel-2);
}
.fabric-link.good { border-color: rgba(125, 211, 252, 0.5); }
.fabric-end { font-size: 13px; color: var(--text); }
.fabric-end.offline { color: var(--muted); text-decoration: line-through; }
.fabric-pipe {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 86px; height: 14px;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.35), rgba(125, 211, 252, 0.9), rgba(125, 211, 252, 0.35));
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(125, 211, 252, 0.35) inset;
}
.fabric-link:not(.good) .fabric-pipe {
  background: linear-gradient(90deg, rgba(148,163,184,0.18), rgba(148,163,184,0.35), rgba(148,163,184,0.18));
  box-shadow: none;
}
.fabric-speed {
  position: relative; z-index: 1;
  font-size: 10px; font-weight: 700;
  color: #0b1220; letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.fabric-pulse {
  position: absolute; top: 0; left: -30%;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  animation: fabric-flow 2.2s linear infinite;
}
.fabric-link:not(.good) .fabric-pulse { animation: none; opacity: 0; }
@keyframes fabric-flow {
  0%   { left: -30%; }
  100% { left: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .fabric-pulse { animation: none; }
}
.fabric-tech { font-size: 10px; letter-spacing: 0.06em; }

/* ===== recent runs changelog (git-log style, full-width) ===== */
.changelog { list-style: none; margin: 0; padding: 0; border: 1px solid var(--border); border-radius: 18px; background: var(--panel-2); overflow: hidden; }
.changelog-row { display: grid; grid-template-columns: 24px minmax(0, 1fr) auto auto; gap: 14px; align-items: center; padding: 12px 18px; border-bottom: 1px solid var(--border); }
.changelog-row:last-child { border-bottom: none; }
.changelog-row:hover { background: rgba(255, 255, 255, 0.02); }
.changelog-dot { font-size: 18px; text-align: center; line-height: 1; }
.changelog-dot.pass { color: var(--good); }
.changelog-dot.fail { color: var(--bad); }
.changelog-dot.run { color: var(--accent); }
.changelog-dot.pending { color: var(--muted); }
.changelog-main { min-width: 0; }
.changelog-label { display: block; color: var(--text); font-size: 14px; text-decoration: none; font-weight: 600; }
.changelog-label:hover { color: var(--accent); text-decoration: underline; }
.changelog-meta { color: var(--muted); font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.changelog-desc { color: var(--text); font-size: 13px; line-height: 1.35; margin-top: 2px; }
.changelog-time { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; font-size: 12px; color: var(--text); }
.changelog-time .muted { color: var(--muted); font-size: 11px; }
.changelog-extra { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 700px) {
  .changelog-row { grid-template-columns: 20px 1fr; gap: 10px; padding: 10px 14px; }
  .changelog-time, .changelog-extra { grid-column: 2; flex-direction: row; align-items: center; justify-content: flex-start; }
}

/* ===== test surface matrix ===== */
.surface-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.surface-cell { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 16px; background: var(--panel-2); overflow: hidden; }
.surface-shot { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; background: rgba(0, 0, 0, 0.3); }
.surface-shot-missing { display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 13px; border-bottom: 1px dashed var(--border); }
.surface-meta { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }
.surface-key { font-size: 12px; color: var(--text); }
.surface-key .muted { color: var(--muted); }
.surface-key strong { color: var(--accent); }
.surface-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.surface-link { font-size: 11px; color: var(--accent); text-decoration: none; }
.surface-link:hover { text-decoration: underline; }
