:root {
  --navy: #0a1d3a;
  --navy-deep: #061427;
  --navy-soft: #17304f;
  --gold: #d4a261;
  --gold-pale: #ead5ae;
  --ink: #162236;
  --slate: #5f6975;
  --muted: #8c939d;
  --paper: #f7f7f5;
  --mist: #eef1f2;
  --line: #d8dde1;
  --white: #ffffff;
  --serif: "Cormorant Garamond", "Noto Serif SC", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --page: min(1460px, calc(100vw - 96px));
  --header-height: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.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;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(10, 29, 58, .12);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(18px);
  transition: background .4s ease, border-color .4s ease, color .4s ease;
}

.site-header-transparent {
  position: fixed;
  right: 0;
  left: 0;
  border-color: rgba(255, 255, 255, .2);
  background: transparent;
  color: var(--white);
  backdrop-filter: none;
}

.site-header-transparent.is-scrolled {
  border-color: rgba(10, 29, 58, .12);
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  width: var(--page);
  height: 100%;
  margin: auto;
  grid-template-columns: 270px 1fr 120px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.brand img {
  width: 58px;
  height: 34px;
  object-fit: contain;
  transition: filter .4s ease;
}

.site-header-transparent.is-scrolled .brand-light img {
  filter: brightness(0) saturate(100%) invert(11%) sepia(30%) saturate(1377%) hue-rotate(174deg) brightness(92%);
}

.desktop-nav {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 2.3vw, 42px);
}

.desktop-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: right .35s var(--ease), left .35s var(--ease);
}

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

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

.language-toggle {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  transition: color .25s ease;
}

.language-toggle:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 9px 5px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .3s ease;
}

.mobile-nav {
  display: none;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}

.home-hero-media,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-media {
  background: url("assets/hero-city.jpg") center center / cover no-repeat;
  transform: scale(1.02);
  animation: hero-settle 1.8s var(--ease) both;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 15, 29, .94) 0%, rgba(4, 15, 29, .72) 35%, rgba(4, 15, 29, .18) 70%, rgba(4, 15, 29, .28) 100%),
    linear-gradient(0deg, rgba(4, 15, 29, .72) 0%, transparent 45%);
}

@keyframes hero-settle {
  from { opacity: .35; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.02); }
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--page);
  min-height: 100svh;
  margin: auto;
  padding: calc(var(--header-height) + 58px) 0 54px;
  grid-template-columns: 180px minmax(0, 820px) 1fr;
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 54px;
}

.hero-brand {
  align-self: start;
  padding-top: 14vh;
}

.hero-brand img {
  width: 138px;
  height: 78px;
}

.hero-copy {
  align-self: center;
  padding-top: 6vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 27px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-copy h1 {
  max-width: 850px;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(64px, 7.2vw, 116px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .88;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}

.line-arrow {
  --arrow-size: 12px;
  --arrow-head: 6px;
  --arrow-stroke: 1px;
  position: relative;
  display: inline-block;
  width: var(--arrow-size);
  height: var(--arrow-size);
  flex: 0 0 var(--arrow-size);
  color: currentColor;
  font-size: 0;
  font-style: normal;
  line-height: 0;
  vertical-align: middle;
}

.line-arrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(var(--arrow-size) - 1px);
  border-top: var(--arrow-stroke) solid currentColor;
  content: "";
  transform: rotate(-45deg);
  transform-origin: center;
}

.line-arrow::after {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--arrow-head);
  height: var(--arrow-head);
  border-top: var(--arrow-stroke) solid currentColor;
  border-right: var(--arrow-stroke) solid currentColor;
  content: "";
}

.button-arrow {
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease);
}

.button:hover .button-arrow {
  transform: translate(3px, -3px);
}

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

.button-primary:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
}

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

.button-gold:hover {
  background: var(--white);
}

.button-light {
  border-color: rgba(255, 255, 255, .62);
  color: var(--white);
}

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

.button-text,
.button-text-light {
  min-height: auto;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
}

.button-text {
  color: var(--navy);
}

.button-text-light {
  color: var(--white);
}

.hero-caption {
  display: flex;
  padding-top: 34px;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .25);
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  letter-spacing: .16em;
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}

.hero-scroll > span:first-child {
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .35);
}

.section {
  width: var(--page);
  margin: auto;
  padding: 132px 0;
}

.section-intro {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 110px minmax(380px, .95fr) minmax(280px, .65fr);
  gap: 44px;
  border-bottom: 1px solid var(--line);
}

.section-index {
  padding-top: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
}

.section-intro h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}

.section-summary {
  align-self: end;
  margin-bottom: 4px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.9;
}

.editorial-pair {
  display: grid;
  padding-top: 72px;
  grid-template-columns: 110px 1fr .7fr;
  gap: 44px;
}

.editorial-lead {
  grid-column: 2;
}

.editorial-lead p {
  max-width: 780px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 45px);
  line-height: 1.22;
}

.editorial-note {
  grid-column: 3;
}

.editorial-note p {
  margin-bottom: 28px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.9;
}

.gold-rule {
  display: block;
  width: 36px;
  height: 2px;
  margin: 8px 0 28px;
  background: var(--gold);
}

.section-capabilities {
  width: 100%;
  padding-right: max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  padding-left: max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  background: var(--paper);
}

.capability-list {
  margin-top: 18px;
}

.capability-row {
  position: relative;
  display: grid;
  min-height: 170px;
  padding: 36px 58px 36px 0;
  grid-template-columns: 110px minmax(280px, .8fr) minmax(300px, 1fr);
  align-items: center;
  gap: 44px;
  border-bottom: 1px solid #cfd4d7;
  transition: padding-left .45s var(--ease), background .45s var(--ease);
}

.capability-row::before {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -48px;
  width: 0;
  background: var(--white);
  content: "";
  transition: width .45s var(--ease);
}

.capability-row:hover {
  padding-left: 22px;
}

.capability-row:hover::before {
  width: calc(100% + 96px);
}

.capability-row > * {
  position: relative;
  z-index: 1;
}

.capability-number,
.principle-index {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
}

.capability-row h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(29px, 2.5vw, 42px);
  font-weight: 500;
  line-height: 1.05;
}

.capability-row p {
  max-width: 580px;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.8;
}

.row-arrow {
  --arrow-size: 15px;
  --arrow-head: 7px;
  position: absolute;
  z-index: 1;
  right: 8px;
  color: var(--navy);
  transition: color .3s ease, transform .4s var(--ease);
}

.capability-row:hover .row-arrow,
.insight-row:hover .row-arrow {
  color: var(--gold);
  transform: translate(4px, -4px);
}

.image-statement {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.15fr .85fr;
  background: var(--navy);
  color: var(--white);
}

.image-statement-media {
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.image-infrastructure {
  background-image: linear-gradient(rgba(10, 29, 58, .08), rgba(10, 29, 58, .34)), url("assets/infrastructure.jpg");
}

.image-statement-copy {
  display: flex;
  padding: 90px clamp(50px, 7vw, 120px);
  flex-direction: column;
  justify-content: center;
}

.image-statement-copy blockquote {
  margin-bottom: 70px;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 66px);
  line-height: 1.04;
}

.statement-details {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.statement-details span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.industry-editorial {
  display: grid;
  padding-top: 74px;
  grid-template-columns: 1fr .82fr;
  gap: 84px;
}

.industry-image {
  min-height: 650px;
  overflow: hidden;
  background: var(--mist);
}

.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(.94);
  transition: transform 1s var(--ease);
}

.industry-image:hover img {
  transform: scale(1.025);
}

.industry-links {
  align-self: center;
}

.industry-links a {
  display: grid;
  min-height: 73px;
  padding: 0 10px;
  grid-template-columns: 58px 1fr 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: 27px;
  transition: color .3s ease, padding .4s var(--ease);
}

.industry-links a:hover {
  padding-right: 0;
  padding-left: 18px;
  color: var(--gold);
}

.industry-links a > span:first-child {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
}

.industry-links i {
  --arrow-size: 13px;
  --arrow-head: 6px;
}

.section-principles {
  width: 100%;
  padding-right: max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  padding-left: max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  background: var(--paper);
}

.principle-grid {
  display: grid;
  padding-top: 70px;
  grid-template-columns: repeat(4, 1fr);
}

.principle-card {
  min-height: 320px;
  padding: 0 34px 30px;
  border-left: 1px solid var(--line);
}

.principle-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.principle-line {
  display: block;
  width: 30px;
  height: 2px;
  margin-bottom: 54px;
  background: var(--gold);
  transition: width .4s var(--ease);
}

.principle-card:hover .principle-line {
  width: 62px;
}

.principle-card h3 {
  margin: 24px 0 28px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.principle-card p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.8;
}

.global-panel {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.global-panel-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 35, .91) 0%, rgba(5, 18, 35, .66) 44%, rgba(5, 18, 35, .1) 84%),
    url("assets/global-horizon.jpg") center / cover no-repeat;
}

.global-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--page);
  min-height: 840px;
  margin: auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.global-panel-content h2 {
  max-width: 850px;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 90px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
}

.global-panel-content p {
  max-width: 620px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.85;
}

.insight-preview-list {
  margin-top: 18px;
}

.insight-row {
  position: relative;
  display: grid;
  min-height: 145px;
  padding: 34px 70px 34px 0;
  grid-template-columns: 230px 1fr;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid var(--line);
}

.insight-row > div {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.insight-row > div span:last-child {
  color: var(--gold);
}

.insight-row h3 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  transition: color .3s ease;
}

.insight-row:hover h3 {
  color: var(--gold);
}

.section-action {
  display: flex;
  padding-top: 44px;
  justify-content: flex-end;
}

.statement-cta {
  display: grid;
  min-height: 670px;
  padding: 110px max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  grid-template-columns: .45fr 1fr;
  align-items: center;
  gap: 90px;
  background: var(--navy-deep);
  color: var(--white);
}

.statement-mark img {
  width: min(380px, 100%);
}

.statement-copy h2 {
  max-width: 900px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(60px, 7vw, 106px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .9;
}

.statement-copy p {
  max-width: 700px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  line-height: 1.85;
}

.page-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.page-hero-image::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 18, 35, .92), rgba(5, 18, 35, .55) 55%, rgba(5, 18, 35, .16)),
    var(--page-image) center / cover no-repeat;
  content: "";
}

.page-hero-light {
  min-height: 560px;
  background: var(--paper);
  color: var(--navy);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: var(--page);
  min-height: inherit;
  margin: auto;
  padding: 130px 0 80px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.page-hero-inner h1 {
  max-width: 1040px;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 105px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .93;
}

.page-hero-inner > p {
  max-width: 710px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.8;
}

.page-hero-light .page-hero-inner > p {
  color: var(--slate);
}

.longform-grid {
  display: grid;
  padding: 72px 0 0 154px;
  grid-template-columns: 1fr .75fr;
  gap: 84px;
}

.longform-grid p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.95;
}

.longform-grid > div:first-child p:first-child {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1.35;
}

.capability-list.compact .capability-row {
  cursor: default;
}

.vision-band {
  position: relative;
  min-height: 720px;
  background:
    linear-gradient(rgba(5, 18, 35, .83), rgba(5, 18, 35, .83)),
    url("assets/vision-ocean-horizon.jpg") center / cover no-repeat;
  color: var(--white);
}

.vision-band-inner {
  display: flex;
  width: var(--page);
  min-height: 720px;
  margin: auto;
  flex-direction: column;
  justify-content: center;
}

.vision-band h2 {
  margin-bottom: 66px;
  font-family: var(--serif);
  font-size: clamp(70px, 8vw, 124px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .9;
}

.vision-lines {
  display: grid;
  max-width: 880px;
  grid-template-columns: repeat(3, 1fr);
}

.vision-lines p {
  min-height: 90px;
  padding: 20px 28px 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .73);
}

.feature-image {
  height: min(62vw, 720px);
  margin-top: 72px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75);
}

.service-intro {
  padding-bottom: 82px;
}

.service-sections {
  border-top: 1px solid var(--line);
}

.service-detail {
  display: grid;
  min-height: 760px;
  padding: 110px max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  grid-template-columns: .9fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 65px 100px;
  background: var(--white);
}

.service-detail-alt {
  background: var(--paper);
}

.service-detail-heading {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 100px 1fr;
  gap: 38px;
  border-bottom: 1px solid var(--line);
}

.service-detail-heading > span {
  padding-top: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
}

.service-detail-heading h2 {
  margin-bottom: 50px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .95;
}

.service-detail-body {
  padding-left: 138px;
}

.service-detail-body > p:first-child {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.4;
}

.service-objective {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--slate);
  font-size: 14px;
}

.service-support h3 {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-support ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-support li {
  display: grid;
  min-height: 58px;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 14px;
}

.service-support li span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  margin-top: 30px;
}

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

.faq-item button {
  display: grid;
  width: 100%;
  min-height: 92px;
  padding: 0;
  grid-template-columns: 75px 1fr 40px;
  align-items: center;
  border: 0;
  background: transparent;
  text-align: left;
}

.faq-item button > span:first-child {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .1em;
}

.faq-item strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.faq-item i {
  color: var(--gold);
  font-size: 24px;
  font-style: normal;
  text-align: right;
  transition: transform .35s ease;
}

.faq-item.is-open i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  max-height: 0;
  overflow: hidden;
  grid-template-columns: 75px 1fr 40px;
  transition: max-height .5s var(--ease);
}

.faq-answer p {
  max-width: 780px;
  padding-bottom: 34px;
  grid-column: 2;
  color: var(--slate);
  font-size: 14px;
}

.industry-catalog {
  display: grid;
  width: var(--page);
  margin: 0 auto 140px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-entry {
  min-height: 430px;
  padding: 52px 60px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .45s ease;
}

.industry-entry:hover {
  background: var(--paper);
}

.industry-entry-number {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .12em;
}

.industry-entry h2 {
  margin: 62px 0 25px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.industry-entry p {
  max-width: 560px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.85;
}

.industry-entry a {
  display: inline-flex;
  margin-top: 25px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.industry-entry a i {
  --arrow-size: 11px;
  --arrow-head: 5px;
  transition: transform .3s ease;
}

.industry-entry a:hover i {
  transform: translate(3px, -3px);
}

.industry-perspective {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.1fr .9fr;
  background: var(--navy);
  color: var(--white);
}

.industry-perspective-image {
  min-height: 620px;
}

.industry-perspective-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.65);
}

.industry-perspective-copy {
  display: flex;
  padding: 80px clamp(52px, 7vw, 120px);
  flex-direction: column;
  justify-content: center;
}

.industry-perspective-copy h2 {
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(50px, 5vw, 76px);
  font-weight: 500;
  line-height: .98;
}

.industry-perspective-copy p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.9;
}

.insights-toolbar {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
}

.insights-toolbar-inner {
  display: flex;
  width: var(--page);
  min-height: 78px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.filter-group button {
  position: relative;
  height: 78px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.filter-group button::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: right .3s ease, left .3s ease;
}

.filter-group button:hover,
.filter-group button.is-active {
  color: var(--navy);
}

.filter-group button.is-active::after {
  right: 0;
  left: 0;
}

.search-field {
  display: flex;
  width: 290px;
  height: 42px;
  align-items: center;
  border-bottom: 1px solid var(--navy);
}

.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}

.search-field i {
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
}

.insights-list {
  width: var(--page);
  margin: auto;
  padding: 80px 0 140px;
}

.insight-card {
  border-top: 1px solid var(--line);
}

.insight-card:last-of-type {
  border-bottom: 1px solid var(--line);
}

.insight-card[hidden] {
  display: none;
}

.insight-card a {
  position: relative;
  display: grid;
  min-height: 300px;
  padding: 48px 85px 48px 0;
  grid-template-columns: 230px 1fr;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: 12px 55px;
}

.insight-card a::before,
.insight-card a::after {
  position: absolute;
  color: var(--navy);
  content: "";
  transition: color .3s ease, transform .4s var(--ease);
}

.insight-card a::before {
  top: calc(50% + 5px);
  right: 3px;
  width: 18px;
  border-top: 1px solid currentColor;
  transform: rotate(-45deg);
}

.insight-card a::after {
  top: calc(50% - 8px);
  right: 3px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.insight-card a:hover::before {
  color: var(--gold);
  transform: translate(5px, -5px) rotate(-45deg);
}

.insight-card a:hover::after {
  color: var(--gold);
  transform: translate(5px, -5px);
}

.insight-card-meta {
  display: grid;
  gap: 10px;
  grid-row: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.insight-card-meta span:last-child {
  color: var(--gold);
}

.insight-card h2 {
  max-width: 940px;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.03;
  transition: color .3s ease;
}

.insight-card a:hover h2 {
  color: var(--gold);
}

.insight-card p {
  max-width: 760px;
  color: var(--slate);
  font-size: 14px;
}

.insight-read {
  width: fit-content;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-read i {
  --arrow-size: 11px;
  --arrow-head: 5px;
  margin-left: 12px;
}

.no-results {
  padding: 70px 0;
  color: var(--slate);
}

.insight-categories {
  display: grid;
  padding: 100px max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
}

.insight-category {
  min-height: 260px;
  padding: 0 42px;
  border-left: 1px solid var(--line);
}

.insight-category:first-child {
  padding-left: 0;
  border-left: 0;
}

.insight-category > span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .1em;
}

.insight-category h3 {
  margin: 45px 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.insight-category p {
  color: var(--slate);
  font-size: 13px;
}

.contact-layout {
  display: grid;
  width: var(--page);
  margin: auto;
  padding: 120px 0 140px;
  grid-template-columns: .78fr 1.22fr;
  gap: 120px;
}

.contact-intro h2 {
  max-width: 540px;
  margin-bottom: 32px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(45px, 4.6vw, 70px);
  font-weight: 500;
  line-height: 1;
}

.contact-intro > p {
  max-width: 520px;
  color: var(--slate);
  font-size: 14px;
}

.contact-office {
  margin-top: 75px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.contact-office > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-office p {
  margin: 24px 0;
  color: var(--navy);
  line-height: 1.85;
}

.contact-office a {
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
}

.contact-form {
  padding: 52px;
  background: var(--paper);
}

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

.contact-form label {
  display: grid;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #bfc5ca;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  resize: vertical;
}

.form-submit {
  display: flex;
  margin-top: 16px;
  align-items: center;
  gap: 25px;
}

.form-submit button {
  border-radius: 0;
}

.form-submit p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
}

.inquiry-types {
  display: grid;
  padding: 100px max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
}

.inquiry-types article {
  min-height: 270px;
  padding: 0 34px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.inquiry-types article:first-child {
  padding-left: 0;
  border-left: 0;
}

.inquiry-types article > span {
  color: var(--gold);
  font-size: 10px;
}

.inquiry-types h3 {
  margin: 50px 0 24px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.inquiry-types p {
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
}

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

.article-header {
  padding: 100px max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2)) 82px;
  background: var(--paper);
}

.article-breadcrumb {
  display: flex;
  margin-bottom: 80px;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-breadcrumb a {
  color: var(--navy);
}

.article-heading {
  max-width: 1180px;
  margin-left: 11%;
}

.article-meta {
  display: flex;
  margin-bottom: 25px;
  gap: 25px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-heading h1 {
  margin-bottom: 28px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(55px, 6.4vw, 94px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .96;
}

.article-heading > p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.article-layout {
  display: grid;
  width: var(--page);
  margin: auto;
  padding: 90px 0 140px;
  grid-template-columns: 240px minmax(0, 780px);
  justify-content: center;
  gap: 95px;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 35px);
  height: fit-content;
  padding-top: 20px;
  border-top: 2px solid var(--gold);
}

.article-aside > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.article-aside p {
  margin: 23px 0 32px;
  color: var(--navy);
  font-size: 11px;
  letter-spacing: .08em;
  line-height: 1.8;
}

.article-aside a {
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.article-copy {
  color: #303b48;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
}

.article-copy > p:first-child {
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
}

.article-copy p {
  margin-bottom: 20px;
}

.article-copy h2,
.article-copy h3,
.article-copy h4 {
  margin: 55px 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.2;
}

.article-copy ul,
.article-copy ol {
  margin: 24px 0 34px;
  padding-left: 0;
  list-style: none;
  counter-reset: article-list;
}

.article-copy li {
  position: relative;
  padding: 18px 0 18px 58px;
  border-top: 1px solid var(--line);
  counter-increment: article-list;
}

.article-copy li::before {
  position: absolute;
  top: 21px;
  left: 0;
  color: var(--gold);
  content: counter(article-list, decimal-leading-zero);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
}

.article-copy table {
  width: 100%;
  margin: 35px 0;
  border-collapse: collapse;
  font-size: 13px;
}

.article-copy th,
.article-copy td {
  padding: 14px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.article-copy th {
  background: var(--paper);
  color: var(--navy);
}

.article-copy strong {
  color: var(--navy);
}

.legal-copy {
  width: min(900px, calc(100vw - 96px));
  margin: auto;
  padding: 100px 0 140px;
}

.legal-notice {
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: var(--paper);
  color: var(--slate);
}

.legal-copy section {
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy h2 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.legal-copy p {
  color: var(--slate);
}

.not-found {
  display: flex;
  min-height: 75vh;
  padding: 120px 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--paper);
  text-align: center;
}

.not-found img {
  width: 180px;
  margin-bottom: 32px;
}

.not-found > span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .2em;
}

.not-found h1 {
  max-width: 780px;
  margin: 30px 0 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
}

.not-found p {
  margin-bottom: 34px;
  color: var(--slate);
}

.site-footer {
  padding: 90px max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2)) 30px;
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  display: grid;
  padding-bottom: 80px;
  grid-template-columns: 1.2fr .55fr .8fr .95fr;
  gap: 70px;
}

.footer-brand .brand {
  margin-bottom: 34px;
}

.footer-brand .brand img {
  width: 82px;
  height: 45px;
}

.footer-brand > p {
  color: rgba(255, 255, 255, .58);
  font-family: var(--serif);
  font-size: 22px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  line-height: 1.8;
  transition: color .25s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact {
  gap: 14px;
}

.footer-bottom {
  display: flex;
  padding-top: 28px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .17);
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

@media (max-width: 1180px) {
  :root {
    --page: calc(100vw - 64px);
  }

  .header-inner {
    grid-template-columns: 230px 1fr 90px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

  .home-hero-content {
    grid-template-columns: 145px 1fr;
  }

  .section-intro {
    grid-template-columns: 75px 1fr .6fr;
    gap: 30px;
  }

  .editorial-pair {
    grid-template-columns: 75px 1fr .7fr;
    gap: 30px;
  }

  .capability-row {
    grid-template-columns: 75px .85fr 1fr;
    gap: 30px;
  }

  .principle-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .industry-editorial {
    gap: 50px;
  }

  .service-detail {
    gap: 55px;
  }

  .service-detail-body {
    padding-left: 0;
  }

  .contact-layout {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: calc(100vw - 40px);
    --header-height: 72px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-active {
    background: var(--navy);
    color: var(--white);
  }

  .site-header.menu-active .brand img {
    filter: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: var(--header-height) 0 0;
    display: flex;
    padding: 35px 20px 60px;
    overflow-y: auto;
    flex-direction: column;
    background: var(--navy);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s ease;
  }

  .site-header.menu-active .mobile-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav a {
    display: grid;
    min-height: 76px;
    grid-template-columns: 55px 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-family: var(--serif);
    font-size: 30px;
  }

  .mobile-nav-index {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .1em;
  }

  .home-hero-content {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-brand {
    display: none;
  }

  .hero-copy {
    padding-top: 80px;
  }

  .hero-copy h1 {
    font-size: clamp(58px, 13vw, 88px);
  }

  .hero-scroll {
    display: none;
  }

  .section-intro {
    grid-template-columns: 50px 1fr;
  }

  .section-summary {
    grid-column: 2;
  }

  .editorial-pair {
    padding-left: 50px;
    grid-template-columns: 1fr;
  }

  .editorial-lead,
  .editorial-note {
    grid-column: 1;
  }

  .capability-row {
    grid-template-columns: 50px 1fr;
  }

  .capability-row p {
    grid-column: 2;
  }

  .image-statement,
  .industry-perspective {
    grid-template-columns: 1fr;
  }

  .image-statement-media,
  .industry-perspective-image {
    min-height: 500px;
  }

  .industry-editorial {
    grid-template-columns: 1fr;
  }

  .principle-grid,
  .inquiry-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-card:nth-child(3),
  .inquiry-types article:nth-child(3) {
    padding-top: 50px;
    border-left: 0;
  }

  .global-panel-content {
    min-height: 720px;
  }

  .statement-cta {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .statement-mark img {
    width: 220px;
  }

  .longform-grid {
    padding-left: 50px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vision-lines {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-detail-body {
    padding-left: 100px;
  }

  .service-support {
    padding-left: 100px;
  }

  .industry-catalog {
    grid-template-columns: 1fr;
  }

  .insights-toolbar {
    position: static;
  }

  .insights-toolbar-inner {
    padding: 20px 0;
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    overflow-x: auto;
  }

  .filter-group button {
    height: 42px;
    white-space: nowrap;
  }

  .search-field {
    width: 100%;
  }

  .insight-card a {
    grid-template-columns: 150px 1fr;
  }

  .insight-categories {
    grid-template-columns: 1fr;
  }

  .insight-category {
    min-height: auto;
    padding: 35px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .article-heading {
    margin-left: 0;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100vw - 32px);
  }

  body {
    font-size: 15px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 47px;
  }

  .header-actions {
    gap: 12px;
  }

  .home-hero-overlay {
    background: linear-gradient(90deg, rgba(4, 15, 29, .91), rgba(4, 15, 29, .53)), linear-gradient(0deg, rgba(4, 15, 29, .78), transparent);
  }

  .home-hero-content {
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    margin-bottom: 24px;
    font-size: 54px;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-caption {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-capabilities,
  .section-principles {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-intro {
    padding-bottom: 42px;
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .section-intro h2 {
    font-size: 43px;
  }

  .section-summary {
    margin-top: 15px;
  }

  .editorial-pair {
    padding-top: 45px;
    padding-left: 0;
  }

  .editorial-lead p {
    font-size: 29px;
  }

  .capability-row {
    min-height: 220px;
    padding: 30px 42px 30px 0;
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .capability-row::before {
    left: -16px;
  }

  .capability-row h3 {
    font-size: 30px;
  }

  .capability-row p {
    font-size: 13px;
  }

  .image-statement-media,
  .industry-perspective-image {
    min-height: 360px;
  }

  .image-statement-copy,
  .industry-perspective-copy {
    padding: 70px 24px;
  }

  .image-statement-copy blockquote {
    font-size: 40px;
  }

  .industry-image {
    min-height: 400px;
  }

  .industry-links a {
    font-size: 23px;
  }

  .principle-grid,
  .inquiry-types {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .principle-card:first-child,
  .principle-card:nth-child(3),
  .inquiry-types article,
  .inquiry-types article:first-child,
  .inquiry-types article:nth-child(3) {
    min-height: auto;
    padding: 38px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .principle-line {
    margin-bottom: 30px;
  }

  .global-panel,
  .global-panel-content {
    min-height: 700px;
  }

  .global-panel-media {
    background: linear-gradient(rgba(5, 18, 35, .75), rgba(5, 18, 35, .72)), url("assets/global-horizon.jpg") center / cover no-repeat;
  }

  .global-panel-content h2 {
    font-size: 50px;
  }

  .insight-row {
    min-height: 200px;
    padding-right: 40px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .statement-cta {
    min-height: 620px;
    padding: 80px 16px;
    gap: 45px;
  }

  .statement-copy h2 {
    font-size: 54px;
  }

  .page-hero {
    min-height: 590px;
  }

  .page-hero-light {
    min-height: 480px;
  }

  .page-hero-inner {
    padding: 115px 0 60px;
  }

  .page-hero-inner h1 {
    font-size: 51px;
  }

  .longform-grid {
    padding: 45px 0 0;
  }

  .vision-band,
  .vision-band-inner {
    min-height: 650px;
  }

  .vision-band h2 {
    font-size: 64px;
  }

  .service-detail {
    min-height: auto;
    padding: 75px 16px;
  }

  .service-detail-heading {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }

  .service-detail-heading h2 {
    font-size: 46px;
  }

  .service-detail-body,
  .service-support {
    padding-left: 0;
  }

  .service-detail-body > p:first-child {
    font-size: 25px;
  }

  .faq-item button {
    grid-template-columns: 35px 1fr 30px;
  }

  .faq-item strong {
    font-size: 21px;
  }

  .faq-answer {
    grid-template-columns: 35px 1fr 30px;
  }

  .industry-catalog {
    margin-bottom: 90px;
  }

  .industry-entry {
    min-height: 380px;
    padding: 40px 28px;
  }

  .industry-entry h2 {
    font-size: 39px;
  }

  .filter-group {
    gap: 20px;
  }

  .insights-list {
    padding: 55px 0 90px;
  }

  .insight-card a {
    min-height: 340px;
    padding: 35px 40px 35px 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .insight-card-meta {
    display: flex;
    grid-row: auto;
    justify-content: space-between;
  }

  .insight-card h2 {
    font-size: 38px;
  }

  .insight-categories,
  .inquiry-types {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-layout {
    padding: 80px 0;
  }

  .contact-form {
    padding: 34px 20px;
  }

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

  .article-header {
    padding: 70px 16px 60px;
  }

  .article-breadcrumb {
    margin-bottom: 50px;
  }

  .article-heading h1 {
    font-size: 48px;
  }

  .article-layout {
    padding: 60px 0 90px;
    gap: 50px;
  }

  .article-copy {
    font-size: 14px;
  }

  .article-copy li {
    padding-left: 42px;
  }

  .site-footer {
    padding: 75px 16px 25px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
}

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

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

/* V2 typography, approved identity assets and expanded content system */
:root {
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --cjk: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.brand {
  width: 156px;
}

.brand-logo {
  width: 100% !important;
  height: auto !important;
  object-fit: contain;
}

.brand-logo-light {
  display: none;
}

.brand-light .brand-logo-dark {
  display: none;
}

.brand-light .brand-logo-light {
  display: block;
}

.site-header-transparent.is-scrolled .brand-light .brand-logo-light {
  display: none;
}

.site-header-transparent.is-scrolled .brand-light .brand-logo-dark {
  display: block;
  filter: none;
}

.hero-brand {
  width: 168px;
}

.hero-brand img {
  width: 100%;
  height: auto;
}

.footer-brand .brand {
  width: 188px;
}

.footer-brand .brand img {
  width: 100%;
  height: auto;
}

.footer-top {
  grid-template-columns: 1.15fr .52fr .82fr .7fr .92fr;
  gap: 52px;
}

.section-intro h2,
.capability-row h3,
.industry-links a,
.principle-card h3,
.insight-row h3,
.service-detail-heading h2,
.faq-item strong,
.industry-entry h2,
.insight-card h2,
.insight-category h3,
.contact-intro h2,
.inquiry-types h3,
.article-copy h2,
.article-copy h3,
.article-copy h4,
.legal-copy h2 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -.035em;
}

.section-intro h2 {
  font-size: clamp(42px, 4.4vw, 68px);
}

.capability-row h3 {
  font-size: clamp(27px, 2.2vw, 37px);
}

.section-summary,
.editorial-note p,
.capability-row p,
.principle-card p,
.insight-card p,
.industry-entry p,
.industry-perspective-copy p,
.contact-intro > p,
.inquiry-types p {
  font-size: 15px;
  line-height: 1.72;
}

.shenzhen-feature,
.innovation-environment {
  display: grid;
  min-height: 720px;
  grid-template-columns: 1.05fr .95fr;
  background: var(--paper);
}

.shenzhen-feature-image,
.innovation-environment-image {
  min-height: 620px;
  overflow: hidden;
}

.shenzhen-feature-image img,
.innovation-environment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(.95);
  transition: transform 1s var(--ease);
}

.shenzhen-feature-image:hover img,
.innovation-environment-image:hover img {
  transform: scale(1.02);
}

.shenzhen-feature-copy,
.innovation-environment-copy {
  display: flex;
  padding: 90px clamp(52px, 7vw, 120px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.shenzhen-feature-copy h2,
.innovation-environment-copy h2 {
  margin-bottom: 30px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(54px, 5.5vw, 82px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .96;
}

.shenzhen-feature-copy p,
.innovation-environment-copy p {
  max-width: 650px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.8;
}

.innovation-environment {
  grid-template-columns: .9fr 1.1fr;
  background: var(--navy);
  color: var(--white);
}

.innovation-environment-copy {
  order: 1;
}

.innovation-environment-image {
  order: 2;
}

.innovation-environment-copy h2 {
  color: var(--white);
}

.innovation-environment-copy p {
  color: rgba(255, 255, 255, .7);
}

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

.highlight-strip > div {
  display: flex;
  min-height: 175px;
  padding: 30px 25px;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--line);
}

.highlight-strip > div:first-child {
  border-left: 0;
}

.highlight-strip span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .12em;
}

.highlight-strip strong {
  max-width: 180px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.why-milestone {
  background: var(--white);
}

.service-detail {
  grid-template-columns: .82fr 1fr 1fr;
  gap: 62px;
}

.service-detail-heading {
  grid-column: 1 / -1;
}

.service-detail-body {
  padding-left: 0;
}

.service-support li {
  min-height: 54px;
  line-height: 1.45;
}

.service-scenarios {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.industry-entry {
  min-height: 510px;
}

.industry-support {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.industry-support > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.industry-support p {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 12px;
}

.insight-categories {
  grid-template-columns: repeat(4, 1fr);
}

.inquiry-types {
  grid-template-columns: repeat(5, 1fr);
}

.related-insights {
  padding: 110px max(48px, calc((100vw - min(1460px, calc(100vw - 96px))) / 2));
  background: var(--paper);
}

.related-insights-heading {
  display: flex;
  margin-bottom: 55px;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.related-insights-heading .eyebrow {
  margin-bottom: 10px;
}

.related-insights-heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-family: var(--sans);
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.related-insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.related-insight-card {
  display: flex;
  min-height: 330px;
  padding: 42px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}

.related-insight-card:hover {
  background: var(--white);
}

.related-insight-card > div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.related-insight-card > div span:last-child {
  color: var(--gold);
}

.related-insight-card h3 {
  margin: 65px 0 30px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.related-insight-card > span {
  margin-top: auto;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

html[lang="zh-CN"] body {
  font-family: var(--cjk);
  font-weight: 400;
  line-height: 1.72;
}

html[lang="zh-CN"] .hero-copy h1,
html[lang="zh-CN"] .page-hero-inner h1,
html[lang="zh-CN"] .global-panel-content h2,
html[lang="zh-CN"] .statement-copy h2,
html[lang="zh-CN"] .vision-band h2,
html[lang="zh-CN"] .image-statement-copy blockquote,
html[lang="zh-CN"] .shenzhen-feature-copy h2,
html[lang="zh-CN"] .innovation-environment-copy h2,
html[lang="zh-CN"] .article-heading h1,
html[lang="zh-CN"] .not-found h1 {
  font-family: var(--cjk);
  font-weight: 500;
  letter-spacing: -.045em;
}

html[lang="zh-CN"] .hero-copy h1 {
  max-width: 920px;
  font-size: clamp(58px, 6.3vw, 94px);
  line-height: 1.03;
}

html[lang="zh-CN"] .page-hero-inner h1 {
  max-width: 980px;
  font-size: clamp(54px, 5.8vw, 86px);
  line-height: 1.08;
}

html[lang="zh-CN"] .section-intro h2,
html[lang="zh-CN"] .capability-row h3,
html[lang="zh-CN"] .principle-card h3,
html[lang="zh-CN"] .insight-row h3,
html[lang="zh-CN"] .service-detail-heading h2,
html[lang="zh-CN"] .faq-item strong,
html[lang="zh-CN"] .industry-entry h2,
html[lang="zh-CN"] .insight-card h2,
html[lang="zh-CN"] .contact-intro h2,
html[lang="zh-CN"] .related-insights-heading h2,
html[lang="zh-CN"] .related-insight-card h3,
html[lang="zh-CN"] .editorial-lead p,
html[lang="zh-CN"] .longform-grid > div:first-child p:first-child,
html[lang="zh-CN"] .service-detail-body > p:first-child,
html[lang="zh-CN"] .industry-perspective-copy h2,
html[lang="zh-CN"] .footer-brand > p,
html[lang="zh-CN"] .mobile-nav a {
  font-family: var(--cjk);
  font-weight: 500;
  letter-spacing: -.035em;
}

html[lang="zh-CN"] .section-intro h2 {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.12;
}

html[lang="zh-CN"] .editorial-lead p {
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.45;
}

html[lang="zh-CN"] .desktop-nav a,
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .button {
  letter-spacing: .06em;
}

html[lang="zh-CN"] .eyebrow {
  font-weight: 500;
}

@media (max-width: 1180px) {
  .footer-top {
    grid-template-columns: 1.1fr .6fr .85fr .75fr .95fr;
    gap: 30px;
  }

  .service-detail {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-body {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .brand {
    width: 138px;
  }

  .shenzhen-feature,
  .innovation-environment {
    grid-template-columns: 1fr;
  }

  .innovation-environment-copy,
  .innovation-environment-image {
    order: initial;
  }

  .highlight-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-strip > div:nth-child(odd) {
    border-left: 0;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail-body {
    grid-column: auto;
  }

  .service-scenarios {
    padding-left: 100px;
    border-left: 0;
  }

  .insight-categories {
    grid-template-columns: 1fr;
  }

  .inquiry-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-insights-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 124px;
  }

  .hero-brand {
    display: block;
    width: 138px;
    padding-top: 2vh;
  }

  .shenzhen-feature-image,
  .innovation-environment-image {
    min-height: 360px;
  }

  .shenzhen-feature-copy,
  .innovation-environment-copy {
    padding: 70px 20px;
  }

  .shenzhen-feature-copy h2,
  .innovation-environment-copy h2 {
    font-size: 46px;
  }

  .highlight-strip {
    grid-template-columns: 1fr;
  }

  .highlight-strip > div {
    min-height: 120px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-scenarios {
    padding-left: 0;
  }

  .industry-entry {
    min-height: 500px;
  }

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

  .related-insights {
    padding: 80px 16px;
  }

  .related-insight-card {
    min-height: 300px;
    padding: 32px 24px;
  }

  html[lang="zh-CN"] .hero-copy h1 {
    font-size: 46px;
  }

  html[lang="zh-CN"] .page-hero-inner h1 {
    font-size: 43px;
  }
}

/* V2.1 restrained scale, spacing and identity refinement */
:root {
  --page: min(1380px, calc(100vw - 72px));
  --header-height: 70px;
  --line: #dde1e4;
}

body {
  font-size: 15px;
  line-height: 1.68;
}

.reveal {
  transform: translateY(20px);
  transition-duration: .72s;
}

.site-header {
  border-bottom-color: rgba(10, 29, 58, .1);
}

.header-inner {
  grid-template-columns: 190px 1fr 92px;
}

.brand {
  display: inline-flex;
  width: auto;
  gap: 10px;
}

.brand .brand-symbol {
  width: 46px !important;
  height: 23px !important;
  object-fit: contain;
}

.brand-wordmark {
  position: relative;
  display: block;
  width: 104px;
  height: 12px;
}

.brand-wordmark img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  transition: opacity .35s ease;
}

.brand-wordmark-light,
.brand-light .brand-wordmark-dark {
  opacity: 0;
}

.brand-light .brand-wordmark-light {
  opacity: 1;
}

.site-header-transparent.is-scrolled .brand-light .brand-wordmark-dark {
  opacity: 1;
}

.site-header-transparent.is-scrolled .brand-light .brand-wordmark-light {
  opacity: 0;
}

.site-header-transparent.is-scrolled .brand-light img {
  filter: none;
}

.desktop-nav {
  gap: clamp(18px, 1.8vw, 32px);
}

.desktop-nav a {
  font-size: 10px;
  letter-spacing: .11em;
}

.desktop-nav a::after,
.filter-group button::after {
  height: 1px;
}

.header-actions {
  gap: 14px;
}

.language-toggle {
  font-size: 10px;
}

.home-hero-content {
  padding: calc(var(--header-height) + 46px) 0 42px;
  grid-template-columns: minmax(0, 790px) 1fr;
  column-gap: 60px;
}

.hero-copy {
  padding-top: 3vh;
  grid-column: 1;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 5.4vw, 80px);
  line-height: .98;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.72;
}

.hero-caption {
  padding-top: 24px;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 10px;
  letter-spacing: .14em;
}

.button {
  min-height: 46px;
  padding: 0 19px;
  gap: 23px;
  font-size: 10px;
}

.section {
  padding: 88px 0;
}

.section-intro {
  padding-bottom: 46px;
  grid-template-columns: 72px minmax(340px, .95fr) minmax(260px, .62fr);
  gap: 34px;
}

.section-intro h2 {
  max-width: 700px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.06;
}

.section-summary,
.editorial-note p,
.capability-row p,
.principle-card p,
.insight-card p,
.industry-entry p,
.industry-perspective-copy p,
.contact-intro > p,
.inquiry-types p {
  font-size: 14px;
  line-height: 1.72;
}

.editorial-pair {
  padding-top: 48px;
  grid-template-columns: 72px 1fr .7fr;
  gap: 34px;
}

.editorial-lead p {
  font-size: clamp(23px, 2.3vw, 33px);
  line-height: 1.34;
}

.editorial-note p {
  margin-bottom: 22px;
}

.gold-rule,
.principle-line {
  height: 1px;
}

.gold-rule {
  margin: 5px 0 22px;
}

.capability-row {
  min-height: 138px;
  padding: 28px 48px 28px 0;
}

.capability-row h3 {
  font-size: clamp(24px, 2.1vw, 32px);
}

.image-statement {
  min-height: 570px;
}

.image-statement-media {
  min-height: 520px;
}

.image-statement-copy {
  padding: 66px clamp(42px, 6vw, 92px);
}

.image-statement-copy blockquote {
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.08;
}

.principle-card {
  min-height: 300px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.global-panel,
.global-panel-content {
  min-height: 620px;
}

.global-panel-content h2 {
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1;
}

.insight-row {
  min-height: 152px;
}

.insight-row h3 {
  font-size: clamp(24px, 2.35vw, 34px);
}

.section-action {
  padding-top: 30px;
}

.statement-cta {
  min-height: 470px;
  padding: 76px max(36px, calc((100vw - min(1380px, calc(100vw - 72px))) / 2));
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.statement-copy h2 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(43px, 4.8vw, 70px);
  line-height: .98;
}

.statement-copy p {
  margin-bottom: 30px;
  line-height: 1.72;
}

.page-hero {
  min-height: 570px;
}

.page-hero-light {
  min-height: 440px;
}

.page-hero-inner {
  padding: 102px 0 58px;
}

.page-hero-inner h1 {
  max-width: 980px;
  margin-bottom: 25px;
  font-size: clamp(45px, 5vw, 75px);
  line-height: .98;
}

.page-hero-inner > p {
  max-width: 690px;
  font-size: 15px;
  line-height: 1.72;
}

.longform-grid {
  padding: 48px 0 0 106px;
  gap: 62px;
}

.longform-grid p {
  font-size: 15px;
  line-height: 1.78;
}

.vision-band,
.vision-band-inner {
  min-height: 560px;
}

.vision-band h2 {
  margin-bottom: 44px;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .96;
}

.feature-image {
  height: min(54vw, 620px);
  margin-top: 50px;
}

.service-detail {
  min-height: 650px;
  padding: 76px max(36px, calc((100vw - min(1380px, calc(100vw - 72px))) / 2));
  gap: 46px;
}

.service-detail-heading {
  grid-template-columns: 72px 1fr;
  gap: 28px;
}

.service-detail-heading h2 {
  margin-bottom: 34px;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1;
}

.service-detail-body > p:first-child {
  font-size: 24px;
  line-height: 1.42;
}

.service-support h3 {
  margin-bottom: 20px;
}

.service-support li {
  min-height: 49px;
}

.faq-item button {
  min-height: 78px;
}

.faq-item strong {
  font-size: 21px;
}

.industry-catalog {
  margin-bottom: 92px;
}

.industry-entry {
  min-height: 430px;
  padding: 40px 44px;
}

.industry-entry h2 {
  margin: 42px 0 20px;
  font-size: 36px;
}

.industry-perspective {
  min-height: 580px;
}

.industry-perspective-image {
  min-height: 540px;
}

.industry-perspective-copy {
  padding: 64px clamp(42px, 6vw, 90px);
}

.industry-perspective-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.02;
}

.insights-toolbar-inner {
  min-height: 66px;
}

.filter-group button {
  height: 66px;
}

.insights-list {
  padding: 62px 0 96px;
}

.insight-card a {
  min-height: 240px;
  padding: 38px 72px 38px 0;
  grid-template-columns: 190px 1fr;
  gap: 10px 42px;
}

.insight-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.08;
}

.insight-categories {
  padding: 72px max(36px, calc((100vw - min(1380px, calc(100vw - 72px))) / 2));
}

.insight-category {
  min-height: 220px;
  padding: 0 30px;
}

.insight-category h3 {
  margin: 34px 0 18px;
  font-size: 27px;
}

.contact-layout {
  padding: 82px 0 96px;
  gap: 76px;
}

.contact-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
}

.contact-office {
  margin-top: 48px;
  padding-top: 24px;
}

.contact-form {
  padding: 42px;
}

.inquiry-types {
  padding: 72px max(36px, calc((100vw - min(1380px, calc(100vw - 72px))) / 2));
}

.inquiry-types article {
  min-height: 220px;
  padding: 0 26px;
}

.inquiry-types h3 {
  margin: 36px 0 18px;
  font-size: 25px;
}

.article-header {
  padding: 76px max(36px, calc((100vw - min(1380px, calc(100vw - 72px))) / 2)) 62px;
}

.article-breadcrumb {
  margin-bottom: 54px;
}

.article-heading {
  max-width: 1040px;
  margin-left: 8%;
}

.article-heading h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.article-heading > p {
  font-size: 15px;
  line-height: 1.68;
}

.article-layout {
  padding: 64px 0 92px;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 72px;
}

.article-aside {
  border-top-width: 1px;
}

.article-copy {
  font-size: 15px;
  line-height: 1.72;
}

.article-copy > p:first-child {
  font-size: 17px;
}

.article-copy p {
  margin-bottom: 17px;
}

.article-copy h2,
.article-copy h3,
.article-copy h4 {
  margin: 40px 0 16px;
  font-size: 27px;
}

.article-copy ul,
.article-copy ol {
  margin: 20px 0 28px;
}

.article-copy li {
  padding-top: 14px;
  padding-bottom: 14px;
}

.legal-copy {
  padding: 72px 0 96px;
}

.legal-notice {
  border-left-width: 1px;
}

.legal-copy section {
  padding: 34px 0;
}

.not-found {
  min-height: 68vh;
  padding: 82px 36px;
}

.not-found h1 {
  margin-top: 24px;
  font-size: clamp(40px, 4.5vw, 62px);
}

.shenzhen-feature,
.innovation-environment {
  min-height: 580px;
}

.shenzhen-feature-image,
.innovation-environment-image {
  min-height: 520px;
}

.shenzhen-feature-copy,
.innovation-environment-copy {
  padding: 66px clamp(42px, 6vw, 92px);
}

.shenzhen-feature-copy h2,
.innovation-environment-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.02;
}

.highlight-strip {
  margin-top: 48px;
}

.highlight-strip > div {
  min-height: 142px;
  padding: 24px 20px;
}

.related-insights {
  padding: 76px max(36px, calc((100vw - min(1380px, calc(100vw - 72px))) / 2));
}

.related-insights-heading {
  margin-bottom: 38px;
}

.related-insights-heading h2 {
  font-size: clamp(34px, 3.7vw, 52px);
}

.related-insight-card {
  min-height: 260px;
  padding: 32px;
}

.related-insight-card h3 {
  margin: 46px 0 24px;
  font-size: 26px;
}

.site-footer {
  padding: 62px max(36px, calc((100vw - min(1380px, calc(100vw - 72px))) / 2)) 24px;
}

.footer-top {
  padding-bottom: 52px;
  grid-template-columns: 1.05fr .55fr .88fr .72fr 1fr;
  gap: 34px;
}

.footer-brand-label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
}

.footer-brand > p {
  max-width: 230px;
  font-size: 18px;
  line-height: 1.45;
}

.footer-column h3 {
  margin-bottom: 14px;
}

.footer-column a,
.footer-column p {
  font-size: 11px;
  line-height: 1.72;
}

.footer-bottom {
  padding-top: 22px;
}

html[lang="zh-CN"] .hero-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: 1.08;
}

html[lang="zh-CN"] .page-hero-inner h1 {
  max-width: 900px;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.12;
}

html[lang="zh-CN"] .section-intro h2 {
  font-size: clamp(32px, 3.2vw, 47px);
  line-height: 1.18;
}

html[lang="zh-CN"] .editorial-lead p {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.52;
}

html[lang="zh-CN"] .statement-copy h2,
html[lang="zh-CN"] .global-panel-content h2,
html[lang="zh-CN"] .vision-band h2,
html[lang="zh-CN"] .shenzhen-feature-copy h2,
html[lang="zh-CN"] .innovation-environment-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.12;
}

@media (max-width: 1180px) {
  :root {
    --page: calc(100vw - 56px);
  }

  .header-inner {
    grid-template-columns: 174px 1fr 82px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .home-hero-content {
    grid-template-columns: minmax(0, 720px) 1fr;
  }

  .section-intro {
    grid-template-columns: 60px 1fr .58fr;
  }
}

@media (max-width: 900px) {
  :root {
    --page: calc(100vw - 40px);
    --header-height: 66px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-header.menu-active .brand-wordmark-dark {
    opacity: 0 !important;
  }

  .site-header.menu-active .brand-wordmark-light {
    opacity: 1 !important;
  }

  .home-hero-content {
    grid-template-columns: 1fr;
  }

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

  .section-intro {
    grid-template-columns: 42px 1fr;
    gap: 24px;
  }

  .editorial-pair {
    padding-left: 42px;
  }

  .statement-cta {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100vw - 32px);
    --header-height: 62px;
  }

  .brand {
    gap: 8px;
  }

  .brand .brand-symbol {
    width: 38px !important;
    height: 19px !important;
  }

  .brand-wordmark {
    width: 88px;
    height: 10px;
  }

  .home-hero-content {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 24px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .hero-copy h1 {
    font-size: 44px;
    line-height: 1.02;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .section {
    padding: 64px 0;
  }

  .section-intro {
    padding-bottom: 34px;
    grid-template-columns: 32px 1fr;
    gap: 18px;
  }

  .section-intro h2 {
    font-size: 34px;
  }

  .editorial-pair {
    padding-top: 34px;
    padding-left: 32px;
  }

  .editorial-lead p {
    font-size: 23px;
  }

  .capability-row {
    min-height: 126px;
    padding: 24px 36px 24px 0;
  }

  .image-statement-media,
  .industry-perspective-image,
  .shenzhen-feature-image,
  .innovation-environment-image {
    min-height: 340px;
  }

  .image-statement-copy,
  .industry-perspective-copy,
  .shenzhen-feature-copy,
  .innovation-environment-copy {
    padding: 54px 16px;
  }

  .global-panel,
  .global-panel-content {
    min-height: 560px;
  }

  .global-panel-content h2 {
    font-size: 42px;
  }

  .statement-cta {
    min-height: 430px;
    padding: 62px 16px;
  }

  .statement-copy h2 {
    font-size: 42px;
  }

  .page-hero {
    min-height: 500px;
  }

  .page-hero-light {
    min-height: 400px;
  }

  .page-hero-inner {
    padding: 92px 0 48px;
  }

  .page-hero-inner h1 {
    font-size: 42px;
  }

  .vision-band,
  .vision-band-inner {
    min-height: 500px;
  }

  .vision-band h2 {
    font-size: 50px;
  }

  .service-detail {
    padding: 58px 16px;
    gap: 36px;
  }

  .service-detail-heading h2 {
    font-size: 39px;
  }

  .industry-entry {
    min-height: 370px;
    padding: 34px 26px;
  }

  .insights-list {
    padding: 48px 0 72px;
  }

  .insight-card a {
    min-height: 280px;
    padding: 30px 36px 30px 0;
  }

  .insight-card h2 {
    font-size: 32px;
  }

  .contact-layout {
    padding: 62px 0 72px;
    gap: 48px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .article-header {
    padding: 58px 16px 50px;
  }

  .article-breadcrumb {
    margin-bottom: 38px;
  }

  .article-heading h1 {
    font-size: 41px;
  }

  .article-layout {
    padding: 50px 0 72px;
    gap: 40px;
  }

  .related-insights {
    padding: 60px 16px;
  }

  .site-footer {
    padding: 54px 16px 22px;
  }

  .footer-top {
    padding-bottom: 42px;
    gap: 40px 24px;
  }

  html[lang="zh-CN"] .hero-copy h1 {
    font-size: 39px;
  }

  html[lang="zh-CN"] .page-hero-inner h1 {
    font-size: 38px;
  }

  html[lang="zh-CN"] .section-intro h2 {
    font-size: 31px;
  }

  html[lang="zh-CN"] .statement-copy h2,
  html[lang="zh-CN"] .global-panel-content h2,
  html[lang="zh-CN"] .vision-band h2,
  html[lang="zh-CN"] .shenzhen-feature-copy h2,
  html[lang="zh-CN"] .innovation-environment-copy h2 {
    font-size: 37px;
  }
}

/* V2.2 full-bleed backgrounds and shared editorial reference lines */
:root {
  --content-max: 1360px;
  --edge: clamp(24px, 4.2vw, 64px);
  --page: min(var(--content-max), calc(100vw - var(--edge) - var(--edge)));
  --content-pad: max(var(--edge), calc((100vw - var(--content-max)) / 2));
  --rail: 72px;
  --grid-gap: 32px;
  --article-rail: 210px;
  --article-gap: 72px;
}

body,
main,
section,
article,
header,
footer,
nav,
form,
button,
input,
select,
textarea {
  text-align: left;
}

.section {
  width: 100%;
  padding-right: var(--content-pad);
  padding-left: var(--content-pad);
}

.section-capabilities,
.section-principles,
.statement-cta,
.service-detail,
.insight-categories,
.inquiry-types,
.article-header,
.related-insights,
.site-footer {
  padding-right: var(--content-pad);
  padding-left: var(--content-pad);
}

.section-intro {
  grid-template-columns: var(--rail) minmax(340px, .95fr) minmax(260px, .62fr);
  gap: var(--grid-gap);
  align-items: start;
}

.section-summary {
  align-self: end;
}

.editorial-pair {
  grid-template-columns: var(--rail) 1fr .7fr;
  gap: var(--grid-gap);
  align-items: start;
}

.capability-row {
  grid-template-columns: var(--rail) minmax(260px, .8fr) minmax(300px, 1fr);
  gap: var(--grid-gap);
  transition: background .4s var(--ease);
}

.capability-row::before {
  display: none;
}

.capability-row:hover {
  padding-left: 0;
  background: rgba(255, 255, 255, .72);
}

.industry-editorial {
  gap: clamp(44px, 5vw, 76px);
  align-items: stretch;
}

.industry-image {
  min-height: 580px;
}

.industry-links {
  display: flex;
  align-self: stretch;
  flex-direction: column;
}

.industry-links a {
  flex: 1;
  min-height: 64px;
}

.industry-links a:hover {
  padding-right: 10px;
  padding-left: 10px;
}

.insight-row {
  min-height: 112px;
  padding: 22px 56px 22px 0;
  grid-template-columns: 170px 1fr;
  gap: 32px;
}

.insight-row h3 {
  max-width: 820px;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.18;
}

.statement-cta {
  grid-template-columns: minmax(0, 980px);
  justify-content: start;
}

.industry-catalog {
  align-items: stretch;
}

.industry-entry {
  display: flex;
  flex-direction: column;
}

.industry-entry h2 {
  min-height: 2em;
}

.industry-entry > p {
  margin-bottom: 24px;
}

.industry-support {
  margin-top: auto;
}

.industry-entry a {
  align-self: flex-start;
}

.insight-card a {
  min-height: 188px;
  padding: 28px 58px 28px 0;
  grid-template-columns: 160px 1fr;
  gap: 8px 30px;
}

.insight-card a::after {
  width: 8px;
  height: 8px;
}

.service-scenarios li .line-arrow {
  --arrow-size: 10px;
  --arrow-head: 5px;
}

.contact-office a .line-arrow,
.article-aside a .line-arrow,
.related-insight-card .line-arrow {
  --arrow-size: 10px;
  --arrow-head: 5px;
  margin-left: 8px;
}

.insight-card h2 {
  max-width: 860px;
  margin-bottom: 10px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.12;
}

.insight-card p {
  max-width: 720px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.62;
}

.article-heading {
  max-width: calc(100% - var(--article-rail) - var(--article-gap));
  margin-right: 0;
  margin-left: calc(var(--article-rail) + var(--article-gap));
}

.article-layout {
  grid-template-columns: var(--article-rail) minmax(0, 760px);
  gap: var(--article-gap);
  justify-content: start;
}

.related-insights-heading {
  display: block;
}

.related-insights-heading .eyebrow {
  margin-bottom: 18px;
}

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

.footer-brand .brand {
  width: auto;
  margin-bottom: 22px;
}

.footer-brand .brand .brand-symbol {
  width: 50px !important;
  height: 25px !important;
}

.footer-brand .brand .brand-wordmark {
  width: 114px;
  height: 11px;
}

.footer-brand > p {
  margin-bottom: 0;
}

.not-found {
  text-align: center;
}

.not-found h1,
.not-found p {
  text-align: center;
}

@media (max-width: 1180px) {
  :root {
    --edge: 28px;
    --rail: 60px;
    --grid-gap: 28px;
    --article-rail: 180px;
    --article-gap: 54px;
  }

  .section-intro {
    grid-template-columns: var(--rail) 1fr .58fr;
  }

  .capability-row {
    grid-template-columns: var(--rail) minmax(230px, .8fr) 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --edge: 20px;
    --rail: 42px;
    --grid-gap: 24px;
  }

  .section-intro {
    grid-template-columns: var(--rail) 1fr;
  }

  .editorial-pair {
    padding-left: var(--rail);
  }

  .capability-row {
    grid-template-columns: var(--rail) 1fr;
  }

  .industry-editorial {
    align-items: start;
  }

  .industry-links a {
    flex: initial;
  }

  .article-heading {
    max-width: none;
    margin-left: 0;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --edge: 16px;
    --rail: 32px;
    --grid-gap: 18px;
  }

  .section-intro {
    grid-template-columns: var(--rail) 1fr;
  }

  .editorial-pair {
    padding-left: var(--rail);
  }

  .insight-row {
    min-height: 156px;
    padding: 24px 38px 24px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .insight-row h3 {
    font-size: 27px;
  }

  .insight-card a {
    min-height: 230px;
    padding: 26px 34px 26px 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .insight-card h2 {
    font-size: 29px;
  }

  .industry-entry h2 {
    min-height: auto;
  }

  .footer-brand .brand .brand-symbol {
    width: 44px !important;
    height: 22px !important;
  }

  .footer-brand .brand .brand-wordmark {
    width: 102px;
    height: 10px;
  }
}

/* V2.3 solution hierarchy, formal footer identity and richer imagery */
.service-intro {
  padding-bottom: 72px;
}

.service-pillar-overview {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-pillar-overview a {
  position: relative;
  display: flex;
  min-height: 170px;
  padding: 26px 28px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background .35s ease, color .35s ease;
}

.service-pillar-overview a:hover {
  background: var(--navy);
  color: var(--white);
}

.service-pillar-overview span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-pillar-overview strong {
  max-width: 280px;
  margin-top: auto;
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  transition: color .35s ease;
}

.service-pillar-overview a:hover strong {
  color: var(--white);
}

.service-pillar-overview i {
  position: absolute;
  right: 26px;
  bottom: 24px;
  color: var(--gold);
  font-size: 16px;
  font-style: normal;
  transition: transform .35s var(--ease);
}

.service-pillar-overview a:hover i {
  transform: translateY(4px);
}

.service-detail {
  min-height: auto;
  padding-top: 80px;
  padding-bottom: 88px;
  grid-template-columns: minmax(300px, .88fr) minmax(280px, 1fr) minmax(280px, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 38px 42px;
}

.service-detail-heading {
  padding-bottom: 32px;
  grid-column: 1 / -1;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: end;
  gap: 34px;
}

.service-pillar-code {
  display: flex;
  padding-bottom: 28px;
  flex-direction: column;
  align-items: flex-start;
}

.service-pillar-code span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-pillar-code strong {
  margin-top: 8px;
  color: var(--gold);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
}

.service-detail-heading .eyebrow {
  margin-bottom: 15px;
}

.service-detail-heading h2 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(38px, 4vw, 58px);
}

.service-detail-media {
  min-height: 510px;
  overflow: hidden;
  grid-column: 1;
  grid-row: 2 / 4;
  background: var(--mist);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(.96);
  transition: transform 1s var(--ease);
}

.service-detail:hover .service-detail-media img {
  transform: scale(1.018);
}

.service-detail-body {
  max-width: 920px;
  padding: 0;
  grid-column: 2 / 4;
  grid-row: 2;
}

.service-detail-body > p:first-child {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 23px;
  line-height: 1.46;
}

.service-objective {
  max-width: 700px;
  padding-top: 20px;
}

.service-support {
  grid-column: 2;
  grid-row: 3;
}

.service-scenarios {
  padding-left: 28px;
  grid-column: 3;
  grid-row: 3;
  border-left: 1px solid var(--line);
}

.service-support h3 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 9px;
}

.service-support li {
  min-height: 45px;
  grid-template-columns: 28px 1fr;
  font-size: 13px;
}

.service-support li span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0;
}

.service-detail-alt .service-detail-media {
  grid-column: 3;
}

.service-detail-alt .service-detail-body {
  grid-column: 1 / 3;
}

.service-detail-alt .service-support {
  grid-column: 1;
}

.service-detail-alt .service-scenarios {
  padding-right: 28px;
  padding-left: 0;
  grid-column: 2;
  border-right: 1px solid var(--line);
  border-left: 0;
}

.footer-lockup {
  display: block;
  width: 172px;
  margin-bottom: 24px;
}

.footer-lockup img {
  width: 100%;
  height: auto;
}

.footer-brand > p {
  max-width: 260px;
}

@media (max-width: 900px) {
  .service-pillar-overview {
    grid-template-columns: 1fr;
  }

  .service-pillar-overview a {
    min-height: 128px;
  }

  .service-detail {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .service-detail-heading {
    grid-template-columns: 86px 1fr;
  }

  .service-detail-media,
  .service-detail-alt .service-detail-media {
    min-height: 460px;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .service-detail-body,
  .service-detail-alt .service-detail-body {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .service-support,
  .service-detail-alt .service-support {
    grid-column: 1;
    grid-row: 4;
  }

  .service-scenarios,
  .service-detail-alt .service-scenarios {
    padding-right: 0;
    padding-left: 26px;
    grid-column: 2;
    grid-row: 4;
    border-right: 0;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .service-pillar-overview {
    margin-top: 34px;
  }

  .service-pillar-overview a {
    min-height: 116px;
    padding: 22px 20px;
  }

  .service-pillar-overview strong {
    padding-right: 35px;
    font-size: 20px;
  }

  .service-detail {
    padding-top: 56px;
    padding-bottom: 64px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-heading {
    padding-bottom: 24px;
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .service-pillar-code {
    padding-bottom: 23px;
  }

  .service-pillar-code span {
    font-size: 7px;
  }

  .service-pillar-code strong {
    font-size: 34px;
  }

  .service-detail-heading h2 {
    margin-bottom: 22px;
    font-size: 36px;
  }

  .service-detail-media,
  .service-detail-alt .service-detail-media {
    min-height: 340px;
    grid-column: 1;
    grid-row: 2;
  }

  .service-detail-body,
  .service-detail-alt .service-detail-body {
    grid-column: 1;
    grid-row: 3;
  }

  .service-detail-body > p:first-child {
    font-size: 21px;
  }

  .service-support,
  .service-detail-alt .service-support {
    grid-column: 1;
    grid-row: 4;
  }

  .service-scenarios,
  .service-detail-alt .service-scenarios {
    padding-top: 10px;
    padding-right: 0;
    padding-left: 0;
    grid-column: 1;
    grid-row: 5;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .footer-lockup {
    width: 154px;
  }
}

/* V2.4 restrained typography, corrected identity scale and subtle motion */
.footer-brand {
  display: flex;
  width: 152px;
  flex-direction: column;
  align-items: center;
  justify-self: start;
}

.footer-lockup {
  width: 140px;
  margin-bottom: 15px;
}

.footer-brand > p,
html[lang="zh-CN"] .footer-brand > p {
  width: 100%;
  max-width: 170px;
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.hero-copy {
  max-width: 900px;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: 1;
}

.section-intro {
  position: relative;
}

.section-intro::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width .55s var(--ease);
}

.section:hover .section-intro::after {
  width: 48px;
}

.section-intro h2 {
  font-size: clamp(33px, 3.2vw, 47px);
  line-height: 1.09;
}

.image-statement-copy blockquote {
  font-size: clamp(30px, 3.1vw, 45px);
  line-height: 1.12;
}

.global-panel-content h2 {
  font-size: clamp(39px, 4.2vw, 59px);
  line-height: 1.04;
}

.statement-copy h2 {
  font-size: clamp(39px, 4.2vw, 60px);
  line-height: 1.02;
}

.page-hero-inner h1 {
  max-width: 920px;
  font-size: clamp(42px, 4.5vw, 65px);
  line-height: 1.02;
}

.vision-band h2 {
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1;
}

.shenzhen-feature-copy h2,
.innovation-environment-copy h2 {
  font-size: clamp(37px, 3.8vw, 54px);
  line-height: 1.06;
}

.industry-perspective-copy h2 {
  font-size: clamp(37px, 3.8vw, 55px);
}

.contact-intro h2 {
  font-size: clamp(36px, 3.6vw, 52px);
}

.article-heading h1 {
  font-size: clamp(39px, 4.5vw, 62px);
  line-height: 1.04;
}

.related-insights-heading h2 {
  font-size: clamp(32px, 3.3vw, 47px);
}

.service-detail-heading h2 {
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.04;
}

.page-hero-image::before {
  animation: page-image-breathe 16s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes page-image-breathe {
  from {
    transform: scale(1.005);
  }
  to {
    transform: scale(1.025);
  }
}

.eyebrow::before {
  transition: width .5s var(--ease);
}

.page-hero-inner:hover .eyebrow::before,
.section-intro:hover .eyebrow::before,
.statement-copy:hover .eyebrow::before {
  width: 44px;
}

.footer-column a {
  transition: color .25s ease, transform .35s var(--ease);
}

.footer-column a:hover {
  transform: translateX(3px);
}

html[lang="zh-CN"] .hero-copy h1 {
  max-width: none;
  font-size: clamp(42px, 3.7vw, 58px);
  line-height: 1.08;
}

html[lang="zh-CN"] .hero-title > span {
  white-space: nowrap;
}

html[lang="zh-CN"] .page-hero-inner h1 {
  font-size: clamp(37px, 3.8vw, 55px);
}

html[lang="zh-CN"] .section-intro h2 {
  font-size: clamp(30px, 2.9vw, 43px);
}

html[lang="zh-CN"] .statement-copy h2,
html[lang="zh-CN"] .global-panel-content h2,
html[lang="zh-CN"] .vision-band h2,
html[lang="zh-CN"] .shenzhen-feature-copy h2,
html[lang="zh-CN"] .innovation-environment-copy h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.15;
}

@media (max-width: 900px) {
  .footer-brand {
    width: 146px;
  }

  .footer-lockup {
    width: 134px;
  }

  html[lang="zh-CN"] .hero-title > span {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .footer-brand {
    width: 136px;
  }

  .footer-lockup {
    width: 126px;
  }

  .footer-brand > p,
  html[lang="zh-CN"] .footer-brand > p {
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 41px;
  }

  .page-hero-inner h1 {
    font-size: 38px;
  }

  .section-intro h2 {
    font-size: 31px;
  }

  .global-panel-content h2,
  .statement-copy h2,
  .vision-band h2 {
    font-size: 39px;
  }

  .shenzhen-feature-copy h2,
  .innovation-environment-copy h2,
  .industry-perspective-copy h2 {
    font-size: 35px;
  }

  .article-heading h1 {
    font-size: 38px;
  }

  .service-detail-heading h2 {
    font-size: 34px;
  }

  html[lang="zh-CN"] .hero-copy h1 {
    font-size: 37px;
  }

  html[lang="zh-CN"] .page-hero-inner h1 {
    font-size: 35px;
  }

  html[lang="zh-CN"] .section-intro h2 {
    font-size: 29px;
  }

  html[lang="zh-CN"] .statement-copy h2,
  html[lang="zh-CN"] .global-panel-content h2,
  html[lang="zh-CN"] .vision-band h2,
  html[lang="zh-CN"] .shenzhen-feature-copy h2,
  html[lang="zh-CN"] .innovation-environment-copy h2 {
    font-size: 34px;
  }
}

/* V2.5 full-width industries feature and transparent identity icon */
.section-industries {
  padding-bottom: 64px;
}

.industry-editorial-full {
  width: 100%;
  min-height: 620px;
  padding-top: 0;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
  gap: 0;
  background: var(--paper);
}

.industry-editorial-full .industry-image {
  min-height: 620px;
}

.industry-editorial-full .industry-links {
  padding: 46px var(--content-pad) 46px clamp(42px, 5vw, 76px);
}

.industry-editorial-full .industry-links a {
  padding-right: 0;
  padding-left: 0;
}

.industry-editorial-full .industry-links a:hover {
  padding-right: 0;
  padding-left: 8px;
}

@media (max-width: 900px) {
  .industry-editorial-full {
    grid-template-columns: 1fr;
  }

  .industry-editorial-full .industry-image {
    min-height: 480px;
  }

  .industry-editorial-full .industry-links {
    padding: 38px var(--edge) 52px;
  }
}

@media (max-width: 620px) {
  .section-industries {
    padding-bottom: 44px;
  }

  .industry-editorial-full .industry-image {
    min-height: 340px;
  }

  .industry-editorial-full .industry-links {
    padding-top: 28px;
    padding-bottom: 42px;
  }
}

/* V2.6 unified split screens, industry rhythm and internal-page heroes */
@media (min-width: 901px) {
  .industry-editorial-full,
  .shenzhen-feature,
  .innovation-environment,
  .industry-perspective {
    min-height: 620px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-editorial-full .industry-image,
  .shenzhen-feature-image,
  .innovation-environment-image,
  .industry-perspective-image {
    min-height: 620px;
  }

  .industry-editorial-full .industry-links,
  .shenzhen-feature-copy,
  .innovation-environment-copy,
  .industry-perspective-copy {
    min-height: 620px;
    box-sizing: border-box;
    padding: 56px clamp(42px, 5vw, 76px);
  }
}

.industry-catalog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.industry-entry {
  display: grid;
  min-width: 0;
  height: 100%;
  grid-template-rows: auto minmax(128px, auto) minmax(112px, 1fr) auto auto;
}

.industry-entry h2 {
  min-height: 0;
  margin: 34px 0 20px;
  align-self: end;
}

.industry-entry > p {
  min-height: 0;
  margin: 0 0 24px;
}

.industry-support {
  min-height: 76px;
  margin-top: 0;
}

.industry-entry a {
  margin-top: 24px;
}

.page-hero-image {
  min-height: 570px;
}

.page-hero-image .page-hero-inner {
  padding-top: 102px;
  padding-bottom: 58px;
}

@media (max-width: 900px) {
  .industry-editorial-full,
  .shenzhen-feature,
  .innovation-environment,
  .industry-perspective {
    grid-template-columns: 1fr;
  }

  .industry-editorial-full .industry-image,
  .shenzhen-feature-image,
  .innovation-environment-image,
  .industry-perspective-image {
    min-height: 440px;
  }

  .industry-editorial-full .industry-links,
  .shenzhen-feature-copy,
  .innovation-environment-copy,
  .industry-perspective-copy {
    min-height: auto;
    padding: 48px var(--edge) 56px;
  }

  .industry-catalog {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .industry-entry {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
  }

  .industry-entry h2 {
    margin-top: 30px;
  }

  .industry-support {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .industry-editorial-full .industry-image,
  .shenzhen-feature-image,
  .innovation-environment-image,
  .industry-perspective-image {
    min-height: 340px;
  }

  .industry-editorial-full .industry-links,
  .shenzhen-feature-copy,
  .innovation-environment-copy,
  .industry-perspective-copy {
    padding: 34px var(--edge) 42px;
  }

  .page-hero-image {
    min-height: 500px;
  }
}

/* V2.7 clearer highlights, simplified solution pillars and complete footer */
.statement-details {
  gap: 15px;
  border-top: 0;
}

.statement-details > span {
  display: flex;
  padding: 0;
  align-items: center;
  gap: 12px;
  border-bottom: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
}

.statement-details > span::before {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.statement-details > span > span {
  display: inline;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.statement-details > span > span::before {
  content: none;
}

.highlight-strip span {
  font-size: 11px;
  font-weight: 600;
}

.highlight-strip strong {
  max-width: 210px;
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.28;
}

html[lang="zh-CN"] .highlight-strip strong {
  font-size: clamp(19px, 1.45vw, 22px);
}

.service-pillar-overview a {
  min-height: 180px;
  padding: 32px 30px;
  justify-content: center;
}

.service-pillar-overview strong {
  max-width: 360px;
  margin-top: 0;
  padding-right: 34px;
  font-size: clamp(30px, 2.35vw, 36px);
  line-height: 1.14;
  letter-spacing: -.035em;
}

.service-pillar-overview strong > span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: none;
}

html[lang="zh-CN"] .service-pillar-overview strong {
  max-width: none;
  font-size: clamp(29px, 2.25vw, 35px);
  line-height: 1.18;
  white-space: nowrap;
}

.service-pillar-overview i {
  bottom: 26px;
  font-size: 18px;
}

.service-pillar-code {
  justify-content: flex-end;
}

.service-pillar-code strong {
  margin-top: 0;
}

.footer-top {
  grid-template-columns: .9fr .58fr .86fr 1.32fr 1fr;
  gap: clamp(24px, 3vw, 46px);
}

.footer-link-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
}

.footer-link-grid a {
  line-height: 1.55;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .statement-details {
    gap: 12px;
  }

  .statement-details > span {
    font-size: 12px;
  }

  .highlight-strip strong,
  html[lang="zh-CN"] .highlight-strip strong {
    font-size: 20px;
  }

  .service-pillar-overview strong {
    font-size: 28px;
  }

  html[lang="zh-CN"] .service-pillar-overview strong {
    font-size: 28px;
    white-space: normal;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-link-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* V2.9 restrained gold usage in service information */
.service-support h3 {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}

.service-support h3::before {
  width: 20px;
  height: 1px;
  flex: 0 0 20px;
  background: var(--gold);
  content: "";
}

.service-support li {
  color: var(--slate);
  font-size: 14px;
  font-weight: 400;
}

.service-support li > span:first-child {
  color: var(--gold);
}

.service-support li > span:not(:first-child) {
  color: var(--slate);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
}

.section-intro-no-index {
  grid-template-columns: minmax(340px, .95fr) minmax(260px, .62fr);
}

.service-intro .section-intro-no-index,
.section-custom .section-intro-no-index {
  grid-template-columns: minmax(0, 1fr);
  row-gap: 18px;
}

.service-intro .section-intro-no-index > .section-summary,
.section-custom .section-intro-no-index > .section-summary {
  max-width: 760px;
  margin: 0;
  align-self: start;
}

.section-custom .editorial-pair {
  display: grid;
  max-width: 760px;
  padding-top: 34px;
  grid-template-columns: 1fr;
  gap: 20px;
}

.section-custom .editorial-lead,
.section-custom .editorial-note {
  grid-column: 1;
}

.section-custom .editorial-lead p,
.section-custom .editorial-note p {
  max-width: 760px;
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.section-custom .editorial-note .gold-rule {
  display: none;
}

/* V2.10 homepage and about headings use a vertical reading order */
.home-page .section-intro,
.about-page .section-intro {
  grid-template-columns: var(--rail) minmax(0, 1fr);
  column-gap: var(--grid-gap);
  row-gap: 20px;
}

.home-page .section-intro > .section-index,
.about-page .section-intro > .section-index {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home-page .section-intro > div:not(.section-index),
.about-page .section-intro > div:not(.section-index) {
  grid-column: 2;
  grid-row: 1;
}

.home-page .section-intro > .section-summary,
.about-page .section-intro > .section-summary {
  max-width: 760px;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.home-page .approach-highlights .highlight-strip strong,
html[lang="zh-CN"] .home-page .approach-highlights .highlight-strip strong {
  max-width: 230px;
  font-size: clamp(23px, 1.8vw, 27px);
  line-height: 1.22;
}

.home-page .approach-highlights .highlight-strip strong > span,
html[lang="zh-CN"] .home-page .approach-highlights .highlight-strip strong > span {
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

@media (max-width: 620px) {
  .section-intro-no-index {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .home-page .section-intro,
  .about-page .section-intro {
    row-gap: 16px;
  }

  .home-page .section-intro > .section-summary,
  .about-page .section-intro > .section-summary {
    max-width: 100%;
  }

  .home-page .approach-highlights .highlight-strip strong,
  html[lang="zh-CN"] .home-page .approach-highlights .highlight-strip strong {
    font-size: 23px;
  }

  .home-page .approach-highlights .highlight-strip strong > span,
  html[lang="zh-CN"] .home-page .approach-highlights .highlight-strip strong > span {
    font-size: inherit;
  }
}

/* V2.11 tighter and more consistent vertical rhythm */
.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-intro {
  padding-bottom: 34px;
}

.editorial-pair {
  padding-top: 34px;
}

.capability-row {
  min-height: 126px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.image-statement {
  min-height: 540px;
}

.image-statement-media {
  min-height: 500px;
}

.image-statement-copy {
  padding-top: 54px;
  padding-bottom: 54px;
}

.image-statement-copy blockquote {
  margin-bottom: 44px;
}

.principle-grid {
  padding-top: 48px;
}

.principle-card {
  min-height: 270px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.principle-line {
  margin-bottom: 38px;
}

.principle-card h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.global-panel,
.global-panel-content {
  min-height: 560px;
}

.insight-row {
  min-height: 104px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.section-action {
  padding-top: 22px;
}

.statement-cta {
  min-height: 400px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.page-hero,
.page-hero-image {
  min-height: 530px;
}

.page-hero-light {
  min-height: 400px;
}

.page-hero-inner,
.page-hero-image .page-hero-inner {
  padding-top: 92px;
  padding-bottom: 50px;
}

.page-hero-inner h1 {
  margin-bottom: 20px;
}

.longform-grid {
  padding-top: 36px;
}

.vision-band,
.vision-band-inner {
  min-height: 500px;
}

.vision-band h2 {
  margin-bottom: 34px;
}

.feature-image {
  margin-top: 36px;
}

.service-intro {
  padding-bottom: 58px;
}

.service-pillar-overview {
  margin-top: 32px;
}

.service-detail {
  padding-top: 62px;
  padding-bottom: 68px;
  gap: 32px 42px;
}

.service-detail-heading {
  padding-bottom: 24px;
}

.service-detail-heading h2 {
  margin-bottom: 22px;
}

.service-detail-body > p:first-child {
  margin-bottom: 18px;
}

.service-objective {
  padding-top: 16px;
}

.faq-list {
  margin-top: 20px;
}

.industry-catalog {
  margin-bottom: 64px;
}

.industry-entry {
  min-height: 360px;
  padding-top: 34px;
  padding-bottom: 34px;
  grid-template-rows: auto minmax(92px, auto) minmax(84px, 1fr) auto auto;
}

.industry-entry h2 {
  margin-top: 22px;
  margin-bottom: 14px;
}

.industry-entry > p {
  margin-bottom: 14px;
  line-height: 1.62;
}

.industry-support {
  min-height: 62px;
}

.industry-entry a {
  margin-top: 14px;
}

.industry-perspective,
.industry-perspective-image {
  min-height: 540px;
}

.industry-perspective-copy {
  padding-top: 52px;
  padding-bottom: 52px;
}

.insights-list {
  padding-top: 44px;
  padding-bottom: 70px;
}

.insight-card a {
  min-height: 210px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.insight-categories,
.inquiry-types {
  padding-top: 56px;
  padding-bottom: 56px;
}

.insight-category,
.inquiry-types article {
  min-height: 190px;
}

.insight-category h3 {
  margin-top: 26px;
  margin-bottom: 14px;
}

.contact-layout {
  padding-top: 60px;
  padding-bottom: 72px;
}

.contact-office {
  margin-top: 34px;
  padding-top: 20px;
}

.inquiry-types h3 {
  margin-top: 28px;
  margin-bottom: 14px;
}

.article-header {
  padding-top: 60px;
  padding-bottom: 50px;
}

.article-breadcrumb {
  margin-bottom: 38px;
}

.article-layout {
  padding-top: 52px;
  padding-bottom: 72px;
}

.article-copy h2,
.article-copy h3,
.article-copy h4 {
  margin-top: 32px;
}

.related-insights {
  padding-top: 58px;
  padding-bottom: 58px;
}

.related-insights-heading {
  margin-bottom: 30px;
}

.related-insight-card {
  min-height: 230px;
  padding: 28px;
}

.related-insight-card h3 {
  margin-top: 34px;
  margin-bottom: 20px;
}

.legal-copy {
  padding-top: 54px;
  padding-bottom: 72px;
}

.legal-copy section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.site-footer {
  padding-top: 50px;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-bottom {
  padding-top: 18px;
}

.section-industries {
  padding-bottom: 44px;
}

.highlight-strip {
  margin-top: 34px;
}

.section-custom .editorial-pair {
  padding-top: 24px;
}

@media (max-width: 900px) {
  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-intro {
    padding-bottom: 30px;
  }

  .editorial-pair {
    padding-top: 28px;
  }

  .page-hero,
  .page-hero-image {
    min-height: 490px;
  }

  .page-hero-inner,
  .page-hero-image .page-hero-inner {
    padding-top: 86px;
    padding-bottom: 44px;
  }

  .statement-cta {
    min-height: 360px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .service-detail {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .contact-layout {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .article-header {
    padding-top: 52px;
    padding-bottom: 44px;
  }
}

@media (max-width: 620px) {
  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section-intro {
    padding-bottom: 24px;
  }

  .editorial-pair {
    padding-top: 22px;
  }

  .capability-row {
    min-height: 112px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .principle-grid {
    padding-top: 34px;
  }

  .principle-card {
    min-height: 230px;
  }

  .statement-cta {
    min-height: 330px;
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .page-hero,
  .page-hero-image {
    min-height: 460px;
  }

  .page-hero-inner,
  .page-hero-image .page-hero-inner {
    padding-top: 78px;
    padding-bottom: 38px;
  }

  .service-intro {
    padding-bottom: 46px;
  }

  .service-pillar-overview {
    margin-top: 26px;
  }

  .service-detail {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .industry-catalog {
    margin-bottom: 48px;
  }

  .industry-entry {
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 28px;
    grid-template-rows: auto auto auto auto auto;
  }

  .industry-entry h2 {
    margin-top: 18px;
  }

  .insights-list {
    padding-top: 36px;
    padding-bottom: 54px;
  }

  .insight-categories,
  .inquiry-types,
  .related-insights {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .contact-layout {
    padding-top: 44px;
    padding-bottom: 52px;
  }

  .article-header {
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .article-breadcrumb {
    margin-bottom: 30px;
  }

  .article-layout {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .legal-copy {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-top {
    padding-bottom: 34px;
  }
}
