-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1420 lines (1286 loc) · 105 KB
/
index.html
File metadata and controls
1420 lines (1286 loc) · 105 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>Kanban — Weighbridge software prototype</title>
<style>
:root {
--bg: #F5F2ED;
--paper: #FFFFFF;
--cream: #FAF7F2;
--ink: #1A1715;
--ink-2: #5F5853;
--ink-3: #8A8278;
--ink-4: #A89F92;
--line: #EAE4DA;
--line-2: #D9D2C5;
--orange: #FF4F18;
--orange-soft: #FFE4DA;
--orange-mid: #FFC4AA;
--orange-deep: #993C1D;
--orange-deeper: #4A1B0C;
--green: #1D9E75;
--green-soft: #DFF1E6;
--green-deep: #0F6E56;
--amber: #BA7517;
--amber-soft: #FFF1D6;
--red: #D4453F;
--red-soft: #FFE0DE;
--red-deep: #A32D2D;
--navy: #0b2976;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
background: var(--bg);
color: var(--ink);
font-size: 14px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
}
.mono { font-family: "SF Mono", Menlo, Consolas, monospace; }
/* ============= LAYOUT ============= */
.app { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
/* Sidebar */
.nav {
background: var(--ink);
color: #FFFFFF;
padding: 20px 16px;
position: sticky;
top: 0;
align-self: start;
height: 100vh;
overflow-y: auto;
}
.nav-brand { display: flex; align-items: center; gap: 10px; padding: 6px 8px; margin-bottom: 18px; }
.nav-brand-text { font-weight: 600; font-size: 15px; letter-spacing: 0.2px; }
.nav-brand-tag { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }
.nav-section { margin-top: 18px; }
.nav-section-h { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 1px; padding: 0 8px 8px; font-weight: 500; text-transform: uppercase; }
.nav-link {
display: flex; align-items: center; gap: 10px;
padding: 8px 10px; border-radius: 7px;
cursor: pointer; user-select: none;
color: rgba(255,255,255,0.75);
font-size: 13px;
transition: background 0.12s, color 0.12s;
}
.nav-link:hover { background: rgba(255,255,255,0.06); color: #FFFFFF; }
.nav-link.active { background: var(--orange); color: #FFFFFF; }
.nav-link.active .nav-link-num { color: rgba(255,255,255,0.85); }
.nav-link-num { font-size: 10px; color: rgba(255,255,255,0.4); margin-right: 4px; min-width: 14px; }
.nav-divider { height: 0.5px; background: rgba(255,255,255,0.1); margin: 14px 8px; }
/* Main pane */
.main { padding: 28px 32px 64px; max-width: 1280px; }
.crumb { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 12px; color: var(--ink-3); }
.crumb-pill { padding: 2px 8px; background: var(--paper); border: 0.5px solid var(--line); border-radius: 999px; font-weight: 500; color: var(--ink); }
.screen-title { font-size: 22px; font-weight: 500; margin: 0 0 4px; color: var(--ink); }
.screen-sub { font-size: 13px; color: var(--ink-3); margin: 0 0 22px; }
.frame-wrap { background: var(--bg); border-radius: 16px; padding: 24px; }
/* Tablet frame */
.tablet { background: var(--ink); border-radius: 24px; padding: 14px; }
.tablet-screen { background: var(--paper); border-radius: 14px; overflow: hidden; min-height: 540px; position: relative; }
/* Generic top bar inside the tablet/desktop screens */
.topbar {
display: flex; align-items: center; justify-content: space-between;
padding: 12px 20px; border-bottom: 0.5px solid var(--line);
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--ink-2); }
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-green { background: var(--green); }
.dot-orange { background: var(--orange); }
.dot-red { background: var(--red); }
.dot-amber { background: var(--amber); }
.dot-gray { background: var(--ink-4); }
/* Brand: Kanban logo */
.kanban-logo { display: inline-flex; align-items: center; gap: 8px; }
/* Pill */
.pill { padding: 2px 10px; border-radius: 999px; font-size: 11px; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.pill-orange { background: var(--orange-soft); color: var(--orange-deep); }
.pill-green { background: var(--green-soft); color: var(--green-deep); }
.pill-red { background: var(--red-soft); color: var(--red-deep); }
.pill-amber { background: var(--amber-soft); color: var(--amber); }
.pill-gray { background: #F4EFE6; color: var(--ink-2); }
.pill-ink { background: #F4EFE6; color: var(--ink-2); }
/* Buttons */
.btn {
padding: 7px 14px; border: 0.5px solid var(--line); background: var(--paper);
border-radius: 8px; font-size: 13px; color: var(--ink); cursor: pointer;
transition: background 0.12s, border-color 0.12s; font-family: inherit;
display: inline-flex; align-items: center; gap: 6px;
}
.btn:hover { background: var(--cream); }
.btn-primary { background: var(--orange); color: #FFFFFF; border: none; font-weight: 500; }
.btn-primary:hover { background: #E84612; }
.btn-primary:disabled { background: var(--ink-4); cursor: not-allowed; }
.btn-ink { background: var(--ink); color: #FFFFFF; border: none; font-weight: 500; }
.btn-ink:hover { background: #2A2724; }
.btn-sm { padding: 4px 10px; font-size: 11px; border-radius: 6px; }
.btn-lg { padding: 10px 22px; font-size: 14px; }
/* Tabs */
.tabs { display: flex; padding: 0 20px; border-bottom: 0.5px solid var(--line); background: var(--paper); }
.tab {
padding: 14px 18px; color: var(--ink-3); font-size: 14px;
display: flex; align-items: center; gap: 8px; cursor: pointer;
border-bottom: 2px solid transparent;
user-select: none;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); font-weight: 500; border-bottom-color: var(--orange); }
.tab-count { font-size: 12px; padding: 1px 8px; border-radius: 999px; font-weight: 500; background: #F4EFE6; color: var(--ink-2); }
.tab.active .tab-count { background: var(--orange-soft); color: var(--orange-deep); }
.tabs-action { margin-left: auto; padding: 14px 0; display: flex; align-items: center; gap: 10px; }
/* Inputs */
input[type="text"], input[type="search"], select {
padding: 7px 12px; border: 0.5px solid var(--line); border-radius: 999px;
font-size: 13px; background: var(--cream); color: var(--ink);
font-family: inherit; outline: none;
}
input[type="text"]:focus, input[type="search"]:focus { border-color: var(--orange); background: #FFF; }
select { border-radius: 8px; cursor: pointer; }
/* Tile grid (loader app) */
.tile-grid { padding: 16px 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tile {
background: var(--paper); border: 0.5px solid var(--line);
border-radius: 12px; padding: 12px; cursor: pointer;
transition: border-color 0.12s, background 0.12s;
position: relative;
}
.tile:hover { border-color: var(--ink-3); }
.tile-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.tile-time { font-size: 11px; color: var(--ink-3); letter-spacing: 0.5px; }
.tile-vak { font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: 500; background: #F4EFE6; color: var(--ink-2); }
.tile-plate { font-size: 18px; font-weight: 500; letter-spacing: 1px; margin-bottom: 6px; color: var(--ink); }
.tile-client { font-size: 12px; color: var(--ink-2); }
.tile-product { font-size: 12px; color: var(--ink-3); }
.tile.selected { background: var(--orange-soft); border: 2px solid var(--orange); padding: 11px; }
.tile.selected .tile-time { color: var(--orange-deep); font-weight: 500; }
.tile.selected .tile-vak { background: var(--orange-mid); color: var(--orange-deeper); }
.tile.selected .tile-plate { color: var(--orange-deeper); }
.tile.selected .tile-client { color: var(--orange-deep); font-weight: 500; }
.tile.selected .tile-product { color: #C04217; }
.tile.late { }
.tile.late .tile-time { color: var(--red); font-weight: 500; }
.tile.late::after {
content: ""; position: absolute; top: 8px; right: 8px;
width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.tile-empty {
background: var(--cream); border: 0.5px dashed var(--line-2);
border-radius: 12px; padding: 12px; min-height: 96px;
display: flex; align-items: center; justify-content: center;
font-size: 12px; color: var(--ink-4);
}
/* Bottom action bar inside screens */
.actionbar {
padding: 14px 20px; border-top: 0.5px solid var(--line); background: var(--cream);
display: flex; justify-content: space-between; align-items: center;
}
.actionbar-text { font-size: 13px; color: var(--ink-2); }
/* Modal */
.modal-veil {
position: absolute; inset: 0; background: rgba(26,23,21,0.45);
display: flex; align-items: center; justify-content: center;
opacity: 0; pointer-events: none; transition: opacity 0.18s;
z-index: 10;
}
.modal-veil.open { opacity: 1; pointer-events: auto; }
.modal {
background: var(--paper); border-radius: 12px;
padding: 28px 32px; width: 420px; max-width: 90%; text-align: center;
transform: translateY(8px); transition: transform 0.2s;
}
.modal-veil.open .modal { transform: translateY(0); }
/* Helper utilities */
.row { display: flex; align-items: center; gap: 10px; }
.row-between { display: flex; justify-content: space-between; align-items: center; }
.stack { display: flex; flex-direction: column; gap: 6px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lbl { font-size: 12px; color: var(--ink-3); margin-bottom: 4px; }
.field {
display: flex; align-items: center; justify-content: space-between;
padding: 10px 12px; border: 0.5px solid var(--line);
border-radius: 8px; font-size: 14px; color: var(--ink); background: var(--paper);
}
.field-edit { color: var(--orange); font-size: 12px; font-weight: 500; cursor: pointer; }
.field-vak { background: var(--orange-soft); border-color: var(--orange-mid); }
.field-vak .field-edit { color: var(--orange-deep); }
.field-vak-num { font-weight: 500; color: var(--orange-deeper); }
/* Plate hero */
.plate-hero {
padding: 20px 24px; border-bottom: 0.5px solid var(--line);
display: flex; justify-content: space-between; align-items: center;
}
.plate-lbl { font-size: 12px; color: var(--ink-4); letter-spacing: 0.5px; margin-bottom: 4px; }
.plate-num { font-size: 32px; font-weight: 500; letter-spacing: 2px; color: var(--ink); }
.ticket-id { font-size: 16px; color: var(--ink-2); }
/* KPI cards */
.kpi {
background: var(--paper); border: 0.5px solid var(--line); border-radius: 10px;
padding: 18px 20px;
}
.kpi-row { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.kpi-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.kpi-icon-orange { background: var(--orange-soft); color: var(--orange); }
.kpi-icon-amber { background: var(--amber-soft); color: var(--amber); }
.kpi-icon-red { background: var(--red-soft); color: var(--red); }
.kpi-icon-green { background: var(--green-soft); color: var(--green); }
.kpi-arrow { font-size: 14px; color: var(--ink-3); }
.kpi-label { font-size: 13px; color: var(--ink-2); font-weight: 500; margin-bottom: 4px; }
.kpi-num { font-size: 32px; font-weight: 600; }
.kpi-num-amber { color: var(--amber); }
.kpi-num-red { color: var(--red); }
/* Tables */
table.t { width: 100%; border-collapse: collapse; font-size: 13px; }
table.t th { text-align: left; padding: 10px 12px; font-size: 11px; color: var(--ink-3); letter-spacing: 0.5px; font-weight: 500; }
table.t td { padding: 12px; border-bottom: 0.5px solid var(--line); }
table.t tr:last-child td { border-bottom: none; }
table.t .num { text-align: right; }
table.t .alert-row { background: #FFF1EE; }
table.t .warn-row { background: #FFFCF6; }
table.t .hover-row:hover { background: var(--cream); cursor: pointer; }
/* Ticket paper */
.paper {
background: var(--paper); border: 0.5px solid var(--line);
border-radius: 8px; padding: 28px 32px;
}
.letterhead {
display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
padding-bottom: 16px; border-bottom: 1.5px solid var(--ink); align-items: center;
}
.letterhead-meta { text-align: right; font-size: 11px; color: var(--ink-2); line-height: 1.6; }
.ticket-meta {
display: flex; justify-content: space-between; align-items: center;
padding: 12px 0; border-bottom: 0.5px solid var(--line); font-size: 11px;
}
.ticket-meta-fields { display: flex; gap: 28px; }
.weights-block {
background: var(--cream); border-radius: 8px; padding: 16px 20px; margin-top: 8px;
}
.weights-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: end; }
.weights-netto { border-left: 1.5px solid var(--ink); padding-left: 20px; }
/* Calc card (2de weging) */
.calc {
background: var(--paper); border: 0.5px solid var(--line);
border-radius: 12px; overflow: hidden;
}
.calc-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 16px 20px; align-items: center; }
.calc-row + .calc-row { border-top: 0.5px solid var(--line); }
.calc-row.tarra { background: var(--cream); }
.calc-row.netto { background: var(--orange-soft); }
.calc-amt { font-size: 24px; font-weight: 500; color: var(--ink); }
.calc-amt .unit { font-size: 12px; color: var(--ink-3); font-weight: 400; }
.calc-tarra-amt { font-size: 22px; color: var(--ink-2); }
.calc-netto-amt { font-size: 36px; font-weight: 600; color: var(--orange-deeper); }
.calc-op { font-size: 18px; color: var(--ink-3); font-weight: 300; margin-right: 10px; }
.calc-op-eq { color: var(--orange-deep); font-weight: 500; }
/* Stage strip */
.stage-strip {
display: flex; gap: 8px; padding: 14px 24px;
background: var(--cream); border-bottom: 0.5px solid var(--line);
overflow-x: auto;
}
.stage { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.stage-num {
width: 22px; height: 22px; border-radius: 50%;
background: var(--paper); border: 0.5px solid var(--line-2);
color: var(--ink-3); font-size: 11px; font-weight: 600;
display: inline-flex; align-items: center; justify-content: center;
}
.stage.done .stage-num { background: var(--ink); color: #FFFFFF; border-color: var(--ink); }
.stage.current .stage-num { background: var(--orange); color: #FFFFFF; border-color: var(--orange); }
.stage-text { font-size: 12px; color: var(--ink-3); cursor: pointer; }
.stage.done .stage-text, .stage.current .stage-text { color: var(--ink); font-weight: 500; }
.stage-arrow { color: var(--ink-4); font-size: 14px; }
/* Hide all screens by default; show only the active one */
.screen { display: none; }
.screen.active { display: block; }
/* Subtle reveal animation when switching screens */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(4px); }
to { opacity: 1; transform: translateY(0); }
}
.screen.active { animation: fadeIn 0.18s ease-out; }
/* Inline link styled subtly */
a.inline {
color: var(--orange); text-decoration: none; font-weight: 500;
cursor: pointer;
}
a.inline:hover { text-decoration: underline; }
/* Scroll within modal screens etc */
.scroll-y { overflow-y: auto; }
</style>
</head>
<body>
<div class="app">
<!-- ============================================================
SIDEBAR NAV — list of screens
============================================================ -->
<aside class="nav">
<div class="nav-brand">
<!-- Kanban logo -->
<svg width="92" height="26" viewBox="0 0 577 168" xmlns="http://www.w3.org/2000/svg">
<path d="M195.707 102V26.114H209.408V102H195.707ZM205.614 62.5814L241.554 26.114H259.999L222.583 62.5814H205.614ZM243.241 102L205.403 62.5814H222.583L262.107 102H243.241ZM301.181 102C300.83 100.595 300.549 99.0489 300.338 97.3625C300.197 95.6762 300.127 93.6385 300.127 91.2495H299.706V65.7434C299.706 62.9328 298.898 60.8248 297.281 59.4195C295.736 57.944 293.347 57.2062 290.114 57.2062C286.952 57.2062 284.423 57.8034 282.526 58.9979C280.699 60.1222 279.575 61.7734 279.153 63.9516H266.4C266.962 58.9628 269.351 54.9226 273.567 51.8309C277.783 48.7393 283.439 47.1934 290.536 47.1934C297.914 47.1934 303.5 48.8798 307.294 52.2525C311.088 55.555 312.986 60.4384 312.986 66.9027V91.2495C312.986 92.9358 313.091 94.6573 313.302 96.4139C313.583 98.1706 313.969 100.033 314.461 102H301.181ZM282.526 103.054C277.115 103.054 272.794 101.719 269.562 99.0489C266.4 96.3086 264.819 92.6548 264.819 88.0876C264.819 83.169 266.611 79.2693 270.194 76.3885C273.778 73.5076 278.837 71.5753 285.372 70.5916L302.13 68.0621V76.4939L287.585 78.7072C284.423 79.1991 282.034 80.0774 280.418 81.3421C278.872 82.6069 278.099 84.3635 278.099 86.612C278.099 88.6497 278.837 90.2306 280.312 91.3549C281.788 92.4089 283.826 92.9358 286.426 92.9358C290.22 92.9358 293.382 91.9873 295.911 90.0901C298.441 88.193 299.706 85.8742 299.706 83.1339L301.181 91.2495C299.776 95.114 297.457 98.0652 294.225 100.103C291.063 102.07 287.163 103.054 282.526 103.054ZM326.436 102V48.2474H339.4V60.8951H339.716V102H326.436ZM364.168 102V68.0621C364.168 64.7597 363.325 62.2653 361.639 60.5789C359.952 58.8925 357.493 58.0494 354.261 58.0494C351.45 58.0494 348.921 58.6817 346.672 59.9465C344.494 61.2113 342.773 62.9679 341.508 65.2164C340.313 67.4648 339.716 70.0646 339.716 73.0158L338.346 60.1573C340.173 56.2225 342.843 53.0957 346.356 50.777C349.869 48.3879 354.085 47.1934 359.004 47.1934C364.836 47.1934 369.368 48.8447 372.6 52.1471C375.903 55.4496 377.554 59.8411 377.554 65.3218V102H364.168ZM421.642 103.054C416.513 103.054 412.297 101.859 408.994 99.4705C405.762 97.0112 403.759 93.6385 402.987 89.3523L403.935 89.2469V102H390.971V26.114H404.251V60.3681L403.303 60.1573C404.216 56.1522 406.359 52.9903 409.732 50.6716C413.175 48.3528 417.426 47.1934 422.485 47.1934C427.263 47.1934 431.409 48.3528 434.922 50.6716C438.505 52.92 441.281 56.1171 443.248 60.2627C445.216 64.4083 446.199 69.2917 446.199 74.9129C446.199 80.6044 445.181 85.558 443.143 89.7739C441.105 93.9898 438.26 97.2571 434.606 99.5759C430.952 101.895 426.631 103.054 421.642 103.054ZM418.269 92.0927C422.555 92.0927 425.963 90.6171 428.493 87.666C431.022 84.6446 432.287 80.4287 432.287 75.0183C432.287 69.6079 430.987 65.4272 428.387 62.476C425.858 59.5249 422.45 58.0494 418.164 58.0494C413.948 58.0494 410.54 59.5601 407.94 62.5814C405.34 65.5326 404.041 69.7133 404.041 75.1237C404.041 80.5341 405.34 84.7149 407.94 87.666C410.54 90.6171 413.983 92.0927 418.269 92.0927ZM489.846 102C489.495 100.595 489.214 99.0489 489.003 97.3625C488.863 95.6762 488.792 93.6385 488.792 91.2495H488.371V65.7434C488.371 62.9328 487.563 60.8248 485.947 59.4195C484.401 57.944 482.012 57.2062 478.78 57.2062C475.618 57.2062 473.088 57.8034 471.191 58.9979C469.364 60.1222 468.24 61.7734 467.818 63.9516H455.065C455.627 58.9628 458.016 54.9226 462.232 51.8309C466.448 48.7393 472.104 47.1934 479.201 47.1934C486.579 47.1934 492.165 48.8798 495.959 52.2525C499.754 55.555 501.651 60.4384 501.651 66.9027V91.2495C501.651 92.9358 501.756 94.6573 501.967 96.4139C502.248 98.1706 502.634 100.033 503.126 102H489.846ZM471.191 103.054C465.781 103.054 461.459 101.719 458.227 99.0489C455.065 96.3086 453.484 92.6548 453.484 88.0876C453.484 83.169 455.276 79.2693 458.859 76.3885C462.443 73.5076 467.502 71.5753 474.037 70.5916L490.795 68.0621V76.4939L476.25 78.7072C473.088 79.1991 470.699 80.0774 469.083 81.3421C467.537 82.6069 466.764 84.3635 466.764 86.612C466.764 88.6497 467.502 90.2306 468.978 91.3549C470.453 92.4089 472.491 92.9358 475.091 92.9358C478.885 92.9358 482.047 91.9873 484.576 90.0901C487.106 88.193 488.371 85.8742 488.371 83.1339L489.846 91.2495C488.441 95.114 486.122 98.0652 482.89 100.103C479.728 102.07 475.828 103.054 471.191 103.054ZM515.101 102V48.2474H528.065V60.8951H528.381V102H515.101ZM552.833 102V68.0621C552.833 64.7597 551.99 62.2653 550.304 60.5789C548.618 58.8925 546.158 58.0494 542.926 58.0494C540.115 58.0494 537.586 58.6817 535.337 59.9465C533.159 61.2113 531.438 62.9679 530.173 65.2164C528.979 67.4648 528.381 70.0646 528.381 73.0158L527.011 60.1573C528.838 56.2225 531.508 53.0957 535.021 50.777C538.535 48.3879 542.75 47.1934 547.669 47.1934C553.501 47.1934 558.033 48.8447 561.265 52.1471C564.568 55.4496 566.219 59.8411 566.219 65.3218V102H552.833Z" fill="#FFFFFF"/>
<rect y="26.5222" width="30.3792" height="128.085" rx="12.3159" fill="#FF4F18"/>
<rect x="40.2852" y="26.5222" width="30.3792" height="104.275" rx="12.3159" fill="#FF4F18"/>
<rect x="80.2734" y="26.5222" width="30.3792" height="80.4639" rx="12.3159" fill="#FF4F18"/>
<rect x="120.258" y="26.5222" width="30.3792" height="56.6531" rx="12.3159" fill="#FF4F18"/>
</svg>
</div>
<div class="nav-brand-tag" style="padding: 0 8px 4px;">Weighbridge software prototype</div>
<div class="nav-brand-tag" style="padding: 0 8px 4px; color: rgba(255,255,255,0.35);">Seaport Brugge demo</div>
<div class="nav-section">
<div class="nav-section-h">Wheel loader app</div>
<div class="nav-link active" data-screen="loader-grid"><span class="nav-link-num">01</span> Vooraanmelding grid</div>
<div class="nav-link" data-screen="ticket-detail"><span class="nav-link-num">02</span> Ticket detail</div>
<div class="nav-link" data-screen="vak-modal"><span class="nav-link-num">03</span> 1ste weging · VAK</div>
<div class="nav-link" data-screen="loading-state"><span class="nav-link-num">04</span> Loading at VAK</div>
<div class="nav-link" data-screen="weging-2"><span class="nav-link-num">05</span> 2de weging</div>
</div>
<div class="nav-section">
<div class="nav-section-h">Office</div>
<div class="nav-link" data-screen="signpad"><span class="nav-link-num">06</span> Signature pad</div>
<div class="nav-link" data-screen="ticket-pdf"><span class="nav-link-num">07</span> Printed ticket</div>
</div>
<div class="nav-section">
<div class="nav-section-h">Operations</div>
<div class="nav-link" data-screen="stock-dash"><span class="nav-link-num">08</span> Stock dashboard</div>
</div>
<div class="nav-section">
<div class="nav-section-h">Client portal</div>
<div class="nav-link" data-screen="client-home"><span class="nav-link-num">09</span> Client overview</div>
<div class="nav-link" data-screen="client-ticket"><span class="nav-link-num">10</span> Ticket viewer</div>
<div class="nav-link" data-screen="client-vak"><span class="nav-link-num">11</span> VAK history</div>
</div>
</aside>
<!-- ============================================================
MAIN CONTENT — each screen is a section, only one shown
============================================================ -->
<main class="main">
<!-- ===== STAGE STRIP (shows the user where in the loader flow they are) ===== -->
<div id="stage-strip" style="display: none; margin-bottom: 16px;">
<div style="display: flex; gap: 6px; align-items: center; padding: 10px 14px; background: var(--paper); border: 0.5px solid var(--line); border-radius: 999px; width: fit-content;">
<span class="stage" data-stage="1"><span class="stage-num">1</span><span class="stage-text" data-go="loader-grid">Grid</span></span>
<span class="stage-arrow">›</span>
<span class="stage" data-stage="2"><span class="stage-num">2</span><span class="stage-text" data-go="ticket-detail">Ticket</span></span>
<span class="stage-arrow">›</span>
<span class="stage" data-stage="3"><span class="stage-num">3</span><span class="stage-text" data-go="vak-modal">1ste weging</span></span>
<span class="stage-arrow">›</span>
<span class="stage" data-stage="4"><span class="stage-num">4</span><span class="stage-text" data-go="loading-state">Loading</span></span>
<span class="stage-arrow">›</span>
<span class="stage" data-stage="5"><span class="stage-num">5</span><span class="stage-text" data-go="weging-2">2de weging</span></span>
<span class="stage-arrow">›</span>
<span class="stage" data-stage="6"><span class="stage-num">6</span><span class="stage-text" data-go="signpad">Sign</span></span>
<span class="stage-arrow">›</span>
<span class="stage" data-stage="7"><span class="stage-num">7</span><span class="stage-text" data-go="ticket-pdf">PDF</span></span>
</div>
</div>
<!-- ============================================================
SCREEN 01 — VOORAANMELDING GRID (loader app home)
============================================================ -->
<section class="screen active" id="screen-loader-grid">
<div class="crumb"><span>Wheel loader app</span><span style="color: var(--line-2);">/</span><span class="crumb-pill">Vooraanmelding</span></div>
<h1 class="screen-title">Loader operator's home screen</h1>
<p class="screen-sub">Twelve trucks max, one per tile. Tap a tile to start a weigh-in. The selected tile (orange) is the next truck on the bridge.</p>
<div class="frame-wrap">
<div class="tablet"><div class="tablet-screen">
<div class="topbar">
<div class="topbar-left">
<span style="color: var(--ink-3); font-size: 13px;">Wheel loader 02</span>
<span style="padding: 5px 14px 5px 10px; background: var(--cream); border-radius: 999px; font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px;">
<svg width="22" height="14" viewBox="0 0 125 99"><g transform="translate(-142.263 -368.425)"><path d="M183.14,382.239H161.808l-14.5,26.2,9.142,16.6L142.263,450.7h21.324l14.18-25.661-9.129-16.6Z" transform="translate(-142.263 -366.635)" fill="#1A1715"/><path d="M215.323,368.425H194L170.674,410.3l9.2,16.47L156.961,467.73h21.324l22.892-40.963L191.953,410.3Z" transform="translate(-140.358 -368.425)" fill="#1A1715"/><path d="M265.18,382.239H206.515l-10.8,19.623h18.4L187,450.7h21.324L235.4,401.863h18.326Z" transform="translate(-136.463 -366.635)" fill="#1A1715"/></g></svg>
Seaport Brugge
</span>
</div>
<div class="topbar-meta">
<span><span class="dot dot-green"></span> Bridge · 0 kg</span>
<span>T. Janssens</span>
<span>14:32</span>
</div>
</div>
<div class="tabs">
<div class="tab active">Vooraanmelding <span class="tab-count">7</span></div>
<div class="tab">Aanmelding <span class="tab-count">3</span></div>
<div class="tab">Afmelding <span class="tab-count">2</span></div>
<div class="tabs-action">
<input type="search" placeholder="Search plate, klant, ordernr..." style="width: 240px;">
<button class="btn">Refresh</button>
</div>
</div>
<div class="tile-grid">
<div class="tile" data-go="ticket-detail">
<div class="tile-head"><span class="tile-time">14:08</span><span class="tile-vak">VAK 14B</span></div>
<div class="tile-plate mono">1EKE308</div>
<div class="tile-client">STRUCTO NV</div>
<div class="tile-product">Rond zand 0/4</div>
</div>
<div class="tile selected" data-go="ticket-detail">
<div class="tile-head"><span class="tile-time">14:12</span><span class="tile-vak">VAK 07A</span></div>
<div class="tile-plate mono">1KCA640</div>
<div class="tile-client">STRUCTO NV</div>
<div class="tile-product">Gewassen zand 0/4</div>
</div>
<div class="tile" data-go="ticket-detail">
<div class="tile-head"><span class="tile-time">14:15</span><span class="tile-vak">VAK 22C</span></div>
<div class="tile-plate mono">2HRD218</div>
<div class="tile-client">DE LOOF P. BV</div>
<div class="tile-product">Half gerold 4/16</div>
</div>
<div class="tile late" data-go="ticket-detail">
<div class="tile-head"><span class="tile-time">13:48 · 44m</span></div>
<div class="tile-plate mono">2FMQ845</div>
<div class="tile-client">STRUCTO NV</div>
<div class="tile-product">Rond zand 0/4</div>
</div>
<div class="tile" data-go="ticket-detail">
<div class="tile-head"><span class="tile-time">14:21</span><span class="tile-vak">VAK 03A</span></div>
<div class="tile-plate mono">1TED724</div>
<div class="tile-client">EBE SA</div>
<div class="tile-product">Rond zand 0/1</div>
</div>
<div class="tile" data-go="ticket-detail">
<div class="tile-head"><span class="tile-time">14:24</span><span class="tile-vak">VAK 17D</span></div>
<div class="tile-plate mono">2HRD218</div>
<div class="tile-client">DE LOOF P. BV</div>
<div class="tile-product">Ballast 0/20mm</div>
</div>
<div class="tile" data-go="ticket-detail">
<div class="tile-head"><span class="tile-time">14:26</span><span class="tile-vak">VAK 11B</span></div>
<div class="tile-plate mono">1FGH889</div>
<div class="tile-client">PIERRE MESTDAG SRL</div>
<div class="tile-product">Veldgewas</div>
</div>
<div class="tile-empty">— empty —</div>
</div>
<div class="actionbar">
<div class="actionbar-text">7 trucks waiting · <span style="color: var(--red); font-weight: 500;">1 over 30 min</span></div>
<button class="btn-primary btn">+ Manual ticket</button>
</div>
</div></div>
</div>
</section>
<!-- ============================================================
SCREEN 02 — TICKET DETAIL
============================================================ -->
<section class="screen" id="screen-ticket-detail">
<div class="crumb"><span>Wheel loader app</span><span style="color: var(--line-2);">/</span><a class="inline" data-go="loader-grid">Vooraanmelding</a><span style="color: var(--line-2);">/</span><span class="crumb-pill mono">1KCA640</span></div>
<h1 class="screen-title">Ticket detail · 1KCA640</h1>
<p class="screen-sub">Pulled from Peripass via API. The driver confirms or edits any field, then proceeds to the 1st weighing.</p>
<div class="frame-wrap">
<div class="tablet"><div class="tablet-screen">
<div class="topbar">
<div class="topbar-left">
<button class="btn btn-sm" data-go="loader-grid">← Back</button>
<span style="font-weight: 500; font-size: 15px;">Ticket detail</span>
<span class="pill pill-orange">Vooraanmelding</span>
</div>
<div class="topbar-meta">
<span><span class="dot dot-green"></span> Bridge: 0 kg</span>
<span>14:34</span>
</div>
</div>
<div class="plate-hero">
<div>
<div class="plate-lbl">LICENSE PLATE</div>
<div class="plate-num mono">1KCA640</div>
</div>
<div style="text-align: right;">
<div class="plate-lbl">TICKET</div>
<div class="ticket-id mono">#2026-04-30-0142</div>
</div>
</div>
<div style="padding: 18px 24px;" class="grid-2">
<div><div class="lbl">Driver</div><div class="field">M. De Smet <span class="field-edit">edit</span></div></div>
<div><div class="lbl">Client</div><div class="field">Structo NV <span class="field-edit">edit</span></div></div>
<div><div class="lbl">Product</div><div class="field">Gewassen zand 0/4 <span class="field-edit">edit</span></div></div>
<div><div class="lbl">Transporter</div><div class="field">Slabbinck Chris BV <span class="field-edit">edit</span></div></div>
<div><div class="lbl">Order number</div><div class="field"><span class="mono">ORD-2026-7741</span> <span class="field-edit">edit</span></div></div>
<div><div class="lbl">VAK (deposit)</div><div class="field field-vak"><span class="field-vak-num mono">07A</span> <span class="field-edit">auto-assigned</span></div></div>
<div style="grid-column: 1 / -1;"><div class="lbl">Opmerking</div><div class="field" style="color: var(--ink-4); min-height: 38px;">Tap to add a note for the office...</div></div>
</div>
<div class="actionbar">
<div class="actionbar-text">Truck on bridge? Confirm details, then weigh.</div>
<div style="display: flex; gap: 10px;">
<button class="btn" data-go="loader-grid">Cancel</button>
<button class="btn btn-primary btn-lg" data-go="vak-modal">1ste weging →</button>
</div>
</div>
</div></div>
</div>
</section>
<!-- ============================================================
SCREEN 03 — 1STE WEGING + VAK MODAL
============================================================ -->
<section class="screen" id="screen-vak-modal">
<div class="crumb"><span>Wheel loader app</span><span style="color: var(--line-2);">/</span><a class="inline" data-go="loader-grid">Vooraanmelding</a><span style="color: var(--line-2);">/</span><span class="crumb-pill mono">1KCA640</span><span style="color: var(--line-2);">/</span><span class="crumb-pill">1ste weging</span></div>
<h1 class="screen-title">After 1ste weging · VAK assignment + QR scan</h1>
<p class="screen-sub">Bridge string read. Tare weight locked in. Modal tells the driver where to drive next and asks them to scan the QR at the deposit.</p>
<div class="frame-wrap">
<div class="tablet"><div class="tablet-screen">
<div style="filter: blur(2px); opacity: 0.4; pointer-events: none;">
<div class="topbar"><span style="font-weight: 500; font-size: 15px;">Ticket detail</span><span style="font-size: 13px; color: var(--ink-2);">14:35</span></div>
<div style="padding: 20px 24px;"><div class="plate-num mono">1KCA640</div></div>
<div style="padding: 18px 24px;">
<div style="height: 60px; background: var(--cream); border-radius: 8px; margin-bottom: 12px;"></div>
<div style="height: 60px; background: var(--cream); border-radius: 8px; margin-bottom: 12px;"></div>
<div style="height: 60px; background: var(--cream); border-radius: 8px;"></div>
</div>
</div>
<div class="modal-veil open">
<div class="modal">
<span class="pill pill-green" style="margin-bottom: 16px;"><span class="dot dot-green"></span> 1ste weging complete</span>
<div class="lbl" style="text-align: center; margin-top: 16px;">TARE WEIGHT</div>
<div class="mono" style="font-size: 28px; font-weight: 500; margin-bottom: 24px;">14 280 kg</div>
<div style="border-top: 0.5px solid var(--line); padding-top: 20px; margin-bottom: 20px;">
<div style="font-size: 13px; color: var(--ink-2); margin-bottom: 8px;">Drive truck to deposit</div>
<div style="background: var(--orange-soft); color: var(--orange-deeper); padding: 14px 28px; border-radius: 8px; font-size: 36px; font-weight: 500; letter-spacing: 3px; display: inline-block;" class="mono">07A</div>
<div style="font-size: 12px; color: var(--ink-4); margin-top: 10px;">Gewassen zand 0/4 · Structo NV</div>
</div>
<div style="background: var(--cream); border-radius: 8px; padding: 14px; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; text-align: left;">
<div style="width: 36px; height: 36px; border-radius: 8px; background: var(--paper); border: 0.5px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0;">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="#1A1715" stroke-width="2"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/><rect x="14" y="14" width="3" height="3"/><rect x="18" y="14" width="3" height="3"/><rect x="14" y="18" width="3" height="3"/></svg>
</div>
<div style="font-size: 13px; color: var(--ink-2); line-height: 1.5;">Scan the QR code at <strong style="color: var(--ink); font-weight: 500;">VAK 07A</strong> before loading to confirm correct product.</div>
</div>
<div style="display: flex; gap: 10px;">
<button class="btn" style="flex: 1;" data-go="loader-grid">Later</button>
<button class="btn btn-primary" style="flex: 2;" data-go="loading-state">Scan QR code</button>
</div>
</div>
</div>
</div></div>
</div>
</section>
<!-- ============================================================
SCREEN 04 — LOADING STATE (waiting for truck to load)
============================================================ -->
<section class="screen" id="screen-loading-state">
<div class="crumb"><span>Wheel loader app</span><span style="color: var(--line-2);">/</span><a class="inline" data-go="loader-grid">Aanmelding</a><span style="color: var(--line-2);">/</span><span class="crumb-pill mono">1KCA640</span></div>
<h1 class="screen-title">Loading at VAK 07A</h1>
<p class="screen-sub">QR confirmed, product matches the order. The driver is loading the truck. Status will auto-advance to Afmelding once the truck returns to the bridge.</p>
<div class="frame-wrap">
<div class="tablet"><div class="tablet-screen">
<div class="topbar">
<div class="topbar-left">
<button class="btn btn-sm" data-go="loader-grid">← Back</button>
<span style="font-weight: 500; font-size: 15px;">In progress</span>
<span class="pill pill-amber"><span class="dot dot-amber"></span> Aanmelding · loading</span>
</div>
<div class="topbar-meta">
<span><span class="dot dot-green"></span> Bridge ready</span>
<span>14:28</span>
</div>
</div>
<div class="plate-hero">
<div>
<div class="plate-lbl">LICENSE PLATE</div>
<div class="plate-num mono">1KCA640</div>
</div>
<div style="text-align: right;">
<div class="plate-lbl">VAK</div>
<div class="plate-num mono" style="color: var(--orange-deeper);">07A</div>
</div>
</div>
<div style="padding: 24px;">
<div style="background: var(--paper); border: 0.5px solid var(--line); border-radius: 12px; padding: 24px;">
<div style="display: flex; align-items: center; gap: 12px; margin-bottom: 16px;">
<span class="pill pill-green"><span class="dot dot-green"></span> QR confirmed</span>
<span style="font-size: 12px; color: var(--ink-3);">14:24 · product verified</span>
</div>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; padding-top: 14px; border-top: 0.5px solid var(--line);">
<div><div class="lbl">Product</div><div style="font-size: 14px; font-weight: 500;">Gewassen zand 0/4</div></div>
<div><div class="lbl">Client</div><div style="font-size: 14px; font-weight: 500;">Structo NV</div></div>
<div><div class="lbl">Tarra (1ste weging)</div><div class="mono" style="font-size: 16px; font-weight: 500;">14 280 kg</div></div>
<div><div class="lbl">Expected netto</div><div class="mono" style="font-size: 16px; font-weight: 500; color: var(--ink-2);">~28 000 kg</div></div>
</div>
<div style="margin-top: 20px; padding: 14px 16px; background: var(--cream); border-radius: 8px; font-size: 13px; color: var(--ink-2); display: flex; align-items: center; gap: 12px;">
<svg width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
<span>Once the truck returns to the weighbridge, this ticket will auto-advance to <strong style="color: var(--ink);">Afmelding</strong> and the 2nd weighing button will appear.</span>
</div>
</div>
</div>
<div class="actionbar">
<div class="actionbar-text">Truck back on the bridge?</div>
<button class="btn btn-primary btn-lg" data-go="weging-2">Go to 2de weging →</button>
</div>
</div></div>
</div>
</section>
<!-- ============================================================
SCREEN 05 — 2DE WEGING (the calculation moment)
============================================================ -->
<section class="screen" id="screen-weging-2">
<div class="crumb"><span>Wheel loader app</span><span style="color: var(--line-2);">/</span><a class="inline" data-go="loader-grid">Afmelding</a><span style="color: var(--line-2);">/</span><span class="crumb-pill mono">1KCA640</span><span style="color: var(--line-2);">/</span><span class="crumb-pill">2de weging</span></div>
<h1 class="screen-title">2de weging · the calculation</h1>
<p class="screen-sub">Live bridge reading minus the locked tare weight gives the net weight. The driver sees the math, then locks the netto. This is the moment the ticket finalizes.</p>
<div class="frame-wrap">
<div class="tablet"><div class="tablet-screen">
<div class="topbar">
<div class="topbar-left">
<button class="btn btn-sm" data-go="loading-state">← Back</button>
<span style="font-weight: 500; font-size: 15px;">2de weging</span>
<span class="pill pill-gray">Afmelding</span>
<span style="font-size: 12px; color: var(--ink-3);">·</span>
<span class="mono" style="font-size: 13px; font-weight: 500;">1KCA640</span>
</div>
<div class="topbar-meta">
<span><span class="dot dot-green"></span> Bridge live</span>
<span>14:36</span>
</div>
</div>
<!-- Live bridge reading -->
<div style="padding: 16px 24px; border-bottom: 0.5px solid var(--line); background: var(--cream);">
<div class="row-between">
<div>
<div class="lbl" style="letter-spacing: 1px; font-weight: 500;">CURRENT WEIGHBRIDGE READING</div>
<div style="display: flex; align-items: baseline; gap: 6px;">
<span class="mono" style="font-size: 36px; font-weight: 600;">43 530</span>
<span style="font-size: 14px; color: var(--ink-3);">kg</span>
<span class="pill pill-orange" style="margin-left: 12px;"><span class="dot dot-orange"></span> stabilizing...</span>
</div>
</div>
<div style="text-align: right;">
<div style="font-size: 10px; color: var(--ink-3); letter-spacing: 0.5px;">PCO344 · calibrated 12 Mar 2026</div>
<div style="font-size: 10px; color: var(--ink-3); margin-top: 2px;">Updates every 250 ms</div>
</div>
</div>
</div>
<!-- Calc card -->
<div style="padding: 24px 24px 18px;">
<div class="calc">
<div class="calc-row">
<div>
<div class="lbl" style="margin-bottom: 2px;">BRUTO</div>
<div style="font-size: 12px; color: var(--ink-2);">From the bridge, just now</div>
</div>
<div class="calc-amt mono">43 530 <span class="unit">kg</span></div>
</div>
<div class="calc-row tarra">
<div>
<div class="lbl" style="margin-bottom: 2px;">TARRA <span style="color: var(--line-2);">·</span> 1ste weging</div>
<div style="font-size: 12px; color: var(--ink-2);">Recorded at 14:14 · empty truck</div>
</div>
<div class="row">
<span class="calc-op">−</span>
<div class="calc-tarra-amt mono">14 280 <span class="unit">kg</span></div>
</div>
</div>
<div class="calc-row netto">
<div>
<div class="lbl" style="color: var(--orange-deep); font-weight: 500;">NETTO</div>
<div style="font-size: 12px; color: var(--orange-deep);">Net weight loaded · for invoice</div>
</div>
<div class="row">
<span class="calc-op calc-op-eq">=</span>
<div class="calc-netto-amt mono">29 250 <span class="unit" style="color: var(--orange-deep);">kg</span></div>
</div>
</div>
</div>
</div>
<!-- Sanity checks -->
<div style="padding: 0 24px 16px;">
<div class="grid-3">
<div style="background: var(--cream); border-radius: 8px; padding: 12px 14px;">
<div class="lbl">VAK</div>
<div class="mono" style="font-size: 16px; font-weight: 500;">07A</div>
<div style="font-size: 11px; color: var(--ink-2); margin-top: 2px;">QR confirmed 14:24</div>
</div>
<div style="background: var(--cream); border-radius: 8px; padding: 12px 14px;">
<div class="lbl">PRODUCT</div>
<div style="font-size: 13px; font-weight: 500;">Gewassen zand 0/4</div>
<div style="font-size: 11px; color: var(--ink-2); margin-top: 2px;">Structo NV</div>
</div>
<div style="background: var(--cream); border-radius: 8px; padding: 12px 14px;">
<div class="lbl">EXPECTED</div>
<div class="mono" style="font-size: 14px; font-weight: 500;">~28 000 kg</div>
<div style="font-size: 11px; color: var(--green); margin-top: 2px; display: inline-flex; align-items: center; gap: 4px;"><span class="dot dot-green"></span> within order range</div>
</div>
</div>
</div>
<div class="actionbar">
<div class="actionbar-text">Truck stable on bridge? Lock in 29 250 kg and finalize the ticket.</div>
<div style="display: flex; gap: 10px;">
<button class="btn" data-go="loader-grid">Cancel</button>
<button class="btn btn-primary btn-lg" data-go="signpad">
Lock & finalize ticket
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="20 6 9 17 4 12"/></svg>
</button>
</div>
</div>
</div></div>
</div>
</section>
<!-- ============================================================
SCREEN 06 — SIGNATURE PAD
============================================================ -->
<section class="screen" id="screen-signpad">
<div class="crumb"><span>Office</span><span style="color: var(--line-2);">/</span><span class="crumb-pill">Signature pad</span><span style="color: var(--line-2);">/</span><span class="crumb-pill mono">#6337</span></div>
<h1 class="screen-title">Office signing flow</h1>
<p class="screen-sub">After 2de weging, the ticket goes to the office tablet. The client confirms then signs on the small Wacom-style pad. Two states shown: confirm, sign.</p>
<div class="frame-wrap" style="padding: 32px;">
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 24px;">
<!-- State 1 -->
<div>
<div style="font-size: 12px; color: var(--ink-3); margin-bottom: 8px; text-align: center; letter-spacing: 0.5px;">STATE 1 · CONFIRM TICKET</div>
<div style="background: var(--ink); border-radius: 12px; padding: 8px;">
<div style="background: var(--paper); border-radius: 6px; padding: 14px 16px; aspect-ratio: 16 / 10; display: flex; flex-direction: column;">
<div style="display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; border-bottom: 0.5px solid var(--line);">
<div style="display: flex; align-items: center; gap: 6px;">
<svg width="44" height="13" viewBox="0 0 577 168"><path d="M195.707 102V26.114H209.408V102H195.707ZM205.614 62.5814L241.554 26.114H259.999L222.583 62.5814H205.614ZM243.241 102L205.403 62.5814H222.583L262.107 102H243.241Z" fill="#1A1715"/><rect y="26.5222" width="30.3792" height="128.085" rx="12.3159" fill="#FF4F18"/><rect x="40.2852" y="26.5222" width="30.3792" height="104.275" rx="12.3159" fill="#FF4F18"/><rect x="80.2734" y="26.5222" width="30.3792" height="80.4639" rx="12.3159" fill="#FF4F18"/><rect x="120.258" y="26.5222" width="30.3792" height="56.6531" rx="12.3159" fill="#FF4F18"/></svg>
<span style="font-size: 11px; font-weight: 500;">Ticket #6337</span>
</div>
<span style="font-size: 10px; color: var(--ink-3);">30/04/26 · 14:38</span>
</div>
<div style="flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 8px 0;">
<div class="mono" style="font-size: 22px; font-weight: 500; letter-spacing: 2px; text-align: center; margin-bottom: 6px;">1KCA640</div>
<div style="display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; font-size: 10px;">
<div style="color: var(--ink-3);">Klant</div><div style="font-weight: 500;">Structo NV</div>
<div style="color: var(--ink-3);">Product</div><div style="font-weight: 500;">Gewassen zand 0/4</div>
<div style="color: var(--ink-3);">Netto</div><div style="font-weight: 500;" class="mono">29.250 kg</div>
</div>
</div>
<div style="display: flex; gap: 6px;">
<button class="btn btn-sm" style="flex: 1;">Cancel</button>
<button class="btn btn-primary btn-sm" style="flex: 2;">Sign ticket →</button>
</div>
</div>
</div>
</div>
<!-- State 2 -->
<div>
<div style="font-size: 12px; color: var(--ink-3); margin-bottom: 8px; text-align: center; letter-spacing: 0.5px;">STATE 2 · SIGN</div>
<div style="background: var(--ink); border-radius: 12px; padding: 8px;">
<div style="background: var(--paper); border-radius: 6px; padding: 14px 16px; aspect-ratio: 16 / 10; display: flex; flex-direction: column;">
<div style="display: flex; justify-content: space-between; align-items: center; padding-bottom: 6px; border-bottom: 0.5px solid var(--line);">
<span style="font-size: 11px; font-weight: 500;">Sign for ticket #6337</span>
<span class="mono" style="font-size: 10px; color: var(--ink-3);">29.250 kg</span>
</div>
<div style="flex: 1; position: relative; margin: 8px 0; background: var(--cream); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden;">
<div style="position: absolute; bottom: 12px; left: 12px; right: 12px; border-bottom: 1px dashed var(--line-2);"></div>
<svg width="60%" height="50%" viewBox="0 0 200 60" style="margin-bottom: 4px;">
<path d="M 10 40 Q 25 10, 40 35 T 70 30 Q 85 50, 100 25 T 140 35 Q 160 15, 180 40" stroke="#1A1715" stroke-width="2.5" fill="none" stroke-linecap="round"/>
</svg>
<span style="position: absolute; top: 6px; left: 8px; font-size: 9px; color: var(--ink-4); letter-spacing: 0.5px;">SIGN HERE</span>
</div>
<div style="display: flex; gap: 6px;">
<button class="btn btn-sm" style="flex: 1;">Clear</button>
<button class="btn btn-primary btn-sm" style="flex: 2;" data-go="ticket-pdf">Confirm & print</button>
</div>
</div>
</div>
</div>
</div>
<div style="margin-top: 20px; text-align: center;">
<button class="btn" data-go="weging-2">← Back to 2de weging</button>
<button class="btn btn-primary" data-go="ticket-pdf">View printed ticket →</button>
</div>
</div>
</section>
<!-- ============================================================
SCREEN 07 — PRINTED TICKET (PDF)
============================================================ -->
<section class="screen" id="screen-ticket-pdf">
<div class="crumb"><span>Office</span><span style="color: var(--line-2);">/</span><span class="crumb-pill">Printed ticket / PDF</span><span style="color: var(--line-2);">/</span><span class="crumb-pill mono">#6337</span></div>
<h1 class="screen-title">Printed ticket · Seaport Shipping & Trading letterhead</h1>
<p class="screen-sub">Auto-generated PDF with signed handtekening. Two copies print, plus a CMR. Same file appears in the client portal for download.</p>
<div class="frame-wrap">
<div class="paper" style="max-width: 760px; margin: 0 auto;">
<div class="letterhead">
<div>
<svg width="220" height="72" viewBox="0 0 305 99.305"><g transform="translate(-142.263 -368.425)"><g transform="translate(142.263 368.425)"><path d="M183.14,382.239H161.808l-14.5,26.2,9.142,16.6L142.263,450.7h21.324l14.18-25.661-9.129-16.6Z" transform="translate(-142.263 -366.635)" fill="#0b2976"/><path d="M215.323,368.425H194L170.674,410.3l9.2,16.47L156.961,467.73h21.324l22.892-40.963L191.953,410.3Z" transform="translate(-140.358 -368.425)" fill="#0b2976"/><path d="M265.18,382.239H206.515l-10.8,19.623h18.4L187,450.7h21.324L235.4,401.863h18.326Z" transform="translate(-136.463 -366.635)" fill="#0b2976"/></g><g transform="translate(275.693 416.684)"><path d="M261.23,424.269a8.834,8.834,0,0,1-5.57-1.728l1.4-2.237a6.544,6.544,0,0,0,4.209,1.525,2.752,2.752,0,0,0,1.618-.437,1.459,1.459,0,0,0,.619-1.271,1.536,1.536,0,0,0-.651-1.311,7.485,7.485,0,0,0-2.3-.925,8.974,8.974,0,0,1-3.2-1.484,3.169,3.169,0,0,1-1.108-2.623,3.691,3.691,0,0,1,1.413-3.03,5.766,5.766,0,0,1,3.73-1.139,7.522,7.522,0,0,1,4.778,1.464l-1.28,2.115a5.838,5.838,0,0,0-3.519-1.138,3.119,3.119,0,0,0-1.647.385,1.27,1.27,0,0,0-.629,1.159,1.175,1.175,0,0,0,.619,1.078,11.961,11.961,0,0,0,2.288.874,15.048,15.048,0,0,1,1.709.61,6.155,6.155,0,0,1,1.322.8,3.109,3.109,0,0,1,.944,1.24,4.423,4.423,0,0,1,.315,1.738,3.923,3.923,0,0,1-1.382,3.162A5.516,5.516,0,0,1,261.23,424.269Z" fill="#0b2976"/><path d="M275.815,418.863l-.041.712H268.9a2.5,2.5,0,0,0,.986,1.362,3.056,3.056,0,0,0,1.82.529,3.453,3.453,0,0,0,1.189-.2,3.782,3.782,0,0,0,.752-.336c.129-.088.308-.226.539-.417l1.1,1.911a5.608,5.608,0,0,1-3.863,1.281,5.127,5.127,0,0,1-3.68-1.393,4.589,4.589,0,0,1-1.464-3.467,4.728,4.728,0,0,1,4.88-4.86,4.4,4.4,0,0,1,3.375,1.372A4.936,4.936,0,0,1,275.815,418.863Zm-4.555-2.765a2.447,2.447,0,0,0-1.494.458,2.284,2.284,0,0,0-.844,1.311h4.351a1.875,1.875,0,0,0-.65-1.281A2.029,2.029,0,0,0,271.261,416.1Z" fill="#0b2976"/><path d="M283.421,414.167h2.46v9.352h-2.358l-.1-1.281a3.778,3.778,0,0,1-3.091,1.464,4.183,4.183,0,0,1-3.213-1.393,4.927,4.927,0,0,1-1.281-3.467,4.865,4.865,0,0,1,1.313-3.467,4.277,4.277,0,0,1,3.243-1.393,4.146,4.146,0,0,1,2.907,1.079Zm-2.5,7.116a2.3,2.3,0,0,0,2.4-2.44,2.416,2.416,0,0,0-.661-1.758,2.505,2.505,0,0,0-3.447.009,2.544,2.544,0,0,0,0,3.487A2.3,2.3,0,0,0,280.92,421.283Z" fill="#0b2976"/><path d="M292.23,413.983a4.312,4.312,0,0,1,3.253,1.393,4.843,4.843,0,0,1,1.322,3.467,4.927,4.927,0,0,1-1.281,3.467,4.181,4.181,0,0,1-3.213,1.393,3.8,3.8,0,0,1-2.867-1.22v5h-2.664V414.167h2.237l.1,1.138A4.129,4.129,0,0,1,292.23,413.983Zm-.508,7.3a2.3,2.3,0,0,0,1.708-.7,2.544,2.544,0,0,0,0-3.487,2.505,2.505,0,0,0-3.446-.009,2.656,2.656,0,0,0,0,3.506A2.3,2.3,0,0,0,291.722,421.283Z" fill="#0b2976"/><path d="M305.441,422.3a5.292,5.292,0,0,1-7.178,0,4.79,4.79,0,0,1,0-6.913,5.292,5.292,0,0,1,7.178,0,4.792,4.792,0,0,1,0,6.913Zm-3.589-1.017a2.266,2.266,0,0,0,1.7-.7,2.546,2.546,0,0,0,0-3.467,2.368,2.368,0,0,0-3.384,0,2.506,2.506,0,0,0,0,3.457A2.263,2.263,0,0,0,301.852,421.283Z" fill="#0b2976"/><path d="M312.746,413.983a3.42,3.42,0,0,1,.813.081l-.225,2.644a2.519,2.519,0,0,0-.934-.184,2.384,2.384,0,0,0-1.749.64,2.224,2.224,0,0,0-.651,1.657v4.7h-2.664v-9.352h2.216l.1,1.829a2.557,2.557,0,0,1,1.078-1.444A3.481,3.481,0,0,1,312.746,413.983Z" fill="#0b2976"/><path d="M318.8,424.05a3.76,3.76,0,0,1-2.714-.945,3.557,3.557,0,0,1-.986-2.694v-3.66H313.2v-2.236h1.972V411.3h2.581v3.214h3.477v2.236h-3.477v3.4q0,1.506,1.647,1.5a3.172,3.172,0,0,0,1.545-.508l.916,1.972A5.117,5.117,0,0,1,318.8,424.05Z" fill="#0b2976"/><path d="M261.23,443.269a8.834,8.834,0,0,1-5.57-1.728l1.4-2.237a6.544,6.544,0,0,0,4.209,1.525,2.752,2.752,0,0,0,1.618-.437,1.459,1.459,0,0,0,.619-1.271,1.536,1.536,0,0,0-.651-1.311,7.485,7.485,0,0,0-2.3-.925,8.974,8.974,0,0,1-3.2-1.484,3.169,3.169,0,0,1-1.108-2.623,3.691,3.691,0,0,1,1.413-3.03,5.766,5.766,0,0,1,3.73-1.139,7.522,7.522,0,0,1,4.778,1.464l-1.28,2.115a5.838,5.838,0,0,0-3.519-1.138,3.119,3.119,0,0,0-1.647.385,1.27,1.27,0,0,0-.629,1.159,1.175,1.175,0,0,0,.619,1.078,11.961,11.961,0,0,0,2.288.874,15.048,15.048,0,0,1,1.709.61,6.155,6.155,0,0,1,1.322.8,3.109,3.109,0,0,1,.944,1.24,4.423,4.423,0,0,1,.315,1.738,3.923,3.923,0,0,1-1.382,3.162A5.516,5.516,0,0,1,261.23,443.269Z" fill="#0b2976"/><path d="M272.077,433.555a4.038,4.038,0,0,1,3.04,1.21,4.361,4.361,0,0,1,1.169,3.163v5.164h-2.664v-4.8a2.436,2.436,0,0,0-.579-1.7,1.923,1.923,0,0,0-1.495-.641,2.011,2.011,0,0,0-1.566.651,2.3,2.3,0,0,0-.59,1.606v4.88h-2.664V428.573h2.664v6A3.545,3.545,0,0,1,272.077,433.555Z" fill="#0b2976"/><path d="M278.484,432.11a1.709,1.709,0,0,1-1.23-.478,1.717,1.717,0,0,1-.011-2.409,1.8,1.8,0,0,1,1.241-.488,1.768,1.768,0,0,1,1.26.478,1.691,1.691,0,0,1,0,2.42A1.767,1.767,0,0,1,278.484,432.11ZM277.2,443.07v-9.352h2.665v9.352Z" fill="#0b2976"/><path d="M287.01,432.983a4.313,4.313,0,0,1,3.253,1.393,4.844,4.844,0,0,1,1.323,3.467,4.928,4.928,0,0,1-1.282,3.467,4.181,4.181,0,0,1-3.212,1.393,3.8,3.8,0,0,1-2.868-1.22v5h-2.663V433.167H283.8l.1,1.138A4.129,4.129,0,0,1,287.01,432.983Zm-.507,7.3a2.3,2.3,0,0,0,1.707-.7,2.544,2.544,0,0,0,0-3.487,2.5,2.5,0,0,0-3.446-.009,2.659,2.659,0,0,0,0,3.506A2.3,2.3,0,0,0,286.5,440.283Z" fill="#0b2976"/><path d="M297.486,432.983a4.312,4.312,0,0,1,3.253,1.393,4.844,4.844,0,0,1,1.323,3.467,4.928,4.928,0,0,1-1.282,3.467,4.181,4.181,0,0,1-3.212,1.393,3.794,3.794,0,0,1-2.867-1.22v5h-2.664V433.167h2.237l.1,1.138A4.13,4.13,0,0,1,297.486,432.983Zm-.507,7.3a2.3,2.3,0,0,0,1.707-.7,2.544,2.544,0,0,0,0-3.487,2.5,2.5,0,0,0-3.445-.009,2.656,2.656,0,0,0,0,3.506A2.291,2.291,0,0,0,296.979,440.283Z" fill="#0b2976"/><path d="M303.863,432.11a1.709,1.709,0,0,1-1.23-.478,1.718,1.718,0,0,1-.01-2.409,1.8,1.8,0,0,1,1.24-.488,1.77,1.77,0,0,1,1.261.478,1.694,1.694,0,0,1,0,2.42A1.77,1.77,0,0,1,303.863,432.11Zm-1.281,10.96v-9.352h2.664v9.352Z" fill="#0b2976"/><path d="M312.39,432.983a3.908,3.908,0,0,1,2.989,1.19,4.458,4.458,0,0,1,1.118,3.183v5.164h-2.664v-4.8a2.463,2.463,0,0,0-.569-1.7,1.892,1.892,0,0,0-1.484-.641,2.042,2.042,0,0,0-1.576.651,2.281,2.281,0,0,0-.6,1.606v4.88h-2.664v-9.352h1.911l.1,1.585a3.445,3.445,0,0,1,1.332-1.271A4.222,4.222,0,0,1,312.39,432.983Z" fill="#0b2976"/><path d="M324.723,433.207h2.155v8.7a4.576,4.576,0,0,1-1.362,3.436,5.175,5.175,0,0,1-3.762,1.322,7.2,7.2,0,0,1-4.433-1.24l1.118-1.891a6.259,6.259,0,0,0,3.131.854,2.919,2.919,0,0,0,1.911-.6,1.9,1.9,0,0,0,.732-1.535v-.732a3.855,3.855,0,0,1-2.826,1.179,4.181,4.181,0,0,1-3.213-1.393,4.927,4.927,0,0,1-1.281-3.467,4.864,4.864,0,0,1,1.311-3.467,4.28,4.28,0,0,1,3.243-1.393,4.177,4.177,0,0,1,3.192,1.383Zm-2.745,7.076a2.313,2.313,0,0,0,1.739-.681,2.669,2.669,0,0,0,0-3.517,2.505,2.505,0,0,0-3.447.009,2.544,2.544,0,0,0,0,3.487A2.3,2.3,0,0,0,321.978,440.283Z" fill="#0b2976"/><path d="M344.274,437.007a10.69,10.69,0,0,1-2.054,3.05l1.789,1.688a1.811,1.811,0,0,1-.224.264q-.224.244-.661.712t-.742.813l-1.932-1.81a6.09,6.09,0,0,1-4.209,1.545,5.259,5.259,0,0,1-3.487-1.129,3.667,3.667,0,0,1-1.352-2.958,4.025,4.025,0,0,1,2.521-3.68,5.021,5.021,0,0,1-1.322-3.172,3.387,3.387,0,0,1,1.189-2.694,4.516,4.516,0,0,1,3.06-1.027,4.357,4.357,0,0,1,2.928.956,3.133,3.133,0,0,1,1.118,2.5,3.64,3.64,0,0,1-.773,2.216,6.036,6.036,0,0,1-2.2,1.749l2.684,2.521a8.758,8.758,0,0,0,1.789-2.725Zm-7.849,4.026a3.736,3.736,0,0,0,2.379-.874l-3.335-3.111a2.271,2.271,0,0,0-1.362,2.033,1.754,1.754,0,0,0,.641,1.413A2.518,2.518,0,0,0,336.425,441.033Zm.488-10.35a1.755,1.755,0,0,0-1.25.468,1.572,1.572,0,0,0-.5,1.2,2.121,2.121,0,0,0,.254,1.008,5.519,5.519,0,0,0,.9,1.148q2.2-.976,2.2-2.338a1.4,1.4,0,0,0-.447-1.068A1.632,1.632,0,0,0,336.913,430.683Z" fill="#0b2976"/><path d="M358.914,428.771v2.481h-4.737v11.814h-2.806V431.252h-4.758v-2.481Z" fill="#0b2976"/><path d="M362.335,432.983a3.429,3.429,0,0,1,.814.081l-.225,2.644a2.524,2.524,0,0,0-.934-.184,2.389,2.389,0,0,0-1.75.64,2.227,2.227,0,0,0-.65,1.657v4.7h-2.664v-9.352h2.216l.1,1.829a2.552,2.552,0,0,1,1.078-1.444A3.479,3.479,0,0,1,362.335,432.983Z" fill="#0b2976"/><path d="M370.486,433.167h2.46v9.352h-2.358l-.1-1.281A3.778,3.778,0,0,1,367.4,442.7a4.181,4.181,0,0,1-3.213-1.393,4.927,4.927,0,0,1-1.281-3.467,4.869,4.869,0,0,1,1.311-3.467,4.281,4.281,0,0,1,3.244-1.393,4.146,4.146,0,0,1,2.907,1.079Zm-2.5,7.116a2.3,2.3,0,0,0,2.4-2.44,2.416,2.416,0,0,0-.661-1.758,2.505,2.505,0,0,0-3.447.009,2.544,2.544,0,0,0,0,3.487A2.3,2.3,0,0,0,367.985,440.283Z" fill="#0b2976"/><path d="M380.777,428.573h2.643v14.518h-2.155l-.1-1.24a4.041,4.041,0,0,1-3.192,1.423,4.309,4.309,0,0,1-3.253-1.393,4.841,4.841,0,0,1-1.322-3.467,4.929,4.929,0,0,1,1.281-3.467,4.185,4.185,0,0,1,3.213-1.393,3.755,3.755,0,0,1,2.887,1.24Zm-2.3,12.281a2.314,2.314,0,0,0,1.739-.681,2.658,2.658,0,0,0,0-3.508,2.48,2.48,0,0,0-3.446.01,2.544,2.544,0,0,0,0,3.487A2.318,2.318,0,0,0,378.479,440.854Z" fill="#0b2976"/><path d="M385.672,432.11a1.709,1.709,0,0,1-1.23-.478,1.721,1.721,0,0,1-.01-2.409,1.8,1.8,0,0,1,1.24-.488,1.768,1.768,0,0,1,1.261.478,1.691,1.691,0,0,1,0,2.42A1.768,1.768,0,0,1,385.672,432.11Zm-1.281,10.96v-9.352h2.665v9.352Z" fill="#0b2976"/><path d="M394.2,432.983a3.907,3.907,0,0,1,2.988,1.19,4.458,4.458,0,0,1,1.118,3.183v5.164h-2.664v-4.8a2.463,2.463,0,0,0-.569-1.7,1.89,1.89,0,0,0-1.483-.641,2.043,2.043,0,0,0-1.577.651,2.286,2.286,0,0,0-.6,1.606v4.88H388.75v-9.352h1.911l.1,1.585a3.434,3.434,0,0,1,1.331-1.271A4.223,4.223,0,0,1,394.2,432.983Z" fill="#0b2976"/><path d="M406.531,433.207h2.156v8.7a4.576,4.576,0,0,1-1.363,3.436,5.173,5.173,0,0,1-3.762,1.322,7.2,7.2,0,0,1-4.432-1.24l1.118-1.891a6.252,6.252,0,0,0,3.13.854,2.92,2.92,0,0,0,1.912-.6,1.9,1.9,0,0,0,.732-1.535v-.732A3.856,3.856,0,0,1,403.2,442.7a4.183,4.183,0,0,1-3.213-1.393,4.931,4.931,0,0,1-1.28-3.467,4.859,4.859,0,0,1,1.312-3.467,4.277,4.277,0,0,1,3.243-1.393,4.178,4.178,0,0,1,3.192,1.383Zm-2.744,7.076a2.316,2.316,0,0,0,1.738-.681,2.67,2.67,0,0,0,0-3.517,2.505,2.505,0,0,0-3.447.009,2.545,2.545,0,0,0,0,3.487A2.3,2.3,0,0,0,403.787,440.283Z" fill="#0b2976"/></g></g></svg>
</div>
<div class="letterhead-meta">
<div>Britse Kaai 10B · 8000 Brugge</div>
<div>T. +32 50 33 76 02 · info@seaportshipping.be</div>
<div>BTW BE 0421.229.230</div>
</div>
</div>
<div class="ticket-meta">
<div class="ticket-meta-fields">
<div><span style="color: var(--ink-3);">Volgnr</span> <span class="mono" style="font-weight: 500;">6337</span></div>
<div><span style="color: var(--ink-3);">Ordernr</span> <span class="mono" style="font-weight: 500;">1873.4</span></div>
<div><span style="color: var(--ink-3);">Werf</span> <span style="font-weight: 500;">Structo NV · Steenkaai 107</span></div>
</div>
<span class="pill pill-gray">UIT</span>
</div>
<div style="display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; padding: 18px 0;">
<div>
<div style="margin-bottom: 14px;">
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 4px;">PLAAT</div>
<div class="mono" style="font-size: 20px; font-weight: 500; letter-spacing: 2px;">1KCA640</div>
</div>
<div style="margin-bottom: 14px;">
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 4px;">TRANSPORTEUR</div>
<div style="font-weight: 500; font-size: 14px;">Slabbinck Chris BV</div>
<div style="font-size: 12px; color: var(--ink-2);">Groenestraat 139A · 8210</div>
</div>
<div>
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 4px;">KLANT</div>
<div style="font-weight: 500; font-size: 14px;">Structo NV</div>
<div style="font-size: 12px; color: var(--ink-2);">Steenkaai 107 · 8000 Brugge</div>
</div>
</div>
<div>
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 4px;">PRODUCT</div>
<div style="font-weight: 500; font-size: 18px; line-height: 1.2; margin-bottom: 8px;">Gewassen zand 0/4</div>
<div class="mono" style="font-size: 11px; color: var(--ink-2); line-height: 1.6;">
ROND ZAND 0/4-CF-A-f3-a-CB+-SA(ECP)<br>
TF1000.21-DoP1000.3<br>
CE2+NP:0965<br>
ref. EN 12620 · EN 13242
</div>
<div style="display: flex; align-items: center; gap: 10px; margin-top: 12px;">
<div style="border: 1.5px solid var(--ink); border-radius: 999px; padding: 4px 14px; display: flex; align-items: center; gap: 8px;">
<span style="font-size: 9px; color: var(--ink-2);">411</span>
<span style="font-weight: 500; font-size: 13px; letter-spacing: 1px;">BENOR</span>
<span style="font-size: 9px; color: var(--ink-2);">4020</span>
</div>
<div style="font-size: 14px; font-weight: 500; font-family: serif;">CE</div>
</div>
</div>
</div>
<div class="weights-block">
<div class="weights-grid">
<div>
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 4px;">BRUTO</div>
<div class="mono" style="font-size: 22px; font-weight: 500;">43.530 <span style="font-size: 12px; color: var(--ink-3);">kg</span></div>
<div style="font-size: 10px; color: var(--ink-3); margin-top: 2px;">30/04/2026 · 14:36 · #13062302</div>
</div>
<div>
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 4px;">TARRA</div>
<div class="mono" style="font-size: 22px; font-weight: 500;">14.280 <span style="font-size: 12px; color: var(--ink-3);">kg PT</span></div>
<div style="font-size: 10px; color: var(--ink-3); margin-top: 2px;">1ste weging · 14:14</div>
</div>
<div class="weights-netto">
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 4px; font-weight: 500; color: var(--ink);">NETTO</div>
<div class="mono" style="font-size: 28px; font-weight: 500;">29.250 <span style="font-size: 13px; color: var(--ink-2);">kg</span></div>
</div>
</div>
</div>
<div style="display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; margin-top: 18px; padding-top: 14px; border-top: 0.5px solid var(--line);">
<div style="font-size: 11px; color: var(--ink-2); line-height: 1.5;">
De transporteur verklaart dat de laadruimte bezemschoon is.
<div style="font-size: 10px; color: var(--ink-3); margin-top: 6px; display: flex; align-items: center; gap: 6px;">
<span>Powered by</span>
<svg width="36" height="11" viewBox="0 0 577 168"><path d="M195.707 102V26.114H209.408V102H195.707Z" fill="#1A1715"/><rect y="26.5222" width="30.3792" height="128.085" rx="12.3159" fill="#FF4F18"/><rect x="40.2852" y="26.5222" width="30.3792" height="104.275" rx="12.3159" fill="#FF4F18"/><rect x="80.2734" y="26.5222" width="30.3792" height="80.4639" rx="12.3159" fill="#FF4F18"/><rect x="120.258" y="26.5222" width="30.3792" height="56.6531" rx="12.3159" fill="#FF4F18"/></svg>
</div>
</div>
<div>
<div class="lbl" style="letter-spacing: 0.5px; margin-bottom: 6px;">HANDTEKENING</div>
<div style="height: 44px; border-bottom: 0.5px solid var(--ink); position: relative;">
<svg width="100%" height="100%" viewBox="0 0 200 44" preserveAspectRatio="none">
<path d="M 20 30 Q 40 8, 60 28 T 100 24 Q 120 38, 140 18 T 180 30" stroke="#1A1715" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
</div>
<div style="margin-top: 20px; text-align: center;">
<button class="btn" data-go="signpad">← Back to signing</button>
<button class="btn" data-go="client-ticket">View as client →</button>
<button class="btn btn-primary" data-go="loader-grid">↺ Start a new ticket</button>
</div>
</div>
</section>
<!-- ============================================================
SCREEN 08 — STOCK DASHBOARD
============================================================ -->
<section class="screen" id="screen-stock-dash">
<div class="crumb"><span>Operations</span><span style="color: var(--line-2);">/</span><span class="crumb-pill">Stock dashboard</span></div>
<h1 class="screen-title">Stock dashboard · all VAKs</h1>
<p class="screen-sub">Seaport's view of every deposit, real-time. Replaces the Excel system. Tons-first, with ERP sync status per row.</p>
<div class="frame-wrap">
<div style="background: var(--paper); border-radius: 12px; overflow: hidden; border: 0.5px solid var(--line);">
<div class="topbar">
<div class="topbar-left">
<span style="font-weight: 500; font-size: 15px;">Stock management</span>
<span style="padding: 5px 14px 5px 10px; background: var(--cream); border-radius: 999px; font-size: 12px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px;">
<svg width="22" height="14" viewBox="0 0 125 99"><g transform="translate(-142.263 -368.425)"><path d="M183.14,382.239H161.808l-14.5,26.2,9.142,16.6L142.263,450.7h21.324l14.18-25.661-9.129-16.6Z" transform="translate(-142.263 -366.635)" fill="#1A1715"/><path d="M215.323,368.425H194L170.674,410.3l9.2,16.47L156.961,467.73h21.324l22.892-40.963L191.953,410.3Z" transform="translate(-140.358 -368.425)" fill="#1A1715"/><path d="M265.18,382.239H206.515l-10.8,19.623h18.4L187,450.7h21.324L235.4,401.863h18.326Z" transform="translate(-136.463 -366.635)" fill="#1A1715"/></g></svg>
Seaport Brugge
</span>
</div>
<div style="display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--ink-2);">
<span>admin@seaportshipping.be</span>
<span>30/04/2026 · 14:42</span>