aboutsummaryrefslogtreecommitdiff
path: root/communities/red-right-hand/174bg.net/public/handbook/index.html
blob: bb7eea130bf9a202bc2561ac80d70eb1930504a6 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
<!doctype html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>174th Battle Group Handbook</title>
    <style>
      /* import inter font */
      @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

      /* set default font */
      body {
        font-family: "Inter";
      }

      /* text should be justified by default */
      body {
        text-align: justify;
      }

      /* table styles */
      table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1em;
      }

      th,
      td {
        border: 1px solid #ddd;
        padding: 0.5em;
        text-align: left;
      }

      th {
        background-color: #f4f4f4;
      }
    </style>
  </head>
  <body>
    <article id="introduction">
      <h1>174th Battle Group Handbook</h1>
      <p>
        This handbook is intended to provide a comprehensive overview of the
        174th Battle Group, its structure, operations, and guidelines for
        members. It serves as a reference for both new recruits and seasoned
        members to ensure consistency and efficiency within the group.
      </p>
    </article>

    <article id="using-this-handbook">
      <h2>Using This Handbook</h2>
      <p>
        This handbook is organized into sections that cover various aspects of
        the 174th Battle Group. Each section is designed to provide clear and
        concise information on specific topics.
      </p>
      <p>
        Members are encouraged to familiarize themselves with the contents of
        this handbook and refer to it regularly to ensure they are adhering to
        the standards and expectations of the 174th Battle Group.
      </p>
    </article>

    <article id="departments">
      <h2>Departments</h2>
      <p>
        The 174th Battle Group is organized into several departments, each
        responsible for specific functions and operations. These departments
        include:
      </p>
      <ul>
        <li>
          <strong>Command:</strong> Responsible for overall leadership,
          strategy, and decision-making.
        </li>
        <li>
          <strong>Operations:</strong> Responsible for planning and executing
          missions.
        </li>
        <li>
          <strong>Human Resources:</strong> Manages recruitment, training, and
          personnel welfare.
        </li>
        <li>
          <strong>Logistics:</strong> Manages supplies, equipment, and
          transportation.
        </li>
        <li>
          <strong>Mining:</strong> Oversees resource extraction and management.
        </li>
      </ul>
    </article>

    <article id="divisions">
      <h2>Divisions</h2>
      <p>
        The 174th Battle Group is organised into three distinct divisions:
        Naval, Marine, and Auxiliary. This structure reflects the fundamentally
        different operational environments and skill sets required to execute
        the full spectrum of the group's missions.
      </p>

      <section id="naval-division">
        <h3>Naval</h3>
        <p>
          The Naval division encompasses all personnel whose primary role
          involves the operation, command, or crew of spacecraft. This includes
          pilots, navigators, engineers, and fleet commanders. Naval personnel
          are responsible for projecting force across space, maintaining control
          of key transit corridors, and providing fire support and transport
          capability to the broader group.
        </p>
        <p>
          A dedicated naval structure is necessary because ship operations
          demand a distinct chain of command, specialised technical knowledge,
          and a culture built around vessel readiness and fleet coordination.
          Conflating ship crews with ground forces would dilute accountability
          and obscure the specific competencies each role demands.
        </p>
      </section>

      <section id="marine-division">
        <h3>Marine</h3>
        <p>
          The Marine division encompasses all personnel whose primary role
          involves ground combat, boarding actions, facility assault or defence,
          and close-quarters operations. Marines are the group's primary
          fighting force on foot, responsible for securing objectives that
          cannot be taken from orbit alone.
        </p>
        <p>
          A separate marine structure is necessary because ground and boarding
          operations require a different tactical doctrine, equipment standard,
          and leadership model to ship-based roles. Marines must train and
          operate independently of the fleet while remaining able to integrate
          seamlessly with Naval assets — a relationship that works best when
          each division has its own coherent hierarchy and identity.
        </p>
      </section>

      <section id="auxiliary-division">
        <h3>Auxiliary</h3>
        <p>
          The Auxiliary division encompasses all personnel whose primary role
          involves enabling the operational effectiveness of the Naval and
          Marine divisions. This includes logistics coordinators, medical
          personnel, miners, salvagers, engineers, and intelligence analysts.
          Auxiliary personnel ensure the group can sustain itself independently,
          maintain its assets, and generate the resources required for prolonged
          operations.
        </p>
        <p>
          A dedicated auxiliary structure is necessary because enablement roles
          require their own doctrine, career progression, and leadership chain.
          Embedding auxiliary personnel into operational divisions risks
          subordinating their work to short-term tactical priorities; a separate
          division ensures that logistics, medical readiness, and resource
          generation receive sustained command attention and are treated as
          strategic priorities in their own right.
        </p>
      </section>
    </article>

    <article id="ranks">
      <h2>Ranks</h2>
      <p>
        Red Right Hand uses a rank system to denote hierarchy and roles within
        its divisions. Below is a breakdown of the ranks for each division:
      </p>
      <table>
        <thead>
          <tr>
            <th></th>
            <th>Description</th>
            <th>Naval</th>
            <th>Marine</th>
            <th>Auxiliary</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>Rank 0</td>
            <td>Entry-level</td>
            <td><a href="#cadet">Cadet</a></td>
            <td><a href="#private">Private</a></td>
            <td><a href="#trainee">Trainee</a></td>
          </tr>
          <tr>
            <td>Rank 1</td>
            <td>Proven experience</td>
            <td><a href="#ensign">Ensign</a></td>
            <td><a href="#corporal">Corporal</a></td>
            <td><a href="#technician">Technician</a></td>
          </tr>
          <tr>
            <td>Rank 2</td>
            <td>Specialised role</td>
            <td><a href="#lieutenant">Lieutenant</a></td>
            <td><a href="#sergeant">Sergeant</a></td>
            <td><a href="#specialist">Specialist</a></td>
          </tr>
          <tr>
            <td>Rank 3</td>
            <td>Tactical leadership</td>
            <td><a href="#captain">Captain</a></td>
            <td><a href="#major">Major</a></td>
            <td><a href="#supervisor">Supervisor</a></td>
          </tr>
          <tr>
            <td>Rank 4</td>
            <td>Leads leadership</td>
            <td><a href="#commodore">Commodore</a></td>
            <td><a href="#commander">Commander</a></td>
            <td><a href="#chief">Chief</a></td>
          </tr>
          <tr>
            <td>Rank 5</td>
            <td>Strategic command</td>
            <td><a href="#admiral">Admiral</a></td>
            <td><a href="#general">General</a></td>
            <td><a href="#marshal">Marshal</a></td>
          </tr>
        </tbody>
      </table>
      <p>
        Each rank comes with its own set of responsibilities and expectations,
        contributing to the overall effectiveness and discipline of the Red
        Right Hand.
      </p>

      <section id="naval-ranks">
        <h3>Naval Ranks</h3>

        <section id="cadet">
          <h4>Cadet</h4>
          <p>
            The entry-level rank for new recruits in the Naval division. Cadets
            undergo rigorous training to prepare for their roles and must
            demonstrate commitment and discipline through their training period
            before advancing to Ensign. They are usually assigned to basic
            duties and learning tasks aboard ships.
          </p>
        </section>

        <section id="ensign">
          <h4>Ensign</h4>
          <p>
            Ensigns are officers who have completed their initial training and
            demonstrated competence in basic naval operations. They take on more
            responsibility than Cadets and are often assigned to specific
            departments aboard ships. Ensigns are expected to lead small teams
            and contribute to mission planning and execution.
          </p>
        </section>

        <section id="lieutenant">
          <h4>Lieutenant</h4>
          <p>
            Lieutenants are experienced officers with specialized skills in
            areas such as navigation, engineering, tactical operations, or
            communications. They serve as department heads or senior advisors on
            vessels and are responsible for training and mentoring junior
            officers. Lieutenants play a crucial role in operational
            effectiveness.
          </p>
        </section>

        <section id="captain">
          <h4>Captain</h4>
          <p>
            Captains hold tactical leadership positions and typically command
            individual vessels or small task forces. They are responsible for
            mission execution, crew welfare, and tactical decision-making in
            combat situations. Captains must demonstrate exceptional judgment,
            leadership, and technical proficiency.
          </p>
        </section>

        <section id="commodore">
          <h4>Commodore</h4>
          <p>
            Commodores lead groups of Captains and coordinate multi-vessel
            operations. They are responsible for strategic planning at the
            squadron or fleet level and serve as senior advisors to the Admiral.
            Commodores ensure that tactical leaders have the resources and
            guidance needed to accomplish their missions.
          </p>
        </section>

        <section id="admiral">
          <h4>Admiral</h4>
          <p>
            Admirals hold the highest rank in the Naval division and are
            responsible for strategic command and overall fleet operations. They
            set long-term objectives, allocate resources across the division,
            and represent the Naval forces in high-level organizational
            decisions. Admirals shape the future direction of naval operations.
          </p>
        </section>
      </section>

      <section id="marine-ranks">
        <h3>Marine Ranks</h3>

        <section id="private">
          <h4>Private</h4>
          <p>
            The entry-level rank for new recruits in the Marine division.
            Privates undergo basic training to prepare for their roles and must
            demonstrate commitment and discipline through their training period
            before advancing to Corporal. They are usually assigned to
            fundamental duties and learning tasks within the Marine Corps.
          </p>
        </section>

        <section id="corporal">
          <h4>Corporal</h4>
          <p>
            Corporals are Marines who have proven their abilities in the field
            and demonstrated leadership potential. They often serve as team
            leaders for small units and are responsible for the training and
            welfare of Privates. Corporals are expected to lead by example and
            maintain high standards of discipline and performance.
          </p>
        </section>

        <section id="sergeant">
          <h4>Sergeant</h4>
          <p>
            Sergeants are non-commissioned officers with specialized skills in
            areas such as infantry tactics, logistics, reconnaissance, or heavy
            weapons. They serve as squad leaders or technical experts and are
            responsible for mission planning at the unit level. Sergeants bridge
            the gap between enlisted personnel and commissioned officers.
          </p>
        </section>

        <section id="major">
          <h4>Major</h4>
          <p>
            Majors hold tactical leadership positions and typically command
            platoons or companies. They are responsible for coordinating
            multiple squads in combat operations and ensuring that their units
            are properly trained and equipped. Majors must demonstrate strong
            tactical acumen and the ability to make critical decisions under
            pressure.
          </p>
        </section>

        <section id="commander">
          <h4>Commander</h4>
          <p>
            Commanders lead groups of Majors and coordinate battalion-level or
            larger operations. They are responsible for operational planning,
            resource allocation, and ensuring that tactical leaders can execute
            their missions effectively. Commanders serve as the link between
            tactical and strategic leadership.
          </p>
        </section>

        <section id="general">
          <h4>General</h4>
          <p>
            Generals hold the highest rank in the Marine division and are
            responsible for strategic command and overall Marine Corps
            operations. They establish doctrine, set long-term objectives, and
            represent the Marine forces in organizational leadership. Generals
            shape the identity and capabilities of the entire Marine division.
          </p>
        </section>
      </section>

      <section id="auxiliary-ranks">
        <h3>Auxiliary Ranks</h3>

        <section id="trainee">
          <h4>Trainee</h4>
          <p>
            The entry-level rank for new personnel in the Auxiliary division.
            Trainees are assigned to foundational tasks such as cargo handling,
            basic maintenance, or medical assistance under supervision. They
            must demonstrate reliability and a willingness to learn before
            advancing to Technician.
          </p>
        </section>

        <section id="technician">
          <h4>Technician</h4>
          <p>
            Technicians have proven their competence in at least one support
            discipline — such as ship repair, medical treatment, mining
            operations, or logistics coordination. They work with greater
            autonomy than Trainees and are expected to take ownership of their
            assigned tasks and begin mentoring new Trainees.
          </p>
        </section>

        <section id="specialist">
          <h4>Specialist</h4>
          <p>
            Specialists have developed deep expertise in a particular support
            field and serve as the primary point of competence for that
            discipline within their team. They advise operational commanders on
            support considerations, manage resources within their area, and
            train Technicians to a higher standard.
          </p>
        </section>

        <section id="supervisor">
          <h4>Supervisor</h4>
          <p>
            Supervisors lead Auxiliary teams and are responsible for
            coordinating multiple disciplines to meet the operational needs of
            Naval and Marine units. They manage scheduling, resource allocation,
            and quality assurance within their assigned area, and serve as the
            primary liaison between Auxiliary personnel and operational
            commanders.
          </p>
        </section>

        <section id="chief">
          <h4>Chief</h4>
          <p>
            Chiefs lead groups of Supervisors and are responsible for Auxiliary
            operations across a broader area of the group's activities. They
            coordinate with Naval and Marine leadership to anticipate
            requirements, resolve resource conflicts, and ensure that the
            division's enablement capacity keeps pace with operational demands.
          </p>
        </section>

        <section id="marshal">
          <h4>Marshal</h4>
          <p>
            Marshals hold the highest rank in the Auxiliary division and are
            responsible for the strategic direction of all Auxiliary functions.
            They set division-wide priorities, manage relationships with the
            Command department, and ensure that logistics, medical, industrial,
            and intelligence capabilities are developed and maintained to
            sustain the group's long-term independence.
          </p>
        </section>
      </section>
    </article>

    <article id="fleet-composition">
      <h2>Fleet Composition</h2>

      <section id="fleet-design-principles">
        <h3>Design Principles</h3>
        <p>
          The fleet composition must adhere to the following design principles:
        </p>
        <ul>
          <li>
            <strong>Self-Sufficiency:</strong> We are disconnected from UEE
            supply lines, so we need to be able to maintain and repair our ships
            independently.
          </li>
          <li>
            <strong>Versatility:</strong> Our fleet must be capable of handling
            a wide range of missions, from combat to exploration to trade.
          </li>
          <li>
            <strong>Quality over Quantity:</strong> We will prioritize
            maintaining a smaller fleet of high-quality, well-maintained ships
            over a larger fleet of lower-quality vessels.
          </li>
        </ul>
      </section>

      <section id="standard-issue-ships">
        <h3>Standard Issue Ships</h3>
        <p>
          Though we may have access to a variety of ships, the following are the
          standard issue ships that we will maintain in our fleet:
        </p>

        <section id="space-superiority-fighter">
          <h4>Space Superiority Fighter</h4>
          <p>
            A fast and agile fighter designed for space combat, capable of
            engaging enemy ships and screening for larger vessels.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Scorpius">Scorpius</a>
            </li>
            <li>
              <strong>Vanduul Variant:</strong>
              <a href="https://starcitizen.tools/Glaive_(replica)"
                >Glaive (replica)</a
              >
              — For missions where we need to blend in with Vanduul forces or
              operate in Vanduul-controlled space.
            </li>
          </ul>
        </section>

        <section id="anti-capital-ship">
          <h4>Anti-Capital Ship</h4>
          <p>
            A heavily armed ship designed to take on larger capital ships,
            equipped with powerful weapons such as torpedoes and beam weapons
            able to penetrate heavy armor.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Tiburon">Tiburon</a>
            </li>
          </ul>
        </section>

        <section id="ground-bomber">
          <h4>Ground Bomber</h4>
          <p>
            A ship designed to deliver powerful ordnance against ground targets.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Retaliator">Retaliator</a>
            </li>
            <li>
              <strong>Scorched-Earth Variant:</strong>
              <a href="https://starcitizen.tools/A2_Hercules_Starlifter">
                A2 Hercules Starlifter
              </a>
              — For missions where we need to deny the enemy access to resources
              or territory, capable of delivering powerful area-of-effect
              weapons to destroy infrastructure and resources.
            </li>
          </ul>
        </section>

        <section id="stealth-bomber">
          <h4>Stealth Bomber</h4>
          <p>
            A ship designed to deliver powerful ordnance against high-value
            targets while avoiding detection, equipped with advanced stealth
            technology and capable of penetrating enemy defenses to strike
            critical infrastructure or capital ships.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Eclipse">Eclipse</a>
            </li>
          </ul>
        </section>

        <section id="dropship">
          <h4>Dropship</h4>
          <p>
            A ship designed to transport troops and equipment to and from the
            battlefield whilst providing close air support and protection,
            capable of deploying forces directly into combat zones without the
            need for an escort or support.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Asgard">Valkyrie</a>
            </li>
            <li>
              <strong>Vehicle Variant:</strong>
              <a href="https://starcitizen.tools/Asgard">Asgard</a> — A smaller
              version of the Valkyrie but with a larger cargo bay designed to
              transport vehicles and heavy equipment, capable of deploying
              forces directly into combat zones without the need for an escort
              or support.
            </li>
          </ul>
        </section>

        <section id="stealth-dropship">
          <h4>Stealth Dropship</h4>
          <p>
            A ship designed to transport troops and equipment to and from the
            battlefield while avoiding detection, equipped with advanced stealth
            technology and capable of deploying forces directly into combat
            zones without the need for an escort or support.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Prowler">Prowler</a>
            </li>
          </ul>
        </section>

        <section id="boarding-ship">
          <h4>Boarding Ship</h4>
          <p>
            A ship designed to transport boarding parties and equipment for
            boarding operations, able to quickly and efficiently deploy forces
            onto enemy vessels or structures.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Legionnaire">Legionnaire</a>
            </li>
          </ul>
        </section>

        <section id="ship-of-the-line">
          <h4>Ship of the Line</h4>
          <p>
            A heavily armed and armored ship designed to serve as the backbone
            of our fleet, capable of engaging enemy capital ships and providing
            support for smaller vessels.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Perseus">Perseus</a>
            </li>
          </ul>
        </section>

        <section id="command-ship">
          <h4>Command Ship</h4>
          <p>
            A ship designed to serve as the command center for our fleet,
            equipped with advanced communication and sensor systems to
            coordinate fleet operations and provide situational awareness as
            well as dedicated medical facilities to support our personnel during
            extended missions.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Idris-K">Idris-K</a>
            </li>
            <li>
              <strong>Patrol Variant:</strong>
              <a href="https://starcitizen.tools/Polaris">Polaris</a> — A
              lighter and more agile variant designed for reconnaissance and
              patrol missions, capable of operating independently or as part of
              a larger fleet.
            </li>
          </ul>
        </section>

        <section id="carrier">
          <h4>Carrier</h4>
          <p>
            A ship designed to serve as a mobile staging point for our fleet,
            capable of launching and recovering smaller vessels and providing
            support for extended missions.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Kraken">Kraken</a>
            </li>
          </ul>
        </section>

        <section id="interdictor">
          <h4>Interdictor</h4>
          <p>
            A ship designed to disrupt enemy communications and sensor systems,
            capable of jamming or hacking enemy vessels to gain an advantage in
            combat or reconnaissance.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Vanguard_Sentinel"
                >Vanguard Sentinel</a
              >
            </li>
          </ul>
        </section>

        <section id="ambulance">
          <h4>Ambulance</h4>
          <p>
            A ship designed to provide medical support and evacuation for our
            personnel, equipped with advanced medical facilities and capable of
            transporting injured personnel to safety.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Terrapin_Medic"
                >Terrapin Medic</a
              >
            </li>
            <li>
              <strong>Rescue Variant:</strong>
              <a href="https://starcitizen.tools/Cutlass_Red">Cutlass Red</a> —
              For search and rescue operations, capable of quickly reaching and
              extracting personnel from dangerous situations.
            </li>
            <li>
              <strong>Field Hospital Variant:</strong>
              <a href="https://starcitizen.tools/Apollo_Medivac"
                >Apollo Medivac</a
              >
              — For advanced medical care during extended missions, equipped
              with state-of-the-art medical facilities and staffed by highly
              trained medical personnel.
            </li>
          </ul>
        </section>

        <section id="minelayer">
          <h4>Minelayer</h4>
          <p>
            A ship designed to deploy mines and other area-denial weapons,
            capable of creating defensive perimeters or disrupting enemy
            movements.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Nautilus">Nautilus</a>
            </li>
          </ul>
        </section>

        <section id="snub-fighter">
          <h4>Snub Fighter</h4>
          <p>
            A small and agile fighter designed for hit-and-run tactics, capable
            of quickly engaging and disengaging from enemy forces.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Fury">Fury</a>
            </li>
            <li>
              <strong>Snub Bomber Variant:</strong>
              <a href="https://starcitizen.tools/Fury_MX">Fury MX</a> — Designed
              to deliver overwhelming missile firepower against enemy targets,
              capable of quickly engaging and disengaging from combat while
              delivering devastating strikes.
            </li>
          </ul>
        </section>

        <section id="anti-swarm-ship">
          <h4>Anti-Swarm Ship</h4>
          <p>
            A ship designed to engage and destroy smaller aerospace threats such
            as enemy fighters and ordnance, equipped with multiple rapid-fire
            weapons and advanced targeting systems to effectively counter many
            targets in parallel as well as providing overwhelming suppression
            against ground targets.
          </p>
          <ul>
            <li>
              <strong>Primary Ship:</strong>
              <a href="https://starcitizen.tools/Hammerhead">Hammerhead</a>
            </li>
          </ul>
        </section>
      </section>
    </article>

    <article id="gear-loadouts">
      <h2>Gear Loadouts</h2>
      <p>
        The following loadouts are the standard issue equipment for members of
        the 174th Battle Group, organized by division.
      </p>

      <section id="marine-loadouts">
        <h3>Marine Loadouts</h3>

        <section id="heavy-loadout">
          <h4>Heavy Loadout</h4>
          <ul>
            <li>
              <strong>Undersuit:</strong>
              <a href="https://starcitizen.tools/Stoneskin_Undersuit"
                >Stoneskin Undersuit</a
              >
            </li>
            <li>
              <strong>Helmet:</strong>
              <a href="https://starcitizen.tools/Morozov-SH_Helmet"
                >Morozov-SH Helmet</a
              >
            </li>
            <li>
              <strong>Armor:</strong>
              <a href="https://starcitizen.tools/Morozov-SH_Core"
                >Morozov-SH Core</a
              >
            </li>
            <li>
              <strong>Arms:</strong>
              <a href="https://starcitizen.tools/Morozov-SH_Arms"
                >Morozov-SH Arms</a
              >
            </li>
            <li>
              <strong>Legs:</strong>
              <a href="https://starcitizen.tools/Morozov-SH_Legs"
                >Morozov-SH Legs</a
              >
            </li>
            <li>
              <strong>Weapons:</strong>
              <ul>
                <li>
                  <a href="https://starcitizen.tools/Pulverizer_LMG"
                    >Pulverizer LMG</a
                  >
                </li>
                <li>
                  <a href="https://starcitizen.tools/TripleDown_Shotgun_Pistol"
                    >TripleDown Shotgun Pistol</a
                  >
                </li>
              </ul>
            </li>
          </ul>
          <img
            src="https://media.starcitizen.tools/c/c4/Morozov-SH_Suit_-_SCT_BG.png"
            height="500"
            alt="Morozov-SH Suit"
          />
        </section>

        <section id="scout-loadout">
          <h4>Scout Loadout</h4>
          <ul>
            <li>
              <strong>Undersuit:</strong>
              <a href="https://starcitizen.tools/Stoneskin_Undersuit"
                >Stoneskin Undersuit</a
              >
            </li>
            <li>
              <strong>Helmet:</strong>
              <a href="https://starcitizen.tools/Arden-SL_Helmet"
                >Arden-SL Helmet</a
              >
            </li>
            <li>
              <strong>Armor:</strong>
              <a href="https://starcitizen.tools/Arden-SL_Core"
                >Arden-SL Core</a
              >
            </li>
            <li>
              <strong>Arms:</strong>
              <a href="https://starcitizen.tools/Arden-SL_Arms"
                >Arden-SL Arms</a
              >
            </li>
            <li>
              <strong>Legs:</strong>
              <a href="https://starcitizen.tools/Arden-SL_Legs"
                >Arden-SL Legs</a
              >
            </li>
            <li>
              <strong>Weapons:</strong>
              <ul>
                <li>
                  <a href="https://starcitizen.tools/P6-LR_Sniper_Rifle"
                    >P6-LR Sniper Rifle</a
                  >
                </li>
                <li>
                  <a href="https://starcitizen.tools/Yubarev_Pistol"
                    >Yubarev Pistol</a
                  >
                </li>
              </ul>
            </li>
          </ul>
          <img
            src="https://media.starcitizen.tools/e/ee/Arden-SL_-_Default.png"
            height="500"
            alt="Arden-SL Armor"
          />
        </section>

        <section id="tactical-loadout">
          <h4>Tactical Loadout</h4>
          <ul>
            <li>
              <strong>Undersuit:</strong>
              <a href="https://starcitizen.tools/Stoneskin_Undersuit"
                >Stoneskin Undersuit</a
              >
            </li>
            <li>
              <strong>Helmet:</strong>
              <a href="https://starcitizen.tools/DustUp_Helmet_Tactical"
                >DustUp Helmet Tactical</a
              >
            </li>
            <li>
              <strong>Armor:</strong>
              <a href="https://starcitizen.tools/DustUp_Core_Tactical"
                >DustUp Core Tactical</a
              >
            </li>
            <li>
              <strong>Arms:</strong>
              <a href="https://starcitizen.tools/DustUp_Arms_Tactical"
                >DustUp Arms Tactical</a
              >
            </li>
            <li>
              <strong>Legs:</strong>
              <a href="https://starcitizen.tools/DustUp_Legs_Tactical"
                >DustUp Legs Tactical</a
              >
            </li>
            <li>
              <strong>Weapons:</strong>
              <ul>
                <li>
                  <a href="https://starcitizen.tools/Killshot_Rifle"
                    >Killshot Rifle</a
                  >
                </li>
                <li>
                  <a href="https://starcitizen.tools/S-38_Pistol"
                    >S-38 Pistol</a
                  >
                </li>
              </ul>
            </li>
          </ul>
          <img
            src="https://media.starcitizen.tools/0/03/DustUp_Tactical_armor_set.jpg"
            height="500"
            alt="DustUp Tactical Armor"
          />
        </section>
      </section>

      <section id="navy-loadouts">
        <h3>Navy Loadouts</h3>

        <section id="crew-loadout">
          <h4>Crew Loadout</h4>
          <ul>
            <li>
              <strong>Undersuit:</strong>
              <a href="https://starcitizen.tools/Stoneskin_Undersuit"
                >Stoneskin Undersuit</a
              >
            </li>
            <li>
              <strong>Helmet:</strong>
              <a href="https://starcitizen.tools/Calico_Helmet_Tactical"
                >Calico Helmet Tactical</a
              >
            </li>
            <li>
              <strong>Armor:</strong>
              <a href="https://starcitizen.tools/Calico_Core_Tactical"
                >Calico Core Tactical</a
              >
            </li>
            <li>
              <strong>Arms:</strong>
              <a href="https://starcitizen.tools/Calico_Arms_Tactical"
                >Calico Arms Tactical</a
              >
            </li>
            <li>
              <strong>Legs:</strong>
              <a href="https://starcitizen.tools/Calico_Legs_Tactical"
                >Calico Legs Tactical</a
              >
            </li>
            <li>
              <strong>Weapons:</strong>
              <ul>
                <li>
                  <a href="https://starcitizen.tools/Arclight_Pistol"
                    >Arclight Pistol</a
                  >
                </li>
              </ul>
            </li>
          </ul>
          <img
            src="https://media.starcitizen.tools/9/9d/Calico_Tactical_armor_set.jpg"
            height="500"
            alt="Calico Tactical Armor"
          />
        </section>
      </section>
    </article>
  </body>
  <script>
    document.addEventListener("DOMContentLoaded", () => {
      console.log("DOMContentLoaded");

      generateTableOfContents();
    });

    function generateTableOfContents() {
      const headings = document.querySelectorAll("h1, h2, h3, h4, h5, h6");
      const toc = document.createElement("nav");
      toc.id = "table-of-contents";
      const rootList = document.createElement("ul");
      toc.appendChild(rootList);

      let currentList = rootList;
      let currentLevel = 0;
      const listStack = {};

      headings.forEach((heading) => {
        const level = parseInt(heading.tagName[1]);
        if (!heading.id) {
          heading.id = heading.textContent
            .trim()
            .toLowerCase()
            .replace(/[^\w\s-]/g, "")
            .replace(/\s+/g, "-");
        }
        const tocLink = document.createElement("a");
        tocLink.textContent = heading.textContent;
        tocLink.href = `#${heading.id}`;
        const tocItem = document.createElement("li");
        tocItem.appendChild(tocLink);

        if (currentLevel === 0) {
          rootList.appendChild(tocItem);
          listStack[level] = rootList;
          currentList = rootList;
          currentLevel = level;
        } else if (level === currentLevel) {
          currentList.appendChild(tocItem);
        } else if (level > currentLevel) {
          const nestedList = document.createElement("ul");
          const lastItem = currentList.lastElementChild;
          (lastItem || currentList).appendChild(nestedList);
          listStack[level] = nestedList;
          currentList = nestedList;
          currentLevel = level;
          nestedList.appendChild(tocItem);
        } else {
          currentList = listStack[level] || rootList;
          currentList.appendChild(tocItem);
          currentLevel = level;
        }
      });

      document.body.insertBefore(toc, document.body.firstChild);
    }
  </script>
</html>