:root {
  --navy-950: #050d19;
  --navy-900: #07162b;
  --navy-850: #0a1c35;
  --navy-800: #0d2748;
  --navy-700: #163a68;
  --blue-600: #24558d;
  --gold-500: #f4b83f;
  --gold-450: #ffc857;
  --gold-600: #d99516;
  --amber-500: #f39a13;
  --disclaimer-red: #9f3038;
  --disclaimer-red-bright: #d85a63;
  --sand-100: #fbf4e6;
  --sand-200: #eadcbf;
  --ink-900: #101722;
  --ink-700: #364255;
  --line: rgba(22, 58, 104, 0.14);
  --white: #ffffff;
  --max-width: 1180px;
  --header-height: 88px;
  --shadow-lg: 0 30px 80px rgba(5, 13, 25, 0.28);
  --font-sans: "Roboto", "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
  --font-display: "Montserrat", "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
  --font-brand: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--sand-100);
  color: var(--ink-900);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-180%);
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 13, 25, 0.94);
  border-bottom-color: rgba(244, 184, 63, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.brand-badge {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.brand-wordmark strong {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.025em;
}

.brand-wordmark small {
  margin-top: 5px;
  color: var(--gold-450);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-portal-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-500);
  transition: right 160ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--white);
}

.site-nav > a:not(.nav-portal-link):hover::after,
.site-nav > a:not(.nav-portal-link):focus-visible::after {
  right: 0;
}

.nav-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid rgba(244, 184, 63, 0.55);
  border-radius: 999px;
  color: var(--gold-450) !important;
  background: rgba(244, 184, 63, 0.08);
}

.nav-portal-link:hover,
.nav-portal-link:focus-visible {
  background: var(--gold-500);
  color: var(--navy-950) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(940px, 100vh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 40%, rgba(36, 85, 141, 0.34), transparent 27%),
    radial-gradient(circle at 20% 15%, rgba(244, 184, 63, 0.08), transparent 31%),
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 50%, #0a1d35 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(5, 13, 25, 0.96), transparent);
  pointer-events: none;
}

.community-alert-section {
  position: relative;
  z-index: 8;
  padding: calc(var(--header-height) + 16px) 20px 16px;
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
}

.community-alert {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 13px;
  padding: 12px 16px;
  border: 1px solid rgba(216, 90, 99, 0.72);
  border-left: 4px solid var(--disclaimer-red-bright);
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(88, 19, 29, 0.72), rgba(52, 10, 17, 0.48));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.community-alert-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff6f7;
  background: var(--disclaimer-red);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.community-alert-copy strong {
  display: block;
  color: #fff7f7;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-alert-copy p {
  margin: 4px 0 0;
  color: rgba(255, 241, 242, 0.84);
  font-size: 13px;
  line-height: 1.5;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 72%, rgba(244, 184, 63, 0.055) 72% 72.2%, transparent 72.2%);
}

.hero-road {
  position: absolute;
  width: 560px;
  height: 920px;
  right: -170px;
  bottom: -390px;
  transform: rotate(38deg) skewY(-8deg);
  border-left: 1px solid rgba(244, 184, 63, 0.12);
  border-right: 1px solid rgba(244, 184, 63, 0.12);
  opacity: 0.8;
}

.hero-road span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, rgba(244, 184, 63, 0.36) 0 44px, transparent 44px 82px);
}

.hero-road span:first-child {
  left: 38%;
}

.hero-road span:last-child {
  right: 38%;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding-top: 92px;
  padding-bottom: 128px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 58px;
}

.official-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-450);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.official-kicker span {
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}

.hero-state {
  margin: 34px 0 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-brand);
  font-size: clamp(58px, 6.5vw, 98px);
  font-style: normal;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: none;
}

.hero h1 span {
  color: var(--gold-500);
  font-style: normal;
}

.hero h1 .hero-title-light {
  color: #ffffff;
}

.hero h1 .hero-title-gold {
  color: var(--gold-500);
}

.hero-lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(244, 184, 63, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-450);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(244, 184, 63, 0.55);
  background: rgba(244, 184, 63, 0.08);
  color: var(--gold-450);
}

.hero-values {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 35px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-values i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

.hero-emblem {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.emblem-halo {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 184, 63, 0.24);
  box-shadow:
    0 0 0 34px rgba(244, 184, 63, 0.025),
    0 0 0 68px rgba(244, 184, 63, 0.018),
    0 0 90px rgba(244, 184, 63, 0.12);
}

.hero-emblem img {
  position: relative;
  z-index: 2;
  width: 92%;
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.44));
  transform: rotate(1deg);
}

.emblem-caption {
  position: absolute;
  right: 1%;
  bottom: 12%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-left: 2px solid var(--gold-500);
  background: rgba(5, 13, 25, 0.72);
  backdrop-filter: blur(8px);
}

.emblem-caption span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.emblem-caption strong {
  color: var(--gold-450);
  font-family: var(--font-display);
  font-size: 24px;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--gold-500), transparent);
}

.identity-strip {
  position: relative;
  z-index: 8;
  background: var(--gold-500);
  color: var(--navy-950);
  overflow: hidden;
}

.identity-track {
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.identity-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(5, 13, 25, 0.36);
}

.section {
  padding: 116px 0;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker.light {
  color: var(--gold-450);
}

.section-heading h2,
.careers-copy h2,
.member-access-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0 0 8px;
  color: var(--ink-700);
  font-size: 18px;
  line-height: 1.8;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-card {
  position: relative;
  min-height: 300px;
  padding: 46px 38px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.mission-card:last-child {
  border-right: 0;
}

.mission-number {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(22, 58, 104, 0.055);
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
}

.mission-card h3 {
  position: relative;
  margin: 55px 0 16px;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 31px;
}

.mission-card p {
  position: relative;
  margin: 0;
  color: var(--ink-700);
  line-height: 1.75;
}

.operations-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(36, 85, 141, 0.28), transparent 30%),
    linear-gradient(130deg, var(--navy-950), var(--navy-900) 68%, #0a1d36);
}

.operations-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.operations-section .section-inner {
  position: relative;
  z-index: 2;
}

.operations-heading {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 60px 90px;
  align-items: end;
}

.operations-heading .section-kicker,
.operations-heading h2 {
  grid-column: 1;
}

.operations-heading h2 {
  grid-row: 2;
}

.operations-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.8;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.division-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  min-height: 225px;
  padding: 36px;
  background: rgba(7, 22, 43, 0.92);
  transition: background 180ms ease, transform 180ms ease;
}

.division-card:hover {
  z-index: 2;
  background: rgba(13, 39, 72, 0.96);
}

.division-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 184, 63, 0.3);
  color: var(--gold-450);
  font-family: var(--font-display);
  font-size: 22px;
  background: rgba(244, 184, 63, 0.06);
}

.card-eyebrow {
  color: var(--gold-450);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.division-card h3 {
  margin: 9px 0 12px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.1;
}

.division-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.72;
}

.operations-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.operations-footer > div {
  display: flex;
  flex-direction: column;
}

.mini-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.operations-footer strong {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 26px;
}

.operations-footer strong span {
  color: var(--gold-500);
}

.operations-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
}

.careers-section {
  background: #f7eedc;
}

.careers-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 100px;
}

.careers-badge-wrap {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.careers-ring {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 58, 104, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(22, 58, 104, 0.025), 0 0 0 72px rgba(22, 58, 104, 0.016);
}

.careers-badge {
  position: relative;
  width: min(92%, 480px);
  filter: drop-shadow(0 30px 36px rgba(7, 22, 43, 0.2));
}

.careers-copy h2 {
  color: var(--navy-900);
}

.careers-lead {
  margin: 28px 0 14px;
  color: var(--navy-800);
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.55;
}

.careers-copy > p:not(.careers-lead) {
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.8;
}

.career-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.career-principles span {
  padding: 9px 12px;
  border: 1px solid rgba(22, 58, 104, 0.14);
  border-radius: 999px;
  color: var(--navy-700);
  background: rgba(255, 255, 255, 0.44);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.member-access-section {
  padding: 86px 0;
  background: var(--navy-800);
  color: var(--white);
}

.member-access-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  align-items: center;
  gap: 70px;
}

.member-access-inner h2 {
  font-size: clamp(40px, 4.6vw, 64px);
}

.member-access-inner p {
  max-width: 740px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.button-gold {
  white-space: nowrap;
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-450);
}



.site-footer {
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(244, 184, 63, 0.12);
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 58px 0 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-badge {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.footer-brand span {
  margin-top: 4px;
  color: var(--gold-450);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 42px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-450);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .brand-wordmark strong {
    font-size: 16px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero {
    min-height: 820px;
    height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.78fr;
    gap: 30px;
    padding-top: 82px;
    padding-bottom: 120px;
  }

  .hero h1 {
    font-size: clamp(56px, 8vw, 82px);
  }

  .hero-emblem {
    width: 100%;
  }

  .split-heading,
  .operations-heading,
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .operations-heading .section-kicker,
  .operations-heading h2,
  .operations-heading p {
    grid-column: auto;
    grid-row: auto;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mission-card:last-child {
    border-bottom: 0;
  }

  .mission-card h3 {
    margin-top: 28px;
  }

  .careers-badge-wrap {
    min-height: 420px;
    order: 2;
  }

  .careers-copy {
    order: 1;
  }

  .member-access-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .member-access-inner .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand-badge {
    width: 46px;
    height: 46px;
  }

  .brand-wordmark strong {
    font-size: 14px;
  }

  .brand-wordmark small {
    font-size: 8px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .nav-toggle.is-open span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 100px 32px 44px;
    background: rgba(5, 13, 25, 0.985);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav > a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0;
    text-transform: none;
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-portal-link {
    margin-top: 24px;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    letter-spacing: 0.09em !important;
    text-transform: uppercase !important;
  }

  .hero {
    min-height: 980px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 76px;
    padding-bottom: 110px;
  }

  .hero-copy {
    position: relative;
    z-index: 4;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 70px);
    line-height: 1.06;
    letter-spacing: -0.012em;
  }

  .hero-emblem {
    width: min(92vw, 450px);
    margin: -15px auto 0;
    justify-self: center;
  }

  .emblem-caption {
    right: 4%;
    bottom: 7%;
  }

  .scroll-cue {
    display: none;
  }

  .identity-track {
    min-height: 64px;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .identity-track::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding: 86px 0;
  }

  .section-inner,
  .member-access-inner,
  .footer-inner {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section-heading h2,
  .careers-copy h2,
  .member-access-inner h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .split-heading {
    gap: 28px;
  }

  .split-heading > p,
  .operations-heading p {
    font-size: 16px;
  }

  .mission-grid {
    margin-top: 46px;
  }

  .mission-card {
    padding: 34px 26px;
  }

  .division-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .division-card {
    grid-template-columns: 58px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 28px 22px;
  }

  .division-icon {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }

  .division-card h3 {
    font-size: 26px;
  }

  .operations-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .careers-badge-wrap {
    min-height: 330px;
  }

  .careers-lead {
    font-size: 21px;
  }

  .member-access-section {
    padding: 72px 0;
  }


  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-wordmark small {
    display: none;
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 68px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-values {
    gap: 9px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


@media (max-width: 760px) {
  .community-alert-section {
    padding: calc(var(--header-height) + 12px) 14px 14px;
  }

  .community-alert {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 11px 12px;
  }

  .community-alert-icon {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .community-alert-copy p {
    font-size: 12px;
    line-height: 1.45;
  }
}
