:root {
  color-scheme: light;
  --page: #f7f9fc;
  --paper: #ffffff;
  --ink: #07162f;
  --muted: #5e6b7d;
  --faint: #8994a3;
  --line: rgba(8, 27, 56, .14);
  --accent: #1768f2;
  --accent-2: #6945d8;
  --dark: #07172f;
  --header-height: 86px;
  --max: 1160px;
  --display: Bahnschrift, "Arial Narrow", "Source Han Sans CN", "Microsoft YaHei", sans-serif;
  --heading: "Source Han Sans CN", "Noto Sans CJK SC", "Microsoft YaHei", Bahnschrift, sans-serif;
  --body: "Source Han Sans CN", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--page);
  line-break: strict;
  word-break: normal;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
button, input { font: inherit; }
a { color: inherit; }
p, li, dd, address { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

.headline-line { display: block; }
.keep-together { white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: white;
  background: rgba(4, 13, 29, .96);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: clamp(174px, 18vw, 212px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.brand {
  width: clamp(174px, 18vw, 212px);
  height: 80px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-wordmark b {
  color: currentColor;
  font: 720 clamp(20px, 1.65vw, 26px)/1.1 var(--heading);
  letter-spacing: .06em;
}

.brand-wordmark small {
  margin-top: 7px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font: 650 8px/1 var(--display);
  letter-spacing: .075em;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(10px, 1.6vw, 28px);
  font-size: clamp(12px, 1vw, 14px);
}

.desktop-nav a {
  position: relative;
  padding: 32px 0 29px;
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active { color: white; }

.desktop-nav a:hover::after,
.desktop-nav a.active::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.skin-switch {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.skin-switch span { color: var(--accent); font-size: 15px; }
.skin-switch b { font-size: 11px; font-weight: 650; letter-spacing: .04em; }

.theme-picker { position: relative; }

.theme-picker summary {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
  white-space: nowrap;
}

.theme-picker summary::-webkit-details-marker { display: none; }
.theme-picker summary::after { content: "＋"; color: var(--accent); font-size: 13px; }
.theme-picker[open] summary::after { content: "−"; }
.theme-picker summary span { color: color-mix(in srgb, currentColor 64%, transparent); font: 650 9px/1 var(--display); letter-spacing: .08em; }
.theme-picker summary b { font-size: 11px; font-weight: 700; }

.theme-picker-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 310px;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  box-shadow: 0 22px 60px rgba(4, 14, 31, .18);
  backdrop-filter: blur(18px);
}

.theme-picker-menu > p { margin: 2px 8px 12px; color: var(--faint); font: 650 9px/1 var(--display); letter-spacing: .14em; }
.theme-picker-menu a {
  min-height: 70px;
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 10px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}
.theme-picker-menu a:hover,
.theme-picker-menu a.active { background: color-mix(in srgb, var(--accent) 8%, transparent); }
.theme-picker-menu a > span { grid-row: 1 / span 2; color: var(--accent); font: 700 12px/1 var(--display); }
.theme-picker-menu a > b { font-size: 14px; }
.theme-picker-menu a > small { color: var(--muted); font-size: 10px; line-height: 1.4; }

.prototype-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .68);
  font: 600 10px/1 var(--display);
  letter-spacing: .12em;
}

.menu-button {
  display: none;
  border: 0;
  color: white;
  background: none;
}

.mobile-nav { display: none; }

.section {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 126px 0;
}

.section-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font: 650 12px/1.2 var(--display);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.section-head {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: 90px;
  align-items: end;
}

.section-head.compact { margin-bottom: 50px; }

.section-head h2,
.flight-copy h2,
.brand-story-copy h2,
.careers-cta h2,
.content-system h2,
.about-intro h2,
.leadership h2,
.recruitment-empty h2 {
  margin: 0;
  font: 720 clamp(38px, 4.6vw, 72px)/1.08 var(--heading);
  letter-spacing: -.018em;
  text-wrap: balance;
}

.section-head > p {
  max-inline-size: 34em;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

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

.button.primary {
  border-color: var(--accent);
  color: white;
  background: var(--accent);
  box-shadow: 0 16px 40px color-mix(in srgb, var(--accent) 24%, transparent);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.button.ghost {
  border-color: rgba(255, 255, 255, .45);
  color: white;
  background: rgba(5, 16, 36, .14);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.text-link span { transition: transform .22s ease; }
.text-link:hover span { transform: translate(4px, -4px); }

.media-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  padding: 7px 9px;
  color: white;
  background: rgba(3, 13, 29, .72);
  font-size: 10px;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2, .75, .2, 1), transform .8s cubic-bezier(.2, .75, .2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.capability-section { padding-bottom: 90px; }

.capability-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.capability-steps::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 25%;
  height: 3px;
  background: var(--accent);
}

.capability-step {
  min-height: 310px;
  padding: 30px 38px 40px 0;
  border-right: 1px solid var(--line);
}

.capability-step + .capability-step { padding-left: 38px; }
.capability-step:last-child { border-right: 0; }

.capability-step > span {
  color: var(--accent);
  font: 700 13px/1 var(--display);
}

.capability-step > p {
  margin: 56px 0 8px;
  color: var(--faint);
  font-size: 13px;
}

.capability-step h3 {
  margin: 0 0 20px;
  font: 720 clamp(26px, 2.4vw, 38px)/1.16 var(--heading);
  letter-spacing: -.012em;
}

.capability-step small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-section {
  width: 100%;
  max-width: none;
  padding: 120px max(32px, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--dark);
}

.product-section .section-kicker,
.product-section .text-link { color: color-mix(in srgb, var(--accent) 78%, white); }

.product-list { border-top: 1px solid rgba(255, 255, 255, .22); }

.product-row {
  position: relative;
  min-height: 112px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  grid-template-columns: 56px minmax(118px, .75fr) minmax(0, 1.4fr) minmax(104px, .65fr) 30px;
  gap: clamp(10px, 1.5vw, 22px);
  align-items: center;
  color: white;
  text-decoration: none;
  transition: padding .25s ease, background .25s ease;
}

.product-row:hover {
  padding: 0 18px;
  background: rgba(255, 255, 255, .055);
}

.product-index {
  color: var(--accent);
  font: 700 13px/1 var(--display);
}

.product-name {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.product-name b {
  font: 720 30px/1 var(--heading);
  letter-spacing: -.01em;
}

.product-name small {
  color: rgba(255, 255, 255, .42);
  font: 600 10px/1 var(--display);
  letter-spacing: .12em;
}

.product-type {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.product-range {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-range b { font: 650 22px/1 var(--display); }
.product-range small { color: rgba(255, 255, 255, .45); }
.product-arrow { font-size: 22px; }

.flight-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  background: var(--paper);
}

.flight-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.flight-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flight-copy {
  padding: 110px clamp(42px, 6vw, 110px);
  align-self: center;
}

.flight-copy > p:not(.section-kicker) {
  margin: 30px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.flight-copy ul {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.flight-copy li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.flight-copy li span {
  width: 46px;
  display: inline-block;
  color: var(--accent);
  font: 650 11px/1 var(--display);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.brand-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--dark);
}

.brand-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 12, 27, .32));
}

.brand-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-copy > p:not(.section-kicker) {
  max-inline-size: 34em;
  margin: 32px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.95;
}

.leadership-note {
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 88px 1fr;
  align-items: center;
  gap: 18px;
}

.leadership-note span,
.leadership-note small { color: var(--muted); }
.leadership-note b { font: 720 28px/1 var(--display); }

.media-section { padding-top: 90px; }

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: 38px;
}

.featured-media { min-width: 0; }

.media-cover,
.news-card-cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #cfd8e4;
}

.media-cover img,
.media-cover video,
.news-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.featured-media:hover .media-cover img,
.news-card:hover .news-card-cover img { transform: scale(1.025); }

.media-cover video + .media-label,
.product-video-shell video + .media-label,
.mission-clip video + .media-label {
  top: 16px;
  bottom: auto;
}

.media-cover button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.featured-media > p,
.news-item > p,
.news-card > p:first-of-type {
  margin: 22px 0 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--faint);
  font-size: 12px;
}

.featured-media > p span,
.news-item > p span,
.news-card > p:first-of-type span { color: var(--accent); }

.featured-media h3 {
  margin: 0 0 20px;
  font: 680 clamp(24px, 2.4vw, 38px)/1.45 var(--heading);
  letter-spacing: -.01em;
}

.featured-media > a,
.news-card > a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.news-stack {
  display: grid;
  grid-template-rows: 1fr 1fr auto;
  border-top: 1px solid var(--line);
}

.news-item,
.news-placeholder {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.news-item h3,
.news-placeholder h3 {
  margin: 0 0 14px;
  font: 660 22px/1.5 var(--heading);
}

.news-item small,
.news-placeholder p { color: var(--muted); }

.news-placeholder {
  padding: 24px;
  background: color-mix(in srgb, var(--accent) 6%, white);
}

.news-placeholder span {
  color: var(--accent);
  font: 650 11px/1 var(--display);
}

.news-placeholder p { margin: 8px 0 0; line-height: 1.6; }

.careers-cta {
  width: 100%;
  padding: 110px max(32px, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--accent);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 110px;
  align-items: end;
}

.careers-cta .section-kicker { color: rgba(255, 255, 255, .66); }

.careers-cta > div:last-child > p {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.8;
}

.careers-cta .button.primary {
  border-color: white;
  color: var(--accent);
  background: white;
  box-shadow: none;
}

.careers-cta small {
  margin-top: 16px;
  display: block;
  color: rgba(255, 255, 255, .64);
}

.site-footer {
  padding: 70px max(32px, calc((100vw - var(--max)) / 2)) 34px;
  color: white;
  background: #030914;
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 70px;
}

.footer-brand .brand-wordmark b { font-size: 28px; }
.footer-brand .brand-wordmark small { font-size: 9px; }

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  gap: 13px;
}

.footer-nav a {
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  font-size: 14px;
}

.footer-contact a {
  color: white;
  font: 650 28px/1 var(--display);
  text-decoration: none;
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
}

.concept-switcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  padding: 6px;
  color: white;
  background: rgba(3, 10, 22, .9);
  box-shadow: 0 16px 42px rgba(4, 15, 34, .25);
  backdrop-filter: blur(12px);
  display: flex;
  gap: 4px;
}

.concept-switcher a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  font: 650 11px/1 var(--display);
}

.concept-switcher .switcher-home { width: 46px; }

.concept-switcher a:hover,
.concept-switcher a.active {
  color: white;
  background: var(--accent);
}

.video-modal[hidden] { display: none; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 7vw;
  background: rgba(1, 6, 14, .9);
  backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
}

.video-close {
  position: absolute;
  right: 32px;
  top: 22px;
  border: 0;
  color: white;
  background: none;
  font-size: 36px;
  cursor: pointer;
}

.video-stage {
  position: relative;
  width: min(var(--max), 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: white;
  background: #08172d;
}

.video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 12, 26, .9), rgba(3, 12, 26, .2));
}

.video-stage img { width: 100%; height: 100%; object-fit: cover; }

.video-stage > div {
  position: absolute;
  left: 7%;
  top: 50%;
  z-index: 2;
  width: min(520px, 72%);
  transform: translateY(-50%);
}

.video-stage h2 {
  margin: 0 0 18px;
  font: 700 clamp(30px, 4vw, 60px)/1.08 var(--display);
}

.video-stage p:not(.section-kicker) {
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
}

/* Inner pages */
.inner-page { min-height: 70vh; }

.page-hero {
  position: relative;
  min-height: 520px;
  padding: 130px max(32px, calc((100vw - var(--max)) / 2)) 100px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(100deg, rgba(5, 19, 43, .98), rgba(8, 30, 66, .88)),
    url("hero-stratosphere-v2.webp") center / cover;
}

.page-hero > div { position: relative; z-index: 2; max-width: 900px; }

.page-hero h1 {
  margin: 0 0 30px;
  font: 720 clamp(48px, 7vw, 104px)/1.04 var(--heading);
  letter-spacing: -.018em;
}

.page-hero > div > p:last-child {
  max-inline-size: 34em;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.9;
}

.page-code {
  position: absolute;
  right: max(32px, calc((100vw - var(--max)) / 2));
  bottom: -35px;
  color: rgba(255, 255, 255, .08);
  font: 800 220px/.8 var(--display);
  letter-spacing: -.08em;
}

.product-explorer {
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}

.product-family-tabs {
  position: relative;
  z-index: 4;
  width: min(100% - 64px, var(--max));
  margin: -42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: white;
  box-shadow: 0 24px 70px rgba(6, 20, 44, .13);
}

.product-family-tabs button {
  position: relative;
  min-width: 0;
  min-height: 168px;
  padding: 30px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: white;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease;
}

.product-family-tabs button:last-child { border-right: 0; }

.product-family-tabs button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 4px;
  background: var(--accent);
  transition: right .35s cubic-bezier(.2, .75, .2, 1);
}

.product-family-tabs button:hover,
.product-family-tabs button.active {
  color: var(--ink);
  background: #f7f9fc;
}

.product-family-tabs button.active::after { right: 0; }

.product-family-tabs button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 42%, transparent);
  outline-offset: -3px;
}

.product-family-tabs button > span:first-child {
  padding-top: 4px;
  color: var(--accent);
  font: 700 11px/1 var(--display);
}

.product-family-tabs button > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-family-tabs small {
  margin-bottom: 14px;
  color: var(--faint);
  font: 650 9px/1 var(--display);
  letter-spacing: .12em;
}

.product-family-tabs b {
  font: 710 clamp(21px, 1.8vw, 28px)/1.1 var(--heading);
}

.product-family-tabs em {
  margin-top: 13px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.product-family-panel[hidden] { display: none; }

.product-family-panel.panel-entering {
  animation: product-panel-enter .48s cubic-bezier(.2, .75, .2, 1) both;
}

@keyframes product-panel-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.product-family-panel-light {
  color: var(--ink);
  background: #f3f6fa;
}

.product-family-panel-dark {
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(68, 112, 234, .2), transparent 24%),
    linear-gradient(150deg, #06142c, #0b2042 62%, #07172f);
}

.product-panel-inner {
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 126px 0 118px;
}

.product-panel-head {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
}

.product-panel-head h2 {
  margin: 0;
  font: 720 clamp(44px, 5vw, 76px)/1.06 var(--heading);
  letter-spacing: -.018em;
}

.product-panel-head > p {
  max-width: 36em;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.product-family-panel-dark .product-panel-head > p {
  color: rgba(255, 255, 255, .64);
}

.power-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.power-product {
  min-width: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.power-product-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(49, 88, 214, .16), transparent 28%),
    #e8edf4;
}

.power-product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.power-product:first-child .power-product-media img {
  padding: 5%;
  object-fit: contain;
}

.power-product-heading {
  margin: 26px 0 18px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}

.power-product-heading > span {
  padding-top: 8px;
  color: var(--accent);
  font: 700 11px/1 var(--display);
}

.power-product-heading small {
  color: var(--faint);
  font: 650 9px/1 var(--display);
  letter-spacing: .12em;
}

.power-product-heading h2 {
  margin: 6px 0 0;
  font: 730 clamp(38px, 3.6vw, 56px)/1 var(--heading);
}

.power-product-type {
  min-height: 44px;
  margin: 0 0 18px;
  font-weight: 700;
  line-height: 1.6;
}

.power-product > p:not(.power-product-type) {
  min-height: 122px;
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.power-product dl {
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
}

.power-product dl > div {
  min-height: 60px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
}

.power-product dt { color: var(--faint); font-size: 12px; }
.power-product dd { margin: 0; font-weight: 700; line-height: 1.5; }

.product-data-note {
  margin: 28px 0 0;
  color: var(--faint);
  font-size: 11px;
  text-align: right;
}

.product-media-story {
  padding: 84px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.product-panel-head + .product-media-story { padding-top: 0; border-top: 0; }
.product-media-story:last-child { padding-bottom: 0; }

.product-media-story > header {
  margin-bottom: 42px;
  display: grid;
  grid-template-columns: 48px 150px minmax(260px, 1fr) minmax(280px, .8fr);
  gap: 28px;
  align-items: end;
}

.product-media-story > header > span {
  color: #7198ff;
  font: 700 12px/1 var(--display);
}

.product-media-story > header > div p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .46);
  font: 650 10px/1 var(--display);
  letter-spacing: .14em;
}

.product-media-story > header h2 {
  margin: 0;
  font: 720 clamp(38px, 4vw, 64px)/1 var(--heading);
}

.product-media-story > header h3 {
  max-width: 12em;
  margin: 0;
  font: 690 clamp(25px, 2.5vw, 38px)/1.34 var(--heading);
  text-wrap: balance;
}

.product-media-story > header > p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.85;
}

.product-story-facts {
  margin: 0 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  display: grid;
  grid-template-columns: .7fr 1fr 1.3fr;
}

.product-story-facts > div {
  min-height: 98px;
  padding: 22px 24px 22px 0;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.product-story-facts > div + div { padding-left: 24px; }
.product-story-facts > div:last-child { border-right: 0; }

.product-story-facts dt {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
}

.product-story-facts dd {
  margin: 0;
  color: white;
  font-weight: 700;
  line-height: 1.55;
}

.product-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.product-video-shell {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #020914;
}

.product-video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-video-options {
  padding: 26px 0 26px 28px;
  display: flex;
  flex-direction: column;
}

.product-video-options > p {
  margin: 0 0 auto;
  color: rgba(255, 255, 255, .42);
  font: 650 10px/1 var(--display);
  letter-spacing: .12em;
}

.product-video-options button {
  min-height: 58px;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .58);
  background: transparent;
  display: flex;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.product-video-options button span {
  color: rgba(255, 255, 255, .34);
  font: 650 10px/1 var(--display);
}

.product-video-options button.active,
.product-video-options button:hover { color: white; }

.product-video-options button.active span { color: #7198ff; }

.product-still-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-still-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a1830;
}

.product-still-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.product-still-grid figure:hover img { transform: scale(1.025); }

.product-still-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 8px;
  color: rgba(255, 255, 255, .82);
  background: rgba(2, 9, 20, .66);
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.service-blueprint ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.service-blueprint li {
  min-height: 240px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.service-blueprint li:last-child { border-right: 0; }
.service-blueprint li span { color: var(--accent); font: 650 11px/1 var(--display); }
.service-blueprint li b { margin: 70px 0 12px; display: block; font-size: 18px; }
.service-blueprint li p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.brand-fixed-marks {
  margin: 0 0 76px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: .7fr 1fr 1.55fr;
  gap: 28px;
  align-items: center;
}

.brand-fixed-marks p,
.brand-fixed-marks small {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-fixed-marks p {
  font-size: 13px;
}

.brand-fixed-marks p span {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font: 650 9px/1 var(--display);
  letter-spacing: .12em;
}

.brand-fixed-marks strong {
  font: 720 clamp(25px, 2.6vw, 40px)/1.15 var(--heading);
}

.brand-fixed-marks strong:nth-of-type(2) {
  font: 700 clamp(16px, 1.65vw, 23px)/1.3 var(--display);
  letter-spacing: .035em;
}

.brand-fixed-marks small {
  grid-column: 2 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.news-card-featured { grid-column: 1 / -1; }
.news-card-featured .news-card-cover { aspect-ratio: 2.2 / 1; }

.news-card h2 {
  margin: 0 0 18px;
  font: 680 clamp(25px, 2.6vw, 40px)/1.42 var(--heading);
  letter-spacing: -.01em;
}

.news-card > p:not(:first-of-type) {
  color: var(--muted);
  line-height: 1.8;
}

.mission-media-section { padding-bottom: 40px; }

.mission-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 30px;
}

.mission-clip {
  min-width: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.mission-clip-featured {
  grid-row: span 2;
}

.mission-clip > div {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #08172d;
}

.mission-clip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-clip > p {
  margin: 18px 0 8px;
  color: var(--faint);
  font-size: 12px;
}

.mission-clip h3 {
  margin: 0 0 14px;
  font: 680 clamp(20px, 2vw, 30px)/1.45 var(--heading);
}

.mission-clip a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.content-system {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
}

.content-system ul { margin: 0; padding: 0; list-style: none; }

.content-system li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
}

.content-system li span { color: var(--muted); line-height: 1.7; }

.talent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.talent-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.talent-card > span { color: var(--accent); font: 650 12px/1 var(--display); }
.talent-card h2 { margin: 60px 0 12px; font: 700 42px/1.08 var(--heading); }
.talent-card > p { min-height: 50px; color: var(--muted); line-height: 1.7; }

.talent-toggle {
  width: 100%;
  margin-top: 34px;
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  background: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.talent-toggle i { font-style: normal; }

.talent-detail {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  opacity: 0;
  transition: max-height .35s ease, opacity .35s ease;
}

.talent-card.open .talent-detail { max-height: 140px; opacity: 1; }
.talent-detail p { margin: 24px 0 8px; line-height: 1.7; }
.talent-detail small { color: var(--faint); }

.recruitment-empty {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.recruitment-empty > div:last-child p { color: var(--muted); line-height: 1.8; }

.about-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.about-intro > div:last-child > p:last-child {
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.8;
}

.leadership {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.leadership-team {
  border-top: 1px solid var(--line);
}

.leadership-team-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: end;
}

.leadership-team-head h2 {
  margin: 6px 0 0;
  font-size: clamp(42px, 5vw, 72px);
}

.leadership-team-head > p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.85;
}

.team-editorial {
  border-top: 1px solid var(--line);
}

.team-editorial-stage {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.team-editorial-media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #e9ecef;
}

.team-editorial-portrait {
  position: absolute;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  transition: opacity .42s ease, transform .52s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .52s;
}

.team-editorial-portrait.active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.team-editorial-portrait img,
.team-selector-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--team-focal, center 20%);
}

.team-editorial-details {
  position: relative;
  min-width: 0;
  min-height: 600px;
}

.team-editorial-detail {
  position: absolute;
  inset: 0;
  padding: clamp(52px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity .32s ease, transform .42s cubic-bezier(.22, .61, .36, 1), visibility 0s linear .42s;
}

.team-editorial-detail.active {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: .08s;
}

.team-editorial-detail h3 {
  margin: 0 0 16px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1;
}

.team-editorial-detail h4 {
  margin: 0 0 30px;
  max-width: 620px;
  color: var(--accent);
  font: 600 clamp(20px, 2.2vw, 28px)/1.45 var(--heading);
}

.team-editorial-detail > p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.team-selector-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.team-selector {
  min-width: 0;
  padding: 0;
  display: block;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.team-selector:last-child { border-right: 0; }

.team-selector::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}

.team-selector.active::before { transform: scaleX(1); }

.team-selector-portrait {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e9ecef;
}

.team-selector-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--surface) 14%, transparent);
  opacity: 1;
  transition: opacity .25s ease;
}

.team-selector:hover .team-selector-portrait::after,
.team-selector:focus-visible .team-selector-portrait::after,
.team-selector.active .team-selector-portrait::after { opacity: 0; }

.team-selector-copy {
  min-height: 118px;
  padding: 20px 16px 22px;
  display: block;
}

.team-selector-copy b {
  display: block;
  margin-bottom: 8px;
  font: 700 clamp(20px, 1.8vw, 26px)/1.2 var(--heading);
}

.team-selector-copy small {
  display: block;
  color: var(--muted);
  font: 500 12px/1.55 var(--heading);
}

.team-selector.active .team-selector-copy small { color: var(--accent); }

.team-selector:focus-visible {
  z-index: 3;
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.leadership-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

.leadership-card .leadership-portrait {
  aspect-ratio: 4 / 3;
}

.leadership-copy {
  padding: 32px 34px 38px;
}

.leadership-copy h2 {
  margin: 8px 0 10px;
  font-size: clamp(42px, 4.2vw, 62px);
}

.leadership-copy h3 {
  margin: 0 0 18px;
  color: var(--accent);
  font: 600 22px/1.5 var(--heading);
}

.leadership-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.leadership-portrait {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 88%, #07162f), #07162f);
}

.leadership-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leadership-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 13, 29, .34), transparent 24%, transparent 68%, rgba(3, 13, 29, .4));
  pointer-events: none;
}

.leadership-portrait .leadership-role {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  padding: 7px 9px;
  background: rgba(3, 13, 29, .48);
  font-size: 12px;
  letter-spacing: .12em;
}

.leadership-portrait .media-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
}

.client-portrait {
  isolation: isolate;
  background: #e9ecef;
}

.client-portrait::before {
  content: none;
}

.leadership-portrait.client-portrait img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  filter: none;
}

.technical-lead-portrait::after {
  content: none;
}

.leadership h3 {
  color: var(--accent);
  font: 600 22px/1.55 var(--heading);
}

.leadership > div:last-child > p:last-child { color: var(--muted); line-height: 1.85; }

.timeline ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }

.timeline li {
  min-height: 92px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr 160px;
  gap: 24px;
  align-items: center;
}

.timeline time { color: var(--accent); font: 650 18px/1 var(--display); }
.timeline a { color: var(--accent); text-decoration: none; }
.timeline span { color: var(--faint); }

.milestone-media {
  border-top: 1px solid var(--line);
}

.milestone-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.milestone-media-grid article {
  min-width: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.milestone-media-grid article > div {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe6ee;
}

.milestone-media-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.milestone-media-grid article > p {
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: baseline;
}

.milestone-media-grid time {
  color: var(--accent);
  font: 650 12px/1 var(--display);
}

.milestone-media-grid b {
  font-size: 16px;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 100px;
}

.contact-primary > p {
  margin: 0 0 10px;
  color: var(--faint);
  font-size: 13px;
}

.contact-primary > a {
  margin-bottom: 70px;
  display: inline-block;
  color: var(--accent);
  font: 720 clamp(42px, 5.5vw, 76px)/1 var(--display);
  text-decoration: none;
  letter-spacing: -.04em;
}

.contact-primary address {
  font-style: normal;
  font: 650 clamp(28px, 3.2vw, 46px)/1.4 var(--display);
}

.contact-secondary { border-top: 1px solid var(--line); }

.contact-secondary > div {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}

.contact-secondary span { color: var(--faint); }
.contact-secondary b { font-weight: 650; }

.contact-closing {
  min-height: 420px;
  padding: 80px max(32px, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--accent);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.contact-closing span { font: 720 clamp(50px, 7vw, 106px)/1 var(--heading); letter-spacing: -.018em; }
.contact-closing b { font: 650 13px/1 var(--display); letter-spacing: .18em; }

@media (max-width: 1024px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { justify-self: end; }
  .menu-button { display: block; }
  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 24px max(24px, calc((100vw - var(--max)) / 2)) 34px;
    background: rgba(4, 13, 29, .98);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .mobile-nav.open { display: grid; }
  .mobile-nav a { color: white; text-decoration: none; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .capability-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-steps::before { width: 50%; }
  .capability-step:nth-child(2) { border-right: 0; }
  .capability-step:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .capability-step:nth-child(3) { padding-left: 0; }
  .brand-fixed-marks {
    grid-template-columns: 1fr 1.4fr;
  }
  .brand-fixed-marks p,
  .brand-fixed-marks small { grid-column: 1 / -1; }
  .media-grid,
  .brand-story,
  .content-system,
  .about-intro,
  .leadership,
  .contact-layout { gap: 52px; }
  .leadership-team-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-editorial-stage {
    min-height: 520px;
    grid-template-columns: minmax(290px, .8fr) minmax(0, 1.2fr);
  }
  .team-editorial-media,
  .team-editorial-details { min-height: 520px; }
  .team-editorial-detail { padding: 42px; }
  .team-selector-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .team-selector:nth-child(3n) { border-right: 0; }
  .team-selector:nth-child(n + 4) { border-top: 1px solid var(--line); }
  .team-selector-copy { min-height: 106px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-card {
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
  }
  .leadership-card .leadership-portrait { aspect-ratio: 1; }
  .product-row {
    grid-template-columns: 48px minmax(0, 1.25fr) minmax(120px, .75fr) 28px;
    padding-block: 18px;
  }
  .milestone-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .milestone-media-grid article:last-child { grid-column: 1 / -1; }
  .milestone-media-grid article:last-child > div { aspect-ratio: 2 / 1; }
  .product-type { grid-column: 2; }
  .product-range { grid-column: 3; grid-row: 1 / span 2; }
  .product-arrow { grid-column: 4; grid-row: 1 / span 2; }
  .flight-section { grid-template-columns: 1fr; }
  .flight-image { min-height: 540px; }
  .brand-story { grid-template-columns: .9fr 1.1fr; }
  .media-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .product-family-tabs {
    width: min(100% - 48px, var(--max));
    margin-top: -34px;
  }
  .product-family-tabs button {
    min-height: 136px;
    padding: 24px 20px;
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }
  .product-family-tabs em { display: none; }
  .product-panel-inner { width: min(100% - 48px, var(--max)); padding: 104px 0 94px; }
  .product-panel-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .power-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .power-product:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    column-gap: 28px;
  }
  .power-product:last-child .power-product-media {
    grid-column: 1;
    grid-row: 1 / span 5;
    min-height: 390px;
    aspect-ratio: auto;
  }
  .power-product:last-child .power-product-heading,
  .power-product:last-child .power-product-type,
  .power-product:last-child > p,
  .power-product:last-child dl { grid-column: 2; }
  .product-media-story > header {
    grid-template-columns: 42px 120px minmax(0, 1fr);
  }
  .product-media-story > header > p {
    grid-column: 3;
  }
  .product-still-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mission-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mission-clip-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .service-blueprint ol { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-blueprint li { border-bottom: 1px solid var(--line); }
}

@media (max-width: 767px) {
  :root { --header-height: 72px; }
  .site-header { min-height: 72px; padding: 0 18px; grid-template-columns: 1fr auto; }
  .brand { width: 174px; height: 66px; }
  .mobile-nav {
    padding: 24px 20px 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .prototype-badge { display: none; }
  .skin-switch { min-width: 40px; padding-inline: 10px; justify-content: center; }
  .skin-switch b { display: none; }
  .theme-picker summary { width: 42px; padding: 0; justify-content: center; }
  .theme-picker summary span { font-size: 10px; }
  .theme-picker summary b,
  .theme-picker summary::after { display: none; }
  .theme-picker-menu { position: fixed; top: 72px; right: 12px; left: 12px; width: auto; }
  .section { width: calc(100% - 36px); padding: 80px 0; }
  .section-head { margin-bottom: 42px; grid-template-columns: 1fr; gap: 24px; }
  .section-head h2,
  .flight-copy h2,
  .brand-story-copy h2,
  .careers-cta h2,
  .content-system h2,
  .about-intro h2,
  .leadership h2,
  .recruitment-empty h2 { font-size: 42px; }
  .capability-steps { grid-template-columns: 1fr; }
  .capability-steps::before { width: 100%; }
  .capability-step, .capability-step + .capability-step {
    min-height: 230px;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .capability-step > p { margin-top: 36px; }
  .brand-fixed-marks {
    margin-bottom: 54px;
    padding: 24px 0;
    display: block;
  }
  .brand-fixed-marks strong {
    display: block;
    margin-top: 22px;
  }
  .brand-fixed-marks small {
    display: block;
    margin-top: 24px;
    padding-top: 18px;
  }
  .product-section { padding: 78px 18px; }
  .product-family-tabs {
    width: calc(100% - 36px);
    margin-top: -26px;
  }
  .product-family-tabs button {
    min-height: 108px;
    padding: 18px 10px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .product-family-tabs button > span:first-child,
  .product-family-tabs em { display: none; }
  .product-family-tabs small { margin-bottom: 10px; font-size: 8px; }
  .product-family-tabs b { font-size: 18px; }
  .product-panel-inner { width: calc(100% - 36px); padding: 78px 0 74px; }
  .product-panel-head { margin-bottom: 50px; }
  .product-panel-head h2 { font-size: 42px; }
  .power-product-grid { grid-template-columns: 1fr; gap: 54px; }
  .power-product:last-child {
    grid-column: auto;
    display: block;
  }
  .power-product:last-child .power-product-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .power-product > p:not(.power-product-type),
  .power-product-type { min-height: 0; }
  .product-media-story { padding: 60px 0 72px; }
  .product-media-story > header {
    grid-template-columns: 36px 1fr;
    gap: 18px;
  }
  .product-media-story > header h3,
  .product-media-story > header > p {
    grid-column: 2;
  }
  .product-media-story > header h3 { margin-top: 12px; }
  .product-story-facts { grid-template-columns: 1fr; }
  .product-story-facts > div,
  .product-story-facts > div + div {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }
  .product-story-facts > div:last-child { border-bottom: 0; }
  .product-media-layout { grid-template-columns: 1fr; }
  .product-video-options {
    padding: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .product-video-options > p {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }
  .product-video-options button {
    min-height: 52px;
    padding: 0 8px;
  }
  .product-still-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-row {
    min-height: 118px;
    padding: 20px 0;
    grid-template-columns: 40px 1fr 30px;
    gap: 12px;
  }
  .product-type, .product-range { grid-column: 2; }
  .product-arrow { grid-column: 3; grid-row: 1 / span 3; }
  .product-name { flex-direction: column; gap: 6px; }
  .flight-image { min-height: 380px; }
  .flight-copy { padding: 70px 20px; }
  .brand-story,
  .media-grid,
  .careers-cta,
  .content-system,
  .about-intro,
  .leadership,
  .recruitment-empty,
  .contact-layout { grid-template-columns: 1fr; }
  .leadership-team-head { margin-bottom: 32px; }
  .team-editorial-stage {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .team-editorial-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .team-editorial-details {
    min-height: 360px;
  }
  .team-editorial-detail { padding: 36px 24px 40px; }
  .team-editorial-detail h3 { font-size: 52px; }
  .team-editorial-detail h4 { font-size: 19px; }
  .team-selector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-selector,
  .team-selector:nth-child(3n) { border-right: 1px solid var(--line); }
  .team-selector:nth-child(2n) { border-right: 0; }
  .team-selector:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .team-selector-copy {
    min-height: 104px;
    padding: 16px 14px 18px;
  }
  .team-selector-copy b { font-size: 22px; }
  .team-selector-copy small { font-size: 11px; }
  .leadership-card { grid-template-columns: 1fr; }
  .leadership-card .leadership-portrait { aspect-ratio: 4 / 3; }
  .leadership-copy { padding: 26px 24px 30px; }
  .brand-visual { min-height: 340px; }
  .leadership-note { grid-template-columns: 84px 70px 1fr; gap: 10px; }
  .careers-cta { padding: 76px 20px; gap: 40px; }
  .site-footer { grid-template-columns: 1fr; gap: 38px; padding: 60px 20px 30px; }
  .footer-meta { flex-direction: column; }
  .concept-switcher { right: 8px; bottom: 8px; }
  .page-hero { min-height: 430px; padding: 100px 20px 70px; }
  .page-code { right: 18px; font-size: 130px; }
  .news-page-grid, .talent-grid { grid-template-columns: 1fr; }
  .milestone-media-grid { grid-template-columns: 1fr; }
  .milestone-media-grid article:last-child { grid-column: auto; }
  .milestone-media-grid article:last-child > div { aspect-ratio: 4 / 3; }
  .news-card-featured { grid-column: auto; }
  .news-card-featured .news-card-cover { aspect-ratio: 16 / 9; }
  .mission-media-grid { grid-template-columns: 1fr; }
  .mission-clip-featured { grid-column: auto; }
  .service-blueprint ol { grid-template-columns: 1fr; }
  .service-blueprint li { min-height: 180px; border-right: 0; }
  .service-blueprint li b { margin-top: 42px; }
  .content-system li { grid-template-columns: 1fr; gap: 8px; }
  .leadership-portrait { aspect-ratio: 1; }
  .timeline li { grid-template-columns: 78px 1fr; }
  .timeline li > :last-child { grid-column: 2; }
  .contact-primary > a { font-size: 42px; }
  .contact-closing { min-height: 320px; padding: 60px 20px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 390px) {
  .site-header { padding-inline: 16px; }
  .brand { width: 160px; }
  .mobile-nav { grid-template-columns: 1fr; }
  .section { width: calc(100% - 32px); }
  .section-head h2,
  .flight-copy h2,
  .brand-story-copy h2,
  .careers-cta h2,
  .content-system h2,
  .about-intro h2,
  .leadership h2,
  .leadership-team-head h2,
  .leadership-copy h2,
  .recruitment-empty h2 { font-size: 38px; }
  .team-editorial-detail { padding-inline: 20px; }
  .team-editorial-detail h3 { font-size: 48px; }
  .team-editorial-details { min-height: 380px; }
  .product-section { padding-inline: 16px; }
  .product-family-tabs,
  .product-panel-inner { width: calc(100% - 32px); }
  .product-family-tabs b { font-size: 16px; }
  .product-panel-head h2 { font-size: 38px; }
  .product-video-options { grid-template-columns: 1fr; }
  .product-video-options > p { grid-column: auto; }
  .product-video-options button { padding-inline: 0; }
  .contact-primary > a { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (min-width: 1025px) {
  body { --sticky-header-height: var(--header-height); }
  body.has-condensed-header { --sticky-header-height: 64px; }

  .site-header {
    width: 100%;
    transition: min-height .42s cubic-bezier(.16, 1, .3, 1), background-color .3s ease, box-shadow .3s ease, transform .3s ease;
  }

  .site-header.is-hidden { transform: none !important; }

  .site-header.is-condensed {
    min-height: 64px;
    box-shadow: 0 10px 34px rgba(6, 16, 30, .1);
  }

  .site-header .brand,
  .site-header .desktop-nav a,
  .site-header .desktop-nav a::after,
  .site-header .theme-picker summary,
  .site-header .skin-switch { transition: height .42s cubic-bezier(.16, 1, .3, 1), padding .42s cubic-bezier(.16, 1, .3, 1), min-height .42s cubic-bezier(.16, 1, .3, 1), bottom .42s cubic-bezier(.16, 1, .3, 1); }

  .site-header.is-condensed .brand { height: 60px; }
  .site-header.is-condensed .desktop-nav a { padding-top: 21px; padding-bottom: 20px; }
  .site-header.is-condensed .desktop-nav a::after { bottom: 12px; }
  .site-header.is-condensed .theme-picker summary,
  .site-header.is-condensed .skin-switch { min-height: 34px; }

  .product-explorer { overflow: clip; }
  .product-family-tabs {
    position: sticky;
    top: var(--sticky-header-height);
    z-index: 42;
    transition: top .42s cubic-bezier(.16, 1, .3, 1), width .42s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease;
  }

  .product-family-tabs button { transition: min-height .42s cubic-bezier(.16, 1, .3, 1), padding .42s cubic-bezier(.16, 1, .3, 1), color .25s ease, background .25s ease; }
  body.has-condensed-header .product-family-tabs { width: min(100%, var(--max)); box-shadow: 0 12px 34px rgba(6, 20, 44, .12); }
  body.has-condensed-header .product-family-tabs button { min-height: 76px; padding: 13px 20px; align-items: center; }
  body.has-condensed-header .product-family-tabs button em { display: none; }
}
