-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1964 lines (1836 loc) · 151 KB
/
Copy pathindex.html
File metadata and controls
1964 lines (1836 loc) · 151 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>
<!--
============================================================================
TILL DOOMSDAY, PERIODT. · "The Snatched Timeline"
A single-file MCU watch tracker. Built by Aeriel Denmark with Claude (Cowork).
----------------------------------------------------------------------------
This is ONE self-contained web page written in three languages that live
together in this single file:
1) CSS (inside the STYLE block, up in the HEAD) = how everything LOOKS.
All colors live once at the top in :root as reusable variables, then
each piece (hero, countdown, cards, toggle...) has its own style block.
The "@media (max-width...)" bits are the rules that kick in on phones.
2) HTML (inside the BODY) = the CONTENT and structure.
The hero, the countdown, the progress bar, the legend, the
"Release vs Timeline" card, the controls, and all 73 title cards.
Important: every title is written straight into the HTML on purpose,
so the full list still shows even if JavaScript never runs (some phone
text-previews block scripts). That approach is called
"progressive enhancement."
3) JavaScript (inside the SCRIPT block at the very bottom) = the BEHAVIOR.
Checking titles off, saving your progress, filtering, the order
toggle, the countdown clock, the easter eggs. It only ADDS to the
HTML that's already here.
WANT TO CHANGE SOMETHING?
- A color/theme: edit the variables in :root (top of <style>).
- A title's words: search its name in the HTML and edit the text.
- How it behaves: it's all in the one commented SCRIPT block at the bottom.
============================================================================
-->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- hidden home-screen / tab name easter egg -->
<title>The Snatched Timeline ✦</title>
<meta name="apple-mobile-web-app-title" content="Snatched Timeline" />
<meta name="theme-color" content="#160d0b" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet" />
<style>
/* ======================================================================
DESIGN TOKENS: every color and reused value lives here ONCE, as a CSS
custom property (a variable). Elsewhere you write e.g. color:var(--rose).
Change a value here and it updates everywhere at once. This is how you
keep one consistent palette and can re-skin the whole site fast.
====================================================================== */
:root{
--espresso:#150c0a; --espresso-2:#1f120e; --mocha:#2c1a15; --chocolate:#3a2019;
--wine:#4a121d; --burgundy:#761f30; --burgundy-soft:#8f2c40;
--rose:#d3798a; --rose-deep:#b8546a; --blush:#f6dbe0; --blush-dim:#e7bcc4;
--gold:#e2b878; --gold-bright:#f4d6a0; --gold-deep:#c79350;
--cream:#f5e9e4; --muted:#c3a49b; --muted-dim:#9c7c74;
--line:rgba(226,184,120,.16); --line-strong:rgba(226,184,120,.34);
--card:rgba(58,32,25,.55); --card-hover:rgba(74,42,32,.74);
--c-ess:#4fbf8b; --c-prob:#e6c05a; --c-ctx:#6ea8e0; --c-bonus:#ecd9d1;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
/* ---- base page: fonts, text color, and the layered background glow ---- */
body{
margin:0; color:var(--cream); line-height:1.55; -webkit-font-smoothing:antialiased;
font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
background-color:var(--espresso);
background-image:
radial-gradient(1200px 640px at 82% -8%, rgba(118,31,48,.5), transparent 60%),
radial-gradient(900px 520px at 6% 3%, rgba(211,121,138,.18), transparent 55%),
radial-gradient(1100px 900px at 50% 122%, rgba(199,147,80,.14), transparent 60%),
linear-gradient(180deg,var(--espresso) 0%, var(--espresso-2) 42%, var(--mocha) 100%);
min-height:100vh;
}
a{color:var(--gold);text-decoration:none;border-bottom:1px solid rgba(226,184,120,.35);}
a:hover{color:var(--gold-bright);}
.wrap{max-width:1000px;margin:0 auto;padding:0 20px 90px;}
.sparkle{color:var(--gold);}
/* ===== HERO ===== */
/* ================== SECTION STYLES (grouped by component) ==============
Each block below styles one visual piece. Read the class name to know
what it targets (e.g. .countdown styles the countdown box). ".foo:hover"
= on mouse-over; ".foo.done" = when an element has BOTH classes.
====================================================================== */
header.hero{text-align:center;padding:58px 20px 26px;position:relative;}
.crest{width:92px;height:92px;margin:0 auto 10px;cursor:pointer;filter:drop-shadow(0 6px 22px rgba(226,184,120,.4));transition:transform .3s;}
.crest:hover{transform:scale(1.06) rotate(-2deg);}
.kicker{font:600 11px/1 'Inter';letter-spacing:.4em;text-transform:uppercase;color:var(--gold);opacity:.92;margin-bottom:16px;}
.kicker::before,.kicker::after{content:"✦";margin:0 12px;color:var(--rose);opacity:.75;}
h1.title{
font-family:'Playfair Display',serif;font-weight:900;font-size:clamp(40px,9.4vw,92px);
line-height:.95;margin:0;letter-spacing:-1px;
background:linear-gradient(180deg,#fce6da 0%, var(--gold-bright) 38%, var(--gold-deep) 76%, #9c6a34 100%);
-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
text-shadow:0 2px 46px rgba(226,184,120,.2);
}
h1.title .period{color:var(--rose-deep);-webkit-text-fill-color:var(--rose-deep);}
.title-sub{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:clamp(18px,3.4vw,27px);color:var(--blush);margin-top:12px;letter-spacing:.3px;}
.manifesto{max-width:620px;margin:20px auto 0;font-size:14.5px;color:var(--muted);line-height:1.7;}
.manifesto b{color:var(--rose);font-weight:600;}
/* ===== COUNTDOWN ===== */
.countdown{margin:34px auto 8px;max-width:660px;
background:linear-gradient(135deg, rgba(74,18,29,.72), rgba(58,32,25,.55));
border:1px solid var(--line);border-radius:22px;padding:22px 20px 20px;
box-shadow:0 24px 60px -30px rgba(0,0,0,.72), inset 0 1px 0 rgba(255,255,255,.05);}
.cd-label{font:600 11px/1 'Inter';letter-spacing:.32em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;}
.cd-grid{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;}
.cd-cell{min-width:72px;}
.cd-num{font-family:'Playfair Display',serif;font-weight:700;font-size:clamp(30px,7vw,46px);color:var(--blush);line-height:1;text-shadow:0 2px 20px rgba(211,121,138,.32);}
.cd-unit{font:500 10px/1 'Inter';letter-spacing:.22em;text-transform:uppercase;color:var(--muted);margin-top:8px;}
.cd-date{margin-top:15px;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:18px;color:var(--rose);}
/* ===== PROGRESS + SNAP BACK ===== */
.progress-card{margin:24px auto 0;max-width:770px;background:var(--card);border:1px solid var(--line);border-radius:18px;padding:20px 22px;}
.snapback{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:17px;color:var(--gold-bright);margin-bottom:14px;display:flex;align-items:center;gap:9px;}
.snapback .tag{font:600 9px/1 'Inter';letter-spacing:.18em;text-transform:uppercase;color:var(--rose);border:1px solid var(--line);border-radius:999px;padding:5px 9px;font-style:normal;}
.prog-top{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap;}
.prog-pct{font-family:'Playfair Display',serif;font-weight:700;font-size:34px;color:var(--gold-bright);}
.prog-meta{font-size:13px;color:var(--muted);}
.prog-meta b{color:var(--blush);font-weight:600;}
.bar{height:12px;border-radius:999px;background:rgba(0,0,0,.35);margin-top:13px;overflow:hidden;border:1px solid rgba(226,184,120,.12);}
.bar-fill{height:100%;width:0%;border-radius:999px;background:linear-gradient(90deg,var(--rose-deep),var(--rose),var(--gold));transition:width .5s cubic-bezier(.4,0,.2,1);box-shadow:0 0 18px rgba(211,121,138,.5);}
.prog-sub{display:flex;gap:16px;flex-wrap:wrap;margin-top:13px;font-size:12.5px;color:var(--muted);}
.prog-sub b{color:var(--rose);}
/* ===== INFINITY GEM METER ===== */
.gems{margin:16px auto 0;max-width:770px;background:var(--card);border:1px solid var(--line);border-radius:18px;padding:16px 22px;}
.gems-head{display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:12px;}
.gems-head h3{margin:0;font-family:'Playfair Display',serif;font-weight:600;font-size:15px;color:var(--gold-bright);}
.gems-head small{font-size:11.5px;color:var(--muted-dim);font-style:italic;font-family:'Cormorant Garamond',serif;}
.gem-row{display:flex;justify-content:space-between;gap:10px;}
.gem{flex:1;text-align:center;}
.gem svg{width:34px;height:34px;filter:grayscale(1) brightness(.5);opacity:.45;transition:.5s;}
.gem.lit svg{filter:none;opacity:1;filter:drop-shadow(0 0 8px currentColor);}
.gem .gname{font:500 9px/1.3 'Inter';letter-spacing:.06em;text-transform:uppercase;color:var(--muted-dim);margin-top:6px;transition:.4s;}
.gem.lit .gname{color:var(--blush);}
/* ===== LEGEND ===== */
.legends{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:26px auto 0;max-width:940px;}
@media(max-width:720px){.legends{grid-template-columns:1fr;}}
.legend{background:var(--card);border:1px solid var(--line);border-radius:16px;padding:18px 20px;}
.legend h3{margin:0 0 6px;font-family:'Playfair Display',serif;font-weight:600;font-size:17px;color:var(--gold-bright);}
.legend .lh-sub{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:14px;color:var(--muted-dim);margin-bottom:12px;}
.leg-row{display:flex;align-items:center;gap:11px;margin:9px 0;font-size:13px;color:var(--cream);}
.dot{width:12px;height:12px;border-radius:50%;flex:none;box-shadow:0 0 10px currentColor;}
.leg-row small{color:var(--muted-dim);margin-left:2px;}
.badge{display:inline-flex;align-items:center;gap:5px;font:600 10.5px/1 'Inter';letter-spacing:.05em;text-transform:uppercase;padding:5px 9px;border-radius:999px;border:1px solid transparent;white-space:nowrap;}
.badge svg{width:12px;height:12px;}
.b-character{color:#f0c7cf;background:rgba(184,84,106,.18);border-color:rgba(211,121,138,.4);}
.b-newavengers{color:#f0a9a9;background:rgba(150,30,40,.24);border-color:rgba(200,70,80,.45);}
.b-multiverse{color:#c9b3ee;background:rgba(120,80,170,.2);border-color:rgba(150,110,200,.42);}
.b-doom{color:#e6b98a;background:rgba(120,60,30,.3);border-color:rgba(199,147,80,.42);}
.b-xmen{color:#f2d29a;background:rgba(199,147,80,.16);border-color:rgba(226,184,120,.45);}
.b-cosmic{color:#a9d4e6;background:rgba(40,90,120,.22);border-color:rgba(110,168,224,.42);}
/* ===== COMPANION CREDIT ===== */
.companion{margin:26px auto 0;max-width:940px;display:flex;gap:16px;align-items:flex-start;
background:linear-gradient(135deg,rgba(199,147,80,.12),rgba(58,32,25,.5));border:1px dashed var(--line-strong);
border-radius:16px;padding:18px 20px;}
.companion .co-ico{flex:none;width:38px;height:38px;color:var(--gold);}
.companion h4{margin:0 0 5px;font-family:'Playfair Display',serif;font-weight:600;font-size:16px;color:var(--gold-bright);}
.companion p{margin:0;font-size:13px;color:var(--muted);line-height:1.6;}
/* ===== CONTROLS ===== */
.controls{position:sticky;top:0;z-index:40;margin:32px -20px 0;padding:14px 20px;
background:linear-gradient(180deg, rgba(21,12,10,.95), rgba(21,12,10,.82));border-bottom:1px solid var(--line);}
.controls-inner{max-width:1000px;margin:0 auto;display:flex;flex-direction:column;gap:12px;}
.search{width:100%;background:rgba(0,0,0,.3);border:1px solid var(--line);border-radius:12px;padding:12px 16px;color:var(--cream);font:400 14px 'Inter';}
.search::placeholder{color:var(--muted-dim);font-style:italic;}
.chips{display:flex;gap:8px;flex-wrap:wrap;}
.chip{cursor:pointer;user-select:none;font:500 12px 'Inter';padding:8px 14px;border-radius:999px;border:1px solid var(--line);background:rgba(58,32,25,.5);color:var(--muted);transition:.18s;}
.chip:hover{color:var(--blush);border-color:var(--rose);}
.chip.active{background:linear-gradient(135deg,var(--burgundy),var(--rose-deep));color:#fff;border-color:var(--rose);box-shadow:0 6px 20px -8px rgba(211,121,138,.7);}
.chip.ghost{margin-left:auto;background:transparent;}
/* ===== ACTS ===== */
.act{margin-top:52px;position:relative;}
.act-head{display:flex;align-items:center;gap:16px;padding-bottom:15px;border-bottom:1px solid var(--line);flex-wrap:wrap;}
.act-sigil{width:46px;height:46px;flex:none;color:var(--gold);filter:drop-shadow(0 3px 10px rgba(226,184,120,.3));}
.act-titles{flex:1;min-width:200px;}
.act-num{font-family:'Playfair Display',serif;font-style:italic;font-weight:600;font-size:13px;color:var(--gold-deep);letter-spacing:.22em;text-transform:uppercase;}
.act-title{font-family:'Playfair Display',serif;font-weight:800;font-size:clamp(24px,5.2vw,36px);color:var(--blush);margin:1px 0 0;line-height:1.05;}
.act-saga{font:600 10px/1 'Inter';letter-spacing:.2em;text-transform:uppercase;color:var(--muted-dim);border:1px solid var(--line);border-radius:6px;padding:5px 9px;}
.act-desc{width:100%;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:17px;color:var(--muted);margin-top:4px;}
/* ===== ITEM CARD ===== */
/* ---- a single title "card" (there are 73 of these in the HTML) ---- */
.item{position:relative;display:flex;gap:13px;align-items:flex-start;overflow:hidden;
background:var(--card);border:1px solid var(--line);border-left:4px solid var(--rose-deep);
border-radius:14px;padding:15px 16px;margin-top:12px;transition:.18s;}
.item:hover{background:var(--card-hover);transform:translateX(2px);border-color:var(--line-strong);}
.item.done{opacity:.5;filter:saturate(.6);}
.item.done .it-title{text-decoration:line-through;text-decoration-color:var(--rose-deep);}
.item .watermark{position:absolute;right:-14px;top:50%;transform:translateY(-50%);width:112px;height:112px;color:var(--gold);opacity:.05;pointer-events:none;}
.it-check{flex:none;width:26px;height:26px;margin-top:2px;border-radius:8px;cursor:pointer;border:2px solid var(--rose-deep);background:rgba(0,0,0,.25);display:flex;align-items:center;justify-content:center;transition:.15s;z-index:2;}
.it-check:hover{border-color:var(--gold);}
.item.done .it-check{background:linear-gradient(135deg,var(--rose),var(--gold));border-color:var(--gold);}
.it-check svg{width:15px;height:15px;stroke:#160d0b;stroke-width:3.5;fill:none;opacity:0;transition:.15s;}
.item.done .it-check svg{opacity:1;}
.it-idx{flex:none;font-family:'Playfair Display',serif;font-size:13px;color:var(--muted-dim);width:24px;text-align:center;margin-top:5px;z-index:2;}
.it-body{flex:1;min-width:0;z-index:2;}
.it-head{display:flex;align-items:center;gap:10px;flex-wrap:wrap;}
.it-conf{width:11px;height:11px;border-radius:50%;flex:none;box-shadow:0 0 9px currentColor;}
.it-title{font-family:'Playfair Display',serif;font-weight:600;font-size:17px;color:var(--cream);}
.it-year{font-size:12.5px;color:var(--muted-dim);}
.it-type{font:500 10px/1 'Inter';letter-spacing:.11em;text-transform:uppercase;color:var(--gold-deep);border:1px solid var(--line);border-radius:6px;padding:3px 7px;}
.it-badges{display:flex;gap:6px;flex-wrap:wrap;margin-top:9px;}
.it-note{font-size:13.5px;color:var(--muted);margin-top:9px;line-height:1.5;}
.stop{margin-top:11px;display:flex;gap:9px;align-items:flex-start;background:linear-gradient(135deg,rgba(150,30,40,.28),rgba(74,18,29,.35));border:1px solid rgba(211,121,138,.4);border-radius:10px;padding:10px 13px;font-size:13px;color:var(--blush);}
.stop b{color:var(--rose);letter-spacing:.05em;text-transform:uppercase;font-size:11px;display:block;margin-bottom:2px;}
.stop-ico{flex:none;font-size:15px;}
.changed{margin-top:9px;font-size:12px;color:var(--gold);display:inline-flex;gap:6px;align-items:center;background:rgba(226,184,120,.1);border:1px solid var(--line);border-radius:8px;padding:6px 10px;}
.empty{text-align:center;color:var(--muted);font-style:italic;font-family:'Cormorant Garamond',serif;font-size:20px;padding:50px 0;}
/* ===== FINALE ===== */
.finale{margin-top:52px;text-align:center;padding:40px 24px;border-radius:22px;position:relative;overflow:hidden;
background:radial-gradient(600px 300px at 50% 0%, rgba(118,31,48,.55), transparent 70%), linear-gradient(180deg,rgba(74,18,29,.5),rgba(58,32,25,.4));border:1px solid var(--line-strong);}
.finale .fnum{font-family:'Playfair Display',serif;font-style:italic;color:var(--gold-deep);letter-spacing:.22em;text-transform:uppercase;font-size:13px;}
.finale h2{font-family:'Playfair Display',serif;font-weight:900;font-size:clamp(28px,6vw,46px);margin:6px 0 4px;background:linear-gradient(180deg,var(--blush),var(--rose-deep));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;}
.finale p{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:19px;color:var(--rose);margin:0;}
/* ===== BIGGER PICTURE ===== */
.bigpic{margin-top:34px;background:linear-gradient(135deg,rgba(74,18,29,.5),rgba(58,32,25,.5));border:1px solid var(--line);border-radius:20px;overflow:hidden;}
.bigpic summary{cursor:pointer;list-style:none;padding:22px 24px;font-family:'Playfair Display',serif;font-weight:600;font-size:19px;color:var(--gold-bright);display:flex;align-items:center;gap:12px;}
.bigpic summary::-webkit-details-marker{display:none;}
.bigpic summary .caret{margin-left:auto;transition:.2s;color:var(--rose);}
.bigpic[open] summary .caret{transform:rotate(90deg);}
.bigpic .bp-body{padding:0 24px 26px;}
.bp-lede{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:18px;color:var(--blush);margin-bottom:18px;}
.teams{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
@media(max-width:680px){.teams{grid-template-columns:1fr;}}
.team{background:rgba(0,0,0,.22);border:1px solid var(--line);border-radius:14px;padding:16px 18px;}
.team h4{margin:0 0 9px;font-family:'Playfair Display',serif;font-size:16px;color:var(--rose);display:flex;align-items:center;gap:8px;}
.team h4 svg{width:18px;height:18px;color:var(--gold);}
.team p{margin:0;font-size:13px;color:var(--muted);line-height:1.6;}
.spoiler-tag{font:600 10px/1 'Inter';letter-spacing:.18em;text-transform:uppercase;color:var(--gold-deep);border:1px solid var(--line);border-radius:6px;padding:4px 8px;margin-left:6px;}
footer{text-align:center;margin-top:56px;padding-top:26px;border-top:1px solid var(--line);color:var(--muted-dim);font-size:12.5px;line-height:1.75;}
footer .fq{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:20px;color:var(--rose);margin-bottom:16px;min-height:28px;transition:opacity .4s;}
.credit{color:var(--blush);font-size:13.5px;margin-bottom:6px;}
.credit b{color:var(--gold-bright);font-weight:600;}
.reset{cursor:pointer;color:var(--gold);border:1px solid var(--line);background:transparent;border-radius:999px;padding:7px 16px;font:500 12px 'Inter';margin-top:10px;}
.reset:hover{border-color:var(--rose);color:var(--blush);}
/* ===== TOAST (cameo easter egg) ===== */
.toast{position:fixed;left:50%;bottom:28px;transform:translateX(-50%) translateY(30px);opacity:0;pointer-events:none;
background:linear-gradient(135deg,var(--burgundy),var(--wine));border:1px solid var(--gold);border-radius:14px;
padding:14px 22px;color:var(--blush);font-family:'Cormorant Garamond',serif;font-style:italic;font-size:17px;z-index:100;
box-shadow:0 20px 50px -18px rgba(0,0,0,.8);transition:.4s;max-width:88%;text-align:center;}
.toast.show{opacity:1;transform:translateX(-50%) translateY(0);}
/* ===== 100% OVERLAY ===== */
.overlay{position:fixed;inset:0;z-index:120;display:none;align-items:center;justify-content:center;padding:24px;
background:radial-gradient(circle at 50% 40%, rgba(118,31,48,.85), rgba(21,12,10,.96));text-align:center;}
.overlay.show{display:flex;animation:fade .5s ease;}
@keyframes fade{from{opacity:0}to{opacity:1}}
.overlay .ov-inner{max-width:520px;}
.overlay h2{font-family:'Playfair Display',serif;font-weight:900;font-size:clamp(38px,10vw,72px);line-height:1;margin:0;
background:linear-gradient(180deg,#fce6da,var(--gold-bright),var(--gold-deep));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;}
.overlay p{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:20px;color:var(--blush);margin:16px 0 22px;}
.overlay .ov-close{cursor:pointer;background:linear-gradient(135deg,var(--rose-deep),var(--gold));border:none;color:#160d0b;font:700 14px 'Inter';padding:12px 26px;border-radius:999px;}
.confetti{position:fixed;top:-20px;font-size:22px;pointer-events:none;z-index:121;animation:fall linear forwards;}
@keyframes fall{to{transform:translateY(105vh) rotate(360deg);opacity:.2;}}
/* ---- the "Release order vs Timeline order" explainer card ---- */
.versus{margin:26px auto 0;max-width:940px;background:var(--card);border:1px solid var(--line);border-radius:18px;padding:20px 22px;}
.versus h3{margin:0 0 3px;font-family:'Playfair Display',serif;font-weight:600;font-size:18px;color:var(--gold-bright);}
.versus .v-sub{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:15px;color:var(--muted-dim);margin-bottom:14px;}
.versus .v-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
@media(max-width:640px){.versus .v-grid{grid-template-columns:1fr;}}
.v-col{background:rgba(0,0,0,.22);border:1px solid var(--line);border-radius:12px;padding:14px 16px;}
.v-col h4{margin:0 0 7px;font-family:'Playfair Display',serif;font-size:15px;color:var(--rose);display:flex;align-items:center;gap:8px;flex-wrap:wrap;}
.v-col .rec{font:600 9px/1 'Inter';letter-spacing:.14em;text-transform:uppercase;color:#160d0b;background:linear-gradient(135deg,var(--rose),var(--gold));border-radius:999px;padding:4px 8px;}
.v-col p{margin:0;font-size:13px;color:var(--muted);line-height:1.55;}
.v-rec{margin-top:14px;font-size:13.5px;color:var(--blush);line-height:1.6;}
.v-rec b{color:var(--gold-bright);}
.order-toggle{display:flex;gap:6px;background:rgba(0,0,0,.32);border:1px solid var(--line);border-radius:12px;padding:5px;}
.order-toggle button{flex:1;cursor:pointer;font:600 13px 'Inter';padding:11px 12px;border-radius:9px;border:none;background:transparent;color:var(--muted);transition:.18s;}
.order-toggle button:hover{color:var(--blush);}
.order-toggle button.active{background:linear-gradient(135deg,var(--burgundy),var(--rose-deep));color:#fff;box-shadow:0 6px 18px -8px rgba(211,121,138,.7);}
.order-note{font-size:12.5px;color:var(--muted-dim);font-style:italic;margin-top:2px;text-align:center;font-family:'Cormorant Garamond',serif;}
/* ---- the era headers shown only in Timeline view (built by JS) ---- */
.era-head{margin:38px 0 6px;padding-bottom:12px;border-bottom:1px solid var(--line);}
.era-head h3{margin:0;font-family:'Playfair Display',serif;font-weight:800;font-size:clamp(21px,4.8vw,32px);color:var(--blush);}
.era-head .era-note{display:block;margin-top:3px;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:15px;color:var(--muted);}
</style>
</head>
<body>
<header class="hero">
<!-- custom crest emblem (click 3x for a cameo) -->
<svg class="crest" id="crest" viewBox="0 0 100 100" aria-label="crest">
<defs><linearGradient id="gg" x1="0" y1="0" x2="0" y2="1">
<stop offset="0" stop-color="#fce6da"/><stop offset=".5" stop-color="#f4d6a0"/><stop offset="1" stop-color="#c79350"/>
</linearGradient></defs>
<g fill="none" stroke="url(#gg)" stroke-width="2.4" stroke-linejoin="round">
<path d="M50 14 L80 42 L50 88 L20 42 Z"/>
<path d="M20 42 H80 M50 14 L37 42 L50 88 M50 14 L63 42 L50 88"/>
</g>
<g stroke="#d3798a" stroke-width="2" stroke-linecap="round">
<path d="M50 6 v6 M32 10 l3 5 M68 10 l-3 5"/>
</g>
<circle cx="50" cy="42" r="4" fill="#f6dbe0"/>
</svg>
<div class="kicker">The Slay-cred Timeline</div>
<h1 class="title">Till Doomsday,<br/>Periodt<span class="period">.</span></h1>
<div class="title-sub">a watch order of madness, every road leads here</div>
<p class="manifesto"><b>The order I think makes the most sense.</b> No reveals fumbled, no post-credits scene skipped, no cameo wasted. Every project below is proof Marvel is quietly stacking toward <b>Avengers: Doomsday</b>, and this is the order that makes it all land. Now let's get into it. ✦</p>
<div class="countdown">
<div class="cd-label">Clock's ticking ⏳</div>
<div class="cd-grid">
<div class="cd-cell"><div class="cd-num" id="cd-d">00</div><div class="cd-unit">Days</div></div>
<div class="cd-cell"><div class="cd-num" id="cd-h">00</div><div class="cd-unit">Hours</div></div>
<div class="cd-cell"><div class="cd-num" id="cd-m">00</div><div class="cd-unit">Minutes</div></div>
<div class="cd-cell"><div class="cd-num" id="cd-s">00</div><div class="cd-unit">Seconds</div></div>
</div>
<div class="cd-date">until Avengers: Doomsday · December 18, 2026</div>
</div>
<div class="progress-card">
<div class="snapback" id="snapback"><span class="tag">The Snap Back</span> <span id="snapbackText">welcome in. let's begin.</span></div>
<div class="prog-top">
<div class="prog-pct"><span id="pct">0</span>%</div>
<div class="prog-meta"><b id="doneCount">0</b> of <b id="totalCount">0</b> watched · you're that girl</div>
</div>
<div class="bar"><div class="bar-fill" id="barFill"></div></div>
<div class="prog-sub">
<span>🟢 Non-negotiables: <b id="essDone">0</b>/<span id="essTotal">0</span></span>
<span>🎬 Films: <b id="movDone">0</b>/<span id="movTotal">0</span></span>
<span>📺 Series: <b id="serDone">0</b>/<span id="serTotal">0</span></span>
</div>
</div>
<!-- Infinity gem meter easter egg -->
<div class="gems">
<div class="gems-head"><h3>The Infinity Meter 💎</h3><small>collect your stones and complete the Infinity Gauntlet</small></div>
<div class="gem-row" id="gemRow"><div class="gem" data-i="0" style="color:#a05bd6">
<svg viewBox="0 0 24 24" fill="#a05bd6"><path d="M6 3h12l4 6-10 12L2 9z" opacity=".9"/><path d="M6 3l6 6 6-6M2 9h20M12 9v12" fill="none" stroke="rgba(0,0,0,.35)" stroke-width="1"/></svg>
<div class="gname">Power</div>
</div><div class="gem" data-i="1" style="color:#5b8bd6">
<svg viewBox="0 0 24 24" fill="#5b8bd6"><path d="M6 3h12l4 6-10 12L2 9z" opacity=".9"/><path d="M6 3l6 6 6-6M2 9h20M12 9v12" fill="none" stroke="rgba(0,0,0,.35)" stroke-width="1"/></svg>
<div class="gname">Space</div>
</div><div class="gem" data-i="2" style="color:#d65b6a">
<svg viewBox="0 0 24 24" fill="#d65b6a"><path d="M6 3h12l4 6-10 12L2 9z" opacity=".9"/><path d="M6 3l6 6 6-6M2 9h20M12 9v12" fill="none" stroke="rgba(0,0,0,.35)" stroke-width="1"/></svg>
<div class="gname">Reality</div>
</div><div class="gem" data-i="3" style="color:#e08a4a">
<svg viewBox="0 0 24 24" fill="#e08a4a"><path d="M6 3h12l4 6-10 12L2 9z" opacity=".9"/><path d="M6 3l6 6 6-6M2 9h20M12 9v12" fill="none" stroke="rgba(0,0,0,.35)" stroke-width="1"/></svg>
<div class="gname">Soul</div>
</div><div class="gem" data-i="4" style="color:#5bc98b">
<svg viewBox="0 0 24 24" fill="#5bc98b"><path d="M6 3h12l4 6-10 12L2 9z" opacity=".9"/><path d="M6 3l6 6 6-6M2 9h20M12 9v12" fill="none" stroke="rgba(0,0,0,.35)" stroke-width="1"/></svg>
<div class="gname">Time</div>
</div><div class="gem" data-i="5" style="color:#e6c05a">
<svg viewBox="0 0 24 24" fill="#e6c05a"><path d="M6 3h12l4 6-10 12L2 9z" opacity=".9"/><path d="M6 3l6 6 6-6M2 9h20M12 9v12" fill="none" stroke="rgba(0,0,0,.35)" stroke-width="1"/></svg>
<div class="gname">Mind</div>
</div></div>
</div>
<div class="legends">
<div class="legend">
<h3>How sure are we?</h3>
<div class="lh-sub">the confidence read, since not every pick is equally locked</div>
<div class="leg-row"><span class="dot" style="background:var(--c-ess);color:var(--c-ess)"></span> 🟢 100% Essential <small>(this one's non-negotiable)</small></div>
<div class="leg-row"><span class="dot" style="background:var(--c-prob);color:var(--c-prob)"></span> 🟡 Probably Essential <small>(odds are very high)</small></div>
<div class="leg-row"><span class="dot" style="background:var(--c-ctx);color:var(--c-ctx)"></span> 🔵 Good Context <small>(makes it hit harder)</small></div>
<div class="leg-row"><span class="dot" style="background:var(--c-bonus);color:var(--c-bonus)"></span> ⚪ Bonus <small>(for the culture & the vibes)</small></div>
</div>
<div class="legend">
<h3>Why you're watching it</h3>
<div class="lh-sub">the badge tells you which board it's feeding</div>
<div class="leg-row" id="lg-character"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span> <small>builds someone on the roster</small></div>
<div class="leg-row" id="lg-newavengers"><span class="badge b-newavengers"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"><path d="M12 3L4 21M12 3l8 18M7 13h10M12 3v7"/></svg> New Avengers</span> <small>the team's whole backbone</small></div>
<div class="leg-row" id="lg-multiverse"><span class="badge b-multiverse"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg> Multiverse</span> <small>TVA · variants · incursions</small></div>
<div class="leg-row" id="lg-doom"><span class="badge b-doom"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linejoin="round"><path d="M12 2l8 3v6c0 5-3.4 8.6-8 11-4.6-2.4-8-6-8-11V5z"/><path d="M9 10l3 3 3-3" stroke-width="1.6"/></svg> Doom</span> <small>Victor's corner of it all</small></div>
<div class="leg-row" id="lg-xmen"><span class="badge b-xmen"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="12" cy="12" r="9"/><path d="M8 8l8 8M16 8l-8 8" stroke-linecap="round"/></svg> X-Men</span> <small>the Fox mutants fold in</small></div>
<div class="leg-row" id="lg-cosmic"><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span> <small>the story goes to space</small></div>
</div>
</div>
<div class="companion">
<svg class="co-ico" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.6"><path d="M12 3l2.5 5.5L20 9l-4 4 1 6-5-3-5 3 1-6-4-4 5.5-.5z" stroke-linejoin="round"/></svg>
<div>
<h4>Respect where it's due</h4>
<p>This is an independent, fan-made list. The blueprint that first inspired it, <a href="https://roadtodoomsday.com" target="_blank" rel="noopener">roadtodoomsday.com</a>, is a genuinely incredible project (a 9.5/10, easy), and this isn't affiliated with or endorsed by them. Every pick, rating, and word here is my <i>own</i> take on public info. If you want a second opinion or a deeper written guide, go there and show the creator some love. Theirs is worth your time too.</p>
</div>
</div>
</header>
<div class="versus">
<h3>Release order vs. Timeline order</h3>
<div class="v-sub">the big debate, called the way I see it</div>
<div class="v-grid">
<div class="v-col">
<h4>▶ Release order <span class="rec">my pick</span></h4>
<p>Watch it the way it came out. Marvel wrote every film assuming you'd already seen what dropped before it, so the reveals, the post-credits scenes, and the slow build of the villains all land the way they were meant to. Best for a first run.</p>
</div>
<div class="v-col">
<h4>🕰 Timeline order</h4>
<p>Watch it in the order the story actually happens in-universe, from the 1940s forward. Great for a rewatch, or if you already know the twists and want to see how the whole saga clicks together. Just know the modern stretch is genuinely debated.</p>
</div>
</div>
<p class="v-rec">My take: if it's your <b>first time</b>, ride with release order. If you've <b>seen most of it already</b>, timeline order is a fun new lens. Flip between the two anytime with the switch below.</p>
</div>
<div class="controls">
<div class="controls-inner">
<div class="order-toggle" id="orderToggle">
<button type="button" data-order="release" class="active">▶ Release order</button>
<button type="button" data-order="timeline">🕰 Timeline order</button>
</div>
<div class="order-note" id="orderNote">Release order. How Marvel meant it to hit, best for first-timers.</div>
<input class="search" id="search" placeholder="Search a title…" />
<div class="chips" id="chips">
<span class="chip active" data-f="all">Everything</span>
<span class="chip" data-f="essential">🟢 Non-negotiables</span>
<span class="chip" data-f="movie">🎬 Films only</span>
<span class="chip" data-f="series">📺 Series only</span>
<span class="chip" data-f="stop">⏸ Stop points</span>
<span class="chip" data-f="hide">Hide watched</span>
<span class="chip ghost" data-f="reset-view">Clear</span>
</div>
</div>
</div>
<div class="wrap">
<!--
THE LIST. All 73 title cards live below, grouped into 5 "Act" sections
(that's release order). Anatomy of ONE card, via its data-* attributes:
data-n ......... release-order number, 1 to 73
data-chrono .... its spot in in-universe / timeline order
data-era ....... which timeline era it belongs to (E1-E9)
data-conf ...... confidence rating: ess / prob / ctx / bonus
data-type ...... "movie" or "series"
data-stop ...... "1" if it carries a Stop Point note
data-title ..... lowercase title, used by the search box
The JavaScript reads these attributes to filter, sort, and score the list.
(A "data-" attribute is just a custom label you can attach to any HTML
element to stash info for your scripts.)
-->
<div id="emptyMsg" class="empty" style="display:none">Nothing matches. Clear a filter. ✦</div>
<div id="list">
<section class="act" data-act="I">
<div class="act-head">
<div class="act-sigil"><svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round"><circle cx="24" cy="24" r="9"/><circle cx="24" cy="24" r="3.2" fill="currentColor" stroke="none"/><path d="M24 6v6M24 36v6M6 24h6M36 24h6"/></svg></div>
<div class="act-titles"><div class="act-num">Act I</div><h2 class="act-title">The Come-Up</h2></div>
<span class="act-saga">The Infinity Saga</span>
<div class="act-desc">Where the whole empire gets built. Release order, one flex: Black Widow slides in after Civil War, where she belongs.</div>
</div>
<div class="item" data-n="1" data-chrono="3" data-era="E2" data-conf="ess" data-type="movie" data-stop="0" data-title="iron man">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">1</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Iron Man</span>
<span class="it-year">2008</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Where it all starts. The swagger, the suit, the man who built a universe.</div>
</div>
</div><div class="item" data-n="2" data-chrono="5" data-era="E2" data-conf="prob" data-type="movie" data-stop="0" data-title="the incredible hulk">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">2</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-prob);color:var(--c-prob)" title="Probably Essential"></span>
<span class="it-title">The Incredible Hulk</span>
<span class="it-year">2008</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Ross, the Leader and Hulk all come back in Brave New World, so it earned its spot. Short on time? A five-minute recap will hold you.</div>
<div class="changed">✎ My call: 'probably,' not a hard yes. A recap covers you.</div>
</div>
</div><div class="item" data-n="3" data-chrono="4" data-era="E2" data-conf="ctx" data-type="movie" data-stop="0" data-title="iron man 2">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">3</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ctx);color:var(--c-ctx)" title="Good Context"></span>
<span class="it-title">Iron Man 2</span>
<span class="it-year">2010</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Meet Natasha and Rhodey; SHIELD starts pulling strings.</div>
</div>
</div><div class="item" data-n="4" data-chrono="6" data-era="E2" data-conf="ess" data-type="movie" data-stop="0" data-title="thor">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">4</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Thor</span>
<span class="it-year">2011</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span></div>
<div class="it-note">Asgard, the Nine Realms, and a god getting humbled real quick.</div>
</div>
</div><div class="item" data-n="5" data-chrono="1" data-era="E1" data-conf="ess" data-type="movie" data-stop="0" data-title="captain america: the first avenger">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">5</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Captain America: The First Avenger</span>
<span class="it-year">2011</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Steve, Bucky, the Tesseract. The roots of everything, baby.</div>
</div>
</div><div class="item" data-n="6" data-chrono="7" data-era="E2" data-conf="ess" data-type="movie" data-stop="0" data-title="the avengers">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">6</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">The Avengers</span>
<span class="it-year">2012</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">The team pulls up. Sit through BOTH credit scenes. No cutting out early.</div>
</div>
</div><div class="item" data-n="7" data-chrono="8" data-era="E3" data-conf="ctx" data-type="movie" data-stop="0" data-title="iron man 3">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">7</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ctx);color:var(--c-ctx)" title="Good Context"></span>
<span class="it-title">Iron Man 3</span>
<span class="it-year">2013</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Tony post-New York. The anxiety thread that pays off way later.</div>
</div>
</div><div class="item" data-n="8" data-chrono="9" data-era="E3" data-conf="ctx" data-type="movie" data-stop="0" data-title="thor: the dark world">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">8</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ctx);color:var(--c-ctx)" title="Good Context"></span>
<span class="it-title">Thor: The Dark World</span>
<span class="it-year">2013</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span></div>
<div class="it-note">The saga's weakest link, but it drops off an Infinity Stone, so.</div>
</div>
</div><div class="item" data-n="9" data-chrono="11" data-era="E3" data-conf="ess" data-type="movie" data-stop="0" data-title="captain america: the winter soldier">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">9</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Captain America: The Winter Soldier</span>
<span class="it-year">2014</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">SHIELD falls. A genre-best that flips the whole board.</div>
</div>
</div><div class="item" data-n="10" data-chrono="12" data-era="E3" data-conf="ess" data-type="movie" data-stop="0" data-title="guardians of the galaxy">
<div class="watermark"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">10</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Guardians of the Galaxy</span>
<span class="it-year">2014</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span></div>
<div class="it-note">The cosmic side pulls up loud, colorful, and iconic.</div>
</div>
</div><div class="item" data-n="11" data-chrono="13" data-era="E3" data-conf="prob" data-type="movie" data-stop="0" data-title="guardians of the galaxy vol. 2">
<div class="watermark"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">11</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-prob);color:var(--c-prob)" title="Probably Essential"></span>
<span class="it-title">Guardians of the Galaxy Vol. 2</span>
<span class="it-year">2017</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span></div>
<div class="it-note">Found family, Ego, and the softest hearts in the galaxy.</div>
</div>
</div><div class="item" data-n="12" data-chrono="14" data-era="E3" data-conf="ess" data-type="movie" data-stop="0" data-title="avengers: age of ultron">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">12</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Avengers: Age of Ultron</span>
<span class="it-year">2015</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-multiverse"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg> Multiverse</span></div>
<div class="it-note">Vision and Wanda arrive. Non-negotiable setup for VisionQuest.</div>
</div>
</div><div class="item" data-n="13" data-chrono="15" data-era="E3" data-conf="ess" data-type="movie" data-stop="0" data-title="ant-man">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">13</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Ant-Man</span>
<span class="it-year">2015</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Scott Lang and the first knock on the Quantum Realm's door.</div>
</div>
</div><div class="item" data-n="14" data-chrono="23" data-era="E5" data-conf="ess" data-type="movie" data-stop="0" data-title="captain america: civil war">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">14</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Captain America: Civil War</span>
<span class="it-year">2016</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">The family splits. Black Panther and Spidey make their entrance.</div>
</div>
</div><div class="item" data-n="15" data-chrono="24" data-era="E5" data-conf="ess" data-type="movie" data-stop="1" data-title="black widow">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">15</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Black Widow</span>
<span class="it-year">2021</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-newavengers"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"><path d="M12 3L4 21M12 3l8 18M7 13h10M12 3v7"/></svg> New Avengers</span></div>
<div class="it-note">Set right after Civil War. Introduces Yelena and Red Guardian, your future New Avengers.</div>
<div class="stop"><span class="stop-ico">⏸</span><div><b>Stop Point</b>Hold up, pause BEFORE the post-credits scene. It takes place after Far From Home and will spoil where Yelena's headed.</div></div>
</div>
</div><div class="item" data-n="16" data-chrono="26" data-era="E5" data-conf="ess" data-type="movie" data-stop="0" data-title="doctor strange">
<div class="watermark"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">16</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Doctor Strange</span>
<span class="it-year">2016</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-multiverse"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg> Multiverse</span></div>
<div class="it-note">Magic, the Time Stone, and the multiverse's first real crack.</div>
</div>
</div><div class="item" data-n="17" data-chrono="25" data-era="E5" data-conf="ess" data-type="movie" data-stop="0" data-title="spider-man: homecoming">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">17</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Spider-Man: Homecoming</span>
<span class="it-year">2017</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Peter finding his footing before life gets complicated.</div>
</div>
</div><div class="item" data-n="18" data-chrono="27" data-era="E5" data-conf="ess" data-type="movie" data-stop="0" data-title="thor: ragnarok">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">18</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Thor: Ragnarok</span>
<span class="it-year">2017</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span></div>
<div class="it-note">Thor, reinvented. Color, comedy, and the fall of Asgard.</div>
</div>
</div><div class="item" data-n="19" data-chrono="28" data-era="E5" data-conf="ess" data-type="movie" data-stop="0" data-title="black panther">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">19</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Black Panther</span>
<span class="it-year">2018</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Shuri and M'Baku are on the Doomsday roster. Wakanda stays mattering.</div>
</div>
</div><div class="item" data-n="20" data-chrono="30" data-era="E5" data-conf="ess" data-type="movie" data-stop="0" data-title="avengers: infinity war">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">20</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Avengers: Infinity War</span>
<span class="it-year">2018</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span></div>
<div class="it-note">The snap. Everything the saga built, cashed in at once.</div>
</div>
</div><div class="item" data-n="21" data-chrono="29" data-era="E5" data-conf="prob" data-type="movie" data-stop="0" data-title="ant-man and the wasp">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">21</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-prob);color:var(--c-prob)" title="Probably Essential"></span>
<span class="it-title">Ant-Man and the Wasp</span>
<span class="it-year">2018</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Light on top, but that mid-credits scene is the entire point.</div>
</div>
</div><div class="item" data-n="22" data-chrono="2" data-era="E1" data-conf="prob" data-type="movie" data-stop="0" data-title="captain marvel">
<div class="watermark"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">22</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-prob);color:var(--c-prob)" title="Probably Essential"></span>
<span class="it-title">Captain Marvel</span>
<span class="it-year">2019</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-cosmic"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"><path d="M12 2v5M12 17v5M2 12h5M17 12h5M5 5l3 3M16 16l3 3M19 5l-3 3M8 16l-3 3"/><circle cx="12" cy="12" r="2.4" fill="currentColor" stroke="none"/></svg> Cosmic</span></div>
<div class="it-note">Carol, the Kree/Skrull mess, and the pager that started it all.</div>
</div>
</div><div class="item" data-n="23" data-chrono="31" data-era="E6" data-conf="ess" data-type="movie" data-stop="0" data-title="avengers: endgame">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">23</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Avengers: Endgame</span>
<span class="it-year">2019</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-multiverse"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg> Multiverse</span></div>
<div class="it-note">Time travel cracks the timeline wide. The multiverse's on-ramp.</div>
</div>
</div><div class="item" data-n="24" data-chrono="32" data-era="E6" data-conf="ess" data-type="movie" data-stop="0" data-title="spider-man: far from home">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">24</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Spider-Man: Far From Home</span>
<span class="it-year">2019</span>
<span class="it-type">Film</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-multiverse"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg> Multiverse</span></div>
<div class="it-note">Life after Endgame. Both credit scenes are absolutely huge.</div>
</div>
</div><div class="item" data-n="25" data-chrono="10" data-era="E3" data-conf="bonus" data-type="series" data-stop="0" data-title="agents of s.h.i.e.l.d. · season 1">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">25</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-bonus);color:var(--c-bonus)" title="Bonus"></span>
<span class="it-title">Agents of S.H.I.E.L.D. · Season 1</span>
<span class="it-year">2013</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Side quest for the real ones. Weaves through Phase 1–2. Only if you love a deep cut.</div>
</div>
</div>
</section>
<section class="act" data-act="II">
<div class="act-head">
<div class="act-sigil"><svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linejoin="round"><path d="M10 8l8 6-8 8M38 8l-8 6 8 8"/><path d="M24 10v28M17 40h14" stroke-linecap="round"/></svg></div>
<div class="act-titles"><div class="act-num">Act II</div><h2 class="act-title">Hell's Kitchen, Baby</h2></div>
<span class="act-saga">The Street-Level Saga</span>
<div class="act-desc">Ground level, gritty, and glorious. The groundwork before Daredevil: Born Again pulls up.</div>
</div>
<div class="item" data-n="26" data-chrono="16" data-era="E4" data-conf="prob" data-type="series" data-stop="0" data-title="daredevil · season 1">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">26</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-prob);color:var(--c-prob)" title="Probably Essential"></span>
<span class="it-title">Daredevil · Season 1</span>
<span class="it-year">2015</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Matt Murdock's origin. The best of the Netflix era opens strong.</div>
</div>
</div><div class="item" data-n="27" data-chrono="17" data-era="E4" data-conf="ctx" data-type="series" data-stop="0" data-title="jessica jones · season 1">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">27</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ctx);color:var(--c-ctx)" title="Good Context"></span>
<span class="it-title">Jessica Jones · Season 1</span>
<span class="it-year">2015</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Jessica shows back up in Born Again S2, but you will NOT need 13 hours to follow her later. Elite TV, just not homework.</div>
<div class="changed">✎ My change: dropped from the original's 'required' to Good Context. 13 hours is a stretch.</div>
</div>
</div><div class="item" data-n="28" data-chrono="18" data-era="E4" data-conf="prob" data-type="series" data-stop="0" data-title="daredevil · season 2">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">28</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-prob);color:var(--c-prob)" title="Probably Essential"></span>
<span class="it-title">Daredevil · Season 2</span>
<span class="it-year">2016</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">The Punisher and Elektra enter the chat.</div>
</div>
</div><div class="item" data-n="29" data-chrono="19" data-era="E4" data-conf="ctx" data-type="series" data-stop="0" data-title="the punisher · season 1">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">29</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ctx);color:var(--c-ctx)" title="Good Context"></span>
<span class="it-title">The Punisher · Season 1</span>
<span class="it-year">2017</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Frank Castle, standalone and heavy as it gets.</div>
</div>
</div><div class="item" data-n="30" data-chrono="20" data-era="E4" data-conf="prob" data-type="series" data-stop="0" data-title="daredevil · season 3">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">30</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-prob);color:var(--c-prob)" title="Probably Essential"></span>
<span class="it-title">Daredevil · Season 3</span>
<span class="it-year">2018</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">The peak of the whole Netflix run. Sets Matt up for Born Again.</div>
</div>
</div><div class="item" data-n="31" data-chrono="21" data-era="E4" data-conf="ctx" data-type="series" data-stop="0" data-title="the punisher · season 2">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">31</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ctx);color:var(--c-ctx)" title="Good Context"></span>
<span class="it-title">The Punisher · Season 2</span>
<span class="it-year">2019</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Closes Frank's Netflix arc before One Last Kill brings him back.</div>
</div>
</div><div class="item" data-n="32" data-chrono="22" data-era="E4" data-conf="bonus" data-type="series" data-stop="0" data-title="luke cage · iron fist · the defenders · jessica jones s2–3">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">32</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-bonus);color:var(--c-bonus)" title="Bonus"></span>
<span class="it-title">Luke Cage · Iron Fist · The Defenders · Jessica Jones S2–3</span>
<span class="it-year">2016</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span></div>
<div class="it-note">Side quests, all optional. Rich corners of the same city if you want the full plate.</div>
</div>
</div>
</section>
<section class="act" data-act="III">
<div class="act-head">
<div class="act-sigil"><svg viewBox="0 0 48 48" fill="none" stroke="currentColor" stroke-width="2.2"><circle cx="18" cy="24" r="10"/><circle cx="30" cy="24" r="10"/></svg></div>
<div class="act-titles"><div class="act-num">Act III</div><h2 class="act-title">Watch Order of Madness</h2></div>
<span class="act-saga">The Multiverse Saga</span>
<div class="act-desc">Phases 4–5. The timeline splinters, the mess spreads, and the pieces start finding each other.</div>
</div>
<div class="item" data-n="33" data-chrono="33" data-era="E7" data-conf="ess" data-type="series" data-stop="0" data-title="wandavision">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">33</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">WandaVision</span>
<span class="it-year">2021</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-multiverse"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg> Multiverse</span></div>
<div class="it-note">Required for Doctor Strange 2 and VisionQuest. Grief, sitcoms, and power off the leash.</div>
</div>
</div><div class="item" data-n="34" data-chrono="34" data-era="E7" data-conf="ess" data-type="series" data-stop="0" data-title="the falcon and the winter soldier">
<div class="watermark"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">34</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">The Falcon and the Winter Soldier</span>
<span class="it-year">2021</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-character"><svg viewBox="0 0 24 24" fill="currentColor"><path d="M12 2l2.6 5.7 6.2.7-4.6 4.2 1.2 6.1L12 15.8 6.6 18.7l1.2-6.1L3.2 8.4l6.2-.7z"/></svg> Character</span><span class="badge b-newavengers"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linejoin="round" stroke-linecap="round"><path d="M12 3L4 21M12 3l8 18M7 13h10M12 3v7"/></svg> New Avengers</span></div>
<div class="it-note">Sam takes the shield; John Walker crashes in.</div>
</div>
</div><div class="item" data-n="35" data-chrono="61" data-era="E8" data-conf="ess" data-type="series" data-stop="1" data-title="loki · season 1">
<div class="watermark"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg></div>
<div class="it-check" role="checkbox" aria-checked="false" tabindex="0"><svg viewBox="0 0 24 24"><polyline points="4 12 10 18 20 6"></polyline></svg></div>
<div class="it-idx">35</div>
<div class="it-body">
<div class="it-head">
<span class="it-conf" style="background:var(--c-ess);color:var(--c-ess)" title="100% Essential"></span>
<span class="it-title">Loki · Season 1</span>
<span class="it-year">2021</span>
<span class="it-type">Series</span>
</div>
<div class="it-badges"><span class="badge b-multiverse"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="8.5" cy="12" r="5"/><circle cx="15.5" cy="12" r="5"/></svg> Multiverse</span></div>
<div class="it-note">The TVA, the timelines, He Who Remains. The multiverse becomes the whole game.</div>
<div class="stop"><span class="stop-ico">⏸</span><div><b>Stop Point</b>Do NOT roll into Season 2 yet. It lands fifteen steps later, after Quantumania. Trust the order.</div></div>