-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprototype.html
More file actions
1895 lines (1785 loc) · 94 KB
/
Copy pathprototype.html
File metadata and controls
1895 lines (1785 loc) · 94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Concours d'Elegance — Digital Judging · Concept Prototype</title>
<style>
:root{
--ink:#1d2b24;
--green:#1f4435;
--green-deep:#15281f;
--gold:#b8924a;
--gold-light:#d8b878;
--cream:#f3efe6;
--paper:#ffffff;
--line:#e6dfcf;
--muted:#857f70;
--danger:#a8462f;
--good:#3f6f4e;
--shadow:0 22px 50px rgba(0,0,0,.38);
}
*{box-sizing:border-box;-webkit-tap-highlight-color:transparent;}
html,body{margin:0;padding:0;}
body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
background:
radial-gradient(900px 500px at 50% -8%, #244234 0%, transparent 60%),
linear-gradient(180deg,#172a21 0%, #11201a 100%);
color:#e9e4d6;
min-height:100vh;
padding:34px 16px 70px;
}
.serif{font-family:Georgia,"Times New Roman",serif;}
/* ---- page header ---- */
.page-head{max-width:560px;margin:0 auto 22px;text-align:center;}
.page-eyebrow{
font-size:11px;letter-spacing:3.5px;text-transform:uppercase;
color:var(--gold-light);margin-bottom:9px;
}
.page-head h1{
font-family:Georgia,serif;font-weight:600;font-size:30px;line-height:1.2;
margin:0 0 8px;color:#fdfaf0;
}
.page-head p{margin:0;color:#b9c4ba;font-size:13.5px;line-height:1.6;}
/* ---- role toggle ---- */
.role-toggle{
display:flex;gap:5px;background:rgba(0,0,0,.28);border:1px solid rgba(216,184,120,.28);
border-radius:999px;padding:5px;max-width:340px;margin:18px auto 4px;
}
.role-toggle button{
flex:1;border:0;background:transparent;color:#cdd6cc;font-size:12.5px;font-weight:600;
padding:9px 8px;border-radius:999px;cursor:pointer;letter-spacing:.3px;transition:.18s;
}
.role-toggle button.active{background:var(--gold);color:#27201a;box-shadow:0 4px 12px rgba(0,0,0,.3);}
.role-caption{text-align:center;color:#8fa093;font-size:11.5px;margin:9px auto 0;max-width:340px;}
/* ---- phone ---- */
.stage{display:flex;justify-content:center;margin-top:22px;}
.phone{
width:392px;height:830px;background:#0c0c0d;border-radius:54px;
padding:13px;box-shadow:var(--shadow);position:relative;
}
.phone::after{ /* side button */
content:"";position:absolute;right:-3px;top:170px;width:3px;height:74px;
background:#2a2a2c;border-radius:2px;
}
.screen-frame{
width:100%;height:100%;background:var(--cream);border-radius:42px;overflow:hidden;
position:relative;display:flex;flex-direction:column;
}
.notch{
position:absolute;top:0;left:50%;transform:translateX(-50%);
width:150px;height:30px;background:#0c0c0d;border-radius:0 0 18px 18px;z-index:60;
}
/* ---- status bar ---- */
.statusbar{
height:46px;flex:0 0 46px;display:flex;align-items:flex-end;justify-content:space-between;
padding:0 26px 6px;font-size:13px;font-weight:600;color:var(--ink);z-index:55;
background:var(--green-deep);
}
.statusbar.on-dark{color:#fff;}
.sb-right{display:flex;align-items:center;gap:5px;}
.sb-right svg{width:16px;height:16px;}
/* ---- app body ---- */
.app{flex:1;display:flex;flex-direction:column;min-height:0;}
.view{display:none;flex:1;flex-direction:column;min-height:0;}
.view.active{display:flex;}
.scroll{flex:1;overflow-y:auto;-webkit-overflow-scrolling:touch;}
.scroll::-webkit-scrollbar{width:0;}
/* ---- top bars ---- */
.topbar{
background:linear-gradient(160deg,var(--green) 0%,var(--green-deep) 100%);
color:#f4efe2;padding:6px 20px 18px;position:relative;
}
.topbar .kicker{font-size:10px;letter-spacing:2.6px;text-transform:uppercase;color:var(--gold-light);}
.topbar h2{font-family:Georgia,serif;font-weight:600;font-size:21px;margin:5px 0 2px;}
.topbar .sub{font-size:12px;color:#bdc9bd;}
.appbar{
display:flex;align-items:center;gap:12px;padding:8px 16px 14px;
background:linear-gradient(160deg,var(--green) 0%,var(--green-deep) 100%);color:#f4efe2;
}
.appbar .iconbtn{
width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.12);
border:0;display:flex;align-items:center;justify-content:center;cursor:pointer;flex:0 0 34px;
}
.appbar .iconbtn svg{width:19px;height:19px;stroke:#fff;}
.appbar .ab-title{flex:1;min-width:0;}
.appbar .ab-title .t{font-family:Georgia,serif;font-size:16px;font-weight:600;line-height:1.2;}
.appbar .ab-title .s{font-size:11px;color:#bdc9bd;}
/* ---- generic ---- */
.pad{padding:16px;}
.card{
background:var(--paper);border:1px solid var(--line);border-radius:16px;
padding:15px;margin-bottom:12px;
}
.card-tap{cursor:pointer;transition:.14s;}
.card-tap:active{transform:scale(.985);}
.section-label{
font-size:11px;letter-spacing:1.8px;text-transform:uppercase;color:var(--muted);
font-weight:700;margin:18px 2px 9px;
}
.row{display:flex;align-items:center;gap:12px;}
.between{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.muted{color:var(--muted);}
.chev{stroke:var(--gold);width:18px;height:18px;flex:0 0 18px;}
.pill{
display:inline-flex;align-items:center;gap:5px;font-size:10.5px;font-weight:700;
padding:4px 9px;border-radius:999px;letter-spacing:.4px;text-transform:uppercase;
}
.pill.green{background:#e4efe5;color:var(--good);}
.pill.gold{background:#f6ecd6;color:#9a7322;}
.pill.grey{background:#ece8dd;color:var(--muted);}
.pill.red{background:#f3e2dc;color:var(--danger);}
.btn{
display:flex;align-items:center;justify-content:center;gap:8px;width:100%;
border:0;border-radius:13px;padding:15px;font-size:14.5px;font-weight:700;
cursor:pointer;font-family:inherit;
}
.btn-primary{background:var(--green);color:#f6f1e3;}
.btn-gold{background:var(--gold);color:#2a2218;}
.btn-ghost{background:transparent;border:1.5px solid var(--line);color:var(--green);}
.btn svg{width:18px;height:18px;}
.btn:active{transform:scale(.99);}
.ic{fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
/* ---- bottom tabs ---- */
.tabbar{
flex:0 0 64px;display:flex;background:var(--paper);border-top:1px solid var(--line);
padding-bottom:6px;
}
.tab{
flex:1;border:0;background:transparent;display:flex;flex-direction:column;align-items:center;
justify-content:center;gap:3px;cursor:pointer;color:var(--muted);font-size:9.5px;font-weight:700;
letter-spacing:.3px;padding-top:8px;
}
.tab svg{width:21px;height:21px;}
.tab.active{color:var(--green);}
.tab.active svg{stroke:var(--gold);}
/* ---- dashboard ---- */
.progress-card{
background:linear-gradient(155deg,#fff 0%,#fbf8f0 100%);
border:1px solid var(--line);border-radius:18px;padding:16px;margin-bottom:14px;
}
.ring-wrap{display:flex;align-items:center;gap:16px;}
.ring{position:relative;width:84px;height:84px;flex:0 0 84px;}
.ring svg{transform:rotate(-90deg);}
.ring .pct{
position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;
}
.ring .pct b{font-family:Georgia,serif;font-size:21px;color:var(--green);line-height:1;}
.ring .pct span{font-size:8.5px;color:var(--muted);letter-spacing:.5px;}
.statgrid{display:flex;gap:9px;margin-bottom:6px;}
.stat{
flex:1;background:var(--paper);border:1px solid var(--line);border-radius:13px;
padding:11px 10px;text-align:center;
}
.stat b{font-family:Georgia,serif;font-size:20px;color:var(--green);display:block;}
.stat span{font-size:9.5px;color:var(--muted);letter-spacing:.5px;text-transform:uppercase;}
.formrow{
display:flex;align-items:center;gap:12px;padding:13px 0;border-bottom:1px solid var(--line);
cursor:pointer;
}
.formrow:last-child{border-bottom:0;}
.fr-ic{
width:40px;height:40px;flex:0 0 40px;border-radius:11px;background:#eef2ec;
display:flex;align-items:center;justify-content:center;
}
.fr-ic svg{width:20px;height:20px;stroke:var(--green);}
.fr-main{flex:1;min-width:0;}
.fr-main .ft{font-weight:700;font-size:13.5px;color:var(--ink);}
.fr-main .fs{font-size:11px;color:var(--muted);margin-top:2px;}
.feed-item{display:flex;gap:11px;padding:10px 0;border-bottom:1px solid var(--line);}
.feed-item:last-child{border-bottom:0;}
.dot{width:8px;height:8px;border-radius:50%;margin-top:5px;flex:0 0 8px;background:var(--gold);}
.dot.green{background:var(--good);}
.feed-item .ft{font-size:12.5px;color:var(--ink);line-height:1.4;}
.feed-item .fm{font-size:10.5px;color:var(--muted);margin-top:1px;}
/* ---- builder ---- */
.field{margin-bottom:13px;}
.field label{
display:block;font-size:11px;letter-spacing:1px;text-transform:uppercase;
color:var(--muted);font-weight:700;margin-bottom:6px;
}
.field input[type=text],.field input[type=number],.field textarea,.field select{
width:100%;border:1.5px solid var(--line);border-radius:11px;padding:12px;
font-size:14px;font-family:inherit;color:var(--ink);background:#fff;
}
.field textarea{resize:none;min-height:74px;}
.seg{display:flex;background:#ece7da;border-radius:11px;padding:4px;gap:4px;}
.seg button{
flex:1;border:0;background:transparent;padding:9px;border-radius:8px;font-size:12.5px;
font-weight:700;cursor:pointer;color:var(--muted);font-family:inherit;
}
.seg button.active{background:#fff;color:var(--green);box-shadow:0 1px 4px rgba(0,0,0,.1);}
.qcard{
background:#fff;border:1px solid var(--line);border-radius:13px;padding:12px;margin-bottom:9px;
display:flex;gap:11px;align-items:flex-start;
}
.qcard .qgrip{color:var(--line);font-size:16px;line-height:1;padding-top:2px;cursor:grab;}
.qcard .qbody{flex:1;min-width:0;cursor:pointer;}
.qmove{display:flex;flex-direction:column;gap:4px;flex:0 0 26px;}
.qmove button{
width:26px;height:21px;border:1px solid var(--line);background:#fff;border-radius:6px;
display:flex;align-items:center;justify-content:center;cursor:pointer;padding:0;
}
.qmove button svg{width:13px;height:13px;stroke:var(--green);}
.qmove button:disabled{opacity:.35;cursor:default;}
.qedit{flex:0 0 auto;border:0;background:transparent;cursor:pointer;padding:3px;align-self:center;}
.qedit svg{width:16px;height:16px;stroke:var(--gold);}
.qcard .qtype{
font-size:9.5px;letter-spacing:1px;text-transform:uppercase;color:var(--gold);font-weight:800;
}
.qcard .qlabel{font-size:13.5px;font-weight:700;color:var(--ink);margin-top:2px;}
.qcard .qmeta{font-size:11px;color:var(--muted);margin-top:3px;}
.qcard .qmax{
font-family:Georgia,serif;font-size:15px;color:var(--green);font-weight:700;flex:0 0 auto;
}
/* ---- bottom sheet ---- */
.sheet-overlay{
position:absolute;inset:0;background:rgba(20,28,22,.55);z-index:80;
display:none;align-items:flex-end;
}
.sheet-overlay.show{display:flex;}
.sheet{
width:100%;background:var(--cream);border-radius:24px 24px 0 0;padding:8px 16px 22px;
max-height:90%;overflow-y:auto;
}
.sheet-grip{width:38px;height:4px;background:var(--line);border-radius:2px;margin:6px auto 12px;}
.sheet h3{font-family:Georgia,serif;font-size:18px;margin:0 0 4px;color:var(--ink);}
.typegrid{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 4px;}
.typechip{
border:1.5px solid var(--line);background:#fff;border-radius:10px;padding:9px 11px;
font-size:11.5px;font-weight:700;color:var(--ink);cursor:pointer;display:flex;align-items:center;gap:6px;
}
.typechip svg{width:15px;height:15px;stroke:var(--green);}
.typechip.active{border-color:var(--gold);background:#f8efd9;}
/* ---- judge scoring ---- */
.scorebar{
position:sticky;top:0;z-index:30;
background:linear-gradient(160deg,var(--green) 0%,var(--green-deep) 100%);
color:#f4efe2;padding:13px 16px 15px;
}
.scorebar .sbtop{display:flex;align-items:flex-end;justify-content:space-between;}
.scorebar .bignum{font-family:Georgia,serif;font-size:42px;line-height:.95;color:#fff;}
.scorebar .bignum small{font-size:16px;color:#bdc9bd;}
.scorebar .sblabel{font-size:10px;letter-spacing:1.6px;text-transform:uppercase;color:var(--gold-light);}
.scorebar .deduct{text-align:right;font-size:11px;color:#bdc9bd;}
.scorebar .deduct b{color:#f0c98a;font-size:15px;font-family:Georgia,serif;}
.trackline{height:6px;background:rgba(255,255,255,.16);border-radius:3px;margin-top:10px;overflow:hidden;}
.trackline span{display:block;height:100%;background:linear-gradient(90deg,var(--gold),var(--gold-light));border-radius:3px;transition:width .25s;}
.qscore{
background:#fff;border:1px solid var(--line);border-radius:14px;padding:14px;margin-bottom:11px;
}
.qscore .qhead{display:flex;justify-content:space-between;gap:10px;align-items:flex-start;}
.qscore .qname{font-size:13.5px;font-weight:700;color:var(--ink);}
.qscore .qsub{font-size:10.5px;color:var(--muted);margin-top:2px;}
.qscore .qval{
font-family:Georgia,serif;font-weight:700;font-size:16px;flex:0 0 auto;color:var(--danger);
}
.qscore .qval.zero{color:var(--good);}
.slider{
width:100%;margin:13px 0 3px;-webkit-appearance:none;appearance:none;height:7px;
border-radius:4px;background:var(--line);outline:none;
}
.slider::-webkit-slider-thumb{
-webkit-appearance:none;width:24px;height:24px;border-radius:50%;background:#fff;
border:2.5px solid var(--gold);box-shadow:0 2px 6px rgba(0,0,0,.25);cursor:pointer;
}
.slider::-moz-range-thumb{
width:22px;height:22px;border-radius:50%;background:#fff;border:2.5px solid var(--gold);cursor:pointer;
}
.slabels{display:flex;justify-content:space-between;font-size:9.5px;color:var(--muted);}
.qactions{display:flex;gap:14px;margin-top:11px;padding-top:11px;border-top:1px dashed var(--line);}
.qact{
display:flex;align-items:center;gap:5px;font-size:11px;font-weight:700;color:var(--green);
cursor:pointer;background:none;border:0;font-family:inherit;padding:0;
}
.qact svg{width:14px;height:14px;stroke:var(--green);}
.qnote{display:none;margin-top:9px;}
.qnote.show{display:block;}
.qnote textarea{
width:100%;border:1.5px solid var(--line);border-radius:10px;padding:10px;font-size:12.5px;
font-family:inherit;resize:none;min-height:54px;color:var(--ink);background:#fbf9f3;
}
.choicerow{display:flex;gap:7px;margin-top:11px;}
.choicerow button{
flex:1;border:1.5px solid var(--line);background:#fff;border-radius:10px;padding:10px 4px;
font-size:11.5px;font-weight:700;color:var(--ink);cursor:pointer;font-family:inherit;
}
.choicerow button.active{border-color:var(--gold);background:#f8efd9;color:#8a6a1f;}
.photos{display:flex;gap:8px;flex-wrap:wrap;margin-top:11px;}
.photo-add,.photo-thumb{
width:62px;height:62px;border-radius:11px;flex:0 0 62px;
}
.photo-add{
border:1.5px dashed var(--gold);background:#faf4e5;display:flex;flex-direction:column;
align-items:center;justify-content:center;gap:3px;cursor:pointer;color:var(--gold);
font-size:8.5px;font-weight:700;
}
.photo-add svg{width:18px;height:18px;stroke:var(--gold);}
.photo-thumb{
background:linear-gradient(135deg,#3a5446,#243a2e);display:flex;align-items:center;justify-content:center;
}
.photo-thumb svg{width:22px;height:22px;stroke:rgba(255,255,255,.7);}
/* car hero */
.car-hero{
height:128px;background:linear-gradient(135deg,#26412f 0%,#16271d 100%);
display:flex;align-items:center;justify-content:center;position:relative;
}
.car-hero svg.carart{width:200px;height:auto;}
.car-hero .classtag{
position:absolute;top:11px;left:14px;background:rgba(0,0,0,.4);color:var(--gold-light);
font-size:9.5px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;
padding:4px 9px;border-radius:999px;
}
.car-hero .entry{
position:absolute;bottom:11px;right:14px;background:rgba(255,255,255,.92);color:var(--green);
font-size:9.5px;font-weight:800;letter-spacing:.6px;padding:4px 9px;border-radius:999px;
}
/* offline banner */
.offline{
display:flex;align-items:center;gap:8px;background:#f1ead8;border-bottom:1px solid var(--line);
padding:8px 16px;font-size:11px;color:#8a7a3f;font-weight:600;
}
.offline svg{width:15px;height:15px;stroke:#8a7a3f;}
.offline.synced{background:#e4efe5;color:var(--good);border-color:#cfe2cf;}
.offline.synced svg{stroke:var(--good);}
/* judge car list */
.carrow{
display:flex;gap:12px;padding:12px;background:#fff;border:1px solid var(--line);
border-radius:14px;margin-bottom:10px;cursor:pointer;align-items:center;
}
.carrow .thumb{
width:58px;height:46px;flex:0 0 58px;border-radius:9px;
background:linear-gradient(135deg,#2c4534,#19281e);display:flex;align-items:center;justify-content:center;
}
.carrow .thumb svg{width:42px;height:auto;}
.carrow .cmain{flex:1;min-width:0;}
.carrow .cn{font-weight:700;font-size:13px;color:var(--ink);}
.carrow .cm{font-size:10.5px;color:var(--muted);margin-top:2px;}
.miniprog{height:4px;background:var(--line);border-radius:2px;margin-top:7px;overflow:hidden;}
.miniprog span{display:block;height:100%;background:var(--gold);border-radius:2px;}
/* review screen */
.rev-row{
display:flex;justify-content:space-between;padding:10px 0;border-bottom:1px solid var(--line);
font-size:13px;
}
.rev-row:last-child{border-bottom:0;}
.rev-row .rn{color:var(--ink);font-weight:600;}
.rev-row .rn small{display:block;color:var(--muted);font-weight:400;font-size:10.5px;margin-top:2px;}
.rev-row .rv{font-family:Georgia,serif;font-weight:700;color:var(--danger);flex:0 0 auto;}
.rev-row .rv.zero{color:var(--good);}
.totalcard{
background:linear-gradient(160deg,var(--green),var(--green-deep));color:#fff;
border-radius:16px;padding:18px;text-align:center;margin-bottom:14px;
}
.totalcard .tn{font-family:Georgia,serif;font-size:52px;line-height:1;}
.totalcard .tl{font-size:10.5px;letter-spacing:2px;text-transform:uppercase;color:var(--gold-light);margin-top:4px;}
/* confirmation */
.done-wrap{
flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;
text-align:center;padding:30px;
}
.done-seal{
width:104px;height:104px;border-radius:50%;background:linear-gradient(155deg,var(--gold),#9c7a34);
display:flex;align-items:center;justify-content:center;margin-bottom:20px;
box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.done-seal svg{width:50px;height:50px;stroke:#fff;stroke-width:2.4;}
.done-wrap h2{font-family:Georgia,serif;font-size:23px;color:var(--ink);margin:0 0 8px;}
.done-wrap p{font-size:13px;color:var(--muted);line-height:1.6;margin:0 0 22px;max-width:250px;}
/* results leaderboard */
.lb-row{
display:flex;align-items:center;gap:12px;padding:13px;background:#fff;
border:1px solid var(--line);border-radius:14px;margin-bottom:9px;
}
.lb-row.top{border-color:var(--gold);background:linear-gradient(120deg,#fff,#fbf2dc);}
.lb-rank{
width:32px;height:32px;flex:0 0 32px;border-radius:50%;background:#eef2ec;
display:flex;align-items:center;justify-content:center;font-family:Georgia,serif;
font-weight:700;color:var(--green);font-size:15px;
}
.lb-row.top .lb-rank{background:var(--gold);color:#fff;}
.lb-main{flex:1;min-width:0;}
.lb-main .ln{font-weight:700;font-size:12.5px;color:var(--ink);}
.lb-main .lm{font-size:10px;color:var(--muted);margin-top:2px;}
.lb-score{font-family:Georgia,serif;font-size:20px;font-weight:700;color:var(--green);}
.bis-banner{
background:linear-gradient(150deg,var(--green),var(--green-deep));border-radius:16px;
padding:16px;color:#fff;margin-bottom:14px;display:flex;align-items:center;gap:13px;
}
.bis-banner svg{width:34px;height:34px;stroke:var(--gold-light);flex:0 0 34px;}
.bis-banner .bt{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:var(--gold-light);}
.bis-banner .bn{font-family:Georgia,serif;font-size:16px;font-weight:600;margin-top:2px;}
/* assign screen */
.judgerow{
display:flex;align-items:center;gap:11px;padding:11px 0;border-bottom:1px solid var(--line);
cursor:pointer;
}
.judgerow:last-child{border-bottom:0;}
.ava{
width:38px;height:38px;border-radius:50%;flex:0 0 38px;background:var(--green);color:#fff;
display:flex;align-items:center;justify-content:center;font-family:Georgia,serif;font-weight:700;font-size:14px;
}
.jmain{flex:1;min-width:0;}
.jmain .jn{font-weight:700;font-size:13px;color:var(--ink);}
.jmain .jm{font-size:10.5px;color:var(--muted);}
.check{
width:24px;height:24px;border-radius:7px;border:1.8px solid var(--line);flex:0 0 24px;
display:flex;align-items:center;justify-content:center;background:#fff;
}
.check svg{width:14px;height:14px;stroke:#fff;opacity:0;}
.check.on{background:var(--green);border-color:var(--green);}
.check.on svg{opacity:1;}
.toast{
position:absolute;left:50%;bottom:84px;transform:translateX(-50%) translateY(20px);
background:var(--ink);color:#fff;font-size:12px;font-weight:600;padding:11px 18px;
border-radius:999px;opacity:0;transition:.25s;z-index:90;white-space:nowrap;
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
.legend{
max-width:392px;margin:22px auto 0;display:flex;gap:10px;
}
.legend div{
flex:1;background:rgba(0,0,0,.22);border:1px solid rgba(216,184,120,.2);border-radius:12px;
padding:11px 13px;
}
.legend .lh{color:var(--gold-light);font-size:11px;font-weight:700;letter-spacing:.5px;margin-bottom:3px;}
.legend .ld{color:#aab6 aa;color:#a9b4a9;font-size:10.5px;line-height:1.5;}
.footnote{text-align:center;color:#7e8d80;font-size:11px;margin:20px auto 0;max-width:420px;line-height:1.6;}
.attach-row{padding:10px 2px;cursor:pointer;border-bottom:1px solid var(--line);}
.attach-row:last-child{border-bottom:0;}
.attach-row:active{opacity:.55;}
.attach-end{display:flex;align-items:center;gap:7px;}
.flash-hl{animation:flashpulse 1.7s ease-out;border-radius:10px;}
@keyframes flashpulse{
0%{box-shadow:0 0 0 0 rgba(184,146,74,0);}
12%{box-shadow:0 0 0 4px rgba(184,146,74,.6);}
70%{box-shadow:0 0 0 4px rgba(184,146,74,.32);}
100%{box-shadow:0 0 0 0 rgba(184,146,74,0);}
}
/* judges roster & detail */
.jlink{color:var(--green);cursor:pointer;font-weight:700;}
.jcard{display:flex;gap:12px;padding:13px;background:#fff;border:1px solid var(--line);border-radius:14px;margin-bottom:10px;cursor:pointer;align-items:flex-start;}
.jcard:active{transform:scale(.99);}
.jc-main{flex:1;min-width:0;}
.jc-top{display:flex;align-items:center;justify-content:space-between;gap:8px;}
.jc-name{font-weight:700;font-size:14px;color:var(--ink);}
.jc-role{font-size:11px;color:var(--muted);margin-top:1px;}
.jc-forms{display:flex;flex-wrap:wrap;gap:5px;margin:8px 0;}
.fchip{font-size:10px;font-weight:700;color:#8a6a1f;background:#f6ecd6;padding:3px 9px;border-radius:999px;}
.jc-prog{display:flex;align-items:center;gap:9px;}
.jc-prog .miniprog{flex:1;margin-top:0;}
.jc-prog-label{font-size:10px;color:var(--muted);font-weight:700;white-space:nowrap;}
.ava-lg{width:54px;height:54px;flex:0 0 54px;font-size:19px;}
.jd-head{display:flex;align-items:center;gap:12px;margin-bottom:4px;}
.jform{background:#fff;border:1px solid var(--line);border-radius:13px;padding:13px;margin-bottom:10px;}
.jform-top{display:flex;justify-content:space-between;align-items:flex-start;gap:10px;}
.jform-name{font-weight:700;font-size:13px;color:var(--ink);}
.jform-sub{font-size:10.5px;color:var(--muted);margin-top:2px;}
.jform-prog-label{font-size:10.5px;color:var(--muted);margin-top:9px;}
.jcomplete{display:flex;align-items:center;gap:11px;padding:11px;background:#fff;border:1px solid var(--line);border-radius:12px;margin-bottom:8px;}
.jc-tick{width:30px;height:30px;flex:0 0 30px;border-radius:50%;background:#e4efe5;display:flex;align-items:center;justify-content:center;}
.jc-tick svg{width:15px;height:15px;stroke:var(--good);}
.jc-car{flex:1;min-width:0;}
.jc-cn{font-weight:700;font-size:12.5px;color:var(--ink);}
.jc-cl{font-size:10.5px;color:var(--muted);margin-top:1px;}
.jc-score{font-family:Georgia,serif;font-size:18px;font-weight:700;color:var(--green);}
.jempty{text-align:center;color:var(--muted);font-size:12px;padding:18px;background:#fff;border:1px dashed var(--line);border-radius:13px;}
.jcomplete-tap{cursor:pointer;}
.jcomplete-tap:active{transform:scale(.99);}
.sheet-note{font-size:13px;color:var(--ink);line-height:1.65;}
</style>
</head>
<body>
<div class="page-head">
<div class="page-eyebrow">Concept Prototype</div>
<h1 class="serif">Concours d'Elegance — Digital Judging</h1>
<p>An interactive mockup of the field-judging app. The head judge builds and assigns scoring
forms; walking judges score cars on a phone instead of a clipboard.</p>
</div>
<div class="role-toggle">
<button id="roleAdmin" class="active" onclick="setRole('admin')">Head Judge</button>
<button id="roleJudge" onclick="setRole('judge')">Walking Judge</button>
</div>
<div class="role-caption" id="roleCaption">Building & assigning forms — tap through the tabs below.</div>
<div class="stage">
<div class="phone">
<div class="screen-frame">
<div class="notch"></div>
<!-- STATUS BAR -->
<div class="statusbar on-dark" id="statusbar">
<span>9:41</span>
<span class="sb-right">
<svg viewBox="0 0 24 24" class="ic"><path d="M2 17h2v3H2zM7 13h2v7H7zM12 9h2v11h-2zM17 5h2v15h-2z" fill="currentColor" stroke="none"/></svg>
<svg viewBox="0 0 24 24" class="ic" id="wifiIcon"><path d="M5 12.5a10 10 0 0 1 14 0M8.5 16a5 5 0 0 1 7 0M12 19h.01"/></svg>
<svg viewBox="0 0 24 24" class="ic"><rect x="2" y="8" width="18" height="10" rx="2"/><path d="M22 11v4" /><rect x="4" y="10" width="12" height="6" fill="currentColor" stroke="none"/></svg>
</span>
</div>
<div class="app">
<!-- ============ ADMIN: DASHBOARD ============ -->
<div class="view active" id="v-hj-dashboard">
<div class="scroll">
<div class="topbar">
<div class="kicker">Event Control</div>
<h2>Bayside Concours d'Elegance</h2>
<div class="sub">Saturday, June 13, 2026 · 64 entrants · 6 classes</div>
</div>
<div class="pad">
<div class="progress-card">
<div class="ring-wrap">
<div class="ring">
<svg width="84" height="84" viewBox="0 0 84 84">
<circle cx="42" cy="42" r="35" fill="none" stroke="#e6dfcf" stroke-width="9"/>
<circle cx="42" cy="42" r="35" fill="none" stroke="#b8924a" stroke-width="9"
stroke-linecap="round" stroke-dasharray="219.9" stroke-dashoffset="89"/>
</svg>
<div class="pct"><b>59%</b><span>SCORED</span></div>
</div>
<div style="flex:1">
<div style="font-weight:700;color:var(--ink);font-size:14px;">Judging in progress</div>
<div class="muted" style="font-size:12px;margin-top:3px;line-height:1.5;">
38 of 64 cars have a completed scoresheet. 6 judges active in the field.
</div>
</div>
</div>
</div>
<div class="statgrid">
<div class="stat"><b>4</b><span>Forms</span></div>
<div class="stat"><b>6</b><span>Judges</span></div>
<div class="stat"><b>6</b><span>Classes</span></div>
</div>
<div class="section-label">Scoring Forms</div>
<div class="card" style="padding:4px 15px;">
<div class="formrow" onclick="go('v-hj-builder')">
<div class="fr-ic"><svg viewBox="0 0 24 24" class="ic"><path d="M9 11l3 3 8-8"/><path d="M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11"/></svg></div>
<div class="fr-main">
<div class="ft">Antique Class — Full Judging</div>
<div class="fs">Deduction · 7 questions · assigned to 3 judges</div>
</div>
<span class="pill green">Live</span>
<svg viewBox="0 0 24 24" class="ic chev"><path d="M9 6l6 6-6 6"/></svg>
</div>
<div class="formrow" onclick="go('v-hj-builder')">
<div class="fr-ic"><svg viewBox="0 0 24 24" class="ic"><path d="M12 2l2.6 6.6L21 9.2l-5 4.3L17.5 21 12 17.2 6.5 21 8 13.5l-5-4.3 6.4-.6z"/></svg></div>
<div class="fr-main">
<div class="ft">Sports & Racing — Preservation</div>
<div class="fs">Additive · 6 questions · assigned to 3 judges</div>
</div>
<span class="pill green">Live</span>
<svg viewBox="0 0 24 24" class="ic chev"><path d="M9 6l6 6-6 6"/></svg>
</div>
<div class="formrow" onclick="go('v-hj-builder')">
<div class="fr-ic"><svg viewBox="0 0 24 24" class="ic"><path d="M4 21V5a2 2 0 0 1 2-2h9l5 5v13"/><path d="M8 8h6M8 12h8M8 16h8"/></svg></div>
<div class="fr-main">
<div class="ft">Postwar Classic — Full Judging</div>
<div class="fs">Deduction · 7 questions · assigned to 3 judges</div>
</div>
<span class="pill green">Live</span>
<svg viewBox="0 0 24 24" class="ic chev"><path d="M9 6l6 6-6 6"/></svg>
</div>
<div class="formrow" onclick="go('v-hj-builder')">
<div class="fr-ic"><svg viewBox="0 0 24 24" class="ic"><path d="M12 21s-7-4.3-7-10a7 7 0 0 1 14 0c0 5.7-7 10-7 10z"/><circle cx="12" cy="11" r="2.5"/></svg></div>
<div class="fr-main">
<div class="ft">People's Choice Ballot</div>
<div class="fs">Additive · 2 questions · open to all judges</div>
</div>
<span class="pill grey">Draft</span>
<svg viewBox="0 0 24 24" class="ic chev"><path d="M9 6l6 6-6 6"/></svg>
</div>
</div>
<button class="btn btn-gold" style="margin:6px 0 18px;" onclick="go('v-hj-builder')">
<svg viewBox="0 0 24 24" class="ic"><path d="M12 5v14M5 12h14"/></svg>
New Scoring Form
</button>
<div class="section-label">Recent Activity</div>
<div class="card">
<div class="feed-item">
<div class="dot green"></div>
<div><div class="ft"><b class="jlink" onclick="openJudge('eleanor')">Eleanor Vance</b> submitted a scoresheet for the 1955 Mercedes-Benz 300SL</div>
<div class="fm">Score 96.5 · 9:12 AM</div></div>
</div>
<div class="feed-item">
<div class="dot"></div>
<div><div class="ft"><b class="jlink" onclick="openJudge('james')">James Whitfield</b> started judging the 1961 Jaguar E-Type</div>
<div class="fm">9:04 AM</div></div>
</div>
<div class="feed-item">
<div class="dot green"></div>
<div><div class="ft"><b class="jlink" onclick="openJudge('margaret')">Margaret Cho</b> submitted a scoresheet for the 1930 Cadillac V-16</div>
<div class="fm">Score 94.5 · 8:51 AM</div></div>
</div>
</div>
<div style="height:14px;"></div>
</div>
</div>
</div>
<!-- ============ ADMIN: FORM BUILDER ============ -->
<div class="view" id="v-hj-builder">
<div class="appbar">
<button class="iconbtn" onclick="go('v-hj-dashboard')">
<svg viewBox="0 0 24 24" class="ic"><path d="M15 18l-6-6 6-6"/></svg>
</button>
<div class="ab-title"><div class="t">Form Builder</div><div class="s">Antique Class — Full Judging</div></div>
<button class="iconbtn" onclick="toast('Form saved to all devices')">
<svg viewBox="0 0 24 24" class="ic"><path d="M5 13l4 4L19 7"/></svg>
</button>
</div>
<div class="scroll pad">
<div class="field">
<label>Form Name</label>
<input type="text" value="Antique Class — Full Judging" />
</div>
<div class="field">
<label>Scoring Method</label>
<div class="seg">
<button id="modeDeduct" class="active" onclick="setMode('deduct')">Deduction</button>
<button id="modeAdd" onclick="setMode('add')">Additive</button>
</div>
<div id="modeHint" style="font-size:11px;color:var(--muted);margin-top:7px;line-height:1.5;">
Each car begins at the starting score; judges record point deductions for flaws.
The app subtracts them automatically.
</div>
</div>
<div class="field" id="startField">
<label>Starting Score</label>
<input type="number" value="100" />
</div>
<div class="between" style="margin:18px 2px 9px;">
<div class="section-label" style="margin:0;">Questions</div>
<div class="muted" style="font-size:11px;" id="qcount">7 items · 100 pts</div>
</div>
<div id="builderQuestions">
<div class="qcard">
<div class="qgrip">⠿</div>
<div class="qbody">
<div class="qtype">Deduction</div>
<div class="qlabel">Authenticity & Correctness</div>
<div class="qmeta">Period-correct components, finishes & markings</div>
</div>
<div class="qmax">25</div>
</div>
<div class="qcard">
<div class="qgrip">⠿</div>
<div class="qbody">
<div class="qtype">Deduction</div>
<div class="qlabel">Paint & Finish</div>
<div class="qmeta">Body finish quality, preparation & consistency</div>
</div>
<div class="qmax">20</div>
</div>
<div class="qcard">
<div class="qgrip">⠿</div>
<div class="qbody">
<div class="qtype">Deduction</div>
<div class="qlabel">Brightwork & Chrome</div>
<div class="qmeta">Plating, trim, glass & lamps</div>
</div>
<div class="qmax">15</div>
</div>
<div class="qcard">
<div class="qgrip">⠿</div>
<div class="qbody">
<div class="qtype">Deduction</div>
<div class="qlabel">Interior & Upholstery</div>
<div class="qmeta">Seats, trim, instruments & headliner</div>
</div>
<div class="qmax">15</div>
</div>
<div class="qcard">
<div class="qgrip">⠿</div>
<div class="qbody">
<div class="qtype">Deduction</div>
<div class="qlabel">Engine Compartment</div>
<div class="qmeta">Cleanliness, correctness & detailing</div>
</div>
<div class="qmax">15</div>
</div>
<div class="qcard">
<div class="qgrip">⠿</div>
<div class="qbody">
<div class="qtype">Deduction</div>
<div class="qlabel">Operation & Roadworthiness</div>
<div class="qmeta">Starts, runs & functions on the drive line</div>
</div>
<div class="qmax">10</div>
</div>
<div class="qcard">
<div class="qgrip">⠿</div>
<div class="qbody">
<div class="qtype">Yes / No</div>
<div class="qlabel">Ownership & provenance documents shown?</div>
<div class="qmeta">Informational — does not affect score</div>
</div>
<div class="qmax">—</div>
</div>
</div>
<button class="btn btn-ghost" style="margin:4px 0 10px;" onclick="openSheet()">
<svg viewBox="0 0 24 24" class="ic"><path d="M12 5v14M5 12h14"/></svg>
Add Question
</button>
<button class="btn btn-primary" style="margin-bottom:8px;" onclick="go('v-hj-assign')">
Continue to Assignment
</button>
<div style="height:10px;"></div>
</div>
</div>
<!-- ============ ADMIN: ASSIGN ============ -->
<div class="view" id="v-hj-assign">
<div class="appbar">
<button class="iconbtn" onclick="go('v-hj-builder')">
<svg viewBox="0 0 24 24" class="ic"><path d="M15 18l-6-6 6-6"/></svg>
</button>
<div class="ab-title"><div class="t">Assign Form</div><div class="s">Antique Class — Full Judging</div></div>
<span style="width:34px;"></span>
</div>
<div class="scroll pad">
<div class="field">
<label>Apply to Class</label>
<select>
<option>Antique — Pre-War (16 cars)</option>
<option>Classic American (12 cars)</option>
<option>European Sports (11 cars)</option>
<option>Postwar Classic (13 cars)</option>
</select>
</div>
<div class="field">
<label>Judges per car</label>
<div class="seg">
<button onclick="segPick(this)">1</button>
<button onclick="segPick(this)">2</button>
<button class="active" onclick="segPick(this)">3</button>
</div>
<div style="font-size:11px;color:var(--muted);margin-top:7px;line-height:1.5;">
Each car is scored independently by 3 judges; final score is the average.
</div>
</div>
<div class="section-label">Assign Judges</div>
<div class="card" style="padding:4px 15px;">
<div class="judgerow" onclick="tickJudge(this)">
<div class="ava">EV</div>
<div class="jmain"><div class="jn">Eleanor Vance</div><div class="jm">Senior Judge · Coachbuilt era</div></div>
<div class="check on"><svg viewBox="0 0 24 24" class="ic"><path d="M5 13l4 4L19 7"/></svg></div>
</div>
<div class="judgerow" onclick="tickJudge(this)">
<div class="ava">JW</div>
<div class="jmain"><div class="jn">James Whitfield</div><div class="jm">Judge · Engines & mechanicals</div></div>
<div class="check on"><svg viewBox="0 0 24 24" class="ic"><path d="M5 13l4 4L19 7"/></svg></div>
</div>
<div class="judgerow" onclick="tickJudge(this)">
<div class="ava">MC</div>
<div class="jmain"><div class="jn">Margaret Cho</div><div class="jm">Judge · Coachwork & finish</div></div>
<div class="check on"><svg viewBox="0 0 24 24" class="ic"><path d="M5 13l4 4L19 7"/></svg></div>
</div>
<div class="judgerow" onclick="tickJudge(this)">
<div class="ava">RD</div>
<div class="jmain"><div class="jn">Robert Delacroix</div><div class="jm">Judge · Interiors</div></div>
<div class="check"><svg viewBox="0 0 24 24" class="ic"><path d="M5 13l4 4L19 7"/></svg></div>
</div>
<div class="judgerow" onclick="tickJudge(this)">
<div class="ava">AP</div>
<div class="jmain"><div class="jn">Anita Park</div><div class="jm">Apprentice Judge</div></div>
<div class="check"><svg viewBox="0 0 24 24" class="ic"><path d="M5 13l4 4L19 7"/></svg></div>
</div>
</div>
<div class="card" style="background:#f1ead8;border-color:#e6d9b6;">
<div class="row" style="gap:9px;">
<svg viewBox="0 0 24 24" class="ic" style="width:18px;height:18px;stroke:#8a7a3f;"><circle cx="12" cy="12" r="9"/><path d="M12 8v5M12 16h.01"/></svg>
<div style="font-size:11.5px;color:#7d6e36;line-height:1.5;">
This form & the 16 assigned scoresheets will download to each judge's phone so they
work even with no signal at the show field.
</div>
</div>
</div>
<button class="btn btn-primary" onclick="toast('Form assigned · syncing to 3 judges')">
Assign & Push to Judges
</button>
<div class="section-label">Judges & Assignments</div>
<div style="font-size:11.5px;color:var(--muted);margin:-3px 2px 11px;line-height:1.5;">
Every judge and the forms they hold. Tap a judge to see their assigned forms and completed results.
</div>
<button class="btn btn-ghost" style="margin-bottom:11px;" onclick="openJudgeSheet()">
<svg viewBox="0 0 24 24" class="ic"><path d="M12 5v14M5 12h14"/></svg>
Add Judge
</button>
<div id="judgesList"></div>
<div style="height:12px;"></div>
</div>
</div>
<!-- ============ ADMIN: RESULTS ============ -->
<div class="view" id="v-hj-results">
<div class="scroll">
<div class="topbar">
<div class="kicker">Live Standings</div>
<h2>Results & Awards</h2>
<div class="sub">Antique — Pre-War class · 3-judge average</div>
</div>
<div class="pad">
<div class="bis-banner">
<svg viewBox="0 0 24 24" class="ic"><path d="M8 21h8M12 17v4M7 4h10v4a5 5 0 0 1-10 0zM7 4H4v2a3 3 0 0 0 3 3M17 4h3v2a3 3 0 0 1-3 3"/></svg>
<div>
<div class="bt">Provisional Best in Show</div>
<div class="bn">1937 Bugatti Type 57SC Atalante</div>
</div>
</div>
<div class="section-label">Class Leaderboard</div>
<div class="lb-row top">
<div class="lb-rank">1</div>
<div class="lb-main">
<div class="ln">1937 Bugatti Type 57SC Atalante</div>
<div class="lm">Entrant #14 · 3 of 3 sheets in · Best in Class</div>
</div>
<div class="lb-score">97.5</div>
</div>
<div class="lb-row">
<div class="lb-rank">2</div>
<div class="lb-main">
<div class="ln">1932 Duesenberg Model J</div>
<div class="lm">Entrant #07 · 2 of 3 sheets in · scoring</div>
</div>
<div class="lb-score">96.0</div>
</div>
<div class="lb-row">
<div class="lb-rank">3</div>
<div class="lb-main">
<div class="ln">1930 Cadillac V-16 Roadster</div>
<div class="lm">Entrant #21 · 3 of 3 sheets in</div>
</div>
<div class="lb-score">94.5</div>
</div>
<div class="lb-row">
<div class="lb-rank">4</div>
<div class="lb-main">
<div class="ln">1948 Tucker 48</div>
<div class="lm">Entrant #33 · 3 of 3 sheets in</div>
</div>
<div class="lb-score">92.0</div>
</div>
<div class="section-label">Awards</div>
<div class="card">
<div class="between" style="padding-bottom:10px;border-bottom:1px solid var(--line);">
<div><div style="font-weight:700;font-size:13px;color:var(--ink);">Best in Class — Antique</div>
<div class="muted" style="font-size:11px;">1937 Bugatti Type 57SC</div></div>
<span class="pill gold">Assigned</span>
</div>
<div class="between" style="padding-top:10px;">
<div><div style="font-weight:700;font-size:13px;color:var(--ink);">Outstanding Preservation</div>
<div class="muted" style="font-size:11px;">Not yet assigned</div></div>
<span class="pill grey">Pending</span>
</div>
</div>
<button class="btn btn-gold" onclick="toast('Awards sheet exported as PDF')">
<svg viewBox="0 0 24 24" class="ic"><path d="M12 3v12M7 10l5 5 5-5M5 21h14"/></svg>
Export Results & Awards
</button>
<div style="height:14px;"></div>
</div>
</div>
</div>
<!-- ============ ADMIN: JUDGE DETAIL ============ -->
<div class="view" id="v-hj-judge">
<div class="appbar">
<button class="iconbtn" onclick="go('v-hj-assign')">
<svg viewBox="0 0 24 24" class="ic"><path d="M15 18l-6-6 6-6"/></svg>
</button>
<div class="ab-title"><div class="t" id="judgeName">Judge</div><div class="s" id="judgeRole">Role</div></div>
<span style="width:34px;"></span>
</div>
<div class="scroll pad">
<div class="jd-head">
<div class="ava ava-lg" id="judgeAvatar">—</div>
<div class="statgrid" style="margin:0;flex:1;">
<div class="stat"><b id="judgeStatForms">0</b><span>Forms</span></div>
<div class="stat"><b id="judgeStatCars">0</b><span>Cars</span></div>
<div class="stat"><b id="judgeStatDone">0</b><span>Done</span></div>
</div>
</div>
<div class="section-label">Assigned Forms</div>
<div id="judgeForms"></div>
<div class="section-label">Completed Scoresheets</div>
<div id="judgeCompleted"></div>
<div style="height:14px;"></div>
</div>
</div>
<!-- ============ ADMIN: VIEW SCORESHEET ============ -->
<div class="view" id="v-hj-sheet">
<div class="appbar">
<button class="iconbtn" onclick="go('v-hj-judge')">
<svg viewBox="0 0 24 24" class="ic"><path d="M15 18l-6-6 6-6"/></svg>
</button>
<div class="ab-title"><div class="t" id="sheetCar">Scoresheet</div><div class="s" id="sheetBy">Scored by …</div></div>
<span style="width:34px;"></span>
</div>
<div class="scroll pad">
<div class="totalcard">
<div class="tn" id="sheetTotal">—</div>
<div class="tl">Final Score · out of 100</div>
</div>
<div class="section-label">Deduction Summary</div>
<div class="card" id="sheetRows"></div>
<div class="section-label">Judge's Note</div>
<div class="card" id="sheetNote"></div>
<div style="height:14px;"></div>
</div>
</div>
<!-- ============ JUDGE: MY CARS ============ -->
<div class="view" id="v-wj-home">
<div class="scroll">
<div class="topbar">
<div class="kicker">Walking Judge</div>
<h2>Good morning, Eleanor</h2>
<div class="sub">Antique — Pre-War · 5 cars assigned to you</div>
</div>
<div class="offline">
<svg viewBox="0 0 24 24" class="ic"><path d="M1 1l22 22M16.7 11.3a6 6 0 0 0-7-1M5 12.5a10 10 0 0 1 4-2.4M8.5 16a5 5 0 0 1 3-1.3M12 19h.01"/></svg>
Working offline · 1 completed sheet will sync when you reconnect
</div>
<div class="pad">
<div class="statgrid" style="margin-bottom:14px;">
<div class="stat"><b>1</b><span>Done</span></div>
<div class="stat"><b>1</b><span>In progress</span></div>
<div class="stat"><b>3</b><span>To do</span></div>
</div>