docs: import TRM design handoff + defer adoption to phase 3.8

A design handoff bundle generated by Claude Design (claude.ai/design)
on 2026-05-02. Defines the Bloomberg/F1-pit-wall aesthetic for TRM:
- ink-on-paper base + race-flag red accent (#E8412B)
- square-edged everything, sharp printed offset shadows
- mono numerics (JetBrains Mono) for any changing value
- Goldplay (real licensed font, three weights in bundle fonts/)
- four surfaces designed: dashboard / leaderboard / mobile / marketing
  (SPA scope is the first two)

The bundle is committed in-tree at TRM_Design_System-handoff/ so 3.8
has the full source material when it picks the work up. Includes:
- Top-level + project READMEs (the design spec)
- chats/chat1.md (intent + iteration history)
- colors_and_type.css (token set, drop-in for Tailwind 4 @theme)
- fonts/ (Goldplay regular/semibold/bold)
- ui_kits/ (HTML prototypes per surface)
- preview/ (per-token visual reference cards)

Updated phase-3-dogfood-readiness/README.md task 3.8 row to point at
the bundle and document the recommended approach (retheme shadcn via
CSS variable overrides + Tailwind 4 @theme, not replace).

Why deferred: foundational tokens are non-blocking for Phase 1 (login
+ placeholder home) and Phase 2 (live map without chrome). Applying
them now would either delay dogfood-blocking work or land partial
styling that gets reworked when 3.8 lands the full pass.
This commit is contained in:
2026-05-02 19:10:11 +02:00
parent 0467a4b7ef
commit 8223a566e4
72 changed files with 3154 additions and 1 deletions
@@ -0,0 +1,43 @@
<!doctype html><html><head><meta charset="utf-8">
<link rel="stylesheet" href="../colors_and_type.css">
<link rel="stylesheet" href="_card.css">
<style>
body { padding: 0; }
.frame { border: 1px solid var(--ink); margin: 20px; height: 220px; display: grid; grid-template-rows: 36px 1fr; }
.top { border-bottom: 1px solid var(--ink); display:flex; align-items:center; padding: 0 14px; gap: 10px; background: var(--paper-2); }
.logo { font-family: var(--font-display); font-weight:700; letter-spacing: -0.02em; }
.nav { display: flex; gap: 14px; margin-left: 18px; font-family: var(--font-display); font-size:13px; font-weight:500; color: var(--ink-3); }
.clk { margin-left: auto; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 13px; }
.cols { display: grid; grid-template-columns: 64px 1fr; height:100%;}
.side { border-right: 1px solid var(--ink); background: var(--paper-2); }
.side-item { height: 36px; border-bottom: 1px solid var(--hairline); display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.body { padding: 14px; }
.grid { display: grid; grid-template-columns: 4fr 4fr 2fr; gap: 12px; height: 100%; }
.col { border: 1px solid var(--hairline); padding: 8px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); display:flex; flex-direction:column; gap:4px;}
.col strong { color: var(--ink); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;}
</style></head>
<body>
<div class="frame">
<div class="top">
<div class="logo">TRM</div>
<div class="nav">Events · Live · Results · Settings</div>
<div class="clk">14:02:11</div>
</div>
<div class="cols">
<div class="side">
<div class="side-item"></div>
<div class="side-item"></div>
<div class="side-item"></div>
<div class="side-item"></div>
<div class="side-item"></div>
</div>
<div class="body">
<div class="grid">
<div class="col"><strong>Leaderboard 40%</strong>POS BIB NAME GAP<br/>1 247 M.Chen —<br/>2 188 R.Park +0:04.2<br/>3 044 N.Vega +0:11.7</div>
<div class="col"><strong>Map 40%</strong>Track view · checkpoints · live dots</div>
<div class="col"><strong>Detail 20%</strong>Selected athlete</div>
</div>
</div>
</div>
</div>
</body></html>