/* Page-local to "Why track your time": a compact reckoning bar, the "track X"
   triptych, and the sources list. Ported from Why Track Time.html. */
.reckon { max-width: 66ch; margin: 28px 0 0; }
.reckon-bar { display: flex; height: 96px; border-radius: var(--tmb-radius-xl); overflow: hidden; box-shadow: var(--tmb-shadow-md); border: 1px solid var(--tmb-border); }
.reckon-seg { display: flex; align-items: center; justify-content: center; min-width: 0; color: var(--tmb-fg-1); }
.reckon-seg .h { font-family: var(--tmb-font-display); font-size: clamp(16px, 2.2vw, 24px); font-weight: 800; letter-spacing: -.02em; font-variant-numeric: tabular-nums; line-height: 1; }
.reckon-seg.sleep { background: #c7d2e4; }
.reckon-seg.work { background: #aab9d4; }
.reckon-seg.chores { background: #dde4ef; }
.reckon-seg.free { background: var(--tmb-grad-light); color: #fff; box-shadow: var(--tmb-glow-brand); }
.reckon-legend { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px; }
.reckon-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--tmb-fg-3); }
.reckon-legend i { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.reckon-legend i.sleep { background: #c7d2e4; }
.reckon-legend i.work { background: #aab9d4; }
.reckon-legend i.chores { background: #dde4ef; }
.reckon-legend i.free { background: var(--tmb-grad-light); }
.reckon-punch { font-family: var(--tmb-font-display); font-size: clamp(20px, 2.8vw, 26px); font-weight: 800; letter-spacing: -.02em; line-height: 1.3; margin: 24px 0 0; max-width: 66ch; text-wrap: balance; color: var(--tmb-fg-1); }

.track3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0 0; max-width: 66ch; }
.track3 .t3 { padding: 18px 16px; background: var(--tmb-surface); border: 1px solid var(--tmb-border); border-radius: var(--tmb-radius-xl); box-shadow: var(--tmb-shadow-xs); }
.track3 .t3 .w { font-size: 13px; font-weight: 700; color: var(--tmb-fg-3); }
.track3 .t3 .w b { color: var(--tmb-brand-dark-from); }
.track3 .t3 .a { margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--tmb-fg-2); }

.refs { margin: 22px 0 0; max-width: 66ch; display: flex; flex-direction: column; gap: 12px; }
.refs a { display: flex; gap: 12px; align-items: flex-start; padding: 15px 17px; background: var(--tmb-surface); border: 1px solid var(--tmb-border); border-radius: var(--tmb-radius-xl); box-shadow: var(--tmb-shadow-xs); text-decoration: none; transition: border-color .15s, transform .15s, box-shadow .15s; }
.refs a:hover { border-color: var(--tmb-brand-light-to); transform: translateY(-2px); box-shadow: var(--tmb-shadow-sm); }
.refs .n { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: var(--tmb-surface-soft); color: var(--tmb-brand-dark-from); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.refs .rt { font-size: 14.5px; font-weight: 700; color: var(--tmb-fg-1); line-height: 1.35; }
.refs .rs { font-size: 12.5px; color: var(--tmb-fg-3); margin-top: 3px; word-break: break-all; }
@media (max-width: 720px) { .track3 { grid-template-columns: 1fr; } .reckon-seg .h { font-size: 13px; } }
