-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1087 lines (954 loc) · 31.4 KB
/
index.html
File metadata and controls
1087 lines (954 loc) · 31.4 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, viewport-fit=cover" />
<meta name="theme-color" content="#050507" />
<meta name="description" content="The Mutiny Report with Fletcher Christian — gonzo news, sharp dispatches, and signal from the cracks in the empire." />
<title>The Mutiny Report with Fletcher Christian</title>
<link rel="icon" href="https://bafybeiepo6imnnollb3p54idu2yse3qpalyq5x5de7nw4ipnbh3a5ytsc4.ipfs.dweb.link?filename=The%20mutiny%20report.png" type="image/png" />
<link rel="apple-touch-icon" href="https://bafybeiepo6imnnollb3p54idu2yse3qpalyq5x5de7nw4ipnbh3a5ytsc4.ipfs.dweb.link?filename=The%20mutiny%20report.png" />
<meta property="og:type" content="website" />
<meta property="og:title" content="The Mutiny Report with Fletcher Christian" />
<meta property="og:description" content="Not polite news. Not safe for power. Gonzo reporting, hard commentary, and signal from the cracks in the empire." />
<meta property="og:url" content="https://mutinyreport.com" />
<meta property="og:image" content="https://bafybeibv5j267yfsnctecjp5shlrzafpyifbtfd2gb2kt5agtlv3fcigke.ipfs.dweb.link?filename=mutinousfletch.jpeg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="The Mutiny Report banner featuring Fletcher Christian" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="The Mutiny Report with Fletcher Christian" />
<meta name="twitter:description" content="No gods. No masters. Just truth, teeth, and a microphone." />
<meta name="twitter:image" content="https://bafybeibv5j267yfsnctecjp5shlrzafpyifbtfd2gb2kt5agtlv3fcigke.ipfs.dweb.link?filename=mutinousfletch.jpeg" />
<link rel="alternate" type="application/rss+xml" title="The Mutiny Report RSS Feed" href="https://anchor.fm/s/e807c180/podcast/rss" />
<style>
:root{
--bg:#050507;
--bg-soft:#0c0c12;
--panel:rgba(255,255,255,.06);
--panel-strong:rgba(255,255,255,.09);
--line:rgba(255,255,255,.12);
--line-strong:rgba(255,255,255,.18);
--text:#f5f7fb;
--muted:#aab0bd;
--accent:#ff2d55;
--accent-2:#8b5cf6;
--shadow:0 24px 80px rgba(0,0,0,.42);
--radius:28px;
--radius-sm:20px;
--max:1280px;
--nav-h:76px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html, body{ margin:0; padding:0; min-height:100%; }
body{
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color:var(--text);
background:
radial-gradient(1000px 600px at 10% -10%, rgba(139,92,246,.18), transparent 55%),
radial-gradient(900px 560px at 100% 0%, rgba(255,45,85,.16), transparent 52%),
radial-gradient(800px 500px at 50% 120%, rgba(255,255,255,.05), transparent 45%),
linear-gradient(180deg, #07070a 0%, #050507 30%, #080811 100%);
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
text-rendering:optimizeLegibility;
}
body::before,
body::after{
content:"";
position:fixed;
inset:auto;
pointer-events:none;
z-index:-2;
filter:blur(50px);
opacity:.75;
}
body::before{
width:28rem;
height:28rem;
left:-10rem;
top:8rem;
background:rgba(255,45,85,.18);
animation:floatBlob 18s ease-in-out infinite;
}
body::after{
width:26rem;
height:26rem;
right:-8rem;
top:18rem;
background:rgba(139,92,246,.16);
animation:floatBlob 22s ease-in-out infinite reverse;
}
@keyframes floatBlob{
0%,100%{ transform:translate3d(0,0,0) scale(1); }
50%{ transform:translate3d(0,-22px,0) scale(1.08); }
}
a{ color:inherit; text-decoration:none; }
img, video, iframe{ display:block; max-width:100%; }
button, a{ -webkit-tap-highlight-color: transparent; }
.noise,
.grid-noise{
position:fixed;
inset:0;
pointer-events:none;
z-index:-1;
opacity:.05;
mix-blend-mode:soft-light;
background-image:
radial-gradient(circle at 20% 20%, rgba(255,255,255,.5), transparent 32%),
radial-gradient(circle at 80% 70%, rgba(255,45,85,.4), transparent 28%),
repeating-linear-gradient(0deg, rgba(255,255,255,.2), rgba(255,255,255,.2) 1px, transparent 1px, transparent 3px);
}
.grid-noise{
opacity:.04;
background-image:linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px);
background-size:48px 48px;
mask-image:linear-gradient(180deg, rgba(0,0,0,.35), transparent 25%, transparent 75%, rgba(0,0,0,.3));
}
.shell{
width:min(var(--max), calc(100% - 24px));
margin:0 auto;
}
.nav-wrap{
position:sticky;
top:0;
z-index:50;
padding-top:max(8px, env(safe-area-inset-top));
backdrop-filter:saturate(1.2) blur(18px);
-webkit-backdrop-filter:saturate(1.2) blur(18px);
background:linear-gradient(180deg, rgba(5,5,7,.88), rgba(5,5,7,.56), rgba(5,5,7,0));
}
.nav{
min-height:var(--nav-h);
display:flex;
align-items:center;
justify-content:space-between;
gap:18px;
margin:0 auto;
border:1px solid rgba(255,255,255,.08);
background:rgba(13,13,18,.72);
border-radius:999px;
padding:12px 14px 12px 18px;
box-shadow:0 16px 46px rgba(0,0,0,.28);
}
.brand{
display:flex;
align-items:center;
gap:12px;
min-width:0;
}
.brand-mark{
width:44px;
height:44px;
border-radius:14px;
overflow:hidden;
flex:0 0 auto;
border:1px solid rgba(255,255,255,.16);
background:#111;
box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 30px rgba(0,0,0,.28);
}
.brand-mark img{ width:100%; height:100%; object-fit:cover; }
.brand-copy{ min-width:0; }
.brand-kicker{
margin:0;
font-size:11px;
letter-spacing:.18em;
text-transform:uppercase;
color:var(--muted);
font-weight:800;
}
.brand-title{
margin:2px 0 0;
font-size:15px;
font-weight:800;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}
.nav-links{
display:flex;
align-items:center;
gap:10px;
flex-wrap:wrap;
justify-content:flex-end;
}
.pill,
.cta{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:44px;
padding:0 16px;
border-radius:999px;
font-size:12px;
letter-spacing:.14em;
text-transform:uppercase;
font-weight:800;
transition:transform .18s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
border:1px solid rgba(255,255,255,.10);
background:rgba(255,255,255,.04);
box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.pill:hover,
.cta:hover{ transform:translateY(-1px); }
.cta.primary{
background:linear-gradient(180deg, rgba(255,45,85,.95), rgba(196,23,71,.96));
border-color:rgba(255,45,85,.75);
box-shadow:0 14px 28px rgba(255,45,85,.18);
}
.cta.secondary{
background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
border-color:rgba(255,255,255,.14);
}
main{ padding-bottom:80px; }
.hero{
position:relative;
padding:26px 0 22px;
}
.hero-panel{
position:relative;
overflow:hidden;
border-radius:40px;
border:1px solid rgba(255,255,255,.10);
min-height:min(92svh, 860px);
background:
linear-gradient(180deg, rgba(2,2,4,.18), rgba(2,2,4,.42)),
radial-gradient(1000px 400px at 20% 0%, rgba(255,45,85,.22), transparent 60%),
url('https://bafybeibv5j267yfsnctecjp5shlrzafpyifbtfd2gb2kt5agtlv3fcigke.ipfs.dweb.link?filename=mutinousfletch.jpeg') center 18% / cover no-repeat;
box-shadow:var(--shadow);
isolation:isolate;
}
.hero-panel::before{
content:"";
position:absolute;
inset:0;
background:
linear-gradient(180deg, rgba(6,6,10,.15) 0%, rgba(6,6,10,.48) 46%, rgba(6,6,10,.88) 100%),
linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.18) 48%, rgba(0,0,0,.42) 100%);
z-index:-1;
}
.hero-panel::after{
content:"";
position:absolute;
inset:auto -10% -30% auto;
width:min(48vw, 520px);
aspect-ratio:1;
border-radius:50%;
background:radial-gradient(circle, rgba(255,45,85,.26), transparent 62%);
filter:blur(20px);
pointer-events:none;
z-index:-1;
}
.hero-inner{
min-height:inherit;
padding:clamp(20px, 3vw, 34px);
display:grid;
grid-template-columns:minmax(0, 1.08fr) minmax(300px, .92fr);
align-items:end;
gap:18px;
}
.glass{
background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
border:1px solid rgba(255,255,255,.12);
backdrop-filter:blur(16px) saturate(1.15);
-webkit-backdrop-filter:blur(16px) saturate(1.15);
box-shadow:0 18px 42px rgba(0,0,0,.24);
}
.hero-copy{
padding:28px;
border-radius:30px;
max-width:760px;
align-self:end;
}
.eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
margin:0 0 16px;
color:#f4d7df;
font-size:12px;
font-weight:800;
letter-spacing:.18em;
text-transform:uppercase;
}
.eyebrow::before{
content:"";
width:10px;
height:10px;
border-radius:999px;
background:var(--accent);
box-shadow:0 0 0 8px rgba(255,45,85,.14);
flex:0 0 auto;
}
h1{
margin:0;
font-size:clamp(40px, 8vw, 84px);
line-height:.96;
letter-spacing:-.06em;
max-width:11ch;
}
.hero-sub{
margin:18px 0 0;
max-width:56ch;
color:rgba(255,255,255,.82);
font-size:clamp(16px, 2vw, 20px);
line-height:1.55;
}
.hero-actions{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:26px;
}
.stat-row{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:12px;
margin-top:26px;
}
.stat{
padding:16px 14px;
border-radius:22px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.09);
min-height:104px;
}
.stat strong{
display:block;
font-size:28px;
line-height:1;
letter-spacing:-.05em;
margin-bottom:8px;
}
.stat span{
color:rgba(255,255,255,.68);
font-size:13px;
line-height:1.45;
}
.hero-side{
display:flex;
flex-direction:column;
gap:14px;
align-self:stretch;
justify-content:flex-end;
}
.logo-card,
.signal-card,
.quote-card,
.panel,
.feature-card,
.media-card,
.platform-card,
.footer-card{
border-radius:30px;
}
.logo-card{
padding:16px;
overflow:hidden;
position:relative;
}
.logo-card::after{
content:"";
position:absolute;
inset:auto -20% -30% auto;
width:240px;
height:240px;
border-radius:50%;
background:radial-gradient(circle, rgba(255,45,85,.16), transparent 64%);
pointer-events:none;
}
.logo-video{
width:100%;
border-radius:22px;
border:1px solid rgba(255,255,255,.12);
background:#09090d;
aspect-ratio:16 / 9;
object-fit:cover;
box-shadow:0 18px 40px rgba(0,0,0,.25);
}
.mini-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:14px;
}
.signal-card,
.quote-card{
padding:18px;
min-height:156px;
}
.card-kicker{
margin:0 0 10px;
font-size:11px;
letter-spacing:.18em;
text-transform:uppercase;
color:var(--muted);
font-weight:800;
}
.signal-list{
list-style:none;
margin:0;
padding:0;
display:grid;
gap:10px;
}
.signal-list li{
display:flex;
align-items:flex-start;
gap:10px;
color:rgba(255,255,255,.84);
font-size:14px;
line-height:1.45;
}
.signal-list li::before{
content:"";
width:8px;
height:8px;
border-radius:999px;
background:var(--accent);
box-shadow:0 0 0 5px rgba(255,45,85,.12);
flex:0 0 auto;
margin-top:7px;
}
.quote-card p{
margin:0;
font-size:clamp(16px, 2vw, 20px);
line-height:1.45;
color:rgba(255,255,255,.92);
letter-spacing:-.02em;
}
.section{
padding-top:24px;
}
.section-head{
display:flex;
align-items:end;
justify-content:space-between;
gap:18px;
margin-bottom:18px;
}
.section-head h2{
margin:0;
font-size:clamp(30px, 4vw, 54px);
line-height:1;
letter-spacing:-.05em;
}
.section-head p{
margin:0;
max-width:54ch;
color:var(--muted);
font-size:15px;
}
.content-grid{
display:grid;
grid-template-columns:1.05fr .95fr;
gap:18px;
align-items:start;
}
.panel{
padding:22px;
}
.about-copy{
white-space:pre-line;
font-size:16px;
line-height:1.7;
color:rgba(255,255,255,.86);
}
.tag-cloud{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-top:18px;
}
.tag{
padding:10px 14px;
border-radius:999px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.10);
font-size:12px;
letter-spacing:.12em;
text-transform:uppercase;
font-weight:800;
color:rgba(255,255,255,.9);
}
.host-card{
overflow:hidden;
padding:0;
}
.host-link{ display:block; }
.host-visual{
position:relative;
min-height:580px;
background:
linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.25)),
url('https://bafybeibv5j267yfsnctecjp5shlrzafpyifbtfd2gb2kt5agtlv3fcigke.ipfs.dweb.link?filename=mutinousfletch.jpeg') center 20% / cover no-repeat;
}
.host-visual::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,.88) 100%);
}
.host-copy{
position:absolute;
left:0;
right:0;
bottom:0;
padding:24px;
z-index:1;
}
.host-copy h3{
margin:0;
font-size:clamp(26px, 4vw, 40px);
letter-spacing:-.05em;
}
.host-copy p{
margin:10px 0 0;
color:rgba(255,255,255,.76);
font-size:15px;
}
.cards-grid{
display:grid;
grid-template-columns:1.05fr .95fr;
gap:18px;
margin-top:18px;
}
.media-card,
.feature-card,
.platform-card{
padding:22px;
}
.video-shell{
position:relative;
width:100%;
padding-top:56.25%;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(255,255,255,.10);
background:rgba(255,255,255,.04);
box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.video-shell iframe{
position:absolute;
inset:0;
width:100%;
height:100%;
border:0;
}
.platform-list{
display:grid;
gap:12px;
margin-top:14px;
}
.platform-link{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
min-height:68px;
padding:14px 16px;
border-radius:20px;
border:1px solid rgba(255,255,255,.10);
background:rgba(255,255,255,.04);
transition:transform .18s ease, border-color .2s ease, background .2s ease;
}
.platform-link:hover{
transform:translateY(-2px);
border-color:rgba(255,45,85,.34);
background:rgba(255,255,255,.07);
}
.platform-meta{ min-width:0; }
.platform-label{
display:block;
font-size:11px;
letter-spacing:.18em;
text-transform:uppercase;
color:var(--muted);
font-weight:800;
margin-bottom:6px;
}
.platform-name{
font-size:16px;
font-weight:800;
letter-spacing:-.02em;
}
.platform-arrow{
flex:0 0 auto;
width:36px;
height:36px;
border-radius:999px;
border:1px solid rgba(255,255,255,.10);
display:grid;
place-items:center;
color:rgba(255,255,255,.86);
font-size:15px;
background:rgba(255,255,255,.04);
}
.feature-copy,
.media-card p,
.platform-card p{
margin:0;
color:rgba(255,255,255,.74);
font-size:15px;
line-height:1.6;
}
.feature-title{
margin:0 0 10px;
font-size:clamp(28px, 3vw, 40px);
line-height:1;
letter-spacing:-.05em;
}
.feature-title span{
color:#ff6b86;
text-shadow:0 0 22px rgba(255,45,85,.18);
}
.chip-row{
display:flex;
flex-wrap:wrap;
gap:10px;
margin:16px 0 0;
}
.chip{
padding:10px 14px;
border-radius:999px;
border:1px solid rgba(255,255,255,.10);
background:rgba(255,255,255,.04);
font-size:13px;
color:rgba(255,255,255,.88);
}
.footer{
padding:22px 0 max(24px, env(safe-area-inset-bottom));
}
.footer-card{
padding:18px 20px;
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
flex-wrap:wrap;
background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
border:1px solid rgba(255,255,255,.10);
box-shadow:0 18px 40px rgba(0,0,0,.18);
}
.footer-meta{
display:flex;
flex-direction:column;
gap:6px;
color:var(--muted);
font-size:14px;
}
.footer-links{
display:flex;
flex-wrap:wrap;
gap:10px;
}
.reveal{
opacity:0;
transform:translateY(28px);
transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{
opacity:1;
transform:translateY(0);
}
@media (max-width: 1080px){
.hero-inner,
.content-grid,
.cards-grid{
grid-template-columns:1fr;
}
.host-visual{ min-height:520px; }
}
@media (max-width: 760px){
:root{ --nav-h:68px; }
.shell{ width:min(var(--max), calc(100% - 16px)); }
.nav{
border-radius:28px;
align-items:flex-start;
flex-direction:column;
padding:12px;
}
.nav-links{ width:100%; justify-content:stretch; }
.nav-links a{ flex:1 1 calc(50% - 10px); }
.hero{
padding-top:16px;
}
.hero-panel{
min-height:auto;
border-radius:30px;
background-position:center 22%;
}
.hero-inner{ padding:16px; gap:14px; }
.hero-copy,
.logo-card,
.signal-card,
.quote-card,
.panel,
.media-card,
.feature-card,
.platform-card{ border-radius:24px; }
.hero-copy{ padding:20px; }
.mini-grid,
.stat-row{ grid-template-columns:1fr; }
.stat{ min-height:0; }
.host-visual{ min-height:420px; }
.section{ padding-top:18px; }
.section-head{ align-items:start; flex-direction:column; }
.footer-card{ padding:16px; }
.footer-links a{ flex:1 1 calc(50% - 10px); }
}
@media (prefers-reduced-motion: reduce){
html{ scroll-behavior:auto; }
*, *::before, *::after{ animation:none !important; transition:none !important; }
.reveal{ opacity:1; transform:none; }
}
</style>
</head>
<body>
<div class="noise" aria-hidden="true"></div>
<div class="grid-noise" aria-hidden="true"></div>
<div class="nav-wrap">
<div class="shell">
<nav class="nav" aria-label="Primary">
<a class="brand" href="#top" aria-label="The Mutiny Report home">
<span class="brand-mark">
<img src="https://bafybeiepo6imnnollb3p54idu2yse3qpalyq5x5de7nw4ipnbh3a5ytsc4.ipfs.dweb.link?filename=The%20mutiny%20report.png" alt="The Mutiny Report logo" />
</span>
<span class="brand-copy">
<p class="brand-kicker">The Mutiny Report</p>
<p class="brand-title">Fletcher Christian</p>
</span>
</a>
<div class="nav-links">
<a class="pill" href="https://fletcherchristiankc.rip/about.html" target="_blank" rel="noopener">About</a>
<a class="pill" href="https://www.youtube.com/@TheMutinyReport" target="_blank" rel="noopener">Watch</a>
<a class="pill" href="https://open.spotify.com/show/2iH99v0h1KdIRXoRUxL4Xl?si=inlku6wbTrGnOTVoQfNnNg" target="_blank" rel="noopener">Listen</a>
<a class="pill" href="https://jettai.pro" target="_blank" rel="noopener">JETTAI</a>
<a class="cta secondary" href="mailto:contact@mutinyreport.com">Contact</a>
<a class="cta primary" href="https://www.youtube.com/@TheMutinyReport" target="_blank" rel="noopener">Subscribe</a>
</div>
</nav>
</div>
</div>
<main id="top">
<section class="hero shell reveal">
<div class="hero-panel">
<div class="hero-inner">
<div class="hero-copy glass">
<p class="eyebrow">Independent signal from the cracks in the empire</p>
<h1>The Mutiny Report</h1>
<p class="hero-sub">
Gonzo news, hard-edged commentary, and sharp dispatches on war, propaganda, religion, power, and the rot beneath the performance.
</p>
<div class="hero-actions">
<a class="cta primary" href="https://www.youtube.com/@TheMutinyReport" target="_blank" rel="noopener">Watch on YouTube</a>
<a class="cta secondary" href="https://open.spotify.com/show/2iH99v0h1KdIRXoRUxL4Xl?si=inlku6wbTrGnOTVoQfNnNg" target="_blank" rel="noopener">Listen Everywhere</a>
<a class="cta secondary" href="https://fletcherchristiankc.rip/about.html" target="_blank" rel="noopener">Host Bio</a>
</div>
<div class="stat-row" aria-label="Highlights">
<div class="stat">
<strong>Zero</strong>
<span>corporate varnish, party script, or polite news voice.</span>
</div>
<div class="stat">
<strong>Full</strong>
<span>episodes, short dispatches, and platform-wide listening links.</span>
</div>
<div class="stat">
<strong>Live</strong>
<span>signal on geopolitics, media theater, religion, and power.</span>
</div>
</div>
</div>
<div class="hero-side">
<div class="logo-card glass">
<video
class="logo-video"
src="https://bafybeihwzdv4bo73swpzc6icmm4djgzkawcqn3jgwnlt5qpyithtj7os5a.ipfs.dweb.link?filename=MutineerNew.mp4"
autoplay
muted
loop
playsinline
preload="metadata"
poster="https://bafybeibv5j267yfsnctecjp5shlrzafpyifbtfd2gb2kt5agtlv3fcigke.ipfs.dweb.link?filename=mutinousfletch.jpeg">
</video>
</div>
<div class="mini-grid">
<div class="signal-card glass">
<p class="card-kicker">Coverage</p>
<ul class="signal-list">
<li>Short, sharp dispatches with no filler.</li>
<li>War culture, propaganda, media theater, and power.</li>
<li>Signal first. Performance never.</li>
</ul>
</div>
<div class="quote-card glass">
<p>No gods. No masters. Just truth, teeth, and a microphone.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section shell reveal" id="about">
<div class="section-head">
<div>
<h2>About the show</h2>
</div>
<p>
Gonzo news, hard-edged commentary, podcast episodes, and signal from the cracks in the empire.
</p>
</div>
<div class="content-grid">
<article class="panel glass">
<p class="card-kicker">About the show</p>
<div class="about-copy">The Mutiny Report is not polite news.
It is gonzo commentary, podcast dispatches, and real-world signal from the cracks in the empire.
War, propaganda, religion, media theater, political fraud, manufactured consent. Fletcher connects the dots, drags hypocrisy into daylight, and says the quiet part with a microphone in its face.
If you are tired of sanitized narratives and professional amnesia, welcome to the mutiny.</div>
<div class="tag-cloud" aria-label="Topics">
<span class="tag">Geopolitics</span>
<span class="tag">Media Propaganda</span>
<span class="tag">War Culture</span>
<span class="tag">Religion & Power</span>
<span class="tag">Manufactured Consent</span>
<span class="tag">Hard Commentary</span>
</div>
</article>
<article class="panel glass host-card">
<a class="host-link" href="https://fletcherchristiankc.rip/about.html" target="_blank" rel="noopener" aria-label="Open Fletcher Christian bio">
<div class="host-visual">
<div class="host-copy">
<p class="card-kicker">Host</p>
<h3>Fletcher Christian</h3>
<p>Open the bio page for the longer story.</p>
</div>
</div>
</a>
</article>
</div>
</section>
<section class="section shell reveal" id="watch">
<div class="cards-grid">
<article class="media-card glass">
<p class="card-kicker">Full episodes</p>
<h2 class="feature-title">Watch the show.</h2>
<p>
Full episodes, interviews, and sharp-edged dispatches from The Mutiny Report.
</p>
<div class="video-shell" style="margin-top:16px;">
<iframe
src="https://www.youtube-nocookie.com/embed/grFvDvwXBUU"
title="The Mutiny Report — Full Episodes"
loading="lazy"
referrerpolicy="strict-origin-when-cross-origin"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
</article>
<article class="feature-card glass">
<p class="card-kicker">Featured signal project</p>
<h2 class="feature-title"><span>JETTAI</span></h2>
<p class="feature-copy">
News signals, pattern recognition, and pressure points. The broader intelligence layer behind the noise.
</p>
<div class="chip-row" aria-label="JETTAI topics">
<span class="chip">Signal before the sirens</span>
<span class="chip">Pattern recognition</span>
<span class="chip">News intelligence</span>
<span class="chip">Accountability</span>
</div>
<div class="hero-actions" style="margin-top:18px;">
<a class="cta primary" href="https://jettai.pro" target="_blank" rel="noopener">Open JETTAI</a>
</div>
</article>
</div>
</section>
<section class="section shell reveal" id="listen">
<div class="section-head">
<div>
<h2>Listen anywhere.</h2>
</div>
<p>
Same voice, whichever platform you use. Cleaner cards, bigger tap targets, and more room for the links to breathe.
</p>
</div>
<article class="platform-card glass">