{# ST→LT clock. Rendered only when `lt_clock` is non-None (set by `_pane_lot_info` when ≥1 open ST lot is ≤90d from LT). Layout: a slim horizontal bar with progress proportional to (366 - days_to_lt)/366. The right edge is "LT" (366d held = first LT day, per the helper's `held_days > 365` rule). Days remaining labeled inline. Mute color until ≤30d, then warm. #} {% if lt_clock %} {% set _days = lt_clock.min_days_to_lt %} {% set _pct = ((366 - _days) / 366 * 100) | round(1) %} {% set _hot = _days <= 30 %}
ST → LT {{ _days }}d to LT
{% endif %}