-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path12week_plan.html
More file actions
1101 lines (1038 loc) Β· 50.3 KB
/
Copy path12week_plan.html
File metadata and controls
1101 lines (1038 loc) Β· 50.3 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.0">
<title>12-Week Training Plan</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');
:root {
--bg: #f5f0e8;
--paper: #ede8dc;
--ink: #1a1a18;
--ink2: #3d3d38;
--muted: #9a9488;
--line: #d4cfc3;
--push: #c8491a;
--pull: #1a6bc8;
--arms: #1a8c4e;
--shoulders: #8c6b1a;
--legs: #6b1a8c;
--core: #1a7a8c;
--rehab: #c87c1a;
--rest: #aaa499;
--p1: #c8491a;
--p2: #1a6bc8;
--p3: #1a8c4e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--bg);
color: var(--ink);
font-family: 'DM Sans', sans-serif;
min-height: 100vh;
}
/* ββ HEADER ββ */
.header {
background: var(--ink);
color: var(--bg);
padding: 48px 56px 40px;
position: relative;
overflow: hidden;
}
.header::after {
content: 'WEEK\A1 2 3 4 5 6 7 8 9 10 11 12';
white-space: pre;
position: absolute;
right: -10px; top: 50%;
transform: translateY(-50%);
font-family: 'Bebas Neue', sans-serif;
font-size: 4.5rem;
line-height: 1;
color: rgba(245,240,232,0.04);
text-align: right;
pointer-events: none;
}
.header h1 {
font-family: 'Bebas Neue', sans-serif;
font-size: 5rem;
letter-spacing: 3px;
line-height: 0.9;
margin-bottom: 16px;
}
.header h1 em { color: #e8c547; font-style: normal; }
.header-meta {
display: flex;
gap: 32px;
flex-wrap: wrap;
margin-top: 20px;
}
.meta-item {
display: flex;
flex-direction: column;
}
.meta-item .val {
font-family: 'DM Mono', monospace;
font-size: 1.4rem;
font-weight: 500;
color: #e8c547;
}
.meta-item .lbl {
font-size: 0.65rem;
color: rgba(245,240,232,0.45);
text-transform: uppercase;
letter-spacing: 2px;
}
.tagline {
font-size: 0.8rem;
color: rgba(245,240,232,0.5);
font-family: 'DM Mono', monospace;
margin-top: 6px;
letter-spacing: 0.5px;
}
/* ββ NAV ββ */
.nav {
background: var(--paper);
border-bottom: 1px solid var(--line);
padding: 0 56px;
display: flex;
gap: 0;
overflow-x: auto;
}
.tab {
padding: 14px 22px;
font-family: 'DM Mono', monospace;
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--muted);
background: transparent;
border: none;
border-bottom: 2px solid transparent;
cursor: pointer;
white-space: nowrap;
transition: all 0.2s;
}
.tab:hover { color: var(--ink); }
.tab.active { color: var(--ink); border-bottom-color: var(--ink); }
/* ββ CONTENT ββ */
.content { padding: 40px 56px; max-width: 1300px; }
.page { display: none; }
.page.active { display: block; }
/* ββ PHASE BANNER ββ */
.phase-banner {
border-radius: 10px;
padding: 20px 28px;
margin-bottom: 28px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
}
.phase-banner.p1 { background: rgba(200,73,26,0.08); border: 1.5px solid rgba(200,73,26,0.25); }
.phase-banner.p2 { background: rgba(26,107,200,0.08); border: 1.5px solid rgba(26,107,200,0.25); }
.phase-banner.p3 { background: rgba(26,140,78,0.08); border: 1.5px solid rgba(26,140,78,0.25); }
.phase-name {
font-family: 'Bebas Neue', sans-serif;
font-size: 2rem;
letter-spacing: 2px;
}
.p1 .phase-name { color: var(--p1); }
.p2 .phase-name { color: var(--p2); }
.p3 .phase-name { color: var(--p3); }
.phase-desc { font-size: 0.82rem; color: var(--ink2); line-height: 1.5; max-width: 480px; }
.phase-stats { display: flex; gap: 20px; }
.pstat { text-align: center; }
.pstat .pv { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; }
.p1 .pv { color: var(--p1); }
.p2 .pv { color: var(--p2); }
.p3 .pv { color: var(--p3); }
.pstat .pl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-family: 'DM Mono', monospace; }
/* ββ DAY CARDS ββ */
.week-grid {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 10px;
margin-bottom: 28px;
}
.day-card {
border-radius: 8px;
border: 1px solid var(--line);
background: white;
padding: 14px 12px;
cursor: pointer;
transition: all 0.2s;
min-height: 120px;
}
.day-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.day-card.selected { box-shadow: 0 0 0 2px var(--ink); }
.day-label {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.1rem;
letter-spacing: 1px;
margin-bottom: 6px;
}
.day-type {
font-size: 0.62rem;
font-family: 'DM Mono', monospace;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 2px 7px;
border-radius: 3px;
display: inline-block;
margin-bottom: 8px;
}
.type-push { background: rgba(200,73,26,0.1); color: var(--push); }
.type-pull { background: rgba(26,107,200,0.1); color: var(--pull); }
.type-arms { background: rgba(26,140,78,0.1); color: var(--arms); }
.type-shoulders { background: rgba(140,107,26,0.1); color: var(--shoulders); }
.type-legs { background: rgba(107,26,140,0.1); color: var(--legs); }
.type-core { background: rgba(26,122,140,0.1); color: var(--core); }
.type-rest { background: rgba(170,164,153,0.15); color: var(--rest); }
.day-muscles { font-size: 0.7rem; color: var(--muted); line-height: 1.5; }
/* ββ EXERCISE TABLE ββ */
.ex-panel {
background: white;
border: 1px solid var(--line);
border-radius: 10px;
overflow: hidden;
margin-bottom: 28px;
}
.ex-panel-header {
padding: 16px 24px;
border-bottom: 1px solid var(--line);
display: flex;
align-items: center;
gap: 12px;
background: var(--paper);
}
.ex-panel-title {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.4rem;
letter-spacing: 1px;
}
.ex-panel-sub {
font-family: 'DM Mono', monospace;
font-size: 0.65rem;
color: var(--muted);
text-transform: uppercase;
letter-spacing: 1px;
}
table { width: 100%; border-collapse: collapse; }
th {
font-family: 'DM Mono', monospace;
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--muted);
padding: 10px 16px;
text-align: left;
border-bottom: 1px solid var(--line);
background: var(--paper);
}
td {
padding: 12px 16px;
font-size: 0.82rem;
border-bottom: 1px solid rgba(212,207,195,0.4);
vertical-align: top;
line-height: 1.4;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(245,240,232,0.6); }
.superset-marker {
display: inline-block;
width: 18px; height: 18px;
border-radius: 50%;
font-size: 0.6rem;
font-family: 'DM Mono', monospace;
font-weight: 500;
text-align: center;
line-height: 18px;
margin-right: 6px;
}
.ss-a { background: rgba(200,73,26,0.15); color: var(--push); }
.ss-b { background: rgba(26,107,200,0.15); color: var(--pull); }
.ss-c { background: rgba(26,140,78,0.15); color: var(--arms); }
.note-cell { font-size: 0.72rem; color: var(--muted); font-style: italic; }
.sets-cell { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--ink); white-space: nowrap; }
.rest-cell { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); }
.tempo-cell { font-family: 'DM Mono', monospace; font-size: 0.72rem; color: var(--muted); }
/* ββ MILESTONE TIMELINE ββ */
.timeline {
position: relative;
padding-left: 32px;
margin-bottom: 32px;
}
.timeline::before {
content: '';
position: absolute;
left: 10px; top: 0; bottom: 0;
width: 2px;
background: var(--line);
}
.milestone {
position: relative;
margin-bottom: 24px;
}
.milestone::before {
content: '';
position: absolute;
left: -26px; top: 6px;
width: 10px; height: 10px;
border-radius: 50%;
border: 2px solid;
}
.milestone.m-p1::before { border-color: var(--p1); background: rgba(200,73,26,0.2); }
.milestone.m-p2::before { border-color: var(--p2); background: rgba(26,107,200,0.2); }
.milestone.m-p3::before { border-color: var(--p3); background: rgba(26,140,78,0.2); }
.milestone.m-final::before { border-color: var(--ink); background: var(--ink); }
.ms-week {
font-family: 'DM Mono', monospace;
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--muted);
margin-bottom: 4px;
}
.ms-title {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.3rem;
letter-spacing: 1px;
margin-bottom: 6px;
}
.m-p1 .ms-title { color: var(--p1); }
.m-p2 .ms-title { color: var(--p2); }
.m-p3 .ms-title { color: var(--p3); }
.m-final .ms-title { color: var(--ink); }
.ms-body { font-size: 0.8rem; color: var(--ink2); line-height: 1.7; }
.ms-targets {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 8px;
}
.ms-target {
font-family: 'DM Mono', monospace;
font-size: 0.68rem;
padding: 4px 10px;
border-radius: 4px;
border: 1px solid;
}
.m-p1 .ms-target { border-color: rgba(200,73,26,0.3); color: var(--p1); background: rgba(200,73,26,0.06); }
.m-p2 .ms-target { border-color: rgba(26,107,200,0.3); color: var(--p2); background: rgba(26,107,200,0.06); }
.m-p3 .ms-target { border-color: rgba(26,140,78,0.3); color: var(--p3); background: rgba(26,140,78,0.06); }
.m-final .ms-target { border-color: rgba(26,26,24,0.25); color: var(--ink); background: rgba(26,26,24,0.04); }
/* ββ OVERLOAD TABLE ββ */
.overload-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin-bottom: 28px;
}
.overload-card {
background: white;
border: 1px solid var(--line);
border-radius: 10px;
overflow: hidden;
}
.oc-header {
padding: 14px 20px;
background: var(--paper);
border-bottom: 1px solid var(--line);
font-family: 'Bebas Neue', sans-serif;
font-size: 1.1rem;
letter-spacing: 1px;
display: flex;
align-items: center;
gap: 8px;
}
.oc-dot { width: 8px; height: 8px; border-radius: 50%; }
.oc-body { padding: 16px 20px; }
.oc-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 7px 0;
border-bottom: 1px solid rgba(212,207,195,0.3);
font-size: 0.8rem;
}
.oc-row:last-child { border-bottom: none; }
.oc-phase { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--muted); }
.oc-val { font-family: 'DM Mono', monospace; font-size: 0.78rem; font-weight: 500; }
/* ββ REHAB SECTION ββ */
.rehab-box {
background: rgba(200,124,26,0.06);
border: 1px solid rgba(200,124,26,0.2);
border-radius: 10px;
padding: 24px;
margin-bottom: 28px;
}
.rehab-title {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.3rem;
color: var(--rehab);
letter-spacing: 1px;
margin-bottom: 12px;
}
.rehab-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 16px;
}
.rehab-item { font-size: 0.8rem; color: var(--ink2); }
.rehab-item strong { display: block; color: var(--ink); margin-bottom: 3px; font-size: 0.82rem; }
.rehab-item span { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--rehab); }
/* RULE */
hr { border: none; border-top: 1px solid var(--line); margin: 24px 0; }
.section-head {
font-family: 'Bebas Neue', sans-serif;
font-size: 1.6rem;
letter-spacing: 2px;
margin-bottom: 16px;
color: var(--ink);
}
/* TOOLTIP */
.tip {
display: inline-block;
background: var(--ink);
color: var(--bg);
font-family: 'DM Mono', monospace;
font-size: 0.65rem;
padding: 2px 7px;
border-radius: 3px;
margin-left: 4px;
letter-spacing: 0.5px;
vertical-align: middle;
}
@media (max-width: 900px) {
.header { padding: 28px 24px; }
.header h1 { font-size: 3rem; }
.nav { padding: 0 24px; }
.content { padding: 24px; }
.week-grid { grid-template-columns: repeat(4, 1fr); }
.overload-grid { grid-template-columns: 1fr; }
.rehab-grid { grid-template-columns: 1fr 1fr; }
}
</style>
</head>
<body>
<div class="header">
<div class="tagline">// YOUR PERSONAL PLAN β AESTHETICS + ENDURANCE</div>
<h1>12-WEEK<br><em>TRANSFORMATION</em></h1>
<div class="header-meta">
<div class="meta-item"><span class="val">3</span><span class="lbl">Phases</span></div>
<div class="meta-item"><span class="val">5</span><span class="lbl">Training Days</span></div>
<div class="meta-item"><span class="val">60</span><span class="lbl">Min / Session</span></div>
<div class="meta-item"><span class="val">~16</span><span class="lbl">Sets / Muscle / Wk</span></div>
<div class="meta-item"><span class="val">8β15</span><span class="lbl">Rep Range</span></div>
</div>
</div>
<div class="nav">
<button class="tab active" onclick="showPage('schedule')">Weekly Schedule</button>
<button class="tab" onclick="showPage('workouts')">Workouts</button>
<button class="tab" onclick="showPage('milestones')">Milestones & Targets</button>
<button class="tab" onclick="showPage('overload')">Progressive Overload</button>
</div>
<div class="content">
<!-- βββββββββββββββββββββββββββββββ SCHEDULE PAGE βββββββββββββββββββββββββββββββ -->
<div id="page-schedule" class="page active">
<div class="phase-banner p1">
<div>
<div class="phase-name">Phase 1 β Foundation (Weeks 1β4)</div>
<div class="phase-desc">Build the habit, learn every movement with perfect form. Volume is moderate. Focus on mind-muscle connection, especially biceps and shoulders. Every set should be felt, not just done.</div>
</div>
<div class="phase-stats">
<div class="pstat"><div class="pv">3Γ10</div><div class="pl">Sets Γ Reps</div></div>
<div class="pstat"><div class="pv">75s</div><div class="pl">Rest</div></div>
<div class="pstat"><div class="pv">RPE 7</div><div class="pl">Effort</div></div>
</div>
</div>
<div class="week-grid" id="phase1-grid">
<div class="day-card" onclick="showWorkout('monday')">
<div class="day-label">MON</div>
<span class="day-type type-push">PUSH</span>
<div class="day-muscles">Chest Β· Triceps<br>Front Delt</div>
</div>
<div class="day-card" onclick="showWorkout('tuesday')">
<div class="day-label">TUE</div>
<span class="day-type type-rest">REST + REHAB</span>
<div class="day-muscles">Wall Sits Β· Tibialis<br>Clamshells Β· TKE</div>
</div>
<div class="day-card" onclick="showWorkout('wednesday')">
<div class="day-label">WED</div>
<span class="day-type type-core">CORE</span>
<div class="day-muscles">Abs Β· Anti-rotation<br>Lower back</div>
</div>
<div class="day-card" onclick="showWorkout('thursday')">
<div class="day-label">THU</div>
<span class="day-type type-pull">PULL</span>
<div class="day-muscles">Back Β· Biceps<br>Rear Delt</div>
</div>
<div class="day-card" onclick="showWorkout('friday')">
<div class="day-label">FRI</div>
<span class="day-type type-shoulders">SHOULDERS</span>
<div class="day-muscles">All 3 delt heads<br>+ Arms finisher</div>
</div>
<div class="day-card" onclick="showWorkout('saturday')">
<div class="day-label">SAT</div>
<span class="day-type type-legs">LEGS + REHAB</span>
<div class="day-muscles">Leg press Β· Curls<br>Extensions + Rehab</div>
</div>
<div class="day-card" onclick="showWorkout('sunday')">
<div class="day-label">SUN</div>
<span class="day-type type-rest">REST</span>
<div class="day-muscles">Walk / stretch<br>Full recovery</div>
</div>
</div>
<div class="phase-banner p2">
<div>
<div class="phase-name">Phase 2 β Intensify (Weeks 5β8)</div>
<div class="phase-desc">Add a 4th set across all major lifts. Introduce supersets for arms. Rest drops to 60s for isolation work. This is where visible changes start β biceps and shoulders get hit directly twice a week.</div>
</div>
<div class="phase-stats">
<div class="pstat"><div class="pv">4Γ10</div><div class="pl">Sets Γ Reps</div></div>
<div class="pstat"><div class="pv">60s</div><div class="pl">Rest</div></div>
<div class="pstat"><div class="pv">RPE 8</div><div class="pl">Effort</div></div>
</div>
</div>
<p style="font-size:0.82rem;color:var(--muted);margin-bottom:16px;font-family:'DM Mono',monospace">
Same split as Phase 1. Changes are in volume and intensity per session β see Workouts tab for Phase 2 notes.
</p>
<div class="phase-banner p3">
<div>
<div class="phase-name">Phase 3 β Peak (Weeks 9β12)</div>
<div class="phase-desc">Higher reps (12β15), shorter rest (45β60s), tri-sets for arms and shoulders. This phase maximises muscle endurance and the "pump" aesthetic β dense, defined muscles. By week 12 people will notice.</div>
</div>
<div class="phase-stats">
<div class="pstat"><div class="pv">4Γ12</div><div class="pl">Sets Γ Reps</div></div>
<div class="pstat"><div class="pv">45s</div><div class="pl">Rest (iso)</div></div>
<div class="pstat"><div class="pv">RPE 8-9</div><div class="pl">Effort</div></div>
</div>
</div>
<div style="background:white;border:1px solid var(--line);border-radius:10px;padding:20px 24px;margin-top:8px">
<div style="font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:1px;margin-bottom:10px">Why This Split Fixes Your Visibility Problem</div>
<div style="display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;font-size:0.8rem;color:var(--ink2);line-height:1.6">
<div><strong style="color:var(--arms)">Arms hit 3Γ/week</strong><br>Mon (triceps), Thu (biceps), Fri (both as finisher). Your current plan hits each muscle once. This triples direct arm stimulus.</div>
<div><strong style="color:var(--shoulders)">Shoulders every session</strong><br>Lateral raises on Mon, rear delts on Thu, full shoulder day on Fri. Shoulders are the #1 muscle that makes you look built in a t-shirt.</div>
<div><strong style="color:var(--pull)">Back still prioritised</strong><br>Your cable row and lat pulldown are your strongest lifts β kept and built on. V-taper + bigger arms = completely different look by week 12.</div>
</div>
</div>
</div>
<!-- βββββββββββββββββββββββββββββββ WORKOUTS PAGE βββββββββββββββββββββββββββββββ -->
<div id="page-workouts" class="page">
<div style="display:flex;gap:10px;flex-wrap:wrap;margin-bottom:24px" id="day-tabs">
<button class="tab active" onclick="showDay('mon')" style="border:1px solid var(--line);border-radius:6px;padding:8px 16px">MON β Push</button>
<button class="tab" onclick="showDay('thu')" style="border:1px solid var(--line);border-radius:6px;padding:8px 16px">THU β Pull</button>
<button class="tab" onclick="showDay('fri')" style="border:1px solid var(--line);border-radius:6px;padding:8px 16px">FRI β Shoulders + Arms</button>
<button class="tab" onclick="showDay('sat')" style="border:1px solid var(--line);border-radius:6px;padding:8px 16px">SAT β Legs + Rehab</button>
<button class="tab" onclick="showDay('wed')" style="border:1px solid var(--line);border-radius:6px;padding:8px 16px">WED β Core</button>
</div>
<!-- MON -->
<div id="day-mon" class="day-workout">
<div class="ex-panel">
<div class="ex-panel-header">
<div>
<div class="ex-panel-title">MONDAY β PUSH (Chest + Triceps + Front Delt)</div>
<div class="ex-panel-sub">~55 min Β· P1: 3Γ10-12 Β· P2: 4Γ10 Β· P3: 4Γ10-12 + superset finisher</div>
</div>
</div>
<table>
<tr><th>#</th><th>Exercise</th><th>Sets Γ Reps</th><th>Rest</th><th>Tempo</th><th>Notes</th></tr>
<tr>
<td>1</td>
<td><strong>Incline Bench Press</strong> (Smith / DB)</td>
<td class="sets-cell">P1: 3Γ10<br>P2: 4Γ8-10<br>P3: 4Γ10</td>
<td class="rest-cell">90s</td>
<td class="tempo-cell">3-1-1</td>
<td class="note-cell">Primary strength lift. 3s down, 1s pause at bottom, 1s up. Break your 40kg plateau here. Start session with this when fresh.</td>
</tr>
<tr>
<td>2</td>
<td><strong>Flat Bench Press</strong> (Smith)</td>
<td class="sets-cell">P1: 3Γ10<br>P2: 4Γ10<br>P3: 4Γ12</td>
<td class="rest-cell">75s</td>
<td class="tempo-cell">2-0-1</td>
<td class="note-cell">Second compound. Don't skip this β chest width comes from flat. Start 5kg lighter than incline.</td>
</tr>
<tr>
<td>3</td>
<td><strong>Pec Deck</strong> (Cable Fly)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 3Γ12<br>P3: 4Γ15</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Squeeze hard at peak contraction. Hold 1s. This builds chest definition, not just mass.</td>
</tr>
<tr>
<td>4</td>
<td><strong>Overhead Tricep Extension</strong> (Cable)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 4Γ12<br>P3: 4Γ15</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">3-0-1</td>
<td class="note-cell">Long head of tricep β biggest part. Elbows stay still, only forearm moves. You've been at 30kg β target 35kg by week 8.</td>
</tr>
<tr style="background:rgba(200,73,26,0.03)">
<td>5A <span class="superset-marker ss-a">A</span></td>
<td><strong>Tricep Pushdown</strong> (rope attachment)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 3Γ12<br>P3: 3Γ15</td>
<td class="rest-cell">β</td>
<td class="tempo-cell">2-1-1</td>
<td class="note-cell"><strong>SUPERSET with 5B (P2/P3 only).</strong> Flare elbows out at bottom, squeeze.</td>
</tr>
<tr style="background:rgba(200,73,26,0.03)">
<td>5B <span class="superset-marker ss-b">B</span></td>
<td><strong>Lateral Raise</strong> (DB, standing)</td>
<td class="sets-cell">P1: β<br>P2: 3Γ15<br>P3: 3Γ15</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Added in P2. Slight forward lean, lead with elbows not hands. 10kg β target 12.5 by week 12.</td>
</tr>
</table>
</div>
</div>
<!-- THU -->
<div id="day-thu" class="day-workout" style="display:none">
<div class="ex-panel">
<div class="ex-panel-header">
<div>
<div class="ex-panel-title">THURSDAY β PULL (Back + Biceps + Rear Delt)</div>
<div class="ex-panel-sub">~58 min Β· This day fixes your arm visibility problem directly</div>
</div>
</div>
<table>
<tr><th>#</th><th>Exercise</th><th>Sets Γ Reps</th><th>Rest</th><th>Tempo</th><th>Notes</th></tr>
<tr>
<td>1</td>
<td><strong>Seated Cable Row</strong></td>
<td class="sets-cell">P1: 3Γ10<br>P2: 4Γ10<br>P3: 4Γ10</td>
<td class="rest-cell">90s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Your strongest lift (85kg). Target 90kg by week 8, 95kg by week 12. Row to lower chest, squeeze scapula.</td>
</tr>
<tr>
<td>2</td>
<td><strong>Lat Pulldown</strong> (wide grip)</td>
<td class="sets-cell">P1: 3Γ10<br>P2: 4Γ10<br>P3: 4Γ12</td>
<td class="rest-cell">75s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">You've plateaued at 55kg. Target 60kg by week 6. Lean back slightly, pull to upper chest, full stretch at top.</td>
</tr>
<tr>
<td>3</td>
<td><strong>Pull-ups / Assisted Pull-ups</strong></td>
<td class="sets-cell">3 Γ AMRAP<br>(all phases)</td>
<td class="rest-cell">90s</td>
<td class="tempo-cell">2-0-1</td>
<td class="note-cell">Do as many as you can. Track reps week to week. By W12 target 3 more reps than W1. Use assist machine if needed.</td>
</tr>
<tr>
<td>4</td>
<td><strong>Rear Delt Fly</strong> (machine or DB bent-over)</td>
<td class="sets-cell">P1: 3Γ15<br>P2: 3Γ15<br>P3: 4Γ15</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Most neglected muscle for aesthetics. Makes shoulders look 3D. Lead with elbows, squeeze at top. 35kg β 40kg by W8.</td>
</tr>
<tr style="background:rgba(26,107,200,0.03)">
<td>5A <span class="superset-marker ss-a">A</span></td>
<td><strong>Preacher Curl</strong> (EZ bar / DB)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 3Γ12<br>P3: 3Γ15</td>
<td class="rest-cell">β</td>
<td class="tempo-cell">3-1-1</td>
<td class="note-cell"><strong>SUPERSET with 5B.</strong> You've been stuck at 15kg. 3s eccentric (down) phase = key to bicep growth. Target 17.5kg by W8.</td>
</tr>
<tr style="background:rgba(26,107,200,0.03)">
<td>5B <span class="superset-marker ss-b">B</span></td>
<td><strong>Hammer Curl</strong> (DB, alternating)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 3Γ12<br>P3: 3Γ15</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Brachialis + brachioradialis = arm thickness. 10kg β 12.5kg by W8. No swinging β strict form only.</td>
</tr>
<tr>
<td>6</td>
<td><strong>Face Pull</strong> (cable, rope)</td>
<td class="sets-cell">3Γ15 (all phases)</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Rotator cuff health + rear delt. Pull to face level, elbows flare up. Non-negotiable injury prevention for your push volume.</td>
</tr>
</table>
</div>
</div>
<!-- FRI -->
<div id="day-fri" class="day-workout" style="display:none">
<div class="ex-panel">
<div class="ex-panel-header">
<div>
<div class="ex-panel-title">FRIDAY β SHOULDERS + ARMS (Dedicated Day)</div>
<div class="ex-panel-sub">~60 min Β· THE session that changes how you look in a t-shirt</div>
</div>
</div>
<table>
<tr><th>#</th><th>Exercise</th><th>Sets Γ Reps</th><th>Rest</th><th>Tempo</th><th>Notes</th></tr>
<tr>
<td>1</td>
<td><strong>DB Shoulder Press</strong> (seated)</td>
<td class="sets-cell">P1: 3Γ10<br>P2: 4Γ10<br>P3: 4Γ10</td>
<td class="rest-cell">90s</td>
<td class="tempo-cell">2-1-1</td>
<td class="note-cell">Start light and build. This is your primary overhead press β key for shoulder mass. Elbows at 45Β°, don't flare out wide.</td>
</tr>
<tr style="background:rgba(140,107,26,0.03)">
<td>2A <span class="superset-marker ss-a">A</span></td>
<td><strong>Lateral Raise</strong> (DB, seated)</td>
<td class="sets-cell">P1: 3Γ15<br>P2: 4Γ15<br>P3: 4Γ15</td>
<td class="rest-cell">β</td>
<td class="tempo-cell">2-1-3</td>
<td class="note-cell"><strong>SUPERSET with 2B.</strong> 3s SLOW on the way down β eccentric is where lateral head grows. Seated = less cheating.</td>
</tr>
<tr style="background:rgba(140,107,26,0.03)">
<td>2B <span class="superset-marker ss-b">B</span></td>
<td><strong>Rear Delt Fly</strong> (cable, bent-over)</td>
<td class="sets-cell">P1: 3Γ15<br>P2: 4Γ15<br>P3: 4Γ15</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Hit rear delts twice a week total (also Thu). This is what makes shoulders look 3D from every angle.</td>
</tr>
<tr>
<td>3</td>
<td><strong>Upright Row</strong> (cable, EZ bar)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 3Γ12<br>P3: 4Γ12</td>
<td class="rest-cell">60s</td>
<td class="tempo-cell">2-1-2</td>
<td class="note-cell">Traps + side delt. Keep bar/cable close to body, elbows above wrists. Don't go heavy β shoulder impingement risk.</td>
</tr>
<tr style="background:rgba(26,140,78,0.03)">
<td>4A <span class="superset-marker ss-a">A</span></td>
<td><strong>Barbell / EZ Bar Curl</strong></td>
<td class="sets-cell">P1: 3Γ10<br>P2: 3Γ12<br>P3: 3Γ15</td>
<td class="rest-cell">β</td>
<td class="tempo-cell">3-1-1</td>
<td class="note-cell"><strong>SUPERSET with 4B.</strong> You've been at 7.5kg dumbbells β switch to EZ bar and start at 15kg total. Target 20kg by W8.</td>
</tr>
<tr style="background:rgba(26,140,78,0.03)">
<td>4B <span class="superset-marker ss-b">B</span></td>
<td><strong>Tricep Pushdown</strong> (straight bar)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 3Γ12<br>P3: 3Γ15</td>
<td class="rest-cell">45s</td>
<td class="tempo-cell">2-1-1</td>
<td class="note-cell">Arms superset = maximum pump in 6 minutes. Keep rest to 45s for metabolic stress. This phase builds visible arms.</td>
</tr>
<tr style="background:rgba(26,140,78,0.05)">
<td>5 <span class="tip">P3 ONLY</span></td>
<td><strong>21s Bicep Curl</strong> (DB, weeks 9β12)</td>
<td class="sets-cell">3Γ21</td>
<td class="rest-cell">75s</td>
<td class="tempo-cell">controlled</td>
<td class="note-cell">7 bottom-half reps + 7 top-half + 7 full range. Brutal pump, hits all portions of the curl. Use 6β7kg DB.</td>
</tr>
</table>
</div>
</div>
<!-- SAT -->
<div id="day-sat" class="day-workout" style="display:none">
<div class="ex-panel">
<div class="ex-panel-header">
<div>
<div class="ex-panel-title">SATURDAY β LEGS + KNEE REHAB</div>
<div class="ex-panel-sub">~55 min Β· Modified for knee rehab β no squats, no lunges. Progressive and safe.</div>
</div>
</div>
<table>
<tr><th>#</th><th>Exercise</th><th>Sets Γ Reps</th><th>Rest</th><th>Notes</th></tr>
<tr>
<td>1</td>
<td><strong>Leg Press</strong> (high foot placement)</td>
<td class="sets-cell">P1: 3Γ15<br>P2: 4Γ12<br>P3: 4Γ15</td>
<td class="rest-cell">90s</td>
<td class="note-cell">High foot = glutes/hamstrings dominant, less knee stress. Don't lock out. Go light and build. Prioritise range over weight.</td>
</tr>
<tr>
<td>2</td>
<td><strong>Leg Curl</strong> (machine, lying or seated)</td>
<td class="sets-cell">P1: 3Γ12<br>P2: 4Γ12<br>P3: 4Γ15</td>
<td class="rest-cell">75s</td>
<td class="note-cell">Hamstrings. Knee-friendly. Slow eccentric (3s down). This also helps knee stability long-term.</td>
</tr>
<tr>
<td>3</td>
<td><strong>Leg Extension</strong> (machine, light)</td>
<td class="sets-cell">P1: 3Γ15<br>P2: 3Γ15<br>P3: 3Γ20</td>
<td class="rest-cell">60s</td>
<td class="note-cell">Keep weight light β this is for rehab stimulus, not strength. Pain = stop. Aim for full extension without locking out hard.</td>
</tr>
<tr>
<td>4</td>
<td><strong>Back Extension</strong> (machine/bench)</td>
<td class="sets-cell">3Γ15 (all phases)</td>
<td class="rest-cell">60s</td>
<td class="note-cell">Lower back + glutes. Add a 5kg plate in P2. Great for posture and posterior chain without knee load.</td>
</tr>
</table>
</div>
<div class="rehab-box">
<div class="rehab-title">𦡠Knee Rehab Protocol β After Every Leg Session + Tuesday</div>
<div class="rehab-grid">
<div class="rehab-item"><strong>Wall Sit</strong><span>3 Γ 30β45s β build to 60s by W8</span><br>Feet shoulder-width, 90Β° knee angle. Stop if sharp pain.</div>
<div class="rehab-item"><strong>Tibialis Raises</strong><span>3 Γ 20 β 3 Γ 25 by W6</span><br>Back against wall, heels forward, lift toes. Prevents shin splints, strengthens anterior chain.</div>
<div class="rehab-item"><strong>Clamshells</strong><span>3 Γ 20 each side β add band W5</span><br>Hip abductor strength = knee tracking. Add resistance band in Phase 2.</div>
<div class="rehab-item"><strong>Terminal Knee Extension (TKE)</strong><span>3 Γ 15 each side β NEW ADDITION</span><br>Band around a post, slight knee bend, straighten and squeeze VMO. Best exercise for patellar tracking.</div>
<div class="rehab-item"><strong>Glute Bridge</strong><span>3 Γ 20 β single-leg W6+</span><br>Glute activation = takes load off knee. Progress to single-leg when comfortable.</div>
<div class="rehab-item"><strong>Calf Raise</strong><span>2 Γ 25 (bodyweight)</span><br>Achilles + ankle stability. Do these slow on a step if possible.</div>
</div>
</div>
</div>
<!-- WED -->
<div id="day-wed" class="day-workout" style="display:none">
<div class="ex-panel">
<div class="ex-panel-header">
<div>
<div class="ex-panel-title">WEDNESDAY β CORE (Log This!)</div>
<div class="ex-panel-sub">~30β35 min Β· Anti-rotation + stability = better on every other lift</div>
</div>
</div>
<table>
<tr><th>#</th><th>Exercise</th><th>Sets Γ Reps/Duration</th><th>Rest</th><th>Notes</th></tr>
<tr><td>1</td><td><strong>Plank</strong></td><td class="sets-cell">3 Γ 30β45s<br>β 60s by W8</td><td class="rest-cell">45s</td><td class="note-cell">Straight line head to heel. Track time improvements week to week β this is your core benchmark.</td></tr>
<tr><td>2</td><td><strong>Dead Bug</strong></td><td class="sets-cell">3 Γ 10 each side</td><td class="rest-cell">45s</td><td class="note-cell">Lower back pressed flat to floor. Opposite arm + leg extend slowly. Anti-extension core stability β translates to better pressing.</td></tr>
<tr><td>3</td><td><strong>Pallof Press</strong> (cable)</td><td class="sets-cell">3 Γ 12 each side</td><td class="rest-cell">45s</td><td class="note-cell">Anti-rotation. Stand sideways to cable, press out and hold. This is what real core training looks like β far better than crunches.</td></tr>
<tr><td>4</td><td><strong>Cable Crunch</strong></td><td class="sets-cell">3 Γ 15<br>β 4 Γ 15 by W5</td><td class="rest-cell">45s</td><td class="note-cell">Kneel facing cable, rope behind head, crunch down. Weighted ab work β builds visible abs on top of the fat loss from training.</td></tr>
<tr><td>5</td><td><strong>Hollow Body Hold</strong></td><td class="sets-cell">3 Γ 20s<br>β 3 Γ 30s by W6</td><td class="rest-cell">45s</td><td class="note-cell">Lie flat, arms overhead, lower back pressed down, lift legs + shoulders off floor. Gymnastic core compression.</td></tr>
</table>
</div>
</div>
</div>
<!-- βββββββββββββββββββββββββββββββ MILESTONES PAGE βββββββββββββββββββββββββββββββ -->
<div id="page-milestones" class="page">
<p style="font-size:0.82rem;color:var(--muted);margin-bottom:28px;font-family:'DM Mono',monospace;line-height:1.6">
These are specific, measurable checkpoints. At each milestone, evaluate whether you're on track. If a target feels easy, push the next one harder. If it feels impossible, your form might need work β don't just grind through bad reps.
</p>
<div class="timeline">
<div class="milestone m-p1">
<div class="ms-week">// WEEK 2 β First check-in</div>
<div class="ms-title">Foundation Locked</div>
<div class="ms-body">You should be hitting every exercise with clean form. The goal this week is not weight β it's consistency and mind-muscle connection. Focus especially on feeling your biceps, not just moving the weight.</div>
<div class="ms-targets">
<span class="ms-target">All 5 days completed β</span>
<span class="ms-target">Plank β₯ 30s</span>
<span class="ms-target">Knee rehab done both Tue + Sat</span>
<span class="ms-target">Bicep curl with full 3s eccentric</span>
</div>
</div>
<div class="milestone m-p1">
<div class="ms-week">// END OF WEEK 4 β Phase 1 Complete</div>
<div class="ms-title">First Strength Benchmarks</div>
<div class="ms-body">By week 4 you should have baseline numbers across every lift. These will be your reference point for all future progression. If any of these feel easy, you started too light β good, now push faster.</div>
<div class="ms-targets">
<span class="ms-target">Incline Bench β 42.5kg Γ 10</span>
<span class="ms-target">Cable Row β 87.5kg Γ 10</span>
<span class="ms-target">Lat Pulldown β 57.5kg Γ 10</span>
<span class="ms-target">Bicep Curl β 8.75kg Γ 12</span>
<span class="ms-target">Preacher Curl β 16kg Γ 12</span>
<span class="ms-target">Shoulder Press β first 5 sessions done</span>
<span class="ms-target">Plank β 45s</span>
<span class="ms-target">Wall Sit β 45s</span>
</div>
</div>
<div class="milestone m-p2">
<div class="ms-week">// END OF WEEK 6 β Mid-Phase 2</div>
<div class="ms-title">Visible Changes Begin</div>
<div class="ms-body">Shoulders should look noticeably wider than week 1 β the dedicated Friday session + lateral raises twice a week does this fast. Arms should feel different when you flex. This is where the "nobody can tell" problem starts to reverse.</div>
<div class="ms-targets">
<span class="ms-target">Lat Pulldown β 60kg Γ 10</span>
<span class="ms-target">Hammer Curl β 11.25kg Γ 12</span>
<span class="ms-target">Lateral Raise β 11.25kg Γ 12</span>
<span class="ms-target">Supersets introduced on Thu + Fri</span>
<span class="ms-target">Clamshells with band added</span>
<span class="ms-target">TKE β zero pain with 3 sets</span>
</div>
</div>
<div class="milestone m-p2">
<div class="ms-week">// END OF WEEK 8 β Phase 2 Complete</div>
<div class="ms-title">Strength Milestone β Major Jump</div>
<div class="ms-body">This is your biggest strength checkpoint. 8 weeks of consistent training should translate to meaningful weight increases across all lifts. Your arms and shoulders should now be visibly developed β the weekly arm tri-frequency is kicking in.</div>
<div class="ms-targets">
<span class="ms-target">Incline Bench β 45kg Γ 10</span>
<span class="ms-target">Cable Row β 90β92.5kg Γ 10</span>
<span class="ms-target">OHT Extension β 33β35kg Γ 12</span>
<span class="ms-target">Tricep Pushdown β 40kg Γ 12</span>
<span class="ms-target">Preacher Curl β 17.5kg Γ 12</span>
<span class="ms-target">Hammer Curl β 12.5kg Γ 12</span>
<span class="ms-target">EZ Bar Curl β 20kg Γ 12</span>
<span class="ms-target">Shoulder Press β 14β16kg DB Γ 10</span>
<span class="ms-target">Plank β 60s</span>
<span class="ms-target">Wall Sit β 60s</span>
<span class="ms-target">Pull-ups β +2 reps vs Week 1</span>
</div>
</div>
<div class="milestone m-p3">
<div class="ms-week">// END OF WEEK 10 β Mid-Phase 3</div>
<div class="ms-title">Endurance + Definition Peak</div>
<div class="ms-body">Phase 3's shorter rest and higher reps should give you a noticeable pump throughout sessions. Muscles will appear fuller even on rest days as capillary density increases. You'll need more water and more food to support this phase.</div>
<div class="ms-targets">
<span class="ms-target">All tri-sets completed on Fri</span>
<span class="ms-target">21s curls without form breakdown</span>
<span class="ms-target">45s rest maintained on arm isolation</span>
<span class="ms-target">Leg press β 10kg more than W1</span>
<span class="ms-target">Back extension with added plate</span>
</div>
</div>
<div class="milestone m-final">
<div class="ms-week">// END OF WEEK 12 β FINAL BENCHMARKS</div>
<div class="ms-title">12-Week Transformation Targets</div>
<div class="ms-body">These are your final targets. If you hit most of these, your physique will be measurably and visibly different β wider shoulders, defined arms, better posture from back work, functional core. People will notice.</div>
<div class="ms-targets">
<span class="ms-target">Incline Bench β 47.5β50kg Γ 10</span>
<span class="ms-target">Cable Row β 95kg Γ 10</span>
<span class="ms-target">Lat Pulldown β 62.5kg Γ 10</span>
<span class="ms-target">Preacher Curl β 18β20kg Γ 12</span>
<span class="ms-target">Hammer Curl β 13.75β15kg Γ 12</span>
<span class="ms-target">EZ Bar Curl β 22.5kg Γ 12</span>
<span class="ms-target">Shoulder Press β 17.5β20kg DB Γ 10</span>
<span class="ms-target">Lateral Raise β 12.5kg Γ 15</span>
<span class="ms-target">OHT Extension β 35β37.5kg Γ 12</span>
<span class="ms-target">Tricep Pushdown β 42.5kg Γ 12</span>
<span class="ms-target">Pull-ups β +3 reps vs Week 1</span>
<span class="ms-target">Plank β 75s</span>
<span class="ms-target">Knee pain-free on daily activities</span>
</div>
</div>
</div>
</div>
<!-- βββββββββββββββββββββββββββββββ OVERLOAD PAGE βββββββββββββββββββββββββββββββ -->
<div id="page-overload" class="page">
<p style="font-size:0.82rem;color:var(--muted);margin-bottom:24px;font-family:'DM Mono',monospace;line-height:1.6">
Progressive overload is the only reason muscles grow. These are the exact rules to follow. Add weight when you hit the top of the rep range for all sets with good form. Drop back 10% if form breaks.
</p>
<div class="section-head">The Overload Rules</div>
<div style="display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;margin-bottom:28px">
<div style="background:white;border:1px solid var(--line);border-radius:10px;padding:20px">
<div style="font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:1px;color:var(--p1);margin-bottom:8px">Compound Lifts</div>
<div style="font-size:0.8rem;color:var(--ink2);line-height:1.7">
Bench, Row, Lat Pulldown, Shoulder Press<br><br>
<strong>Add weight when:</strong> You complete all sets at top of rep range (e.g. 3Γ10 all sets)<br><br>
<strong>Increment:</strong> +2.5kg per session<br><br>
<strong>If you fail mid-set:</strong> Repeat same weight next session
</div>
</div>
<div style="background:white;border:1px solid var(--line);border-radius:10px;padding:20px">
<div style="font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:1px;color:var(--p2);margin-bottom:8px">Isolation Lifts</div>
<div style="font-size:0.8rem;color:var(--ink2);line-height:1.7">
Curls, extensions, lateral raises, pec deck<br><br>
<strong>Add weight when:</strong> All sets at top rep range, last set feels like β₯ 2 reps in reserve<br><br>
<strong>Increment:</strong> +1.25kg (microload) or +2.5kg if easy<br><br>
<strong>Alternative:</strong> Add 1 rep per set instead of weight
</div>
</div>
<div style="background:white;border:1px solid var(--line);border-radius:10px;padding:20px">
<div style="font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:1px;color:var(--p3);margin-bottom:8px">Bodyweight / Timed</div>
<div style="font-size:0.8rem;color:var(--ink2);line-height:1.7">
Pull-ups, plank, wall sit, rehab work<br><br>
<strong>Progress by:</strong> +1 rep per week for pull-ups, +5s per week for holds<br><br>
<strong>Pull-ups plateau:</strong> Use assisted machine to go heavier on lat pulldown in parallel<br><br>
<strong>Never skip these</strong> β biggest long-term gains
</div>
</div>
</div>
<div class="section-head">Per-Exercise Overload Schedule</div>
<div class="overload-grid">
<div class="overload-card">
<div class="oc-header"><div class="oc-dot" style="background:var(--push)"></div>Incline Bench Press</div>
<div class="oc-body">
<div class="oc-row"><span>Current (Mar 18)</span><span class="oc-val">40kg Γ 10</span></div>
<div class="oc-row"><span class="oc-phase">W4 Target</span><span class="oc-val">42.5kg Γ 10</span></div>
<div class="oc-row"><span class="oc-phase">W8 Target</span><span class="oc-val">45β47.5kg Γ 10</span></div>
<div class="oc-row"><span class="oc-phase">W12 Target</span><span class="oc-val">50kg Γ 10</span></div>
<div class="oc-row"><span class="oc-phase">Increment</span><span class="oc-val">+2.5kg / 2 sessions</span></div>
</div>
</div>