/* the wallets page: the clockworks sheet, plus two tables and a stat grid */
.hero h1 { max-width: 20ch; }
.lede { max-width: 66ch; }
#asof, #scan { color: var(--caption); font-size: 12px; }
.table-card { padding: 0; overflow-x: auto; margin-bottom: 40px; }
.wtable { width: 100%; border-collapse: collapse; font-size: 14px; }
.wtable th { text-align: left; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--caption); font-weight: 600; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--muted); }
.wtable td { padding: 14px 18px; border-bottom: 1px solid var(--divider); vertical-align: top; }
.wtable tr:last-child td { border-bottom: 0; }
.wtable .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.wname { font-weight: 600; color: var(--text); margin-bottom: 4px; white-space: nowrap; }
.waddr { font-size: 12px; color: var(--green); text-decoration: none; }
.waddr:hover { text-decoration: underline; }
.wrole { color: var(--secondary); max-width: 52ch; line-height: 1.5; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 18px; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; }
.stat .k { font-size: 12px; color: var(--caption); margin-bottom: 8px; line-height: 1.35; }
.stat .v { font-family: var(--mono); font-size: 26px; font-weight: 500; color: var(--text); font-variant-numeric: tabular-nums; }
.stat .n { font-size: 12px; color: var(--secondary); margin-top: 6px; line-height: 1.4; }
.note { color: var(--secondary); font-size: 14px; line-height: 1.6; max-width: 70ch; margin: 0 0 44px; }
.prose { padding: 22px 24px; margin-bottom: 40px; }
.prose p { margin: 0 0 12px; line-height: 1.6; color: var(--secondary); max-width: 70ch; }
.prose p:last-child { margin-bottom: 0; }
.prose a { color: var(--green); }
@media (max-width: 760px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .wtable { font-size: 13px; }
  .wtable th, .wtable td { padding: 12px 12px; }
  .wrole { max-width: none; min-width: 30ch; }
}
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }
