:root {
  --amber: #F0A841;
  --yellow: #FED62E;
  --coral: #FA7F5B;
  --coral-deep: #d9603e;
  --peach: #FED493;
  --brown: #7a3a26;
  --green: #23c552;
  --sage: #7fae8a;
  --bg: #FFFEDF;
  --surface: #FFFFFF;
  --surface-2: #FFFBEA;
  --ink: #373636;
  --ink-2: rgba(55, 54, 54, .72);
  --muted: rgba(55, 54, 54, .52);
  --line: rgba(55, 54, 54, .09);
  --line-2: rgba(55, 54, 54, .16);
  --shadow: 0 10px 30px rgba(55, 54, 54, .07), 0 2px 6px rgba(55, 54, 54, .05);
  --hard: #373636;
  --grain: var(--peach);
  --header-bg: rgba(255, 254, 223, .84);
  --link: #c9542f;
  --ok: #1f9d47;
  --bad: #d64b2a;
  --chip-bg: rgba(55, 54, 54, .06);
  --bar-track: rgba(55, 54, 54, .08);
  --display:
    "Fredoka",
    "Trebuchet MS",
    Avenir,
    sans-serif;
  --body:
    "Hanken Grotesk",
    system-ui,
    sans-serif;
  --mono:
    ui-monospace,
    "SF Mono",
    "JetBrains Mono",
    Menlo,
    Consolas,
    monospace;
  --maxw: 1240px;
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --radius: 22px;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    --bg: #1e1c1c;
    --surface: #2a2727;
    --surface-2: #332f2e;
    --ink: #f5ecd0;
    --ink-2: rgba(245, 236, 208, .76);
    --muted: rgba(245, 236, 208, .5);
    --line: rgba(245, 236, 208, .08);
    --line-2: rgba(245, 236, 208, .16);
    --shadow: 0 10px 30px rgba(0, 0, 0, .35);
    --hard: #000;
    --grain: #5a2e1f;
    --header-bg: rgba(30, 28, 28, .84);
    --link: #FFB08F;
    --ok: #4fd67a;
    --bad: #ff7d5e;
    --chip-bg: rgba(245, 236, 208, .08);
    --bar-track: rgba(245, 236, 208, .1);
  }
}
:root[data-theme=dark] {
  --bg: #1e1c1c;
  --surface: #2a2727;
  --surface-2: #332f2e;
  --ink: #f5ecd0;
  --ink-2: rgba(245, 236, 208, .76);
  --muted: rgba(245, 236, 208, .5);
  --line: rgba(245, 236, 208, .08);
  --line-2: rgba(245, 236, 208, .16);
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --hard: #000;
  --grain: #5a2e1f;
  --header-bg: rgba(30, 28, 28, .84);
  --link: #FFB08F;
  --ok: #4fd67a;
  --bad: #ff7d5e;
  --chip-bg: rgba(245, 236, 208, .08);
  --bar-track: rgba(245, 236, 208, .1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color .25s ease, color .25s ease;
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
button {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  letter-spacing: -.015em;
}
::selection {
  background: var(--yellow);
  color: #373636;
}
.bg-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .45;
  animation: float 18s ease-in-out infinite;
}
.blob.b1 {
  width: 46vw;
  height: 46vw;
  background: var(--peach);
  top: -14vw;
  right: -12vw;
}
.blob.b2 {
  width: 36vw;
  height: 36vw;
  background: var(--yellow);
  bottom: -16vw;
  left: -10vw;
  animation-delay: -6s;
  opacity: .3;
}
.blob.b3 {
  width: 24vw;
  height: 24vw;
  background: var(--coral);
  top: 45%;
  left: 60%;
  animation-delay: -11s;
  opacity: .14;
}
:root[data-theme=dark] .blob {
  opacity: .09;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .blob {
    opacity: .09;
  }
}
.grain {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: radial-gradient(var(--grain) .6px, transparent .6px);
  background-size: 20px 20px;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(2vw, -3vw) scale(1.08);
  }
}
header.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.top-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  white-space: nowrap;
}
.brand:hover {
  text-decoration: none;
}
.brand img {
  width: 38px;
  height: 38px;
  transition: transform .4s var(--spring);
}
.brand:hover img {
  transform: rotate(-12deg) scale(1.1);
}
.brand .dim {
  color: var(--amber);
}
nav.links {
  display: flex;
  gap: 4px;
  font-weight: 500;
  font-size: 15px;
}
nav.links a {
  color: var(--ink);
  opacity: .75;
  padding: 7px 11px;
  border-radius: 999px;
  transition: opacity .2s, background .2s;
  white-space: nowrap;
}
nav.links a:hover {
  opacity: 1;
  text-decoration: none;
  background: var(--chip-bg);
}
nav.links a.active {
  opacity: 1;
  background: var(--ink);
  color: var(--bg);
}
.brand {
  order: 0;
}
nav.links {
  order: 1;
}
.top .search {
  order: 2;
  min-width: 150px;
}
.top-right {
  order: 3;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .25s var(--spring), background .2s;
  flex: none;
}
.icon-btn:hover {
  transform: scale(1.08);
  background: var(--chip-bg);
}
.icon-btn svg {
  width: 18px;
  height: 18px;
}
.menu-btn {
  display: none;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  white-space: nowrap;
  color: var(--ink);
}
.live-pill:hover {
  text-decoration: none;
  border-color: var(--amber);
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
  box-shadow: 0 0 0 0 rgba(35, 197, 82, .6);
  animation: pulse 2.4s infinite;
}
.dot.stale {
  background: var(--coral);
  animation: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(35, 197, 82, .55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(35, 197, 82, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(35, 197, 82, 0);
  }
}
.search {
  position: relative;
  flex: 1;
  max-width: 420px;
}
.search input {
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  padding: 9px 16px 9px 38px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.search input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(240, 168, 65, .2);
}
.search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: .5;
  pointer-events: none;
}
@media (max-width: 1080px) {
  nav.links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 16px;
  }
  nav.links.open {
    display: flex;
  }
  nav.links a {
    padding: 11px 14px;
  }
  .menu-btn {
    display: grid;
  }
}
@media (max-width: 720px) {
  .top-inner {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 10px;
  }
  .top .search {
    order: 5;
    max-width: none;
    flex-basis: 100%;
  }
  .live-pill .lbl {
    display: none;
  }
  .brand {
    font-size: 19px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
}
main {
  position: relative;
  z-index: 10;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 20px 80px;
  min-height: 70vh;
}
@media (max-width: 720px) {
  main {
    padding: 18px 16px 60px;
  }
}
.page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 10px 0 22px;
}
.page-head h1 {
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  min-width: 0;
  overflow-wrap: anywhere;
}
.page-head .sub {
  color: var(--ink-2);
  margin-top: 6px;
  font-size: 15.5px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.kicker::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
}
.grid {
  display: grid;
  gap: 18px;
}
.g2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.g3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.g4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1000px) {
  .g4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .g3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .g2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 520px) {
  .g3 {
    grid-template-columns: minmax(0, 1fr);
  }
  .g4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.mt {
  margin-top: 18px;
}
.mt2 {
  margin-top: 28px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
}
.card-pad {
  padding: 20px 22px;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 22px 12px;
  flex-wrap: wrap;
}
.card-head h2,
.card-head h3 {
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
}
.card-head .more {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
}
.card-head .hint {
  color: var(--muted);
  font-size: 13px;
}
.stat {
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--spring), box-shadow .25s;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--hard);
}
.stat .lbl {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.stat .val {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  margin-top: 6px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.stat .val small {
  font-size: .55em;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}
.stat .foot {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-top: 6px;
}
.stat .emoji {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 22px;
  opacity: .9;
}
.up {
  color: var(--ok);
  font-weight: 600;
}
.down {
  color: var(--bad);
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  margin: 14px 0 30px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.hero h1 .pop {
  color: var(--coral);
  position: relative;
  display: inline-block;
  z-index: 0;
}
.hero h1 .pop::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: .04em;
  height: .28em;
  z-index: -1;
  background: var(--yellow);
  border-radius: .2em;
  transform: rotate(-1.2deg);
}
:root[data-theme=dark] .hero h1 .pop::after {
  opacity: .35;
}
.hero .subhead {
  margin-top: 18px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 520px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  background: var(--yellow);
  color: #373636;
  border: 2.5px solid #373636;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  box-shadow: 3px 3px 0 #373636;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.eyebrow .dot {
  border: 1.5px solid #373636;
  width: 11px;
  height: 11px;
}
.eyebrow:hover {
  animation: wiggle .5s ease-in-out;
}
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(-2.5deg);
  }
  75% {
    transform: rotate(2.5deg);
  }
}
.hero-dog {
  position: relative;
  display: grid;
  place-items: center;
}
.hero-dog .pad {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(254, 214, 46, .5),
      rgba(254, 212, 147, .25) 55%,
      transparent 72%);
  animation: padpulse 5s ease-in-out infinite;
}
.hero-dog img {
  position: relative;
  width: min(74%, 290px);
  animation: bob 4.5s ease-in-out infinite;
  cursor: pointer;
  filter: drop-shadow(0 18px 24px rgba(55, 54, 54, .14));
}
.floaty {
  position: absolute;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  background: var(--surface);
  color: var(--ink);
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(55, 54, 54, .12);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.floaty.f1 {
  top: 6%;
  left: 0;
  animation: bob 5s ease-in-out infinite;
}
.floaty.f2 {
  bottom: 10%;
  right: 0;
  animation: bob 6s ease-in-out infinite .8s;
}
.floaty.f3 {
  bottom: 34%;
  left: -4%;
  animation: bob 6.4s ease-in-out infinite 1.2s;
}
@keyframes bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes padpulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
.hero-search {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  max-width: 560px;
}
.hero-search input {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 2.5px solid var(--hard);
  border-radius: 16px;
  padding: 14px 18px;
  outline: none;
  box-shadow: 4px 4px 0 var(--hard);
}
.hero-search input:focus {
  box-shadow: 4px 4px 0 var(--coral);
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .subhead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-search {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-dog {
    order: -1;
  }
  .hero-dog img {
    width: min(46%, 200px);
  }
  .floaty {
    display: none;
  }
}
.btn {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .14s var(--spring), box-shadow .2s;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 5px 0 var(--coral-deep), 0 12px 22px rgba(250, 127, 91, .3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--coral-deep), 0 16px 28px rgba(250, 127, 91, .36);
}
.btn-primary:active {
  transform: translateY(4px) scaleY(.94);
  box-shadow: 0 1px 0 var(--coral-deep);
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 4px 0 var(--line-2), 0 8px 16px rgba(55, 54, 54, .06);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  transform: translateY(-2px);
}
.btn-ghost:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--line-2);
}
.btn-sm {
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 11px;
}
.btn[disabled] {
  opacity: .45;
  pointer-events: none;
}
.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.tabs {
  display: inline-flex;
  gap: 4px;
  background: var(--chip-bg);
  padding: 4px;
  border-radius: 999px;
  flex-wrap: wrap;
}
.tabs button {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--ink-2);
}
.tabs button.on {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(55, 54, 54, .12);
}
.tabs button .n {
  opacity: .55;
  margin-left: 4px;
  font-size: 12.5px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  background: var(--chip-bg);
  color: var(--ink);
  line-height: 1.5;
}
.pill.ok {
  background: rgba(35, 197, 82, .14);
  color: var(--ok);
}
.pill.bad {
  background: rgba(250, 127, 91, .16);
  color: var(--bad);
}
.pill.warn {
  background: rgba(254, 214, 46, .3);
  color: #8a6200;
}
:root[data-theme=dark] .pill.warn {
  color: var(--yellow);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .pill.warn {
    color: var(--yellow);
  }
}
.pill.amber {
  background: rgba(240, 168, 65, .2);
  color: var(--ink);
}
.pill.msg {
  background: rgba(240, 168, 65, .16);
  color: var(--ink);
}
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  background: var(--yellow);
  color: #373636;
  border: 2px solid #373636;
  padding: 3px 11px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 #373636;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.t {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
table.t th {
  text-align: left;
  font-family: var(--display);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
table.t td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
}
table.t tr:last-child td {
  border-bottom: none;
}
table.t tbody tr {
  transition: background .15s;
}
table.t tbody tr:hover {
  background: var(--surface-2);
}
table.t th.r,
table.t td.r {
  text-align: right;
}
table.t td.wrap {
  white-space: normal;
}
table.t tr.new {
  animation: flash 1.6s ease-out;
}
@keyframes flash {
  0% {
    background: rgba(254, 214, 46, .45);
  }
  100% {
    background: transparent;
  }
}
.t .num {
  font-variant-numeric: tabular-nums;
}
.first-col {
  padding-left: 22px !important;
}
.last-col {
  padding-right: 22px !important;
}
.feed {
  list-style: none;
}
.feed li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 22px;
  border-top: 1px solid var(--line);
  min-width: 0;
}
.feed li.new {
  animation: flash 1.6s ease-out;
}
.feed .ico {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: none;
}
.feed .main {
  min-width: 0;
  flex: 1;
}
.feed .row1 {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.feed .row2 {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
  display: flex;
  gap: 6px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.feed .side {
  text-align: right;
  font-size: 13px;
  color: var(--muted);
  flex: none;
}
.feed .big {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
}
.kv {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
}
.kv > div {
  padding: 13px 22px;
  border-top: 1px solid var(--line);
  min-width: 0;
}
.kv > .k {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}
.kv > .v {
  overflow-wrap: anywhere;
  font-size: 14.5px;
}
.kv > div:nth-child(-n+2) {
  border-top: none;
}
@media (max-width: 600px) {
  .kv {
    grid-template-columns: minmax(0, 1fr);
  }
  .kv > .k {
    padding-bottom: 2px;
    border-top: 1px solid var(--line);
  }
  .kv > .v {
    border-top: none;
    padding-top: 0;
  }
  .kv > div:nth-child(2) {
    border-top: none;
  }
}
.mono {
  font-family: var(--mono);
  font-size: .92em;
}
.muted {
  color: var(--muted);
}
.ink2 {
  color: var(--ink-2);
}
.hash {
  font-family: var(--mono);
  font-size: 13.5px;
}
.nowrap {
  white-space: nowrap;
}
.ellip {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  min-width: 0;
}
.copy {
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: .45;
  padding: 2px 5px;
  border-radius: 6px;
  vertical-align: middle;
  line-height: 1;
}
.copy:hover {
  opacity: 1;
  background: var(--chip-bg);
}
.copy svg {
  width: 14px;
  height: 14px;
}
.copy.done {
  color: var(--ok);
  opacity: 1;
}
.av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: none;
  object-fit: cover;
  background: var(--peach);
  display: inline-grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  color: #373636;
  overflow: hidden;
  vertical-align: middle;
}
.av.lg {
  width: 72px;
  height: 72px;
  font-size: 28px;
  border: 3px solid var(--surface);
  box-shadow: 3px 3px 0 var(--hard);
}
.who {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  font-weight: 500;
}
.who span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a.who:hover {
  color: var(--link);
}
.bar {
  height: 8px;
  border-radius: 99px;
  background: var(--bar-track);
  overflow: hidden;
  display: flex;
  gap: 2px;
}
.bar > i {
  display: block;
  height: 100%;
  border-radius: 99px;
}
.power-cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 150px;
}
.power-cell .bar {
  height: 6px;
}
.cum {
  background: var(--peach) !important;
}
.tally {
  display: grid;
  gap: 10px;
}
.tally-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 70px;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}
.tally-row .bar {
  height: 12px;
}
.tally-row .pct {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.c-yes {
  background: var(--green);
}
.c-no {
  background: var(--coral);
}
.c-veto {
  background: var(--brown);
}
.c-abstain {
  background: #b3aaa0;
}
.c-amber {
  background: var(--amber);
}
.chart {
  position: relative;
  padding: 4px 22px 18px;
}
.chart svg {
  display: block;
  width: 100%;
  height: 150px;
  overflow: visible;
}
.chart .gridline {
  stroke: var(--line);
  stroke-width: 1;
}
.chart .axis {
  fill: var(--muted);
  font-size: 11px;
  font-family: var(--body);
}
.chart rect.b {
  fill: var(--amber);
  transition: fill .15s;
}
.chart rect.b.zero {
  fill: var(--bar-track);
}
.chart rect.hit {
  fill: transparent;
  cursor: pointer;
}
.chart g.col:hover rect.b {
  fill: var(--coral);
}
.tip {
  position: absolute;
  pointer-events: none;
  background: var(--ink);
  color: var(--bg);
  font-size: 12.5px;
  padding: 7px 10px;
  border-radius: 10px;
  white-space: nowrap;
  transform: translate(-50%, -110%);
  opacity: 0;
  transition: opacity .12s;
  z-index: 5;
  font-variant-numeric: tabular-nums;
}
.tip b {
  font-family: var(--display);
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14px, 1fr));
  gap: 4px;
  padding: 6px 22px 20px;
}
.sig-grid i {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--green);
  opacity: .85;
}
.sig-grid i.miss {
  background: var(--coral);
  opacity: 1;
}
.sig-grid i.prop {
  background: var(--amber);
  opacity: 1;
  box-shadow: inset 0 0 0 2px #373636;
}
.legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-2);
  padding: 0 22px 18px;
}
.legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.msg-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  overflow: hidden;
}
.msg-card + .msg-card {
  margin-top: 12px;
}
.msg-card .mh {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.msg-card .mh .idx {
  font-family: var(--display);
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: #373636;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex: none;
}
.msg-card .mh .title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
}
.msg-card .summary {
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.msg-card .kv > div {
  padding: 9px 16px;
}
details.raw {
  border-top: 1px solid var(--line);
}
details.raw summary {
  cursor: pointer;
  padding: 10px 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink-2);
  list-style: none;
  user-select: none;
}
details.raw summary::-webkit-details-marker {
  display: none;
}
details.raw summary::before {
  content: "▸ ";
}
details.raw[open] summary::before {
  content: "▾ ";
}
pre.json {
  font-family: var(--mono);
  font-size: 12.5px;
  line-height: 1.55;
  padding: 14px 16px;
  overflow: auto;
  max-height: 520px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
pre.json .k {
  color: var(--link);
}
pre.json .s {
  color: var(--ok);
}
pre.json .n {
  color: #b86e00;
}
pre.json .b {
  color: var(--coral);
}
:root[data-theme=dark] pre.json .n {
  color: var(--yellow);
}
.prose {
  padding: 4px 22px 22px;
  line-height: 1.65;
  font-size: 15px;
  overflow-wrap: anywhere;
  color: var(--ink-2);
}
.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink);
  margin: 18px 0 6px;
  font-size: 18px;
}
.prose p {
  margin: 8px 0;
}
.prose ul {
  margin: 8px 0 8px 20px;
}
.prose code {
  font-family: var(--mono);
  background: var(--chip-bg);
  padding: 1px 5px;
  border-radius: 5px;
  font-size: .9em;
}
.empty {
  padding: 40px 22px;
  text-align: center;
  color: var(--muted);
}
.empty img {
  width: 90px;
  opacity: .9;
  margin-bottom: 10px;
}
.skel {
  background:
    linear-gradient(
      90deg,
      var(--chip-bg) 25%,
      var(--line-2) 37%,
      var(--chip-bg) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.3s ease infinite;
  border-radius: 8px;
  height: 14px;
}
@keyframes shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.loading-page {
  display: grid;
  place-items: center;
  padding: 90px 0;
  gap: 14px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 600;
}
.loading-page img {
  width: 70px;
  animation: sniff 1s ease-in-out infinite;
}
@keyframes sniff {
  0%, 100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg) translateY(-4px);
  }
}
.err {
  border: 2px dashed var(--coral);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.err h2 {
  margin-bottom: 8px;
}
.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.filter {
  font: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 15px;
  outline: none;
  min-width: 0;
}
.filter:focus {
  border-color: var(--amber);
}
.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.notice {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ink-2);
}
footer.foot {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--line);
  padding: 30px 20px 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
footer.foot .fl {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer.foot a {
  color: var(--ink-2);
  font-weight: 500;
}
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: all .3s var(--spring);
  z-index: 100;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.bone {
  position: fixed;
  z-index: 90;
  pointer-events: none;
  font-size: 22px;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
:root {
  --yes: #23c552;
  --no: #FA7F5B;
  --veto: #9b3a1e;
  --abstain: #a89f95;
  --novote: var(--bar-track);
}
.crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 14px;
  flex-wrap: wrap;
}
.crumbs a {
  color: var(--ink-2);
}
.crumbs .sep {
  opacity: .5;
}
.crumbs b {
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
}
.panel + .panel,
.panel + .grid,
.grid + .panel {
  margin-top: 18px;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 14px;
  flex-wrap: wrap;
}
.panel-head h2 {
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.panel-head h2 .count {
  color: var(--coral);
  font-weight: 700;
}
.panel-head .right {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.panel-body {
  padding: 0 22px 20px;
}
.summary-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  padding: 0 22px 20px;
}
.sbox {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  min-width: 0;
}
.sbox .l {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.sbox .v {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}
.sbox .v small {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 3px;
}
.sbox .s {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 2px;
}
.ptabs {
  display: flex;
  gap: 20px;
  padding: 16px 22px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.ptabs button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
  padding: 4px 0 12px;
  position: relative;
}
.ptabs button.on {
  color: var(--ink);
}
.ptabs button.on::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  border-radius: 3px;
  background: var(--coral);
}
.ptabs button .n {
  font-size: 12px;
  color: var(--muted);
  margin-left: 3px;
}
.ptab-body {
  padding-top: 6px;
}
.select {
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-2);
  border-radius: 999px;
  padding: 7px 12px;
  outline: none;
  cursor: pointer;
}
.switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
  cursor: pointer;
  user-select: none;
}
.switch input {
  appearance: none;
  width: 34px;
  height: 20px;
  border-radius: 99px;
  background: var(--line-2);
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.switch input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s var(--spring);
}
.switch input:checked {
  background: var(--green);
}
.switch input:checked::after {
  transform: translateX(14px);
}
table.t th.sort {
  cursor: pointer;
  user-select: none;
}
table.t th.sort:hover {
  color: var(--ink);
}
table.t th.sort.on {
  color: var(--coral);
}
table.t td .sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.dt {
  text-align: right;
  line-height: 1.3;
}
.dt .d {
  font-weight: 600;
  font-size: 13.5px;
}
.dt .a {
  font-size: 12px;
  color: var(--muted);
}
.res-ok {
  color: var(--ok);
  font-weight: 600;
}
.res-bad {
  color: var(--bad);
  font-weight: 600;
}
.more-tag {
  color: var(--muted);
  font-size: 12.5px;
  margin-left: 4px;
}
.chain-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
}
.chain-head img.logo {
  width: 84px;
  height: 84px;
  animation: bob 4.5s ease-in-out infinite;
  cursor: pointer;
  filter: drop-shadow(0 10px 14px rgba(55, 54, 54, .16));
}
.chain-head h1 {
  font-size: clamp(30px, 4vw, 42px);
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.chain-head p {
  color: var(--ink-2);
  margin-top: 6px;
  max-width: 640px;
  line-height: 1.5;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--display);
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--chip-bg);
  color: var(--ink);
}
.socials a:hover {
  background: var(--yellow);
  color: #373636;
  text-decoration: none;
}
@media (max-width: 600px) {
  .chain-head {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .chain-head h1 {
    justify-content: center;
  }
  .socials {
    justify-content: center;
  }
  .chain-head img.logo {
    margin: 0 auto;
  }
}
.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 980px) {
  .dash-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 18px 18px;
}
.metrics .sbox .v {
  font-size: 16.5px;
}
.pchart {
  position: relative;
  padding: 0 22px 18px;
}
.pchart svg {
  display: block;
  width: 100%;
  overflow: visible;
}
.pchart .line {
  fill: none;
  stroke: var(--coral);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.pchart .area {
  fill: url(#pgrad);
}
.pchart .cross {
  stroke: var(--ink);
  stroke-width: 1;
  stroke-dasharray: 3 3;
  opacity: .45;
}
.pchart .pt {
  fill: var(--coral);
  stroke: var(--surface);
  stroke-width: 2;
}
.price-big {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}
.vmini {
  list-style: none;
  padding: 0 18px 16px;
  display: grid;
  gap: 8px;
}
.vmini li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
}
.vmini .bar {
  height: 5px;
  margin-top: 6px;
}
.vmini .amt {
  text-align: right;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}
.vote-bar {
  display: flex;
  height: 14px;
  border-radius: 99px;
  overflow: hidden;
  background: var(--novote);
  gap: 2px;
}
.vote-bar i {
  display: block;
  height: 100%;
  min-width: 0;
}
.vote-bar.thin {
  height: 8px;
}
.vote-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.vote-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vote-legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.v-yes {
  background: var(--yes);
}
.v-no {
  background: var(--no);
}
.v-veto {
  background: var(--veto);
}
.v-abstain {
  background: var(--abstain);
}
.v-none {
  background: var(--novote);
}
.t-yes {
  color: var(--ok);
}
.t-no {
  color: var(--bad);
}
.t-veto {
  color: var(--veto);
}
.t-abstain {
  color: var(--muted);
}
:root[data-theme=dark] .t-veto {
  color: #e07b5c;
}
.opt-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 760px) {
  .opt-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.opt {
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}
.opt .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 600;
  gap: 8px;
}
.opt .top .p {
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}
.opt .amt {
  text-align: right;
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.opt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}
.opt.o-yes::before {
  background: var(--yes);
}
.opt.o-no::before {
  background: var(--no);
}
.opt.o-veto::before {
  background: var(--veto);
}
.opt.o-abstain::before {
  background: var(--abstain);
}
.opt.win {
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--hard);
}
.result-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin: 4px 0 16px;
}
.result-row .l {
  font-size: 12.5px;
  color: var(--muted);
}
.result-row .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
.quorum-track {
  position: relative;
  margin-top: 16px;
}
.quorum-track .mark {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.quorum-track .mark span {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  white-space: nowrap;
  color: var(--ink-2);
}
.live-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 14px;
  padding: 0 22px 20px;
}
.live-card {
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  color: var(--ink);
  display: block;
  transition: transform .2s var(--spring), box-shadow .2s;
}
.live-card:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--hard);
  border-color: var(--ink);
}
.live-card h3 {
  font-size: 16.5px;
  margin: 10px 0 12px;
  overflow-wrap: anywhere;
}
.type-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(240, 168, 65, .18);
  color: var(--ink);
  font-family: var(--display);
}
.treemap {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
}
.treemap .tm {
  position: absolute;
  border: 2px solid var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  color: #373636;
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
  padding: 2px;
  cursor: pointer;
  transition: filter .15s;
  text-decoration: none;
}
.treemap .tm:hover {
  filter: brightness(1.08);
  text-decoration: none;
}
.treemap .tm .av {
  width: 34%;
  height: auto;
  aspect-ratio: 1;
  max-width: 72px;
  min-width: 16px;
  font-size: 14px;
}
.treemap .tm span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.treemap .tm.n-none {
  background: var(--novote);
  color: var(--ink-2);
}
@media (max-width: 600px) {
  .treemap {
    height: 320px;
  }
}
.md {
  padding: 18px 22px 24px;
  line-height: 1.7;
  font-size: 15px;
  color: var(--ink-2);
  overflow-wrap: anywhere;
}
.md h2,
.md h3,
.md h4,
.md h5,
.md h6 {
  color: var(--ink);
  margin: 22px 0 8px;
  line-height: 1.25;
}
.md h2 {
  font-size: 24px;
}
.md h3 {
  font-size: 20px;
}
.md h4 {
  font-size: 17px;
}
.md h5,
.md h6 {
  font-size: 15px;
}
.md > :first-child {
  margin-top: 0;
}
.md p {
  margin: 10px 0;
}
.md ul,
.md ol {
  margin: 10px 0 10px 24px;
}
.md li {
  margin: 4px 0;
}
.md b {
  color: var(--ink);
}
.md code {
  font-family: var(--mono);
  font-size: .88em;
  background: var(--chip-bg);
  padding: 2px 6px;
  border-radius: 6px;
}
.md pre.code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  overflow-x: auto;
  white-space: pre;
  margin: 12px 0;
  color: var(--ink);
}
.md blockquote {
  border-left: 4px solid var(--amber);
  padding: 4px 14px;
  margin: 12px 0;
  background: var(--surface-2);
  border-radius: 0 10px 10px 0;
}
.md hr {
  border: none;
  border-top: 1px solid var(--line-2);
  margin: 20px 0;
}
.md img {
  max-width: 100%;
  border-radius: 10px;
}
.md-table {
  overflow-x: auto;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.md-table table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}
.md-table th,
.md-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
}
.md-table th {
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 600;
}
.md-table tr:last-child td {
  border-bottom: none;
}
.md-box {
  margin: 0 22px 22px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.ustrip {
  display: flex;
  gap: 2px;
  padding: 0 22px;
  height: 34px;
  align-items: stretch;
}
.ustrip i {
  flex: 1;
  border-radius: 2px;
  background: var(--green);
  opacity: .8;
  min-width: 2px;
}
.ustrip i.miss {
  background: var(--coral);
  opacity: 1;
}
.ustrip i.prop {
  background: var(--amber);
  opacity: 1;
}
.ustrip-foot {
  display: flex;
  justify-content: space-between;
  padding: 8px 22px 18px;
  font-size: 12.5px;
  color: var(--muted);
}
.umatrix {
  display: grid;
  gap: 3px;
  padding: 0 22px 20px;
}
.umatrix .row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 52px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
.umatrix .row .who {
  font-size: 13px;
}
.umatrix .cells {
  display: flex;
  gap: 1px;
  height: 16px;
}
.umatrix .cells i {
  flex: 1;
  background: var(--green);
  opacity: .75;
  border-radius: 1px;
}
.umatrix .cells i.miss {
  background: var(--coral);
  opacity: 1;
}
.umatrix .cells i.prop {
  background: var(--amber);
  opacity: 1;
}
@media (max-width: 700px) {
  .umatrix .row {
    grid-template-columns: 110px minmax(0, 1fr) 44px;
  }
}
.fields {
  display: grid;
  grid-template-columns: minmax(120px, 190px) minmax(0, 1fr);
  font-size: 14px;
}
.fields > div {
  padding: 8px 16px;
  border-top: 1px solid var(--line);
  min-width: 0;
  overflow-wrap: anywhere;
}
.fields > .k {
  color: var(--muted);
}
.fields pre {
  font-family: var(--mono);
  font-size: 12px;
  white-space: pre-wrap;
  margin: 0;
}
@media (max-width: 600px) {
  .fields {
    grid-template-columns: minmax(0, 1fr);
  }
  .fields > .v {
    border-top: none;
    padding-top: 0;
  }
}
.tx-head {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
}
.tx-head .big-ico {
  color: #373636;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  flex: none;
  border: 2.5px solid #373636;
  box-shadow: 3px 3px 0 #373636;
}
.tx-head .big-ico.ok {
  background: #bff0cd;
}
.tx-head .big-ico.bad {
  background: #ffd0c2;
}
.tx-head .st {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: 14px;
}
.nav-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0 22px 20px;
}
@media (max-width: 800px) {
  .nav-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.nav-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  min-width: 0;
}
a.nav-card:hover {
  text-decoration: none;
  border-color: var(--amber);
}
.nav-card .l {
  font-size: 12px;
  color: var(--muted);
}
.nav-card .v {
  font-weight: 600;
  font-family: var(--display);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-card .ic {
  font-size: 20px;
}
.nav-card > div {
  min-width: 0;
}
.acct-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .acct-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.breakdown {
  padding: 0 22px 20px;
}
.breakdown .row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.breakdown .row .l {
  color: var(--muted);
}
.tok {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.tok .ti {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  background: var(--peach);
  color: #373636;
  overflow: hidden;
}
.tok .ti img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tok .tn {
  font-weight: 600;
}
.tok .td {
  font-size: 12px;
  color: var(--muted);
}
table.t td .who {
  max-width: 260px;
}
@media (max-width: 700px) {
  table.t td .who {
    max-width: 170px;
  }
}
.tok .tn {
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
