// Screen 4: Authorization detail — 4 variations function AuthScreen() { return ( <>

④ Authorization detail

Single auth record — covers one service code for one participant in a plan year. Pace, projected burn, claim trail.

{/* V1 — Burndown chart */}
editrenew}/>
⚠ projected exhaustion May 14}>Units remaining over time {/* axes */} {/* ideal line */} {/* actual line */} {/* projection */} today · 168u left 2880 0 FEB JUN FEB
ideal pace actual projected
{[['Service','T2021'],['Plan year','2/26 → 2/27'],['Authorized','2,880u'],['Pace','+22%']].map(([k,v])=>(
{k}
{v}
))}
{/* V2 — Calendar grid showing daily/weekly use */}
Daily units delivered
{['SUN','MON','TUE','WED','THU','FRI','SAT'].map(d=>
{d}
)} {Array.from({length:35}).map((_,i)=>{ const v = i<2||i>32 ? null : [0,28,30,32,28,30,0][i%7] + (i*3 % 7); const tone = v==null?'paper-2': v>30?'#f0c0b3': v>20?'var(--sage)':'var(--sage-tint)'; return (
{i-1>0&&i<33?i-1:''}
{v??''}
); })}
total: 240u cap: 228u over by 12u ‹ Mar · May ›
spot patterns · which weeks ran hot
{/* V3 — Stacked summary + claim trail */}
participant
Aguilar, P.
code
T2021 · CLS 1:1
period
2/26 → 2/27
remain
168u
Submitted claims {[['…46082','4/15',28,'$363.40','—','submitted','info'], ['…46082','4/8',30,'$385.48','$385.48','paid','ok'], ['…46082','4/4',32,'$408.96','$408.96','paid','ok'], ['…46082','4/1',30,'$357.84','$357.84','paid','ok'], ['…46060','3/25',28,'$357.84','$357.84','paid','ok'], ['…46088','3/14',26,'$332.28','—','denied','crit'] ].map((r,i)=>( ))}
Claim IDDateUnitsBilledPaidStatus
{r[0]} {r[1]} {r[2]} {r[3]} {r[4]} {r[5]}
{/* V4 — At-a-glance card stack */}
Phillip Aguilar
M · 47 · Honolulu · ID 47298473
UTILIZATION
{[ ['service code','T2021 · CLS 1:1'], ['plan year','Feb 26 → Feb 27, 2026'], ['authorized','2,880 units'], ['used to date','2,712 units'], ['monthly cap','228u'], ['this month','240u (+12 over)'], ].map(([k,v])=>(
{k}
{v}
))}
simplest · fewest decisions to make
); } window.AuthScreen = AuthScreen;