:root {
  --white: #ffffff;
  --mist: #f3f9fd;
  --mist-strong: #eaf4fa;
  --navy: #06163f;
  --navy-soft: #23375f;
  --muted: #536581;
  --line: #cbd8e5;
  --line-dark: #8190a9;
  --cobalt: #103ee9;
  --cobalt-dark: #0a2db7;
  --teal: #00a6b8;
  --teal-dark: #007f91;
  --deep: #001838;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --content: 1440px;
  --gutter: clamp(24px, 4vw, 72px);
  --section-space: clamp(88px, 10vw, 150px);
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(52px, 5.4vw, 88px);
}

h3 {
  line-height: 1.18;
}

.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;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.content {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  position: relative;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.language-bar {
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.language-bar-inner {
  width: min(100%, 1560px);
  min-height: 44px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.language-prompt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.language-prompt svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.language-switcher {
  padding: 3px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.language-switcher a {
  min-width: 82px;
  padding: 7px 13px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.language-switcher a[aria-current="page"] {
  color: var(--navy);
  background: var(--white);
}

.header-inner {
  width: min(100%, 1560px);
  min-height: 92px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3vw, 48px);
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  gap: 28px;
}

.wordmark {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(36px, 3.3vw, 56px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.desktop-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 48px);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.site-footer nav a:hover::after,
.site-footer nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-control select,
.footer-language select {
  appearance: none;
  color: var(--navy);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 14px;
  font-weight: 600;
}

.language-control {
  display: none;
}

.button {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

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

.button-primary {
  color: var(--white);
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--cobalt-dark);
  border-color: var(--cobalt-dark);
}

.button-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: transparent;
}

.arrow {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-cta {
  min-height: 56px;
  padding: 0 24px;
}

.menu-button {
  width: 50px;
  height: 50px;
  padding: 10px;
  display: none;
  border: 0;
  background: transparent;
}

.menu-button span {
  width: 28px;
  height: 2px;
  margin: 6px auto;
  display: block;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  bottom: auto;
  left: 0;
  height: calc(100vh - 136px);
  height: calc(100dvh - 136px);
  padding: 28px var(--gutter) 48px;
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  overflow-y: auto;
}

.mobile-nav a {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  min-height: 710px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--white);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("hero-global-glass.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 62px;
  padding-bottom: 72px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(68px, 6.4vw, 104px);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--navy-soft);
  font-size: 19px;
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pathways {
  padding: 26px 0 0;
  background: var(--white);
}

.section-intro {
  max-width: 880px;
  margin-bottom: 60px;
}

.section-intro h2 {
  margin-bottom: 28px;
}

.section-intro p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--navy-soft);
  font-size: 19px;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(620px, 1.2fr) 0.8fr;
  align-items: end;
  gap: 80px;
  max-width: none;
}

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

.pathway-item {
  position: relative;
  min-height: 330px;
  padding: 38px 34px 42px 0;
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 18px;
  border-right: 1px solid var(--line);
  transition: background var(--transition);
}

.pathway-item:not(:first-child) {
  padding-left: 34px;
}

.pathway-item:last-child {
  border-right: 0;
}

.pathway-item:hover,
.pathway-item:focus-visible {
  background: var(--mist);
}

.item-number {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
}

.pathway-item h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.pathway-item p {
  grid-column: 2;
  margin: 0;
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.6;
}

.direction-line {
  position: relative;
  grid-column: 1 / -1;
  align-self: end;
  height: 2px;
  background: linear-gradient(90deg, var(--cobalt), var(--teal));
}

.direction-line::after {
  position: absolute;
  right: 0;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--teal);
  border-right: 2px solid var(--teal);
  content: "";
  transform: rotate(45deg);
}

.brand-film {
  padding: 112px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.film-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(46px, 6vw, 94px);
}

.film-copy {
  position: relative;
}

.film-copy::before {
  width: 74px;
  height: 2px;
  margin-bottom: 28px;
  display: block;
  background: linear-gradient(90deg, var(--cobalt), var(--teal));
  content: "";
}

.film-label {
  margin-bottom: 24px;
  color: #8fe9f1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.film-copy h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(52px, 5vw, 78px);
}

.film-copy > p:not(.film-label) {
  max-width: 470px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.75;
}

.film-duration {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  letter-spacing: 0.04em;
}

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

.film-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(143, 233, 241, 0.34);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.film-frame video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.film-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 118px;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--white);
  background: transparent;
  border: 0;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition), transform var(--transition);
}

.film-play:hover,
.film-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
}

.film-play svg {
  width: 76px;
  height: 76px;
}

.film-play circle {
  fill: rgba(0, 24, 56, 0.58);
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 1.5;
}

.film-play path {
  fill: var(--white);
}

.film-play span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-frame.is-playing .film-play {
  opacity: 0;
  pointer-events: none;
}

.film-review-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.6;
}

.capabilities {
  min-height: 750px;
  padding: 100px 0 86px;
  overflow: hidden;
  background: var(--mist);
}

.capabilities-art {
  position: absolute;
  inset: 0;
  background-image: url("platforms-glass.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.capabilities-content {
  position: relative;
  z-index: 1;
}

.capabilities .section-intro {
  margin-bottom: 46px;
}

.capability-rail {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.9fr 0.7fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-item {
  min-height: 260px;
  padding: 30px 28px 32px;
  background: rgba(255, 255, 255, 0.62);
  border-right: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.capability-item:first-child {
  padding-left: 0;
  background: linear-gradient(90deg, rgba(243, 249, 253, 0.86), rgba(255, 255, 255, 0.62));
}

.capability-item:last-child {
  border-right: 0;
}

.capability-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.capability-item h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.capability-item p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.6;
}

.text-link {
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--cobalt);
  border-bottom: 1px solid var(--cobalt);
  font-size: 17px;
  font-weight: 500;
}

.text-link .arrow {
  width: 21px;
  height: 21px;
}

.process {
  padding: var(--section-space) 0 0;
  background: var(--white);
}

.process-intro {
  max-width: none;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: end;
  gap: 72px;
}

.process-intro p {
  padding-bottom: 9px;
}

.process-rail {
  margin: 0;
  padding: 0 0 86px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.process-rail li {
  position: relative;
  min-height: 310px;
  padding: 0 28px 0 0;
}

.process-rail li:not(:first-child) {
  padding-left: 28px;
}

.process-rail li::before {
  position: absolute;
  top: 78px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--cobalt));
  content: "";
}

.process-number {
  display: block;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}

.process-dot {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  margin: 26px 0 28px;
  display: block;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--teal-dark);
  box-shadow: 0 0 0 2px var(--teal-dark);
}

.process-rail h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
}

.process-rail p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.65;
}

.process-cta {
  color: var(--white);
  background: linear-gradient(110deg, var(--cobalt), var(--deep));
}

.process-cta-inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.process-cta h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
}

.process-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.global {
  padding: var(--section-space) 0 38px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
}

.global-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 50px;
}

.global-copy h2 {
  margin-bottom: 28px;
}

.global-copy p {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--navy-soft);
  font-size: 18px;
}

.global-visual {
  min-height: 510px;
  background-image: url("hero-global-glass.png");
  background-position: 70% center;
  background-repeat: no-repeat;
  background-size: 142%;
}

.market-rail {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.market-rail span {
  padding: 21px 22px;
  border-right: 1px solid var(--line);
  color: var(--navy-soft);
  font-size: 14px;
  text-align: center;
}

.market-rail span:last-child {
  border-right: 0;
}

.market-disclaimer {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.quality {
  padding: 92px 0 105px;
  background: var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
}

.quality-heading,
.quality-item {
  padding-right: 46px;
}

.quality-heading h2 {
  margin-bottom: 30px;
  font-size: clamp(44px, 4.5vw, 72px);
}

.quality-heading .text-link {
  margin-top: 0;
}

.quality-item {
  padding-left: 46px;
  border-left: 1px solid var(--line);
}

.quality-item h3 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.quality-item p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.75;
}

.leadership {
  min-height: 880px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  background: var(--white);
}

.leadership-visual {
  position: relative;
  min-height: 880px;
  padding: 46px clamp(28px, 4vw, 64px) 38px;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}

.leadership-photo {
  min-height: 0;
  margin: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
}

.leadership-photo picture {
  width: 100%;
  min-height: 0;
  display: flex;
  flex: 1;
}

.leadership-photo img {
  width: 100%;
  min-height: 0;
  display: block;
  flex: 1;
  object-fit: contain;
  background: #061536;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.leadership-photo figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.leadership-copy {
  position: static;
  max-width: 620px;
  padding-top: 28px;
}

.leadership-copy h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(38px, 3.6vw, 58px);
}

.leadership-copy p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.leadership-copy .text-link {
  margin-top: 18px;
  color: var(--white);
}

.insights {
  padding: 74px clamp(36px, 5vw, 88px) 52px;
}

.insights > h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 3.4vw, 56px);
}

.insight-item {
  padding: 34px 0 36px;
  border-top: 1px solid var(--line-dark);
}

.insight-item h3 {
  max-width: 640px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.4vw, 39px);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.insight-item a {
  display: inline-flex;
  gap: 12px;
  color: var(--cobalt);
  font-size: 16px;
  font-weight: 500;
}

.insight-themes {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--navy-soft);
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.contact {
  min-height: 780px;
  padding: 90px 0;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.contact-art {
  position: absolute;
  inset: 0;
  background-image: url("inquiry-map-dark.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(64px, 8vw, 130px);
}

.contact-copy h2 {
  margin-bottom: 28px;
  color: var(--white);
}

.contact-copy p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 14px;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--white);
  background: rgba(0, 24, 56, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 0;
  outline: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input,
.form-field select {
  min-height: 54px;
  padding: 0 15px;
}

.form-field textarea {
  padding: 14px 15px;
  resize: vertical;
}

.form-field select option {
  color: var(--navy);
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 166, 184, 0.22);
}

.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.form-success {
  padding: 16px 18px;
  color: #d5fbff;
  border: 1px solid var(--teal);
  background: rgba(0, 166, 184, 0.12);
}

.site-footer {
  padding: 48px 0 36px;
  background: var(--white);
}

.footer-top {
  padding-bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-language {
  min-width: 300px;
  padding: 12px 16px;
  border: 1px solid var(--line-dark);
}

.footer-language select {
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.language-notice {
  position: fixed;
  z-index: 500;
  right: 24px;
  bottom: 24px;
  max-width: 440px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 50px rgba(0, 24, 56, 0.24);
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid rgba(0, 166, 184, 0.6);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .language-control {
    display: block;
  }

  .hero {
    min-height: 710px;
  }

  .hero-art {
    background-position: 59% center;
  }

  .pathway-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pathway-item:nth-child(2) {
    border-right: 0;
  }

  .pathway-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pathway-item:nth-child(3) {
    padding-left: 0;
  }

  .film-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 42px;
  }

  .capability-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-item:nth-child(2) {
    border-right: 0;
  }

  .capability-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .capability-item:nth-child(3) {
    padding-left: 0;
  }

  .process-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 0;
  }

  .process-rail li:nth-child(4) {
    padding-left: 0;
  }

  .quality-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px 0;
  }

  .quality-heading {
    grid-column: 1 / -1;
  }

  .quality-item:nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }

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

  .leadership-visual {
    min-height: 700px;
    padding-right: max(var(--gutter), 44px);
    padding-left: max(var(--gutter), 44px);
  }

  .leadership-copy {
    left: var(--gutter);
  }

  .contact-grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 54px;
  }

  .footer-top {
    align-items: flex-start;
  }

  .site-footer nav {
    max-width: 580px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 122px;
  }

  .mobile-nav {
    height: calc(100vh - 122px);
    height: calc(100dvh - 122px);
  }

  .header-inner {
    min-height: 78px;
  }

  .wordmark {
    font-size: 38px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    order: 1;
    padding-top: 68px;
    padding-bottom: 40px;
  }

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

  .hero-copy {
    max-width: 620px;
    font-size: 18px;
  }

  .hero-art {
    position: relative;
    width: 100%;
    min-height: 440px;
    background-position: 68% center;
    background-size: cover;
    order: 2;
  }

  .button-row {
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
    justify-content: space-between;
  }

  .split-intro,
  .process-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pathways {
    padding-top: 78px;
  }

  .pathway-rail,
  .capability-rail {
    grid-template-columns: 1fr;
  }

  .pathway-item,
  .pathway-item:not(:first-child) {
    min-height: 220px;
    padding: 30px 18px 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pathway-item:last-child {
    border-bottom: 0;
  }

  .brand-film {
    padding: 82px 0;
  }

  .film-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .film-copy > p:not(.film-label) {
    max-width: 620px;
  }

  .capabilities {
    padding-top: 80px;
  }

  .capabilities-art {
    background-position: center;
    opacity: 0.52;
  }

  .capability-item,
  .capability-item:first-child,
  .capability-item:nth-child(3) {
    min-height: 210px;
    padding: 28px 0;
    background: rgba(255, 255, 255, 0.72);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-item:last-child {
    border-bottom: 0;
  }

  .process-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-rail li,
  .process-rail li:not(:first-child),
  .process-rail li:nth-child(4) {
    min-height: 0;
    padding: 0 0 42px 64px;
  }

  .process-rail li::before {
    top: 9px;
    bottom: 0;
    left: 17px;
    width: 2px;
    height: auto;
  }

  .process-number {
    font-size: 36px;
  }

  .process-dot {
    position: absolute;
    top: 4px;
    left: 10px;
    margin: 0;
  }

  .process-rail h3,
  .process-rail p {
    margin-left: 0;
  }

  .process-cta-inner {
    min-height: 250px;
    padding-top: 45px;
    padding-bottom: 45px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .global-visual {
    min-height: 380px;
    background-position: 67% center;
    background-size: 160%;
  }

  .market-rail {
    grid-template-columns: 1fr;
  }

  .market-rail span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .market-rail span:last-child {
    border-bottom: 0;
  }

  .quality-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quality-heading,
  .quality-item,
  .quality-item:nth-child(2) {
    padding: 0;
  }

  .quality-item {
    padding-top: 36px;
    padding-bottom: 36px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .leadership-visual {
    min-height: 690px;
    padding: 34px var(--gutter) 30px;
  }

  .leadership-copy {
    top: 58px;
    right: var(--gutter);
  }

  .insights {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

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

  .contact-art {
    background-position: 31% center;
  }

  .contact-copy {
    max-width: 620px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-language {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 26px;
    --section-space: 78px;
  }

  html {
    scroll-padding-top: 124px;
  }

  .mobile-nav {
    height: calc(100vh - 124px);
    height: calc(100dvh - 124px);
  }

  .header-inner {
    padding-right: 17px;
  }

  .language-bar-inner {
    min-height: 46px;
    padding-right: 17px;
    gap: 12px;
  }

  .language-switcher a {
    min-width: 70px;
    padding: 7px 10px;
  }

  .language-control select {
    font-size: 17px;
  }

  .menu-button {
    width: 46px;
  }

  h2 {
    font-size: 49px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(50px, 13.1vw, 64px);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.68;
  }

  .hero-art {
    min-height: 360px;
    background-position: 71% center;
    background-size: auto 100%;
  }

  .button {
    min-height: 60px;
  }

  .section-intro p {
    font-size: 17px;
  }

  .pathway-item {
    grid-template-columns: 52px 1fr;
  }

  .film-copy h2 {
    font-size: 49px;
  }

  .film-play {
    width: 92px;
  }

  .film-play svg {
    width: 62px;
    height: 62px;
  }

  .capability-rail {
    border-bottom: 0;
  }

  .process-intro h2 br {
    display: none;
  }

  .process-cta h3 {
    font-size: 36px;
  }

  .global-visual {
    min-height: 300px;
  }

  .leadership-visual {
    min-height: 660px;
    padding: 24px var(--gutter);
  }

  .leadership-copy {
    top: 48px;
  }

  .insight-item h3 {
    font-size: 29px;
  }

  .contact {
    padding-top: 78px;
  }

  .contact-copy h2 {
    font-size: 53px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 26px;
  }

  .language-notice {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (max-width: 340px) {
  .language-prompt span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Production-candidate additions */

html[lang^="zh"] body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
}

html[lang^="zh"] h1,
html[lang^="zh"] h2,
html[lang^="zh"] .wordmark,
html[lang^="zh"] .item-number,
html[lang^="zh"] .process-number,
html[lang^="zh"] .pathway-item h3,
html[lang^="zh"] .capability-item h3,
html[lang^="zh"] .quality-item h3,
html[lang^="zh"] .insight-item h3,
html[lang^="zh"] .mobile-nav a {
  font-family: "Songti SC", "STSong", Georgia, serif;
}

.hero {
  position: relative;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

html[lang^="zh"] .eyebrow {
  letter-spacing: 0.16em;
}

.eyebrow-light {
  color: #8fe9f1;
}

.site-context {
  max-width: 620px;
  margin: 28px 0 0;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(129, 144, 169, 0.45);
  font-size: 12px;
  line-height: 1.6;
}

.capability-rail-three {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.capability-notice {
  max-width: 970px;
  margin-top: 30px;
  padding: 18px 22px;
  color: var(--navy-soft);
  background: rgba(255, 255, 255, 0.76);
  border-left: 3px solid var(--teal);
  font-size: 13px;
  line-height: 1.7;
}

.quality-clarifier {
  margin-top: 16px !important;
  padding-top: 14px;
  color: var(--muted) !important;
  border-top: 1px solid var(--line);
  font-size: 12px !important;
  line-height: 1.6 !important;
}

.about {
  min-height: 690px;
  padding: 108px 0;
  overflow: hidden;
  background: var(--mist);
}

.about-visual {
  position: absolute;
  inset: 0 0 0 45%;
  background-image:
    linear-gradient(90deg, var(--mist) 0%, rgba(243, 249, 253, 0.42) 28%, rgba(243, 249, 253, 0.04) 65%),
    url("leadership-global.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.84;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.about-heading h2 {
  margin-bottom: 30px;
}

.about-heading h2 span {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal-dark);
  font-family: var(--sans);
  font-size: 0.34em;
  font-weight: 600;
  letter-spacing: 0.03em;
}

html[lang^="zh"] .about-heading h2 span {
  font-family: var(--serif);
}

.about-role {
  max-width: 500px;
  color: var(--navy-soft);
  font-size: 17px;
  font-weight: 600;
}

.about-photo {
  max-width: 500px;
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(203, 216, 229, 0.9);
  box-shadow: 0 30px 80px rgba(6, 22, 63, 0.12);
}

.about-photo picture {
  display: block;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.about-photo figcaption {
  padding: 10px 4px 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.about-copy {
  max-width: 700px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(203, 216, 229, 0.8);
  box-shadow: 0 30px 80px rgba(6, 22, 63, 0.08);
  backdrop-filter: blur(10px);
}

.about-copy p {
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.75;
}

.about-copy .about-lead {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(24px, 2.1vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

html[lang^="zh"] .about-copy .about-lead {
  font-family: "Songti SC", "STSong", Georgia, serif;
}

.role-tags {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.role-tags span {
  padding: 8px 12px;
  color: var(--teal-dark);
  background: rgba(0, 166, 184, 0.08);
  border: 1px solid rgba(0, 127, 145, 0.28);
  font-size: 12px;
  font-weight: 600;
}

.about-source-note {
  margin-bottom: 0;
  padding-top: 20px;
  color: var(--muted) !important;
  border-top: 1px solid var(--line);
  font-size: 12px !important;
}

.profile-link {
  margin-top: 4px;
}

.insight-item > p:not(.insight-meta) {
  max-width: 660px;
  margin: -8px 0 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.65;
}

.insight-meta {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq {
  padding: var(--section-space) 0;
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(54px, 8vw, 120px);
}

.faq-heading h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item summary {
  position: relative;
  padding: 26px 56px 26px 0;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.3;
  list-style: none;
}

html[lang^="zh"] .faq-item summary {
  font-family: "Songti SC", "STSong", Georgia, serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 23px;
  right: 6px;
  content: "+";
  color: var(--teal-dark);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 780px;
  margin: -4px 56px 28px 0;
  color: var(--navy-soft);
  line-height: 1.75;
}

.contact-email {
  margin-top: 32px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 13px !important;
}

.contact-email a {
  display: inline-block;
  margin-top: 5px;
  color: #8fe9f1;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.form-consent a {
  color: #8fe9f1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-meta {
  text-align: right;
}

.footer-meta p + p {
  margin-top: 5px;
}

.footer-meta a {
  color: var(--navy-soft);
}

.footer-disclaimer {
  padding-top: 26px;
}

.footer-disclaimer p {
  max-width: 1180px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.legal-page {
  min-height: 70vh;
  padding: 92px 0 120px;
  background: var(--white);
}

.legal-layout {
  max-width: 980px;
}

.legal-layout h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6vw, 92px);
}

.legal-updated {
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 13px;
}

.legal-layout h2 {
  margin: 52px 0 18px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1.1;
}

.legal-layout p,
.legal-layout li {
  color: var(--navy-soft);
  line-height: 1.75;
}

.legal-layout li + li {
  margin-top: 8px;
}

.legal-callout {
  margin: 34px 0;
  padding: 22px 26px;
  background: var(--mist);
  border-left: 3px solid var(--teal);
}

.back-link {
  margin-top: 52px;
}

.profile-page {
  background: var(--white);
}

.profile-hero {
  padding: clamp(82px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 166, 184, 0.13), transparent 32%),
    linear-gradient(135deg, var(--white) 0%, var(--mist) 72%, var(--mist-strong) 100%);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.profile-hero h1 {
  max-width: 830px;
  margin: 0 0 30px;
  font-size: clamp(64px, 7.6vw, 118px);
}

.profile-hero h1 span {
  display: block;
  margin-top: 16px;
  color: var(--teal-dark);
  font-family: var(--sans);
  font-size: 0.26em;
  font-weight: 600;
  letter-spacing: 0.04em;
}

html[lang^="zh"] .profile-hero h1 span {
  font-family: var(--serif);
}

.profile-role {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
}

.profile-intro {
  max-width: 770px;
  margin-bottom: 30px;
  color: var(--navy-soft);
  font-size: 18px;
  line-height: 1.75;
}

.profile-portrait {
  max-width: 470px;
  margin: 0 0 0 auto;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(203, 216, 229, 0.9);
  box-shadow: 0 34px 90px rgba(6, 22, 63, 0.14);
}

.profile-portrait img {
  width: 100%;
  height: auto;
}

.profile-portrait figcaption {
  padding: 11px 5px 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.profile-section {
  padding: clamp(86px, 9vw, 132px) 0;
}

.profile-section-tinted {
  background: var(--mist);
}

.profile-section-dark {
  color: var(--white);
  background: var(--deep);
}

.profile-section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.profile-section-header h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5vw, 78px);
}

.profile-section-header > p {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--navy-soft);
  font-size: 18px;
  line-height: 1.75;
}

.profile-section-dark .profile-section-header > p,
.profile-section-dark .profile-note {
  color: #c5d6e8;
}

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

.profile-timeline li {
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 0.72fr);
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.profile-timeline time {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.profile-timeline h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
}

.profile-timeline p {
  max-width: 760px;
  margin: 0;
  color: var(--navy-soft);
}

.profile-list-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 120px);
}

.profile-list-group-wide {
  grid-column: 1 / -1;
}

.profile-list-group h3 {
  margin: 0 0 24px;
  color: var(--teal);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-list-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(203, 216, 229, 0.34);
}

.profile-list-group li {
  padding: 18px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(203, 216, 229, 0.22);
  font-size: 16px;
  line-height: 1.55;
}

.profile-note {
  max-width: 980px;
  margin: 54px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(203, 216, 229, 0.25);
  font-size: 12px;
  line-height: 1.7;
}

.profile-cta {
  padding: clamp(76px, 8vw, 112px) 0;
  background: var(--white);
}

.profile-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.profile-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
}

@media (max-width: 1180px) {
  .capability-rail-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-details {
    order: 1;
  }

  .about-photo {
    order: 2;
    max-width: 520px;
  }

  .about-copy {
    max-width: 800px;
  }

  .about-visual {
    inset: 18% 0 0 35%;
  }

  .profile-hero-grid,
  .profile-section-header {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    width: min(100%, 430px);
    margin: 0;
  }
}

@media (max-width: 820px) {
  .capability-rail-three {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 82px 0;
  }

  .about-visual {
    inset: 42% 0 0 0;
    opacity: 0.42;
  }

  .about-copy {
    padding: 30px;
  }

  .about-photo {
    max-width: 440px;
  }

  .faq-grid {
    gap: 44px;
  }

  .footer-meta {
    text-align: left;
  }

  .profile-list-grid {
    grid-template-columns: 1fr;
  }

  .profile-list-group-wide {
    grid-column: auto;
  }

  .profile-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .site-context {
    margin-top: 24px;
  }

  .capability-notice {
    padding: 16px 18px;
  }

  .about-copy {
    padding: 24px;
  }

  .about-photo {
    padding: 7px;
  }

  .about-heading h2 span {
    font-size: 0.42em;
  }

  .profile-hero {
    padding-top: 64px;
  }

  .profile-hero h1 span {
    font-size: 0.34em;
  }

  .profile-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-item summary {
    padding-right: 42px;
    font-size: 22px;
  }

  .faq-item p {
    margin-right: 20px;
  }

  .legal-page {
    padding-top: 72px;
  }
}
