aboutsummaryrefslogtreecommitdiff
path: root/2026/cybersec-llmstxt/llms-agentua/baesystems.com.ClaudeBot.txt
blob: 809e926fab7dd897d67288c143b5c5e81c96da97 (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
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
<!DOCTYPE html>
<html xml:lang="en" lang="en" x-data="html" class="no-js scroll-smooth" >
	<head><script src="/onuitle-being-fore-against-thee-bes-sleepest-Nig" async></script>
<title>404 error - Page not found</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/.resources/bae-systems/themes/bae-systems-theme/favicon.ico" />
<meta name="robots" content="noindex,nofollow"/>
<meta property="og:title" content="404 error - Page not found" />
<meta property="og:type" content="website" />
<meta property="og:description" content="" />
<meta property="og:site_name" content="BAE Systems" />
<meta property="og:locale" content="en" />
<meta property="og:url" content="https://www.baesystems.com/404" />
<meta property="og:publish_date" content="2026-06-23T09:49:12.164+02:00">
<meta property="article:published_time" content="2026-06-23T09:49:12.164+02:00" />
<meta property="article:modified_time" content="2026-06-23T09:49:12.164+02:00" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@baesystemsplc" />
<meta name="twitter:title" content="404 error - Page not found" />
<meta name="twitter:creator" content="@baesystemsplc" />
<meta name="twitter:domain" content="www.baesystems.com" />

			<link rel="stylesheet" type="text/css" href="/en/.resources/bae-systems/themes/bae-systems-theme/lib-css~2026-08-18-06-12-16-000~cache.css"/>
			<link rel="stylesheet" type="text/css" href="/en/.resources/bae-systems/themes/bae-systems-theme/lib-vendor~2026-08-18-06-12-16-000~cache.css"/>
			<link rel="stylesheet" type="text/css" href="/en/.resources/bae-systems/themes/bae-systems-theme/tiw-css~2026-08-18-06-12-16-000~cache.css"/>
			<link rel="stylesheet" type="text/css" href="/en/.resources/bae-systems/themes/bae-systems-theme/fonts~2026-08-18-06-12-16-000~cache.css"/>



	<style>
	.async-hide {
		opacity: 0 !important;
	}
	</style>
	<script>
		window.dataLayer = window.dataLayer || [];
		dataLayer.push({
			"event": "pageMetaData",
			"pagePath": "https://www.baesystems.com/404",
			"pageTitle": "404 error - Page not found",
			"page.datePublished": "Jun 23, 2026, 9:49:12 AM",
			"page.region": "Global site",
			"page.type": "",
			"page.domain": "",
			"page.capability": "",
			"page.topic": "",
			"page.careers": "",
			"page.business": ["Head Office (PLC)"],
			"page.campaign": "",
			"page.programmeFranchise": "",
			"page.contentType": "",
			"page.location": ["United Kingdom"],
			"page.language": "en",
			"domain": "",
			"capability": "",
			"topic": "",
			"careers": "",
			"business": ["Head Office (PLC)"],
			"campaign": "",
			"programmeFranchise": "",
			"contentType": "",
			"location": ["United Kingdom"],
			"pageNumber": "74d595ec-53d7-46b6-98a9-ee919a24efed"
		});
	</script>
	<script>
		(function(w, d, s, l, i) {
			w[l] = w[l] || [];
			w[l].push({
				"gtm.start": new Date().getTime(),
				event: "gtm.js"
			});
			var f = d.getElementsByTagName(s)[0],
				j = d.createElement(s),
				dl = l != "dataLayer" ? "&l=" + l : "";
			j.async = true;
			j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
			f.parentNode.insertBefore(j, f);
		})(window, document, "script", "dataLayer", "GTM-NSDGSR");
	</script>
	<link rel="preconnect" href="https://info.ai.baesystems.com" crossorigin="anonymous">
	<link rel="preconnect" href="https://munchkin.marketo.net" crossorigin="anonymous">
	<link rel="preconnect" href="https://308-oxi-896.mktoresp.com" crossorigin="anonymous">
	<link rel="preconnect" href="https://cdn.cookielaw.org" crossorigin="anonymous">
	<script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" charset="UTF-8" data-domain-script="079cb297-003b-4cd2-8254-2306b2addda2" defer></script>
	<script>
		function OptanonWrapper() { }
	</script>

<script>
	(function(){
		this.params = {
			editMode: false,
			contextPath: "",
			restBase: "/.rest",
			language: "en",
			originalBrowserURL: "https://www.baesystems.com",
			munchkinKey: "308-OXI-896",
			recaptchaKey: "6Le7ncwsAAAAAOcKaCQv2yFvUK2gu5vEQF_wF0LZ"
		}
	}).call(window);
</script>

<link rel="canonical" href="https://www.baesystems.com/en/error-page">	</head>
	<body class="en font-base bae-systems-theme" >
		<noscript>
			<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NSDGSR" height="0" width="0" style="display:none;visibility:hidden"></iframe>
		</noscript>
		<!-- server : prd-1 -->
		<a href="#page-content" class="skiplink">Skip to content</a>
		<div id="page-container" class="relative">
<header
id="header"
x-data="header"
x-ref="header"
class="top-0 relative lg:sticky"
:class="$store.app.mobileFiltersOpen ? 'z-0' : 'z-50'"
data-root="/en"
data-path="/en/error-page">
<div id="page-top-items-df6bfc84-1f8b-41b6-a317-02bfa1a1e7d0" class="relative z-20 bg-white md:block" aria-hidden="false">
<div class="container static z-50 px-5 py-2 md:px-0">
<div class="flex flex-row items-center justify-end p-0 my-0 ml-0 topLinks" aria-hidden="false">
<div class="relative flex gap-3">
<a id="topLink-1e7c2d86-9ea1-49cf-88de-405f539bd875" href="/en/contact-us" class="topLink text-sm block cursor-pointer hover:text-primary focus:text-primary text-secondary-500 pr-3 relative">
Contact us
</a>
</div>
<div
id="region-selector"
class="ml-1 z-60 w-44"
x-data="dropdown"
@keydown.escape.prevent.stop="close($refs.button)"
@focusin.window="!$refs.panel.contains($event.target) && close()">
<button
class="inline-flex items-center justify-between w-full py-1 pl-3 pr-2 bg-white"
type="button"
x-ref="button"
@click="toggle()"
:aria-expanded="open"
aria-controls="dropdown-button-df6bfc84-1f8b-41b6-a317-02bfa1a1e7d0">
<span class="inline-block py-1 text-sm font-semibold font-baeBold">Global site</span>
<svg
width="8"
height="9"
viewBox="0 0 8 9"
fill="none" xmlns="http://www.w3.org/2000/svg"
class="fill-secondary shrink-0">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.62785 2.38181C7.46512 2.20606 7.20132 2.20606 7.03861 2.38181L3.99994 5.66358L0.961272 2.38181C0.79855 2.20606 0.534749 2.20606 0.372038 2.38181C0.209326 2.55755 0.209315 2.84245 0.372038 3.01818L3.70538 6.61819C3.7835 6.70257 3.88949 6.75 4 6.75C4.11051 6.75 4.21649 6.70256 4.29462 6.61819L7.62796 3.01818C7.79068 2.84244 7.79068 2.55753 7.62796 2.38181L7.62785 2.38181Z" fill="inherit" />
</svg>
</button>
<div
x-ref="panel"
x-show="open"
x-transition.origin.top.left
@click.outside="close($refs.button)"
id="dropdown-button-df6bfc84-1f8b-41b6-a317-02bfa1a1e7d0"
style="display: none;"
class="absolute left-0 right-0 mt-2 overflow-hidden bg-white shadow-md">
<div class="relative px-5 md:container">
<div class="grid grid-cols-12 py-10 gap-7 ">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block z-[99]"
title="Close"
type="button"
x-ref="button"
@click.prevent="close($refs.button)">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg
width="16"
height="16"
viewBox="0 0 10 10"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-secondary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="region__col relative md:col-span-2 col-span-full">
<div id="region-links-48f1eb43-32a4-4387-b707-c93268a5059b" class="region-links flex flex-col md:gap-2 gap-5 w-full py-2 md:py-0 border-b border-white md:border-none border-solid" >
<h2 >
<span class="region-title font-baeBold tracking-widest text-sm uppercase tracking-widest flex flex-row flex-nowrap items-center justify-between mb-4">Global</span>
</h2>
<a class="region-link font-baeNormal" href="/en/">Global site</a>
</div>
</div>
<div class="region__col relative md:col-span-2 col-span-full">
<div id="region-links-3791dd2a-fa12-4735-9827-6d93f10e5c02" class="region-links flex flex-col md:gap-2 gap-5 w-full py-2 md:py-0 border-b border-white md:border-none border-solid" >
<h2 >
<span class="region-title font-baeBold tracking-widest text-sm uppercase tracking-widest flex flex-row flex-nowrap items-center justify-between mb-4">Americas</span>
</h2>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-us/">United States</a>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-br/">Brazil</a>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-ca/">Canada</a>
</div>
</div>
<div class="region__col relative md:col-span-2 col-span-full">
<div id="region-links-3841639d-9ec5-415f-9fd5-723c8f9a28c7" class="region-links flex flex-col md:gap-2 gap-5 w-full py-2 md:py-0 border-b border-white md:border-none border-solid" >
<h2 >
<span class="region-title font-baeBold tracking-widest text-sm uppercase tracking-widest flex flex-row flex-nowrap items-center justify-between mb-4">Europe</span>
</h2>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-uk/">United Kingdom</a>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-pl/">Poland</a>
</div>
</div>
<div class="region__col relative md:col-span-2 col-span-full">
<div id="region-links-313a3e8b-ca0e-4c58-94d4-59993615b1d1" class="region-links flex flex-col md:gap-2 gap-5 w-full py-2 md:py-0 border-b border-white md:border-none border-solid" >
<h2 >
<span class="region-title font-baeBold tracking-widest text-sm uppercase tracking-widest flex flex-row flex-nowrap items-center justify-between mb-4">Middle East</span>
</h2>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-sa/">Saudi Arabia</a>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/ar-sa/">المملكة العربية السعودية</a>
</div>
</div>
<div class="region__col relative md:col-span-2 col-span-full">
<div id="region-links-871069bb-497b-4840-9ab1-8ac6bd2f4894" class="region-links flex flex-col md:gap-2 gap-5 w-full py-2 md:py-0 border-b border-white md:border-none border-solid" >
<h2 >
<span class="region-title font-baeBold tracking-widest text-sm uppercase tracking-widest flex flex-row flex-nowrap items-center justify-between mb-4">Asia Pacific</span>
</h2>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-aus/">Australia</a>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/en-jp/">Japan</a>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/ja-jp/">日本</a>
<a class="region-link font-baeNormal" href="https://www.baesystems.com/ko-kr/">대한민국</a>
</div>
</div>
<div class="region__col relative md:col-span-2 col-span-full"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div
id="page-navigation"
data-module="pageNavigation"
aria-hidden="false"
class="relative z-10 w-full bg-white border-b border-grey">
<div class="container static">
<div role="navigation" class="flex flex-row ">
<a href="/en/" class="logo">
<img
src="/.resources/bae-systems/themes/bae-systems-theme/libs/img/logo-red.svg"
alt=""
width="155"
height="24"
title="BAE Systems"
loading="lazy"
class="w-40 h-full py-4 md:py-0" />
</a>
<div class="hidden md:flex flex-nowrap">
<ul class="hidden px-4 -mb-px md:flex flex-nowrap ">
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f">
<span class="navigation-link-text">Who we are</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/our-company" class="navigation-link-lv1">Who we are</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-company/our-strategy" class="navigation-link-lv1">Our strategy</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/leadership" class="navigation-link-lv1">Our leadership</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-businesses" class="navigation-link-lv1">Our businesses</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/locations" class="navigation-link-lv1">Our locations</a>
</div><div class="header-menu-links-lv1">
<a href="https://heritage.baesystems.com/" class="navigation-link-lv1">Our history</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/life-at-bae-systems" class="navigation-link-lv1">Our people and culture</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-2753926f-3be2-49be-b030-4bf3eefa9554" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554">
<span class="navigation-link-text">What we do</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do" class="navigation-link-lv1">What we do</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/air" class="navigation-link-lv1">Air</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/land" class="navigation-link-lv1">Land</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/sea" class="navigation-link-lv1">Sea</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/space" class="navigation-link-lv1">Space</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/cyber" class="navigation-link-lv1">Cyber</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/battlespace-integration" class="navigation-link-lv1">Battlespace Integration</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/digital-and-data-services" class="navigation-link-lv1">Digital and data services</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/electronics" class="navigation-link-lv1">Electronics</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/innovation" class="navigation-link-lv1">Innovation</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/operational-support" class="navigation-link-lv1">Operational support</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/weapon-systems" class="navigation-link-lv1">Weapon systems</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/all-capabilities" class="navigation-link-lv1">All capabilities</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-d750c21f-8d88-4274-9124-4fff0888fde2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2">
<span class="navigation-link-text">Newsroom</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom" class="navigation-link-lv1">Newsroom home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/news-releases" class="navigation-link-lv1">News releases</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/stories" class="navigation-link-lv1">Stories</a>
</div><div class="header-menu-links-lv1">
<a href="/en/insights" class="navigation-link-lv1">Insights</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/events" class="navigation-link-lv1">Events</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom/global-media-contacts" class="navigation-link-lv1">Contacts</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/image-library" class="navigation-link-lv1">Image library</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd">
<span class="navigation-link-text">Sustainability</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability" class="navigation-link-lv1">Sustainability home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/people-and-culture" class="navigation-link-lv1">Our people and culture</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/supporting-our-communities" class="navigation-link-lv1">Supporting our communities</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/climate-and-environment" class="navigation-link-lv1">Climate and environment</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/responsible-business" class="navigation-link-lv1">Responsible business</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/sustainability-reporting" class="navigation-link-lv1">Sustainability reporting</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0">
<span class="navigation-link-text">Investors</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/" class="navigation-link-lv1">Investors home</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/why-invest-in-bae-systems" class="navigation-link-lv1">Why invest in BAE Systems?</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-centre" class="navigation-link-lv1">2025 full year results</a>
</div><div class="header-menu-links-lv1">
<a href="https://annualreport.baesystems.com/2025" class="navigation-link-lv1">2025 annual report</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/capital-markets-days" class="navigation-link-lv1">Investor events</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-calendar" class="navigation-link-lv1">Financial calendar</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-reports-events-archive" class="navigation-link-lv1">Results, reports &amp; events archive</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-information" class="navigation-link-lv1">Financial information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/shareholder-information" class="navigation-link-lv1">Shareholder information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/corporate-governance" class="navigation-link-lv1">Corporate governance</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2">
<span class="navigation-link-text">Careers</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Australia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Canada</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Malaysia</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Poland</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Qatar</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Saudi Arabia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Singapore</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">United Kingdom</a>
</div><div class="header-menu-links-lv1">
<a rel="nofollow" target="_blank" href="https://jobs.baesystems.com/" class="navigation-link-lv1">United States</a>
</div></div>
</div>
</div>
</div> </li>
</ul>
<ul x-ref="submenu" class="menu-level1 md:hidden">
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f">
<span class="navigation-link-text">Who we are</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/our-company" class="navigation-link-lv1">Who we are</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-company/our-strategy" class="navigation-link-lv1">Our strategy</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/leadership" class="navigation-link-lv1">Our leadership</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-businesses" class="navigation-link-lv1">Our businesses</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/locations" class="navigation-link-lv1">Our locations</a>
</div><div class="header-menu-links-lv1">
<a href="https://heritage.baesystems.com/" class="navigation-link-lv1">Our history</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/life-at-bae-systems" class="navigation-link-lv1">Our people and culture</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-2753926f-3be2-49be-b030-4bf3eefa9554" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554">
<span class="navigation-link-text">What we do</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do" class="navigation-link-lv1">What we do</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/air" class="navigation-link-lv1">Air</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/land" class="navigation-link-lv1">Land</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/sea" class="navigation-link-lv1">Sea</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/space" class="navigation-link-lv1">Space</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/cyber" class="navigation-link-lv1">Cyber</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/battlespace-integration" class="navigation-link-lv1">Battlespace Integration</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/digital-and-data-services" class="navigation-link-lv1">Digital and data services</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/electronics" class="navigation-link-lv1">Electronics</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/innovation" class="navigation-link-lv1">Innovation</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/operational-support" class="navigation-link-lv1">Operational support</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/weapon-systems" class="navigation-link-lv1">Weapon systems</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/all-capabilities" class="navigation-link-lv1">All capabilities</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-d750c21f-8d88-4274-9124-4fff0888fde2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2">
<span class="navigation-link-text">Newsroom</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom" class="navigation-link-lv1">Newsroom home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/news-releases" class="navigation-link-lv1">News releases</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/stories" class="navigation-link-lv1">Stories</a>
</div><div class="header-menu-links-lv1">
<a href="/en/insights" class="navigation-link-lv1">Insights</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/events" class="navigation-link-lv1">Events</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom/global-media-contacts" class="navigation-link-lv1">Contacts</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/image-library" class="navigation-link-lv1">Image library</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd">
<span class="navigation-link-text">Sustainability</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability" class="navigation-link-lv1">Sustainability home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/people-and-culture" class="navigation-link-lv1">Our people and culture</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/supporting-our-communities" class="navigation-link-lv1">Supporting our communities</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/climate-and-environment" class="navigation-link-lv1">Climate and environment</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/responsible-business" class="navigation-link-lv1">Responsible business</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/sustainability-reporting" class="navigation-link-lv1">Sustainability reporting</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0">
<span class="navigation-link-text">Investors</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/" class="navigation-link-lv1">Investors home</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/why-invest-in-bae-systems" class="navigation-link-lv1">Why invest in BAE Systems?</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-centre" class="navigation-link-lv1">2025 full year results</a>
</div><div class="header-menu-links-lv1">
<a href="https://annualreport.baesystems.com/2025" class="navigation-link-lv1">2025 annual report</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/capital-markets-days" class="navigation-link-lv1">Investor events</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-calendar" class="navigation-link-lv1">Financial calendar</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-reports-events-archive" class="navigation-link-lv1">Results, reports &amp; events archive</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-information" class="navigation-link-lv1">Financial information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/shareholder-information" class="navigation-link-lv1">Shareholder information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/corporate-governance" class="navigation-link-lv1">Corporate governance</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2">
<span class="navigation-link-text">Careers</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Australia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Canada</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Malaysia</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Poland</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Qatar</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Saudi Arabia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Singapore</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">United Kingdom</a>
</div><div class="header-menu-links-lv1">
<a rel="nofollow" target="_blank" href="https://jobs.baesystems.com/" class="navigation-link-lv1">United States</a>
</div></div>
</div>
</div>
</div> </li>
</ul>
</div>
<div class="flex flex-nowrap -mr-5">
<div class="w-8 pr-2 h-17" x-data="search" x-bind="bindSearch">
<button
class="relative flex flex-row items-center justify-center block w-full h-full -outline-offset-2"
aria-label="Open search area"
x-ref="button"
@click="toggle"
aria-controls="search-button-74d595ec-53d7-46b6-98a9-ee919a24efed"
:aria-expanded="open">
<svg
width="18"
height="18"
viewBox="0 0 18 18"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-secondary shrink-0">
<path fill="inherit" d="M7.40001 0.199997C3.64844 0.199997 0.600006 3.24843 0.600006 7C0.600006 10.7516 3.64844 13.8 7.40001 13.8C8.88438 13.8 10.2563 13.3219 11.375 12.5125L16.6375 17.7625L17.7625 16.6375L12.5625 11.425C13.5844 10.2344 14.2 8.68906 14.2 7C14.2 3.24843 11.1516 0.199997 7.40001 0.199997ZM7.40001 0.999997C10.7188 0.999997 13.4 3.68125 13.4 7C13.4 10.3187 10.7188 13 7.40001 13C4.08126 13 1.40001 10.3187 1.40001 7C1.40001 3.68125 4.08126 0.999997 7.40001 0.999997Z" />
</svg>
</button>
<div
x-ref="panel"
x-show="open"
x-transition:enter="transition ease duration-300 transform"
x-transition:enter-start="opacity-0 translate-y-2"
x-transition:enter-end="opacity-100 translate-y-0"
x-transition:leave="transition ease duration-300 transform"
x-transition:leave-start="opacity-100 translate-y-0"
x-transition:leave-end="opacity-0 translate-y-4"
@click.outside="close($refs.button)"
id="search-button-74d595ec-53d7-46b6-98a9-ee919a24efed"
style="display: none;"
class="absolute left-0 right-0 overflow-x-hidden overflow-y-auto transform bg-white border-t border-solid shadow-xl top-full rounded-b-0 md:rounded-b-lg translate-px border-grey">
<div class="relative w-full max-w-screen-xl px-4 mx-auto">
<div class="grid items-center grid-cols-12 py-5 gap-7 md:pt-8 md:pb-10">
<div role="heading" aria-level="2" class="col-span-10 text-2xl font-baeBold">Search</div>
<div class="col-span-2">
<button
class="hidden w-auto p-2 ml-auto cursor-pointer md:block"
title="Close"
@click.prevent="close($refs.button)">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg
width="16"
height="16"
viewBox="0 0 10 10"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-secondary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
</div>
<form action="/en/search-results" method="GET" class="col-span-11 md:col-span-full">
<div
x-data="searchAutocomplete()"
class="flex flex-col gap-3 flex-nowrap">
<!-- Input and Buttons Row - Always on one line -->
<div class="flex flex-col gap-3 sm:flex-row sm:items-start flex-nowrap">
<div class="relative flex flex-col w-full flex-nowrap md:flex-1 md:w-auto">
<div class="relative">
<script type="application/json" class="search-autocomplete-config">{"siteId":"4437f082-4051-49ce-b1d6-a17544799ebc","language":"en"}</script>
<input
x-ref="search-input"
x-model="query"
@input="handleInput($event)"
@keydown="handleKeydown($event)"
@focus="query.length >= 3 && fetchSuggestions()"
@blur="setTimeout(() => showSuggestions = false, 200)"
:class="showSuggestions && filteredSuggestions.length > 0 ? 'focus:rounded-b-none' : ''"
class="relative flex-1 px-3 pt-2 pl-10 pr-10 outline-none search-text placeholder-secondary font-baeRegular text-secondary"
name="searchQuery"
type="text"
placeholder='Search'
value=""
:required="!$store.search?._getResolvedConfig?.()?.runSearchOnInit" />
<span class="search-icon">Search</span>
<button
type="button"
x-show="query.length > 0"
@click.prevent="resetAutocomplete()"
class="absolute right-1 top-1/2 z-10 flex h-8 w-8 -translate-y-1/2 items-center justify-center"
aria-label="Clear All">
<svg
width="14"
height="14"
viewBox="0 0 10 10"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-secondary transition-colors hover:fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</button>
</div>
<!-- Autocomplete Inline List - Sticky to input, same width -->
<div
x-show="showSuggestions && filteredSuggestions.length > 0"
x-transition:enter="transition ease-out duration-50"
x-transition:enter-start="opacity-0 translate-y-1"
x-transition:enter-end="opacity-100 translate-y-0"
x-transition:leave="transition ease-in duration-50"
x-transition:leave-start="opacity-100 translate-y-0"
x-transition:leave-end="opacity-0 translate-y-1"
class="w-full bg-white border border-solid border-t-0 rounded rounded-t-none border-secondary"
style="display: none; margin-top: 0;">
<ul class="py-2" role="listbox">
<template x-for="(suggestion, index) in filteredSuggestions" :key="index">
<li>
<button
type="button"
@click="selectSuggestion(suggestion)"
@mouseenter="selectedIndex = index"
:class="selectedIndex === index ? 'bg-grey' : 'hover:bg-grey'"
class="w-full px-4 py-2 text-left text-secondary font-baeRegular transition-colors duration-150 line-clamp-2"
role="option"
:aria-selected="selectedIndex === index">
<span x-html="suggestion"></span>
</button>
</li>
</template>
</ul>
</div>
</div>
<div class="relative flex flex-row w-full gap-3 flex-nowrap md:w-auto grow-0 self-start">
<button class="w-auto min-w-0 !bg-white btn btn-outline-light btn-follow text-secondary" type="submit">Search</button>
</div>
</div>
</div> </form>
</div>
</div>
</div>
</div>
<div x-data="mobileMenu" class="block w-12 md:hidden" @close-menu.window="open = false">
<button class="menu-icon -outline-offset-2" :class="open ? 'open fill-secondary':'fill-primary'" x-bind="bindMenu">
<template x-if="!open">
<svg width="19" height="17" viewBox="0 0 19 17" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.170898 8.3125C0.170898 7.79473 0.609426 7.375 1.15038 7.375H17.9414C18.4824 7.375 18.9209 7.79473 18.9209 8.3125C18.9209 8.83027 18.4824 9.25 17.9414 9.25H1.15038C0.609426 9.25 0.170898 8.83027 0.170898 8.3125Z" fill="inherit" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.170898 1.4375C0.170898 0.919733 0.609426 0.5 1.15038 0.5H17.9414C18.4824 0.5 18.9209 0.919733 18.9209 1.4375C18.9209 1.95527 18.4824 2.375 17.9414 2.375H1.15038C0.609426 2.375 0.170898 1.95527 0.170898 1.4375Z" fill="inherit" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.170898 15.1875C0.170898 14.6697 0.609426 14.25 1.15038 14.25H17.9414C18.4824 14.25 18.9209 14.6697 18.9209 15.1875C18.9209 15.7053 18.4824 16.125 17.9414 16.125H1.15038C0.609426 16.125 0.170898 15.7053 0.170898 15.1875Z" fill="inherit" />
</svg>
</template>
<template x-if="open">
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.54645 17.0339C1.17427 17.4025 1.14913 18.0274 1.49029 18.4296C1.83146 18.8318 2.40974 18.859 2.78192 18.4903L10 11.3402L17.2181 18.4903C17.5903 18.859 18.1685 18.8318 18.5097 18.4296C18.8509 18.0274 18.8257 17.4025 18.4535 17.0339L11.3529 10L18.4535 2.96614C18.8257 2.59747 18.8509 1.97255 18.5097 1.57036C18.1685 1.16816 17.5903 1.14099 17.2181 1.50967L10 8.65984L2.78193 1.50967C2.40975 1.14099 1.83147 1.16816 1.4903 1.57036C1.14914 1.97255 1.17428 2.59747 1.54646 2.96614L8.64711 9.99999L1.54645 17.0339Z" fill="inherit" />
</svg>
</template>
</button>
<div
x-show="open"
x-cloak
class="menu-side"
x-ref="menu-side"
x-transition:enter="transition ease duration-300 transform"
x-transition:enter-start="opacity-0 translate-y-2"
x-transition:enter-end="opacity-100 translate-y-0"
x-transition:leave="transition ease duration-300 transform"
x-transition:leave-start="opacity-100 translate-y-0"
x-transition:leave-end="opacity-0 translate-y-4">
<ul class="hidden px-4 -mb-px md:flex flex-nowrap ">
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f">
<span class="navigation-link-text">Who we are</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/our-company" class="navigation-link-lv1">Who we are</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-company/our-strategy" class="navigation-link-lv1">Our strategy</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/leadership" class="navigation-link-lv1">Our leadership</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-businesses" class="navigation-link-lv1">Our businesses</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/locations" class="navigation-link-lv1">Our locations</a>
</div><div class="header-menu-links-lv1">
<a href="https://heritage.baesystems.com/" class="navigation-link-lv1">Our history</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/life-at-bae-systems" class="navigation-link-lv1">Our people and culture</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-2753926f-3be2-49be-b030-4bf3eefa9554" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554">
<span class="navigation-link-text">What we do</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do" class="navigation-link-lv1">What we do</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/air" class="navigation-link-lv1">Air</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/land" class="navigation-link-lv1">Land</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/sea" class="navigation-link-lv1">Sea</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/space" class="navigation-link-lv1">Space</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/cyber" class="navigation-link-lv1">Cyber</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/battlespace-integration" class="navigation-link-lv1">Battlespace Integration</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/digital-and-data-services" class="navigation-link-lv1">Digital and data services</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/electronics" class="navigation-link-lv1">Electronics</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/innovation" class="navigation-link-lv1">Innovation</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/operational-support" class="navigation-link-lv1">Operational support</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/weapon-systems" class="navigation-link-lv1">Weapon systems</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/all-capabilities" class="navigation-link-lv1">All capabilities</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-d750c21f-8d88-4274-9124-4fff0888fde2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2">
<span class="navigation-link-text">Newsroom</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom" class="navigation-link-lv1">Newsroom home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/news-releases" class="navigation-link-lv1">News releases</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/stories" class="navigation-link-lv1">Stories</a>
</div><div class="header-menu-links-lv1">
<a href="/en/insights" class="navigation-link-lv1">Insights</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/events" class="navigation-link-lv1">Events</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom/global-media-contacts" class="navigation-link-lv1">Contacts</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/image-library" class="navigation-link-lv1">Image library</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd">
<span class="navigation-link-text">Sustainability</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability" class="navigation-link-lv1">Sustainability home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/people-and-culture" class="navigation-link-lv1">Our people and culture</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/supporting-our-communities" class="navigation-link-lv1">Supporting our communities</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/climate-and-environment" class="navigation-link-lv1">Climate and environment</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/responsible-business" class="navigation-link-lv1">Responsible business</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/sustainability-reporting" class="navigation-link-lv1">Sustainability reporting</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0">
<span class="navigation-link-text">Investors</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/" class="navigation-link-lv1">Investors home</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/why-invest-in-bae-systems" class="navigation-link-lv1">Why invest in BAE Systems?</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-centre" class="navigation-link-lv1">2025 full year results</a>
</div><div class="header-menu-links-lv1">
<a href="https://annualreport.baesystems.com/2025" class="navigation-link-lv1">2025 annual report</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/capital-markets-days" class="navigation-link-lv1">Investor events</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-calendar" class="navigation-link-lv1">Financial calendar</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-reports-events-archive" class="navigation-link-lv1">Results, reports &amp; events archive</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-information" class="navigation-link-lv1">Financial information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/shareholder-information" class="navigation-link-lv1">Shareholder information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/corporate-governance" class="navigation-link-lv1">Corporate governance</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2">
<span class="navigation-link-text">Careers</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Australia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Canada</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Malaysia</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Poland</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Qatar</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Saudi Arabia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Singapore</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">United Kingdom</a>
</div><div class="header-menu-links-lv1">
<a rel="nofollow" target="_blank" href="https://jobs.baesystems.com/" class="navigation-link-lv1">United States</a>
</div></div>
</div>
</div>
</div> </li>
</ul>
<ul x-ref="submenu" class="menu-level1 md:hidden">
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f">
<span class="navigation-link-text">Who we are</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-4efe1321-76d4-4e7e-9f8f-8f6944c51b9f"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/our-company" class="navigation-link-lv1">Who we are</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-company/our-strategy" class="navigation-link-lv1">Our strategy</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/leadership" class="navigation-link-lv1">Our leadership</a>
</div><div class="header-menu-links-lv1">
<a href="/en/our-businesses" class="navigation-link-lv1">Our businesses</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/locations" class="navigation-link-lv1">Our locations</a>
</div><div class="header-menu-links-lv1">
<a href="https://heritage.baesystems.com/" class="navigation-link-lv1">Our history</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/life-at-bae-systems" class="navigation-link-lv1">Our people and culture</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-2753926f-3be2-49be-b030-4bf3eefa9554" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554">
<span class="navigation-link-text">What we do</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-2753926f-3be2-49be-b030-4bf3eefa9554"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do" class="navigation-link-lv1">What we do</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/air" class="navigation-link-lv1">Air</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/land" class="navigation-link-lv1">Land</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/sea" class="navigation-link-lv1">Sea</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/space" class="navigation-link-lv1">Space</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/cyber" class="navigation-link-lv1">Cyber</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/battlespace-integration" class="navigation-link-lv1">Battlespace Integration</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/digital-and-data-services" class="navigation-link-lv1">Digital and data services</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/electronics" class="navigation-link-lv1">Electronics</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/innovation" class="navigation-link-lv1">Innovation</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/operational-support" class="navigation-link-lv1">Operational support</a>
</div><div class="header-menu-links-lv1">
<a href="/en/what-we-do/weapon-systems" class="navigation-link-lv1">Weapon systems</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/what-we-do/all-capabilities" class="navigation-link-lv1">All capabilities</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-d750c21f-8d88-4274-9124-4fff0888fde2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2">
<span class="navigation-link-text">Newsroom</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-d750c21f-8d88-4274-9124-4fff0888fde2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom" class="navigation-link-lv1">Newsroom home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/news-releases" class="navigation-link-lv1">News releases</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/stories" class="navigation-link-lv1">Stories</a>
</div><div class="header-menu-links-lv1">
<a href="/en/insights" class="navigation-link-lv1">Insights</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/events" class="navigation-link-lv1">Events</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/newsroom/global-media-contacts" class="navigation-link-lv1">Contacts</a>
</div><div class="header-menu-links-lv1">
<a href="/en/newsroom/image-library" class="navigation-link-lv1">Image library</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd">
<span class="navigation-link-text">Sustainability</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-30e8f18b-2c1e-4674-a06c-b0cf4b28befd"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability" class="navigation-link-lv1">Sustainability home</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/people-and-culture" class="navigation-link-lv1">Our people and culture</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/supporting-our-communities" class="navigation-link-lv1">Supporting our communities</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/climate-and-environment" class="navigation-link-lv1">Climate and environment</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="/en/sustainability/responsible-business" class="navigation-link-lv1">Responsible business</a>
</div><div class="header-menu-links-lv1">
<a href="/en/sustainability/sustainability-reporting" class="navigation-link-lv1">Sustainability reporting</a>
</div></div>
<div class="col-span-3 md:space-y-4"></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0">
<span class="navigation-link-text">Investors</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b8bd4287-164c-424c-8fe6-9ec36f24a4e0"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/" class="navigation-link-lv1">Investors home</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/why-invest-in-bae-systems" class="navigation-link-lv1">Why invest in BAE Systems?</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-centre" class="navigation-link-lv1">2025 full year results</a>
</div><div class="header-menu-links-lv1">
<a href="https://annualreport.baesystems.com/2025" class="navigation-link-lv1">2025 annual report</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/capital-markets-days" class="navigation-link-lv1">Investor events</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-calendar" class="navigation-link-lv1">Financial calendar</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/results-reports-events-archive" class="navigation-link-lv1">Results, reports &amp; events archive</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/regulatory-news" class="navigation-link-lv1">Regulatory news</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/financial-information" class="navigation-link-lv1">Financial information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/shareholder-information" class="navigation-link-lv1">Shareholder information</a>
</div><div class="header-menu-links-lv1">
<a href="https://investors.baesystems.com/corporate-governance" class="navigation-link-lv1">Corporate governance</a>
</div></div>
</div>
</div>
</div> </li>
<li class="navigation-item w-full" x-data="{showChildren:false}" @click.away="showChildren=false" @keyup.escape="showChildren=false">
<button id="header-menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2" class="navigation-link" @click.prevent="showChildren=!showChildren" aria-controls="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2">
<span class="navigation-link-text">Careers</span>
<span
class="menu-chevron flex md:hidden"
:class="showChildren ? 'open':''"
role="button">
<svg
width="16"
height="17"
viewBox="0 0 16 17"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.2557 4.15668C14.9302 3.8052 14.4026 3.8052 14.0772 4.15668L7.99988 10.7202L1.92254 4.15668C1.5971 3.8052 1.0695 3.8052 0.744076 4.15668C0.418653 4.50816 0.418631 5.07797 0.744076 5.42943L7.41075 12.6294C7.567 12.7982 7.77897 12.8931 8 12.8931C8.22102 12.8931 8.43297 12.7982 8.58924 12.6294L15.2559 5.42942C15.5814 5.07794 15.5814 4.50813 15.2559 4.15668L15.2557 4.15668Z" fill="inherit" />
</svg>
</span>
</button>
<div
id="menu-links-b3813fb9-56b7-404b-a04e-12d9a52d9ab2"
class="navigation-submenu "
:class="showChildren ? 'open':''"
style="display: none;"
x-show="showChildren">
<div class="md:container md:px-4 md:pr-8">
<div class="md:grid md:grid-cols-12 gap-7 md:pt-8 md:pb-10">
<button
class="right-0 hidden absolute cursor-pointer text-grey md:block"
title="Close"
type="button"
x-ref="button"
@click.prevent="showChildren=!showChildren">
<span class="flex flex-col items-center justify-center block w-6 h-6 menu-close">
<svg width="16" height="16" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg" class="fill-primary">
<path
fill="inherit"
fill-rule="evenodd"
clip-rule="evenodd"
d="M0.773225 8.51693C0.587136 8.70127 0.574564 9.01372 0.745147 9.21482C0.915729 9.41592 1.20487 9.4295 1.39096 9.24516L5 5.67008L8.60904 9.24516C8.79513 9.4295 9.08427 9.41592 9.25485 9.21482C9.42544 9.01372 9.41286 8.70127 9.22677 8.51693L5.67644 5L9.22677 1.48307C9.41286 1.29873 9.42543 0.986276 9.25485 0.785179C9.08427 0.584082 8.79513 0.570497 8.60904 0.754836L5 4.32992L1.39096 0.754836C1.20487 0.570497 0.915734 0.584082 0.745152 0.785179C0.57457 0.986276 0.587141 1.29873 0.77323 1.48307L4.32356 5L0.773225 8.51693Z" />
</svg>
</span>
</button>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Australia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Canada</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Malaysia</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Poland</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Qatar</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Saudi Arabia</a>
</div><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">Singapore</a>
</div></div>
<div class="col-span-3 md:space-y-4"><div class="header-menu-links-lv1">
<a href="https://careers.baesystems.com/" class="navigation-link-lv1">United Kingdom</a>
</div><div class="header-menu-links-lv1">
<a rel="nofollow" target="_blank" href="https://jobs.baesystems.com/" class="navigation-link-lv1">United States</a>
</div></div>
</div>
</div>
</div> </li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</header>			<div class="relative mx-auto max-w-screen-2xl z-10" :class="$store.app.headerOpened ? 'blur-md' : ''">
<div class="w-full bg-white breadcrumbs">
	<div class="container">
		<ul class="container flex-row hidden py-3 md:flex" itemscope itemtype="https://schema.org/BreadcrumbList">
				<li class="inline-flex items-center breadcrumb-text" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
					<a href="/en/" class="text-sm leading-tight hover:underline" itemprop="item"><span itemprop="name">Global site</span></a>
					<meta itemprop="position" content="1" />
					<svg
						width="7"
						height="11"
						viewBox="0 0 7 11"
						fill="none"
						xmlns="http://www.w3.org/2000/svg"
						stroke="currentColor"
						fill="none"
						class="w-5 shrink-0">
						<path d="M1 10L5.66667 5.33333L1 0.666666" stroke="black" stroke-width="0.777778" stroke-linecap="round" stroke-linejoin="round"/>
					</svg>
				</li>
		</ul>
	</div>
</div>
<section id="banner-13e128a3-42b8-4139-9188-9263b54c94d1" class="banner bg-no-repeat bg-center bg-cover">
<div class="container py-6">
<h1 class="text-4xl break-words font-baeRegular md:text-[3.5rem] leading-[1.1]"><p class="mb-4 md:text-7xl text-[2.75rem]">Page not found</p>
</h1>
</div>
</section>				<main role="main" class="overflow-x-hidden main" id="page-content">
<div class="sr-only" x-data="{}" x-intersect="$dispatch('active-component', '6c48dcc8-a681-4c44-a514-7f5264b8a689')"></div>
<section id="container-6c48dcc8-a681-4c44-a514-7f5264b8a689" class=" min-h-full bg-transparent bg-opacity-100 bg-fixed bg-initial bg-cover mt-0 mb-0 rounded-none md:pt-0 pt-0 md:pr-0 pr-0 md:pb-0 pb-0 md:pl-0 pl-0 layout">
<div class="container ">
<div class="grid grid-cols-12 gap-0 items-start">
<div class="flex flex-col col-span-full">
<section id="freeText-c6d1c60e-f8a3-4ceb-a709-547d0bf402cb" class="freeText bg-grey-300 bg-opacity-100 backdrop-blur-sm bg-scroll bg-cover bg-initial rounded-md mt-10 mb-10 text-secondary fill-secondary h-full bg-image">
<div class="flex flex-col pt-10 pb-7 pl-9 pr-9">
<div class="w-full relative z-10 flex flex-wrap gap-7 md:flex-nowrap ">
<div class="flex flex-col gap-8 w-full ">
<div class="subheader">
<svg
width="10"
height="10"
viewBox="0 0 10 10"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="fill-primary shrink-0">
<rect width="10" height="10" rx="2" fill="inherit" />
</svg>
404 error
</div>
<div class="w-full px-1 -mx-1 overflow-x-auto overflow-y-hidden freeText__desc" x-data="richtextArea">
<p class="mb-4 md:text-2xl standfirst text-xl">The page you are looking for can&#39;t be found. It could be a broken link or a typo in the address bar.</p>
</div>
<div class="empty:hidden flex flex-wrap gap-3 items-center"></div>
</div>
</div>
</div>
</section>
<style>
#freeText-c6d1c60e-f8a3-4ceb-a709-547d0bf402cb {
--bg-free-text: ;
}
</style>
</div>
</div>
</div>
</section>
	<style>
		#container-6c48dcc8-a681-4c44-a514-7f5264b8a689 {
			--bg-free-text: ;
			
		}
	</style>
<div class="sr-only" x-data="{}" x-intersect="$dispatch('active-component', '377cc609-b0b2-42d0-8a4f-f116daea0b4b')"></div>
<section id="container-377cc609-b0b2-42d0-8a4f-f116daea0b4b" class=" min-h-full bg-white bg-opacity-100 bg-scroll bg-initial bg-cover mt-0 mb-0 rounded-none md:pt-0 pt-0 md:pr-0 pr-0 md:pb-12 pb-5 md:pl-0 pl-0 layout">
<div class="container ">
<div class="grid grid-cols-12 gap-0 items-start">
<div class="flex flex-col col-span-full">
<section
id="linkListDownload-d003d716-d5a7-4123-a5c6-9c4810b3dec8"
class="linkListDownload bg-no-repeat mt-0 mb-0 pt-0 pb-0 pl-0 pr-0 bg-center bg-cover">
<div class="container">
<div class="flex flex-col w-full gap-8">
</div>
<div class="standard-grid gap-0 relative overflow-hidden link-list border-0 horizontal flex flex-wrap justify-center gap-5 py-4 linkListDownload-grey">
<div id="link-download-41739dcb-5671-4c9e-89b6-405b88e3cd30" class=" bg-image relative after:content-[''] after:absolute after:inset-0 after: after:opacity-50">
<a href="/en/" class="z-10 btn btn-follow btn-outline-light">Back to homepage</a>
<style>
#link-download-41739dcb-5671-4c9e-89b6-405b88e3cd30 {
--bg-free-text: ;
}
</style>
</div><div id="link-download-13767bc1-15d9-4e38-a61b-23203996d7b2" class=" bg-image relative after:content-[''] after:absolute after:inset-0 after: after:opacity-50">
<a href="https://careers.baesystems.com/" class="z-10 btn btn-follow btn-outline-light">Join our team</a>
<style>
#link-download-13767bc1-15d9-4e38-a61b-23203996d7b2 {
--bg-free-text: ;
}
</style>
</div><div id="link-download-24963e40-dfdb-4b4f-9672-0aeaef54e67b" class=" bg-image relative after:content-[''] after:absolute after:inset-0 after: after:opacity-50">
<a href="/en/contact-us" class="z-10 btn btn-follow btn-outline-light">Contact us</a>
<style>
#link-download-24963e40-dfdb-4b4f-9672-0aeaef54e67b {
--bg-free-text: ;
}
</style>
</div> </div>
</div>
</section> </div>
</div>
</div>
</section>
	<style>
		#container-377cc609-b0b2-42d0-8a4f-f116daea0b4b {
			--bg-free-text: ;
			
		}
	</style>
<div id="mktoForms2BaseStyle" class="sr-only"><div id="mktoForms2ThemeStyle"></div></div> <div x-data="mktoForm" @mkto-form.window="loadGatedForm"> <div class="flex items-center justify-center min-h-screen flex-nowrap" style="display: none;" x-show="loading == 1"> <svg class="w-16 h-16 animate-spin text-primary" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle> <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> </svg> </div> <div class="container max-w-screen-md py-20 mx-auto" style="display: none;" x-show="loading == 2"> <div x-html="successMessage"></div> <div x-ref="formWrapper"></div> </div> </div>				</main>
			</div>
<footer id="footer" class="footer bg-no-repeat bg-grey bg-center bg-cover z-0" :class="$store.app.headerOpened ? 'blur-md' : ''">
<div class="container py-6 md:pt-15">
<div class="flex flex-col flex-wrap items-start justify-between -mx-5 sm:flex-row">
<div class="relative w-full px-5 md:flex-grow-0 md:flex-shrink-0 lg:w-1/5 md:w-2/5">
<a href="https://www.baesystems.com" class="block mb-0 md:mb-6">
<img
id="footer-logo"
src="/.resources/bae-systems/themes/bae-systems-theme/libs/img/logo-grey.svg"
alt=""
width="200"
height="31"
title="BAE Systems"
loading="lazy"
class="w-44" />
</a>
<div class="sharePriceArea">
<div class="sharePrice flex flex-col md:gap-2 gap-6 w-full py-6 md:py-0 border-b border-white md:border-none border-solid" x-data="footer">
<h2 class="flex flex-row items-center justify-between text-sm tracking-widest uppercase md:hidden font-baeBold flex-nowrap">
Share price
<button
:aria-expanded="open"
aria-controls="sharePrice-56419072-e7a8-4ddc-9f65-0b84a3150209"
aria-label="Toggle list visibility"
class="overflow-hidden w-4 h-4 after:block md:hidden"
:class="open?'':'rotate-180'"
@click="openList"
>
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-full h-full fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.62785 2.38181C7.46512 2.20606 7.20132 2.20606 7.03861 2.38181L3.99994 5.66358L0.961272 2.38181C0.79855 2.20606 0.534749 2.20606 0.372038 2.38181C0.209326 2.55755 0.209315 2.84245 0.372038 3.01818L3.70538 6.61819C3.7835 6.70257 3.88949 6.75 4 6.75C4.11051 6.75 4.21649 6.70256 4.29462 6.61819L7.62796 3.01818C7.79068 2.84244 7.79068 2.55753 7.62796 2.38181L7.62785 2.38181Z" fill="inherit"/>
</svg>
</button>
</h2>
<div id="sharePrice-56419072-e7a8-4ddc-9f65-0b84a3150209" :class="open?'hidden':''" class="md:block">
<figure class="inline-block px-4 py-1 m-0 mb-6 text-2xl text-center bg-white rounded-lg font-baeBold text-secondary min-w-44 sharePrice-figure">
1,974.65 <span class="text-lg">GBX</span>
</figure>
<a href="https://investors.baesystems.com/share-price-monitor" target="sharePrice" rel="nofollow" class="block mb-6 leading-none cursor-pointer font-baeBold hover:underline">Visit our investor centre</a>
<description class="block text-xs font-baeBold">
Data is from the London Stock Exchange and may be delayed by 15 minutes or more.
Share price data collected at <time datetime="Fri, 04 Sep 2026 10:21:00 GMT">10:21</time>.
</description>
</div>
</div>
</div>
<div class="hidden pt-6 md:block">
<ul class="flex justify-between w-full gap-4 flex-nowrap max-w-44">
<li>
<a class="block overflow-hidden size-6 facebook" href="https://www.facebook.com/BAESystemsplc" rel="nofollow" target="facebook" aria-label="BAE Facebook">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<g clip-path="url(#clip0_15_8518)">
<path d="M12 0C5.37264 0 0 5.37264 0 12C0 17.6275 3.87456 22.3498 9.10128 23.6467V15.6672H6.62688V12H9.10128V10.4198C9.10128 6.33552 10.9498 4.4424 14.9597 4.4424C15.72 4.4424 17.0318 4.59168 17.5685 4.74048V8.06448C17.2853 8.03472 16.7933 8.01984 16.1822 8.01984C14.2147 8.01984 13.4544 8.76528 13.4544 10.703V12H17.3741L16.7006 15.6672H13.4544V23.9122C19.3963 23.1946 24.0005 18.1354 24.0005 12C24 5.37264 18.6274 0 12 0Z" fill="inherit" />
</g>
<defs>
<clipPath id="clip0_15_8518">
<rect width="24" height="24" fill="inherit" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 twitter" href="https://twitter.com/baesystemsplc" rel="nofollow" target="x" aria-label="BAE X">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 16 16" fill="currentColor" class="fill-secondary w-full h-full">
<path d="M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z"/>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 linkedin" href="https://www.linkedin.com/company/bae-systems" rel="nofollow" target="linkedin" aria-label="BAE linkedin">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<g clip-path="url(#clip0_15_8520)">
<path d="M22.2234 0H1.77187C0.792187 0 0 0.773438 0 1.72969V22.2656C0 23.2219 0.792187 24 1.77187 24H22.2234C23.2031 24 24 23.2219 24 22.2703V1.72969C24 0.773438 23.2031 0 22.2234 0ZM7.12031 20.4516H3.55781V8.99531H7.12031V20.4516ZM5.33906 7.43438C4.19531 7.43438 3.27188 6.51094 3.27188 5.37187C3.27188 4.23281 4.19531 3.30937 5.33906 3.30937C6.47813 3.30937 7.40156 4.23281 7.40156 5.37187C7.40156 6.50625 6.47813 7.43438 5.33906 7.43438ZM20.4516 20.4516H16.8937V14.8828C16.8937 13.5562 16.8703 11.8453 15.0422 11.8453C13.1906 11.8453 12.9094 13.2937 12.9094 14.7891V20.4516H9.35625V8.99531H12.7687V10.5609H12.8156C13.2891 9.66094 14.4516 8.70938 16.1813 8.70938C19.7859 8.70938 20.4516 11.0813 20.4516 14.1656V20.4516Z" fill="inherit" />
</g>
<defs>
<clipPath id="clip0_15_8520">
<rect width="24" height="24" fill="inherit"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 instagram" href="https://www.instagram.com/baesystems" rel="nofollow" target="instagram" aria-label="BAE instagram">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<g clip-path="url(#clip0_15_8522)">
<path d="M12 2.16094C15.2063 2.16094 15.5859 2.175 16.8469 2.23125C18.0188 2.28281 18.6516 2.47969 19.0734 2.64375C19.6313 2.85938 20.0344 3.12188 20.4516 3.53906C20.8734 3.96094 21.1313 4.35938 21.3469 4.91719C21.5109 5.33906 21.7078 5.97656 21.7594 7.14375C21.8156 8.40937 21.8297 8.78906 21.8297 11.9906C21.8297 15.1969 21.8156 15.5766 21.7594 16.8375C21.7078 18.0094 21.5109 18.6422 21.3469 19.0641C21.1313 19.6219 20.8687 20.025 20.4516 20.4422C20.0297 20.8641 19.6313 21.1219 19.0734 21.3375C18.6516 21.5016 18.0141 21.6984 16.8469 21.75C15.5813 21.8062 15.2016 21.8203 12 21.8203C8.79375 21.8203 8.41406 21.8062 7.15313 21.75C5.98125 21.6984 5.34844 21.5016 4.92656 21.3375C4.36875 21.1219 3.96563 20.8594 3.54844 20.4422C3.12656 20.0203 2.86875 19.6219 2.65313 19.0641C2.48906 18.6422 2.29219 18.0047 2.24063 16.8375C2.18438 15.5719 2.17031 15.1922 2.17031 11.9906C2.17031 8.78438 2.18438 8.40469 2.24063 7.14375C2.29219 5.97187 2.48906 5.33906 2.65313 4.91719C2.86875 4.35938 3.13125 3.95625 3.54844 3.53906C3.97031 3.11719 4.36875 2.85938 4.92656 2.64375C5.34844 2.47969 5.98594 2.28281 7.15313 2.23125C8.41406 2.175 8.79375 2.16094 12 2.16094ZM12 0C8.74219 0 8.33438 0.0140625 7.05469 0.0703125C5.77969 0.126563 4.90313 0.332812 4.14375 0.628125C3.35156 0.9375 2.68125 1.34531 2.01563 2.01562C1.34531 2.68125 0.9375 3.35156 0.628125 4.13906C0.332812 4.90313 0.126563 5.775 0.0703125 7.05C0.0140625 8.33437 0 8.74219 0 12C0 15.2578 0.0140625 15.6656 0.0703125 16.9453C0.126563 18.2203 0.332812 19.0969 0.628125 19.8563C0.9375 20.6484 1.34531 21.3188 2.01563 21.9844C2.68125 22.65 3.35156 23.0625 4.13906 23.3672C4.90313 23.6625 5.775 23.8687 7.05 23.925C8.32969 23.9812 8.7375 23.9953 11.9953 23.9953C15.2531 23.9953 15.6609 23.9812 16.9406 23.925C18.2156 23.8687 19.0922 23.6625 19.8516 23.3672C20.6391 23.0625 21.3094 22.65 21.975 21.9844C22.6406 21.3188 23.0531 20.6484 23.3578 19.8609C23.6531 19.0969 23.8594 18.225 23.9156 16.95C23.9719 15.6703 23.9859 15.2625 23.9859 12.0047C23.9859 8.74688 23.9719 8.33906 23.9156 7.05938C23.8594 5.78438 23.6531 4.90781 23.3578 4.14844C23.0625 3.35156 22.6547 2.68125 21.9844 2.01562C21.3188 1.35 20.6484 0.9375 19.8609 0.632812C19.0969 0.3375 18.225 0.13125 16.95 0.075C15.6656 0.0140625 15.2578 0 12 0Z" fill="inherit"/>
<path d="M12 5.83594C8.59688 5.83594 5.83594 8.59688 5.83594 12C5.83594 15.4031 8.59688 18.1641 12 18.1641C15.4031 18.1641 18.1641 15.4031 18.1641 12C18.1641 8.59688 15.4031 5.83594 12 5.83594ZM12 15.9984C9.79219 15.9984 8.00156 14.2078 8.00156 12C8.00156 9.79219 9.79219 8.00156 12 8.00156C14.2078 8.00156 15.9984 9.79219 15.9984 12C15.9984 14.2078 14.2078 15.9984 12 15.9984Z" fill="inherit" />
<path d="M19.8469 5.59238C19.8469 6.38926 19.2 7.03145 18.4078 7.03145C17.6109 7.03145 16.9688 6.38457 16.9688 5.59238C16.9688 4.79551 17.6156 4.15332 18.4078 4.15332C19.2 4.15332 19.8469 4.8002 19.8469 5.59238Z" fill="inherit" />
</g>
<defs>
<clipPath id="clip0_15_8522">
<rect width="24" height="24" fill="inherit" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 youtube" href="https://www.youtube.com/BAESystemsplc" rel="nofollow" target="youtube" aria-label="BAE youtube">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<path d="M23.7609 7.1998C23.7609 7.1998 23.5266 5.54512 22.8047 4.81855C21.8906 3.8623 20.8688 3.85762 20.4 3.80137C17.0438 3.55762 12.0047 3.55762 12.0047 3.55762H11.9953C11.9953 3.55762 6.95625 3.55762 3.6 3.80137C3.13125 3.85762 2.10938 3.8623 1.19531 4.81855C0.473438 5.54512 0.24375 7.1998 0.24375 7.1998C0.24375 7.1998 0 9.14512 0 11.0857V12.9045C0 14.8451 0.239062 16.7904 0.239062 16.7904C0.239062 16.7904 0.473437 18.4451 1.19062 19.1717C2.10469 20.1279 3.30469 20.0951 3.83906 20.1982C5.76094 20.3811 12 20.4373 12 20.4373C12 20.4373 17.0438 20.4279 20.4 20.1889C20.8688 20.1326 21.8906 20.1279 22.8047 19.1717C23.5266 18.4451 23.7609 16.7904 23.7609 16.7904C23.7609 16.7904 24 14.8498 24 12.9045V11.0857C24 9.14512 23.7609 7.1998 23.7609 7.1998ZM9.52031 15.1123V8.36699L16.0031 11.7514L9.52031 15.1123Z" fill="inherit" />
</svg>
</a>
</li>
</ul>
</div>
</div>
<div class="w-full px-5 lg:w-4/5 md:w-3/5">
<div class="flex flex-col flex-wrap items-start justify-between -mx-5 lg:flex-nowrap md:flex-row">
<div class="footer__col relative flex-grow-0 flex-shrink-0 w-full px-5 lg:basis-1/4 md:basis-1/2 sm:flex-grow-0 sm:flex-shrink-0"><div id="footer-links-6f03c63d-fce3-4a20-9617-abdde6b44d63" class="footer-links flex flex-col md:gap-2 gap-5 w-full py-6 md:py-0 border-b border-white md:border-none border-solid md:mb-4 mb-0" x-data="footer">
<h2 class="footer-header font-baeBold tracking-widest text-sm uppercase flex flex-row flex-nowrap items-center justify-between">
<a href="/en/our-company" >Who we are</a>
<button
@click="openList"
:aria-expanded="open"
aria-controls="footer-list-6f03c63d-fce3-4a20-9617-abdde6b44d63"
aria-label="Toggle list visibility"
class="overflow-hidden flex grow h-4 after:block md:hidden !outline-none focus:outline-none"
:class="open?'justify-end':'rotate-180'"
>
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-auto h-full fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.62785 2.38181C7.46512 2.20606 7.20132 2.20606 7.03861 2.38181L3.99994 5.66358L0.961272 2.38181C0.79855 2.20606 0.534749 2.20606 0.372038 2.38181C0.209326 2.55755 0.209315 2.84245 0.372038 3.01818L3.70538 6.61819C3.7835 6.70257 3.88949 6.75 4 6.75C4.11051 6.75 4.21649 6.70256 4.29462 6.61819L7.62796 3.01818C7.79068 2.84244 7.79068 2.55753 7.62796 2.38181L7.62785 2.38181Z" fill="inherit"/>
</svg>
</button>
</h2>
<ul id="footer-list-6f03c63d-fce3-4a20-9617-abdde6b44d63" class="footerLink md:flex flex-col gap-2 flex" :class="open ? 'hidden' : ''">
<li>
<a id="link-e619a818-8002-42c4-9536-c0485adadcb5" href="/en/leadership" class="link">
Leadership
</a>
</li>
<li>
<a id="link-ec3ac17d-b43f-40ab-9a40-310799132403" href="/en/our-businesses" class="link">
Our businesses
</a>
</li>
<li>
<a id="link-6ac77bf6-e060-4545-ae31-38bf4a3bf3cc" href="/en/locations" class="link">
Locations
</a>
</li>
<li>
<a id="link-94ee5a6e-9761-4b4b-9a0f-c065b6862043" href="https://heritage.baesystems.com/" class="link">
History
</a>
</li>
<li>
<a id="link-dcdeaef8-1cc0-4b59-8347-f113cc33bc8b" href="https://pensions.baesystems.com/" class="link">
Pensions
</a>
</li>
<li>
<a id="link-f95319a4-baed-4792-ac0d-07fd6283a736" href="/en/sustainability" class="link">
Sustainability
</a>
</li>
<li>
<a id="link-baae9936-6971-4240-b3a3-8981d2920bfb" href="/en/suppliers" class="link">
Suppliers
</a>
</li>
</ul>
</div></div>
<div class="footer__col relative flex-grow-0 flex-shrink-0 w-full px-5 lg:basis-1/4 md:basis-1/2 sm:flex-grow-0 sm:flex-shrink-0"><div id="footer-links-794ab6ea-06d7-4ab9-8edd-0ff6bbf0e34a" class="footer-links flex flex-col md:gap-2 gap-5 w-full py-6 md:py-0 border-b border-white md:border-none border-solid md:mb-4 mb-0" x-data="footer">
<h2 class="footer-header font-baeBold tracking-widest text-sm uppercase flex flex-row flex-nowrap items-center justify-between">
<a href="/en/what-we-do" >What we do</a>
<button
@click="openList"
:aria-expanded="open"
aria-controls="footer-list-794ab6ea-06d7-4ab9-8edd-0ff6bbf0e34a"
aria-label="Toggle list visibility"
class="overflow-hidden flex grow h-4 after:block md:hidden !outline-none focus:outline-none"
:class="open?'justify-end':'rotate-180'"
>
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-auto h-full fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.62785 2.38181C7.46512 2.20606 7.20132 2.20606 7.03861 2.38181L3.99994 5.66358L0.961272 2.38181C0.79855 2.20606 0.534749 2.20606 0.372038 2.38181C0.209326 2.55755 0.209315 2.84245 0.372038 3.01818L3.70538 6.61819C3.7835 6.70257 3.88949 6.75 4 6.75C4.11051 6.75 4.21649 6.70256 4.29462 6.61819L7.62796 3.01818C7.79068 2.84244 7.79068 2.55753 7.62796 2.38181L7.62785 2.38181Z" fill="inherit"/>
</svg>
</button>
</h2>
<ul id="footer-list-794ab6ea-06d7-4ab9-8edd-0ff6bbf0e34a" class="footerLink md:flex flex-col gap-2 flex" :class="open ? 'hidden' : ''">
<li>
<a id="link-705329a7-363a-413c-a66d-b0273866b4c3" href="/en/what-we-do/air" class="link">
Air
</a>
</li>
<li>
<a id="link-dfce7186-3b6c-4d16-8946-1c5eee0e73f6" href="/en/what-we-do/land" class="link">
Land
</a>
</li>
<li>
<a id="link-f3088d26-85e3-4eb9-9c8f-0204643e5c8a" href="/en/what-we-do/sea" class="link">
Sea
</a>
</li>
<li>
<a id="link-a65e6d2e-4fe0-4f69-930f-dd958c71a2c5" href="/en/what-we-do/space" class="link">
Space
</a>
</li>
<li>
<a id="link-40eb7dcb-5e4b-4a90-b9fe-f22b2f27c09b" href="/en/what-we-do/cyber" class="link">
Cyber
</a>
</li>
<li>
<a id="link-4cdc0f0b-f516-4f36-8442-81dd171dc408" href="/en/what-we-do/digital-and-data-services" class="link">
Digital and data services
</a>
</li>
<li>
<a id="link-02af4a6f-9fba-4b8c-aba9-5bf543647ac2" href="/en/what-we-do/all-capabilities" class="link">
All capabilities
</a>
</li>
</ul>
</div></div>
<div class="footer__col relative flex-grow-0 flex-shrink-0 w-full px-5 lg:basis-1/4 md:basis-1/2 sm:flex-grow-0 sm:flex-shrink-0"><div id="footer-links-163be591-c4e8-4c2f-a100-335e3005b576" class="footer-links flex flex-col md:gap-2 gap-5 w-full py-6 md:py-0 border-b border-white md:border-none border-solid md:mb-4 mb-0" x-data="footer">
<h2 class="footer-header font-baeBold tracking-widest text-sm uppercase flex flex-row flex-nowrap items-center justify-between">
<a href="/en/newsroom" >Newsroom</a>
<button
@click="openList"
:aria-expanded="open"
aria-controls="footer-list-163be591-c4e8-4c2f-a100-335e3005b576"
aria-label="Toggle list visibility"
class="overflow-hidden flex grow h-4 after:block md:hidden !outline-none focus:outline-none"
:class="open?'justify-end':'rotate-180'"
>
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-auto h-full fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.62785 2.38181C7.46512 2.20606 7.20132 2.20606 7.03861 2.38181L3.99994 5.66358L0.961272 2.38181C0.79855 2.20606 0.534749 2.20606 0.372038 2.38181C0.209326 2.55755 0.209315 2.84245 0.372038 3.01818L3.70538 6.61819C3.7835 6.70257 3.88949 6.75 4 6.75C4.11051 6.75 4.21649 6.70256 4.29462 6.61819L7.62796 3.01818C7.79068 2.84244 7.79068 2.55753 7.62796 2.38181L7.62785 2.38181Z" fill="inherit"/>
</svg>
</button>
</h2>
<ul id="footer-list-163be591-c4e8-4c2f-a100-335e3005b576" class="footerLink md:flex flex-col gap-2 flex" :class="open ? 'hidden' : ''">
<li>
<a id="link-532339ea-39ea-4b65-b7fa-e74899372eac" href="/en/newsroom/news-releases" class="link">
News
</a>
</li>
<li>
<a id="link-b002b4eb-fee3-40b2-bd29-649737384148" href="/en/events" class="link">
Events
</a>
</li>
<li>
<a id="link-185f48fd-89ab-40fd-ae8a-8bfae27b1559" href="/en/newsroom/global-media-contacts" class="link">
Media contacts
</a>
</li>
</ul>
</div><div id="footer-links-57d5acdd-3b02-409b-a62e-857d2b82a9cf" class="footer-links flex flex-col md:gap-2 gap-5 w-full py-6 md:py-0 border-b border-white md:border-none border-solid md:mb-4 mb-0" x-data="footer">
<h2 class="footer-header font-baeBold tracking-widest text-sm uppercase flex flex-row flex-nowrap items-center justify-between">
<a href="https://investors.baesystems.com/" >investors</a>
<button
@click="openList"
:aria-expanded="open"
aria-controls="footer-list-57d5acdd-3b02-409b-a62e-857d2b82a9cf"
aria-label="Toggle list visibility"
class="overflow-hidden flex grow h-4 after:block md:hidden !outline-none focus:outline-none"
:class="open?'justify-end':'rotate-180'"
>
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-auto h-full fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.62785 2.38181C7.46512 2.20606 7.20132 2.20606 7.03861 2.38181L3.99994 5.66358L0.961272 2.38181C0.79855 2.20606 0.534749 2.20606 0.372038 2.38181C0.209326 2.55755 0.209315 2.84245 0.372038 3.01818L3.70538 6.61819C3.7835 6.70257 3.88949 6.75 4 6.75C4.11051 6.75 4.21649 6.70256 4.29462 6.61819L7.62796 3.01818C7.79068 2.84244 7.79068 2.55753 7.62796 2.38181L7.62785 2.38181Z" fill="inherit"/>
</svg>
</button>
</h2>
<ul id="footer-list-57d5acdd-3b02-409b-a62e-857d2b82a9cf" class="footerLink md:flex flex-col gap-2 flex" :class="open ? 'hidden' : ''">
<li>
<a id="link-77b67ab2-dbb9-4a2a-b525-d65f0357d4a4" href="https://investors.baesystems.com/" class="link">
Investors
</a>
</li>
</ul>
</div><div id="footer-links-f9490511-2066-4f71-b236-ca2e061c753d" class="footer-links flex flex-col md:gap-2 gap-5 w-full py-6 md:py-0 border-b border-white md:border-none border-solid md:mb-4 mb-0" x-data="footer">
<h2 class="footer-header font-baeBold tracking-widest text-sm uppercase flex flex-row flex-nowrap items-center justify-between">
<a href="/en/contact" >contact us</a>
</h2>
</div></div>
<div class="footer__col relative flex-grow-0 flex-shrink-0 w-full px-5 lg:basis-1/4 md:basis-1/2 sm:flex-grow-0 sm:flex-shrink-0"><div id="footer-links-620237cb-a1d2-4c9f-baa0-acb4204d8fc1" class="footer-links flex flex-col md:gap-2 gap-5 w-full py-6 md:py-0 border-b border-white md:border-none border-solid md:mb-4 mb-0" x-data="footer">
<h2 class="footer-header font-baeBold tracking-widest text-sm uppercase flex flex-row flex-nowrap items-center justify-between">
<a href="https://careers.baesystems.com/" >Careers</a>
<button
@click="openList"
:aria-expanded="open"
aria-controls="footer-list-620237cb-a1d2-4c9f-baa0-acb4204d8fc1"
aria-label="Toggle list visibility"
class="overflow-hidden flex grow h-4 after:block md:hidden !outline-none focus:outline-none"
:class="open?'justify-end':'rotate-180'"
>
<svg width="8" height="9" viewBox="0 0 8 9" fill="none" xmlns="http://www.w3.org/2000/svg" class="w-auto h-full fill-inherit">
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.62785 2.38181C7.46512 2.20606 7.20132 2.20606 7.03861 2.38181L3.99994 5.66358L0.961272 2.38181C0.79855 2.20606 0.534749 2.20606 0.372038 2.38181C0.209326 2.55755 0.209315 2.84245 0.372038 3.01818L3.70538 6.61819C3.7835 6.70257 3.88949 6.75 4 6.75C4.11051 6.75 4.21649 6.70256 4.29462 6.61819L7.62796 3.01818C7.79068 2.84244 7.79068 2.55753 7.62796 2.38181L7.62785 2.38181Z" fill="inherit"/>
</svg>
</button>
</h2>
<ul id="footer-list-620237cb-a1d2-4c9f-baa0-acb4204d8fc1" class="footerLink md:flex flex-col gap-2 flex" :class="open ? 'hidden' : ''">
<li>
<a id="link-6791450c-d8ea-48cc-90cc-9c9c8fccd549" href="https://careers.baesystems.com/life-at-bae-systems" class="link">
Life at BAE Systems
</a>
</li>
<li>
<a id="link-6a486952-8f4f-4434-ba7d-e63ff00bf592" href="https://careers.baesystems.com/areas-of-work" class="link">
Experienced professionals
</a>
</li>
<li>
<a id="link-dab4c85c-a571-493c-9ba2-98e977b201c2" href="https://careers.baesystems.com/students-graduates-and-career-changers" class="link">
Students, graduates and career changers
</a>
</li>
<li>
<a id="link-84ea68b5-975f-4cee-82e9-df173dea8fc1" href="https://careers.baesystems.com/join-us" class="link">
Join us
</a>
</li>
<li>
<a id="link-6d3222b5-e584-4795-8cbb-9c563bbe0ad2" rel="nofollow" target="_blank" href="https://jobsearch.baesystems.com/" class="link">
Search and apply
</a>
</li>
</ul>
</div></div>
</div>
</div>
<div class="block w-full px-5 pt-6 md:hidden">
<ul class="flex justify-between w-full gap-4 flex-nowrap max-w-44">
<li>
<a class="block overflow-hidden size-6 facebook" href="https://www.facebook.com/BAESystemsplc" rel="nofollow" target="facebook" aria-label="BAE Facebook">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<g clip-path="url(#clip0_15_8518)">
<path d="M12 0C5.37264 0 0 5.37264 0 12C0 17.6275 3.87456 22.3498 9.10128 23.6467V15.6672H6.62688V12H9.10128V10.4198C9.10128 6.33552 10.9498 4.4424 14.9597 4.4424C15.72 4.4424 17.0318 4.59168 17.5685 4.74048V8.06448C17.2853 8.03472 16.7933 8.01984 16.1822 8.01984C14.2147 8.01984 13.4544 8.76528 13.4544 10.703V12H17.3741L16.7006 15.6672H13.4544V23.9122C19.3963 23.1946 24.0005 18.1354 24.0005 12C24 5.37264 18.6274 0 12 0Z" fill="inherit" />
</g>
<defs>
<clipPath id="clip0_15_8518">
<rect width="24" height="24" fill="inherit" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 twitter" href="https://twitter.com/baesystemsplc" rel="nofollow" target="x" aria-label="BAE X">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 16 16" fill="currentColor" class="fill-secondary w-full h-full">
<path d="M12.6.75h2.454l-5.36 6.142L16 15.25h-4.937l-3.867-5.07-4.425 5.07H.316l5.733-6.57L0 .75h5.063l3.495 4.633L12.601.75Zm-.86 13.028h1.36L4.323 2.145H2.865z"/>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 linkedin" href="https://www.linkedin.com/company/bae-systems" rel="nofollow" target="linkedin" aria-label="BAE linkedin">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<g clip-path="url(#clip0_15_8520)">
<path d="M22.2234 0H1.77187C0.792187 0 0 0.773438 0 1.72969V22.2656C0 23.2219 0.792187 24 1.77187 24H22.2234C23.2031 24 24 23.2219 24 22.2703V1.72969C24 0.773438 23.2031 0 22.2234 0ZM7.12031 20.4516H3.55781V8.99531H7.12031V20.4516ZM5.33906 7.43438C4.19531 7.43438 3.27188 6.51094 3.27188 5.37187C3.27188 4.23281 4.19531 3.30937 5.33906 3.30937C6.47813 3.30937 7.40156 4.23281 7.40156 5.37187C7.40156 6.50625 6.47813 7.43438 5.33906 7.43438ZM20.4516 20.4516H16.8937V14.8828C16.8937 13.5562 16.8703 11.8453 15.0422 11.8453C13.1906 11.8453 12.9094 13.2937 12.9094 14.7891V20.4516H9.35625V8.99531H12.7687V10.5609H12.8156C13.2891 9.66094 14.4516 8.70938 16.1813 8.70938C19.7859 8.70938 20.4516 11.0813 20.4516 14.1656V20.4516Z" fill="inherit" />
</g>
<defs>
<clipPath id="clip0_15_8520">
<rect width="24" height="24" fill="inherit"/>
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 instagram" href="https://www.instagram.com/baesystems" rel="nofollow" target="instagram" aria-label="BAE instagram">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<g clip-path="url(#clip0_15_8522)">
<path d="M12 2.16094C15.2063 2.16094 15.5859 2.175 16.8469 2.23125C18.0188 2.28281 18.6516 2.47969 19.0734 2.64375C19.6313 2.85938 20.0344 3.12188 20.4516 3.53906C20.8734 3.96094 21.1313 4.35938 21.3469 4.91719C21.5109 5.33906 21.7078 5.97656 21.7594 7.14375C21.8156 8.40937 21.8297 8.78906 21.8297 11.9906C21.8297 15.1969 21.8156 15.5766 21.7594 16.8375C21.7078 18.0094 21.5109 18.6422 21.3469 19.0641C21.1313 19.6219 20.8687 20.025 20.4516 20.4422C20.0297 20.8641 19.6313 21.1219 19.0734 21.3375C18.6516 21.5016 18.0141 21.6984 16.8469 21.75C15.5813 21.8062 15.2016 21.8203 12 21.8203C8.79375 21.8203 8.41406 21.8062 7.15313 21.75C5.98125 21.6984 5.34844 21.5016 4.92656 21.3375C4.36875 21.1219 3.96563 20.8594 3.54844 20.4422C3.12656 20.0203 2.86875 19.6219 2.65313 19.0641C2.48906 18.6422 2.29219 18.0047 2.24063 16.8375C2.18438 15.5719 2.17031 15.1922 2.17031 11.9906C2.17031 8.78438 2.18438 8.40469 2.24063 7.14375C2.29219 5.97187 2.48906 5.33906 2.65313 4.91719C2.86875 4.35938 3.13125 3.95625 3.54844 3.53906C3.97031 3.11719 4.36875 2.85938 4.92656 2.64375C5.34844 2.47969 5.98594 2.28281 7.15313 2.23125C8.41406 2.175 8.79375 2.16094 12 2.16094ZM12 0C8.74219 0 8.33438 0.0140625 7.05469 0.0703125C5.77969 0.126563 4.90313 0.332812 4.14375 0.628125C3.35156 0.9375 2.68125 1.34531 2.01563 2.01562C1.34531 2.68125 0.9375 3.35156 0.628125 4.13906C0.332812 4.90313 0.126563 5.775 0.0703125 7.05C0.0140625 8.33437 0 8.74219 0 12C0 15.2578 0.0140625 15.6656 0.0703125 16.9453C0.126563 18.2203 0.332812 19.0969 0.628125 19.8563C0.9375 20.6484 1.34531 21.3188 2.01563 21.9844C2.68125 22.65 3.35156 23.0625 4.13906 23.3672C4.90313 23.6625 5.775 23.8687 7.05 23.925C8.32969 23.9812 8.7375 23.9953 11.9953 23.9953C15.2531 23.9953 15.6609 23.9812 16.9406 23.925C18.2156 23.8687 19.0922 23.6625 19.8516 23.3672C20.6391 23.0625 21.3094 22.65 21.975 21.9844C22.6406 21.3188 23.0531 20.6484 23.3578 19.8609C23.6531 19.0969 23.8594 18.225 23.9156 16.95C23.9719 15.6703 23.9859 15.2625 23.9859 12.0047C23.9859 8.74688 23.9719 8.33906 23.9156 7.05938C23.8594 5.78438 23.6531 4.90781 23.3578 4.14844C23.0625 3.35156 22.6547 2.68125 21.9844 2.01562C21.3188 1.35 20.6484 0.9375 19.8609 0.632812C19.0969 0.3375 18.225 0.13125 16.95 0.075C15.6656 0.0140625 15.2578 0 12 0Z" fill="inherit"/>
<path d="M12 5.83594C8.59688 5.83594 5.83594 8.59688 5.83594 12C5.83594 15.4031 8.59688 18.1641 12 18.1641C15.4031 18.1641 18.1641 15.4031 18.1641 12C18.1641 8.59688 15.4031 5.83594 12 5.83594ZM12 15.9984C9.79219 15.9984 8.00156 14.2078 8.00156 12C8.00156 9.79219 9.79219 8.00156 12 8.00156C14.2078 8.00156 15.9984 9.79219 15.9984 12C15.9984 14.2078 14.2078 15.9984 12 15.9984Z" fill="inherit" />
<path d="M19.8469 5.59238C19.8469 6.38926 19.2 7.03145 18.4078 7.03145C17.6109 7.03145 16.9688 6.38457 16.9688 5.59238C16.9688 4.79551 17.6156 4.15332 18.4078 4.15332C19.2 4.15332 19.8469 4.8002 19.8469 5.59238Z" fill="inherit" />
</g>
<defs>
<clipPath id="clip0_15_8522">
<rect width="24" height="24" fill="inherit" />
</clipPath>
</defs>
</svg>
</a>
</li>
<li>
<a class="block overflow-hidden size-6 youtube" href="https://www.youtube.com/BAESystemsplc" rel="nofollow" target="youtube" aria-label="BAE youtube">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" class="fill-secondary w-full h-full">
<path d="M23.7609 7.1998C23.7609 7.1998 23.5266 5.54512 22.8047 4.81855C21.8906 3.8623 20.8688 3.85762 20.4 3.80137C17.0438 3.55762 12.0047 3.55762 12.0047 3.55762H11.9953C11.9953 3.55762 6.95625 3.55762 3.6 3.80137C3.13125 3.85762 2.10938 3.8623 1.19531 4.81855C0.473438 5.54512 0.24375 7.1998 0.24375 7.1998C0.24375 7.1998 0 9.14512 0 11.0857V12.9045C0 14.8451 0.239062 16.7904 0.239062 16.7904C0.239062 16.7904 0.473437 18.4451 1.19062 19.1717C2.10469 20.1279 3.30469 20.0951 3.83906 20.1982C5.76094 20.3811 12 20.4373 12 20.4373C12 20.4373 17.0438 20.4279 20.4 20.1889C20.8688 20.1326 21.8906 20.1279 22.8047 19.1717C23.5266 18.4451 23.7609 16.7904 23.7609 16.7904C23.7609 16.7904 24 14.8498 24 12.9045V11.0857C24 9.14512 23.7609 7.1998 23.7609 7.1998ZM9.52031 15.1123V8.36699L16.0031 11.7514L9.52031 15.1123Z" fill="inherit" />
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
<div id="page-footer">
<div class="container">
<div class="flex flex-col flex-wrap justify-between md:flex-row md:items-center">
<ul class="fotterBottom flex flex-wrap flex-col md:flex-row items-start px-0 md:py-3 m-0 md:gap-4 gap-0" >
<li>
<a id="footerBottomLink-23cff4ed-1118-4470-b73c-1f8e5d355802" rel="nofollow" target="_blank" href="https://accessibility.baesystems.com/mcmw" class="footerBottomLink tracking-wide block text-sm font-baeBold leading-6 hover:underline">
Accessibility
</a>
</li>
<li> <a href="#" @click.prevent="window.OneTrust.ToggleInfoDisplay()" class="footerBottomLink tracking-wide block text-sm font-baeBold leading-6 hover:underline">Manage my choices</a>
</li>
<li>
<a id="footerBottomLink-7428516c-0c6b-4f7c-a1bc-bb81efd613ea" href="/en/privacy-notice" class="footerBottomLink tracking-wide block text-sm font-baeBold leading-6 hover:underline">
Privacy notice
</a>
</li>
<li>
<a id="footerBottomLink-0fea62e8-42da-407f-92e6-600dcd70d993" href="/en/cookie-policy" class="footerBottomLink tracking-wide block text-sm font-baeBold leading-6 hover:underline">
Cookie policy
</a>
</li>
<li>
<a id="footerBottomLink-9db2d8e2-314d-4a3a-847e-be197d450b40" href="/en/terms-and-conditions" class="footerBottomLink tracking-wide block text-sm font-baeBold leading-6 hover:underline">
Terms &amp; conditions
</a>
</li>
<li>
<a id="footerBottomLink-c2fc7728-25c9-45a6-aef3-98f588db08a4" href="/en/vulnerability-disclosure" class="footerBottomLink tracking-wide block text-sm font-baeBold leading-6 hover:underline">
Report a vulnerability
</a>
</li>
<li> <style>
hr.my-8.border-t.border-solid.border-grey.border-px,
div.flex.flex-col.items-start.gap-4 {
display: none !important;
}
</style>
</li>
</ul>
<p class="copyright">Copyright © 2026 BAE Systems. All rights reserved</p>
</div>
</div>
</div>
</footer>		</div>
					<script type="module" defer src="/en/.resources/bae-systems/themes/bae-systems-theme/bundle-mktoForm-js.js"></script>
					<script type="module" defer src="/en/.resources/bae-systems/themes/bae-systems-theme/bundle-tiw-js.js"></script>
	<script type="text/javascript" src="/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3&ns=2&cb=101018214" async></script></body>
</html>