:root {
  --ink: #111416;
  --ink-soft: #182126;
  --paper: #f4f7f7;
  --paper-light: #ffffff;
  --paper-deep: #e8eeee;
  --blue: #276fd6;
  --blue-deep: #1651b4;
  --celadon: #dfece8;
  --celadon-light: #edf5f2;
  --muted: #60696d;
  --line: rgba(17, 20, 22, 0.16);
  --line-strong: rgba(17, 20, 22, 0.36);
  --line-dark: rgba(255, 255, 255, 0.17);
  --font-display: "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-sans: "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --shell: 1320px;
  --header-height: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  background: var(--ink);
  color: var(--paper-light);
  transform: translateY(-170%);
}

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

.page-shell,
.header-shell,
.hero-shell {
  width: min(calc(100% - 96px), var(--shell));
  margin-inline: auto;
}

.section-space {
  padding-block: 144px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(17, 20, 22, 0.12);
  color: var(--ink);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: rgba(17, 20, 22, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(16, 27, 34, 0.06);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  position: relative;
  display: block;
  width: 176px;
  height: 72px;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 220ms ease;
}

.brand-logo-reverse {
  opacity: 0;
}

.brand-logo-fullcolor {
  opacity: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: inherit;
  font-size: 13px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.site-nav .nav-contact {
  color: var(--blue-deep);
  font-weight: 650;
}

.menu-button {
  display: none;
  padding: 8px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 86svh;
  overflow: hidden;
  background: var(--paper-light);
  color: var(--ink);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  opacity: 0.98;
  pointer-events: none;
  transform: scale(1.025);
  animation: daylight-drift 22s ease-in-out infinite alternate;
}

@keyframes daylight-drift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-8px, -3px, 0); }
}

.hero-identity {
  position: absolute;
  top: 16%;
  right: -4%;
  width: min(720px, 53vw);
  max-width: none;
  opacity: 0.045;
  pointer-events: none;
  animation: identity-breathe 18s ease-in-out infinite alternate;
}

@keyframes identity-breathe {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-14px, 8px, 0); }
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 100%;
  padding-top: calc(var(--header-height) + 156px);
  padding-bottom: 176px;
  grid-template-columns: minmax(560px, 1.08fr) minmax(330px, 0.72fr);
  gap: clamp(82px, 9vw, 154px);
  align-items: center;
}

.hero-copy {
  position: relative;
  min-width: 0;
}

.hero-copy h1 {
  margin: 0;
  max-width: 670px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 620;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-copy h1::after {
  display: block;
  width: min(560px, 83%);
  height: 1px;
  margin-top: 38px;
  background: var(--blue);
  content: "";
}

.hero-copy > p {
  max-width: 590px;
  margin: 30px 0 0;
  color: #465055;
  font-size: 16px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  margin-top: 42px;
  align-items: center;
  gap: 34px;
}

.text-link,
.button {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.text-link::after,
.button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.text-link:hover::after,
.button:hover::after {
  transform: scaleX(0.56);
}

.button {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
}

.hero-portfolio {
  position: relative;
  width: min(370px, 100%);
  align-self: center;
  justify-self: end;
  padding-top: 28px;
  border-top: 2px solid var(--blue);
  transform: translateY(84px);
}

.hero-portfolio p {
  display: flex;
  margin: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.hero-portfolio strong {
  color: var(--blue);
  font-size: 80px;
  font-weight: 280;
  line-height: 0.9;
}

.hero-portfolio sup {
  position: relative;
  top: -0.34em;
  font-size: 0.36em;
  font-weight: 520;
}

.hero-portfolio p > span {
  padding-bottom: 6px;
  color: #4f5a5f;
  font-size: 13px;
}

.hero-portfolio ul {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.hero-portfolio li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: #394247;
  font-size: 12px;
}

.hero-logo-runner {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 124px;
  overflow: hidden;
  border-top: 1px solid rgba(39, 111, 214, 0.48);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -22px 58px rgba(22, 48, 65, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent 100%);
}

.hero-logo-track {
  display: flex;
  width: max-content;
  animation: hero-logo-drift 38s linear infinite;
}

.hero-logo-runner:hover .hero-logo-track,
.hero-logo-runner:focus-within .hero-logo-track {
  animation-play-state: paused;
}

.hero-logo-runner.is-motion-paused .hero-logo-track {
  animation-play-state: paused;
}

.hero-logo-run {
  display: flex;
  flex: none;
  align-items: center;
}

.hero-logo-run img {
  width: auto;
  max-width: 188px;
  height: auto;
  max-height: 52px;
  padding: 28px 38px;
  border-right: 1px solid rgba(17, 20, 22, 0.1);
  object-fit: contain;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

@keyframes hero-logo-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 145px;
  left: max(48px, calc((100vw - var(--shell)) / 2));
  color: #677176;
  font-size: 11px;
}

.scroll-cue::after {
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-left: 14px;
  background: var(--blue);
  content: "";
  vertical-align: middle;
  transform-origin: left;
  animation: cue-line 2.8s ease-in-out infinite;
}

@keyframes cue-line {
  0%, 100% { transform: scaleX(0.35); }
  50% { transform: scaleX(1); }
}

.eyebrow {
  margin: 0 0 28px;
  padding-left: 15px;
  border-left: 2px solid var(--blue);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
}

.eyebrow-light {
  border-color: rgba(255, 255, 255, 0.78);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.72fr);
  gap: 90px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -44px;
}

.section-heading h2,
.brands-intro h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 590;
  letter-spacing: 0;
}

.section-heading h2 {
  font-size: 52px;
  line-height: 1.28;
}

.section-heading > p:last-child {
  max-width: 540px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.section-heading-light h2 {
  color: var(--paper-light);
}

.section-heading-light .eyebrow {
  border-color: #78adf3;
  color: #78adf3;
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.markets {
  position: relative;
  padding-block: 0 132px;
  overflow: hidden;
  background: var(--ink-soft);
  color: var(--paper-light);
}

.market-columns {
  display: grid;
  margin-top: 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-columns article {
  min-height: 452px;
  padding: 42px 46px 34px;
  border-left: 1px solid var(--line-dark);
}

.market-columns article:first-child {
  border-left: 0;
  padding-left: 0;
}

.market-columns h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 560;
  line-height: 1.35;
}

.market-columns article > p {
  min-height: 116px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 2;
}

.market-columns ul {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.market-columns li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.client-portfolio {
  position: relative;
  padding-block: 72px 78px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef4f2;
}

.client-portfolio::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(39, 111, 214, 0.42);
  content: "";
}

.client-portfolio-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
}

.client-portfolio-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 590;
  line-height: 1.3;
}

.client-portfolio-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.client-marquee {
  position: relative;
  margin-top: 38px;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(22, 48, 65, 0.06);
  isolation: isolate;
}

.client-marquee::after {
  position: absolute;
  z-index: 2;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 1px;
  background: rgba(39, 111, 214, 0.82);
  box-shadow: 30px 0 74px rgba(39, 111, 214, 0.22);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-4vw);
}

.client-marquee.is-visible::after {
  animation: client-light-pass 1800ms var(--ease) 280ms 1 both;
}

.client-marquee-track {
  display: flex;
  width: max-content;
  animation: client-logo-drift 58s linear infinite;
}

.client-marquee:hover .client-marquee-track,
.client-marquee:focus-within .client-marquee-track {
  animation-play-state: paused;
}

.client-marquee.is-motion-paused .client-marquee-track {
  animation-play-state: paused;
}

.client-logo-run {
  display: flex;
  flex: none;
}

.client-logo-run img {
  width: 210px;
  height: 104px;
  padding: 26px 34px;
  border-right: 1px solid rgba(17, 20, 22, 0.1);
  object-fit: contain;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transition: filter 280ms ease, opacity 280ms ease, transform 320ms var(--ease);
}

.client-logo-run img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

@keyframes client-logo-drift {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes client-light-pass {
  0% { opacity: 0; transform: translateX(-4vw); }
  18%, 78% { opacity: 1; }
  100% { opacity: 0; transform: translateX(104vw); }
}

.credentials {
  background: var(--paper-light);
}

.credential-spread {
  display: grid;
  margin-top: 104px;
  padding-top: 38px;
  border-top: 2px solid var(--blue);
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.32fr) minmax(220px, 0.58fr);
  gap: 48px;
  align-items: end;
}

.credential-name {
  margin: 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 700;
}

.credential-copy h3 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 580;
  line-height: 1.36;
}

.credential-copy > p:nth-of-type(2) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.credential-copy dl {
  margin: 40px 0 0;
}

.credential-copy dl > div {
  display: grid;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 84px 1fr;
  gap: 18px;
}

.credential-copy dt {
  color: var(--muted);
  font-size: 11px;
}

.credential-copy dd {
  margin: 0;
  font-size: 13px;
}

.credential-spread figure {
  margin: 0;
}

.authorization-figure img {
  width: 100%;
  border: 1px solid rgba(17, 20, 22, 0.1);
  background: #fff;
  box-shadow: 0 24px 60px rgba(23, 51, 69, 0.12);
}

.store-figure {
  justify-self: end;
}

.store-figure img {
  width: 100%;
  max-height: 660px;
  object-fit: contain;
  object-position: bottom center;
  filter: saturate(0.94) contrast(1.02);
}

.credential-spread figcaption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 11px;
}

.experience-spread {
  display: grid;
  margin-top: 136px;
  padding-top: 42px;
  border-top: 1px solid var(--line-strong);
  grid-template-columns: minmax(320px, 0.78fr) minmax(580px, 1.22fr);
  gap: 90px;
}

.experience-spread h3 {
  max-width: 470px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 580;
  line-height: 1.48;
}

.experience-spread ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.experience-spread li {
  min-height: 90px;
  padding: 22px 18px 18px 0;
  border-bottom: 1px solid var(--line);
  color: #364146;
  font-size: 14px;
}

.brands {
  background: var(--celadon-light);
}

.brands-intro {
  display: grid;
  grid-template-columns: minmax(440px, 1fr) minmax(360px, 0.78fr);
  gap: 100px;
  align-items: end;
}

.brands-intro h2 {
  font-size: 60px;
  line-height: 1.2;
}

.brands-intro > p {
  max-width: 580px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.logo-marquee {
  margin-top: 94px;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent 100%);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logo-drift 46s linear infinite;
}

.logo-marquee:hover .logo-marquee-track,
.logo-marquee:focus-within .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee.is-motion-paused .logo-marquee-track {
  animation-play-state: paused;
}

.logo-run {
  display: flex;
  flex: none;
  align-items: center;
}

.logo-run img {
  width: auto;
  max-width: 188px;
  height: auto;
  max-height: 52px;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
}

@keyframes logo-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-browser {
  margin-top: 86px;
}

.brand-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-strong);
  scrollbar-width: none;
}

.brand-tabs::-webkit-scrollbar {
  display: none;
}

.brand-tabs button {
  position: relative;
  min-width: max-content;
  padding: 14px 20px 20px 0;
  margin-right: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.brand-tabs button::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.brand-tabs button[aria-selected="true"] {
  color: var(--ink);
  font-weight: 700;
}

.brand-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand-panel {
  min-height: 510px;
  padding-top: 44px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.brand-panel.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.brand-panel-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.brand-panel-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 580;
}

.brand-panel-heading span {
  color: var(--muted);
  font-size: 12px;
}

.brand-logo-grid {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
}

.brand-logo-cell {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 118px;
  padding: 24px 18px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  place-items: center;
  background: rgba(255, 255, 255, 0.64);
  transition: background-color 240ms ease;
}

.brand-logo-cell::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 1px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 240ms ease, transform 320ms var(--ease);
}

.brand-logo-cell img {
  display: block;
  width: auto;
  max-width: 66%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
  transform: translateY(0);
  transition: filter 260ms ease, opacity 260ms ease, transform 360ms var(--ease);
}

.brand-logo-cell img.is-wide {
  max-width: 78%;
  max-height: 36px;
}

.brand-logo-cell img.is-mark {
  max-width: 52px;
  max-height: 52px;
}

.brand-logo-cell img.is-compact {
  max-width: 54%;
  max-height: 34px;
}

.brand-logo-cell img.is-dark {
  filter: brightness(0);
  opacity: 0.68;
}

.brand-logo-cell:hover,
.brand-logo-cell:focus-within {
  background: rgba(255, 255, 255, 0.92);
}

.brand-logo-cell:hover::after,
.brand-logo-cell:focus-within::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.brand-logo-cell:hover img,
.brand-logo-cell:focus-within img {
  filter: grayscale(0.08) saturate(0.84) contrast(1);
  opacity: 1;
  transform: translateY(-2px);
}

.brand-logo-cell:hover img.is-dark,
.brand-logo-cell:focus-within img.is-dark {
  filter: brightness(0);
}

.brand-panel:not(.is-changing) .brand-logo-cell {
  animation: brand-cell-in 440ms var(--ease) both;
  animation-delay: calc(var(--brand-index) * 22ms);
}

@keyframes brand-cell-in {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  padding-block: 126px;
  background: var(--blue-deep);
  color: var(--paper-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(430px, 0.86fr);
  gap: 110px;
  align-items: end;
}

.contact h2 {
  max-width: 650px;
  font-size: 50px;
  line-height: 1.35;
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-details a {
  display: grid;
  min-height: 88px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  transition: background-color 220ms ease;
}

.contact-details a > * {
  transition: transform 260ms var(--ease);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.contact-details a:hover > *,
.contact-details a:focus-visible > * {
  transform: translateX(12px);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.contact-details strong {
  overflow-wrap: anywhere;
  font-size: 19px;
  font-weight: 520;
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.56);
}

.footer-layout {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 34px;
  align-items: center;
  font-size: 11px;
}

.footer-layout a {
  width: 150px;
}

.footer-layout p {
  margin: 0;
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 720ms ease, transform 900ms var(--ease);
}

.reveal.is-visible,
.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > *:nth-child(2) { transition-delay: 90ms; }
.reveal-group > *:nth-child(3) { transition-delay: 180ms; }

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

@media (max-width: 1180px) {
  .page-shell,
  .header-shell,
  .hero-shell {
    width: min(calc(100% - 64px), var(--shell));
  }

  .hero-shell {
    grid-template-columns: minmax(460px, 1fr) minmax(280px, 320px);
    gap: 64px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-portfolio {
    width: min(320px, 100%);
  }

  .hero-portfolio strong {
    font-size: 72px;
  }

  .market-columns article {
    padding-inline: 34px;
  }

  .credential-spread {
    grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.2fr) minmax(190px, 0.5fr);
    gap: 32px;
  }

  .brand-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .page-shell,
  .header-shell,
  .hero-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .brand-mark {
    width: 148px;
  }

  .menu-button {
    display: grid;
    position: relative;
    z-index: 2;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    overflow-x: hidden;
    overflow-y: auto;
    padding-inline: 20px;
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: transform 340ms var(--ease), opacity 180ms ease, visibility 0s linear 340ms;
  }

  .site-nav.is-open {
    padding-bottom: 22px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

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

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

  .hero-atmosphere {
    object-position: 58% center;
  }

  .hero-shell {
    min-height: 940px;
    padding-top: 126px;
    padding-bottom: 176px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    gap: 48px;
  }

  .hero-copy {
    width: min(620px, 100%);
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-copy > p {
    max-width: 540px;
  }

  .hero-portfolio {
    display: grid;
    width: 100%;
    padding-top: 22px;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 36px;
    align-items: end;
    align-self: start;
    justify-self: stretch;
    transform: none;
  }

  .hero-portfolio p {
    display: block;
  }

  .hero-portfolio strong {
    display: block;
    font-size: 66px;
  }

  .hero-portfolio p > span {
    display: block;
    margin-top: 12px;
    padding-bottom: 0;
  }

  .hero-portfolio ul {
    margin-top: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 20px;
  }

  .section-heading,
  .brands-intro,
  .contact-layout,
  .experience-spread {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

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

  .market-columns article,
  .market-columns article:first-child {
    min-height: auto;
    padding: 36px 0 44px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .market-columns article > p {
    min-height: auto;
    max-width: 640px;
  }

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

  .credential-spread {
    grid-template-columns: 1fr 0.55fr;
  }

  .credential-copy {
    grid-column: 1 / -1;
    max-width: 680px;
  }

  .authorization-figure {
    align-self: start;
  }

  .experience-spread ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details {
    margin-top: 16px;
  }

  .client-portfolio-head {
    align-items: flex-end;
  }
}

@media (max-width: 620px) {
  .page-shell,
  .header-shell,
  .hero-shell {
    width: calc(100% - 36px);
  }

  .section-space,
  .markets {
    padding-block: 100px;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - 16px);
  }

  .hero-atmosphere {
    object-position: 60% center;
    opacity: 0.72;
  }

  .hero-identity {
    top: 16%;
    right: -40%;
    width: 118vw;
    opacity: 0.035;
  }

  .hero-shell {
    min-height: 100%;
    height: 100%;
    padding-top: 80px;
    padding-bottom: 112px;
    align-content: center;
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.28;
  }

  .hero-copy h1::after {
    margin-top: 20px;
  }

  .hero-copy > p {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.72;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 24px;
  }

  .text-link,
  .button {
    min-height: 38px;
    font-size: 12px;
  }

  .hero-portfolio {
    width: 100%;
    padding-top: 12px;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
  }

  .hero-portfolio strong {
    font-size: 43px;
  }

  .hero-portfolio p > span {
    margin-top: 6px;
    font-size: 10px;
  }

  .hero-portfolio ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }

  .hero-portfolio li {
    padding: 6px 0;
    font-size: 9px;
  }

  .hero-logo-runner {
    height: 82px;
  }

  .hero-logo-run img {
    max-width: 132px;
    max-height: 40px;
    padding: 23px 28px;
  }

  .scroll-cue {
    bottom: 94px;
    left: 18px;
    font-size: 9px;
  }

  .section-heading h2,
  .contact h2 {
    font-size: 39px;
  }

  .section-heading > p:last-child,
  .brands-intro > p {
    font-size: 14px;
    line-height: 1.9;
  }

  .market-columns {
    margin-top: 68px;
  }

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

  .client-portfolio {
    padding-block: 56px 62px;
  }

  .client-portfolio-head {
    display: grid;
    gap: 10px;
  }

  .client-portfolio-head h2 {
    font-size: 27px;
  }

  .client-marquee {
    margin-top: 28px;
  }

  .client-logo-run img {
    width: 164px;
    height: 90px;
    padding: 24px 27px;
  }

  .credential-spread {
    margin-top: 72px;
    grid-template-columns: 1fr;
  }

  .authorization-figure,
  .store-figure {
    width: 100%;
  }

  .store-figure img {
    width: min(300px, 100%);
    margin-inline: auto;
    max-height: none;
  }

  .experience-spread {
    margin-top: 100px;
  }

  .experience-spread h3 {
    font-size: 30px;
  }

  .experience-spread ul {
    grid-template-columns: 1fr;
  }

  .brands-intro h2 {
    font-size: 50px;
  }

  .logo-marquee {
    margin-top: 70px;
  }

  .logo-run img {
    max-width: 150px;
    max-height: 42px;
    padding: 24px 28px;
  }

  .brand-browser {
    margin-top: 66px;
  }

  .brand-panel {
    min-height: 610px;
  }

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

  .brand-logo-cell {
    min-height: 102px;
    padding: 20px 14px;
  }

  .brand-logo-cell img {
    max-width: 70%;
    max-height: 38px;
  }

  .brand-logo-cell img.is-wide {
    max-width: 82%;
    max-height: 32px;
  }

  .contact {
    padding-block: 96px;
  }

  .contact-details a {
    min-height: 82px;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-details strong {
    font-size: 16px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-layout a {
    width: 140px;
  }
}

/* 2026-08-16: optical consistency for the partner and brand walls. */
.client-portfolio .institution-ribbon {
  margin-top: 84px !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(18, 31, 39, 0.2) !important;
  border-bottom: 0 !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

.client-portfolio .institution-ribbon-track {
  animation-duration: 58s !important;
  will-change: transform;
}

.client-portfolio .institution-logo-ribbon {
  width: 228px !important;
  height: 154px !important;
  padding: 30px 28px !important;
  background: rgba(255, 255, 255, 0.32) !important;
  border-right: 1px solid rgba(18, 31, 39, 0.12) !important;
}

.client-portfolio .institution-logo-ribbon img,
.client-portfolio .institution-logo-ribbon[class*="institution-logo-"] img {
  display: block !important;
  width: 156px !important;
  height: 44px !important;
  max-width: 100% !important;
  max-height: 44px !important;
  object-fit: contain !important;
  object-position: center !important;
  image-rendering: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

/* The available foundation marks are small transparent originals: keep them below their native pixel density. */
.client-portfolio .institution-logo-charity img {
  width: 158px !important;
  height: 31px !important;
}

.client-portfolio .institution-logo-children img {
  width: 156px !important;
  height: 36px !important;
}

.client-portfolio .institution-logo-baoland img {
  width: 142px !important;
  height: 41px !important;
}

.client-portfolio .client-category-key.institution-name-index {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 !important;
  border-top: 1px solid rgba(18, 31, 39, 0.12) !important;
  border-bottom: 1px solid rgba(18, 31, 39, 0.18) !important;
  background: rgba(246, 248, 248, 0.96) !important;
}

.client-portfolio .institution-name-index li {
  display: grid !important;
  min-height: 96px !important;
  padding: 18px 20px !important;
  border-right: 1px solid rgba(18, 31, 39, 0.12) !important;
  align-content: center !important;
  gap: 8px !important;
  counter-increment: institution-index !important;
  text-align: left !important;
}

.client-portfolio .institution-name-index li strong {
  display: block !important;
  font-size: 17px !important;
  font-weight: 560 !important;
  letter-spacing: 0 !important;
  color: #263139 !important;
}

.credentials .store-page-pair {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(124px, 0.72fr) !important;
  align-items: end !important;
  gap: 16px !important;
  min-height: 0 !important;
  padding: 18px !important;
  background: linear-gradient(145deg, #151d22, #091014 78%) !important;
}

.credentials .store-page {
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: #080d10 !important;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2) !important;
}

.credentials .store-page img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.credentials .store-page-products {
  justify-self: end !important;
  width: min(100%, 236px) !important;
  aspect-ratio: 438 / 690 !important;
}

.credentials .store-page-flagship {
  width: 100% !important;
  height: 294px !important;
}

.credentials .store-page-products img {
  object-position: center 46% !important;
}

.credentials .store-page-flagship img {
  object-position: center 30% !important;
}

.credentials .store-figure figcaption {
  max-width: 100% !important;
}

.brands .brand-atlas-item,
.brands .brand-atlas-item:nth-child(3n),
.brands .brand-atlas-item:nth-child(5n),
.brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
  width: 224px !important;
  height: 118px !important;
  padding: 26px 22px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-sizing: border-box !important;
}

.brands .brand-atlas-item img,
.brands .brand-atlas-item img.is-wide,
.brands .brand-atlas-item img.is-mark,
.brands .brand-atlas-item img.is-compact,
.brands .brand-atlas-item img.is-dark {
  display: block !important;
  width: 150px !important;
  height: 42px !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 42px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center !important;
  image-rendering: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

.brands .brand-atlas-item img.is-wide {
  width: 164px !important;
  height: 38px !important;
  max-height: 38px !important;
}

.brands .brand-atlas-item img.is-mark {
  width: 52px !important;
  height: 52px !important;
  max-height: 52px !important;
}

.brands .brand-atlas-item img.is-compact {
  width: 124px !important;
  height: 38px !important;
  max-height: 38px !important;
}

.brands-stage .logo-run img,
.brands-stage .hero-logo-run img,
.hero-logo-run img,
.logo-run img {
  width: clamp(108px, calc(126px * var(--brand-optical-scale, 1)), 164px) !important;
  height: auto !important;
  max-width: 164px !important;
  max-height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  transform: none !important;
  image-rendering: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .client-portfolio .institution-ribbon {
    margin-top: 64px !important;
  }

  .client-portfolio .institution-logo-ribbon {
    width: 192px !important;
    height: 126px !important;
    padding: 24px 20px !important;
  }

  .client-portfolio .institution-logo-ribbon img,
  .client-portfolio .institution-logo-ribbon[class*="institution-logo-"] img {
    width: 138px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .client-portfolio .institution-logo-charity img {
    width: 136px !important;
    height: 27px !important;
  }

  .client-portfolio .institution-logo-children img {
    width: 134px !important;
    height: 31px !important;
  }

  .client-portfolio .institution-logo-baoland img {
    width: 122px !important;
    height: 35px !important;
  }

  .client-portfolio .institution-name-index li {
    min-height: 68px !important;
    padding: 0 12px !important;
  }

  .client-portfolio .institution-name-index li strong {
    font-size: 15px !important;
  }

  .credentials .store-page-pair {
    gap: 10px !important;
    padding: 12px !important;
  }

  .credentials .store-page-products {
    width: min(100%, 184px) !important;
  }

  .credentials .store-page-flagship {
    height: 236px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 188px !important;
    height: 104px !important;
    padding: 22px 18px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-mark,
  .brands .brand-atlas-item img.is-compact,
  .brands .brand-atlas-item img.is-dark {
    width: 138px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .brands .brand-atlas-item img.is-wide {
    width: 148px !important;
    height: 34px !important;
    max-height: 34px !important;
  }

  .brands .brand-atlas-item img.is-mark {
    width: 46px !important;
    height: 46px !important;
    max-height: 46px !important;
  }

  .brands .brand-atlas-item img.is-compact {
    width: 112px !important;
    height: 34px !important;
    max-height: 34px !important;
  }
}

@media (max-width: 620px) {
  .client-portfolio .institution-name-index li {
    min-height: 82px !important;
    padding: 14px 12px !important;
    gap: 6px !important;
  }

  .client-portfolio .institution-name-index li strong {
    font-size: 14px !important;
  }

  .credentials .store-page-pair {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 0.7fr) !important;
  }

  .credentials .store-page-products {
    width: min(100%, 156px) !important;
  }

  .credentials .store-page-flagship {
    height: 164px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 170px !important;
    height: 94px !important;
    padding: 18px 14px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-mark,
  .brands .brand-atlas-item img.is-compact,
  .brands .brand-atlas-item img.is-dark {
    width: 126px !important;
    height: 35px !important;
    max-height: 35px !important;
  }

  .brands .brand-atlas-item img.is-wide {
    width: 134px !important;
    height: 32px !important;
    max-height: 32px !important;
  }

  .brands .brand-atlas-item img.is-mark {
    width: 42px !important;
    height: 42px !important;
    max-height: 42px !important;
  }

  .brands .brand-atlas-item img.is-compact {
    width: 104px !important;
    height: 32px !important;
    max-height: 32px !important;
  }
}

/* Official reverse mark: this Foundation distributes its current Logo for a green field. */
.client-portfolio .institution-logo-children img {
  width: 166px !important;
  height: 46px !important;
  max-height: 46px !important;
  padding: 9px 12px !important;
  box-sizing: border-box !important;
  background: #2f914a !important;
}

@media (max-width: 900px) {
  .client-portfolio .institution-logo-children img {
    width: 144px !important;
    height: 40px !important;
    max-height: 40px !important;
    padding: 8px 10px !important;
  }
}

/* 2026-08-16: one optical grid, no repeated Logo fillers in the catalogue. */
.market-ledger .market-index,
.credential-index,
.credential-evidence figcaption span,
.experience-spread ol li > span,
.institution-name-index li::before {
  display: none !important;
}

.credential-evidence figcaption,
.store-figure figcaption {
  gap: 0 !important;
}

.experience-spread ol li {
  grid-template-columns: 1fr !important;
}

.hero-logo-run-cell,
.logo-run-cell {
  display: grid !important;
  flex: 0 0 216px !important;
  width: 216px !important;
  height: 124px !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-right: 1px solid rgba(18, 31, 39, 0.12) !important;
  place-items: center !important;
}

.hero-logo-run img,
.logo-run img,
.brands-stage .hero-logo-run img,
.brands-stage .logo-run img {
  display: block !important;
  width: 148px !important;
  height: 52px !important;
  max-width: 148px !important;
  max-height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(var(--brand-optical-scale, 1)) !important;
  transform-origin: center !important;
}

.brands .brand-atlas {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, 224px) !important;
  justify-content: center !important;
  margin-top: 38px !important;
  overflow: visible !important;
  background: transparent !important;
}

.brands .brand-atlas-item,
.brands .brand-atlas-item:nth-child(3n),
.brands .brand-atlas-item:nth-child(5n),
.brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
  display: grid !important;
  width: 224px !important;
  height: 118px !important;
  padding: 26px 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(18, 31, 39, 0.12) !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.78) !important;
}

.brands .brand-atlas-item img,
.brands .brand-atlas-item img.is-wide,
.brands .brand-atlas-item img.is-mark,
.brands .brand-atlas-item img.is-compact,
.brands .brand-atlas-item img.is-dark {
  display: block !important;
  width: 150px !important;
  height: 46px !important;
  max-width: 150px !important;
  max-height: 46px !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(var(--brand-optical-scale, 1)) !important;
  transform-origin: center !important;
}

.brands .brand-atlas-item img.is-mark {
  width: 62px !important;
  height: 62px !important;
  max-width: 62px !important;
  max-height: 62px !important;
}

.credentials .store-page-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}

.credentials .store-page-products,
.credentials .store-page-flagship {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 438 / 690 !important;
}

.credentials .store-page-products img {
  object-position: center 46% !important;
}

.credentials .store-page-flagship img {
  object-position: center 16% !important;
}

@media (max-width: 900px) {
  .hero-logo-run-cell,
  .logo-run-cell {
    flex-basis: 176px !important;
    width: 176px !important;
    height: 104px !important;
    padding: 0 18px !important;
  }

  .hero-logo-run img,
  .logo-run img,
  .brands-stage .hero-logo-run img,
  .brands-stage .logo-run img {
    width: 122px !important;
    height: 42px !important;
    max-width: 122px !important;
    max-height: 42px !important;
  }

  .brands .brand-atlas {
    grid-template-columns: repeat(auto-fit, 188px) !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 188px !important;
    height: 104px !important;
    padding: 22px 18px !important;
  }

  .credentials .store-page-pair {
    gap: 10px !important;
    padding: 12px !important;
  }
}

@media (max-width: 620px) {
  .brands .brand-atlas {
    grid-template-columns: repeat(auto-fit, 170px) !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 170px !important;
    height: 94px !important;
    padding: 18px 14px !important;
  }
}

/* Release 2026-08-16e: stable logo rails and a separated institution index. */
.hero-logo-run,
.logo-run {
  display: flex !important;
  flex: none !important;
  align-items: center !important;
}

.hero-logo-run-cell,
.logo-run-cell {
  display: grid !important;
  flex: 0 0 208px !important;
  height: 124px !important;
  padding: 20px 24px !important;
  border-right: 1px solid rgba(19, 32, 39, 0.12) !important;
  box-sizing: border-box !important;
  place-items: center !important;
}

.logo-run-cell {
  flex-basis: 216px !important;
  height: 118px !important;
}

.hero-logo-run-cell img,
.logo-run-cell img,
.hero-logo-run img,
.logo-run img,
.brands-stage .logo-run img,
.brands-stage .hero-logo-run img {
  display: block !important;
  width: clamp(108px, calc(126px * var(--brand-optical-scale, 1)), 164px) !important;
  height: auto !important;
  max-width: 164px !important;
  max-height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  transform: none !important;
  will-change: auto !important;
}

.hero-logo-run-cell.has-light-logo img,
.brands-stage .logo-run-cell.has-light-logo img,
.hero-logo-run img.is-light-logo,
.logo-run img.is-light-logo,
.brands .brand-atlas-item.has-light-logo img.is-light-logo {
  background: transparent !important;
  filter: brightness(0) saturate(100%) contrast(0.72) opacity(0.78) !important;
}

.brands .brand-atlas-item.tone-dark,
.brands .brand-atlas-item.has-light-logo {
  background: #fbfcfb !important;
}

.brands .brand-atlas-item.has-light-logo::after {
  content: none !important;
}

.brands .brand-atlas-item img,
.brands .brand-atlas-item img.is-wide,
.brands .brand-atlas-item img.is-mark,
.brands .brand-atlas-item img.is-compact,
.brands .brand-atlas-item img.is-dark {
  width: 154px !important;
  height: 44px !important;
  max-width: 82% !important;
  max-height: 44px !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(var(--brand-optical-scale, 1)) !important;
  transform-origin: center !important;
}

.brands .brand-atlas-item img.is-mark {
  width: 60px !important;
  height: 60px !important;
  max-height: 60px !important;
}

.client-portfolio .client-category-key.institution-name-index {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 !important;
  border-top: 1px solid rgba(19, 32, 39, 0.16) !important;
  border-bottom: 1px solid rgba(19, 32, 39, 0.16) !important;
  background: rgba(250, 251, 250, 0.98) !important;
  counter-reset: institution-index !important;
}

.client-portfolio .institution-name-index li {
  position: relative !important;
  display: grid !important;
  min-height: 96px !important;
  padding: 18px 20px !important;
  border-right: 1px solid rgba(19, 32, 39, 0.12) !important;
  align-content: center !important;
  gap: 8px !important;
  counter-increment: institution-index !important;
  text-align: left !important;
}

.client-portfolio .institution-name-index li:last-child {
  border-right: 0 !important;
}

.client-portfolio .institution-name-index li::before {
  color: #7290a3 !important;
  content: "0" counter(institution-index) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.client-portfolio .institution-name-index li strong {
  display: block !important;
  color: #1e2b33 !important;
  font-size: 18px !important;
  font-weight: 560 !important;
  line-height: 1.2 !important;
}

@media (max-width: 900px) {
  .hero-logo-run-cell,
  .logo-run-cell {
    flex-basis: 172px !important;
    height: 102px !important;
    padding: 16px 20px !important;
  }

  .hero-logo-run-cell img,
  .logo-run-cell img,
  .hero-logo-run img,
  .logo-run img {
    width: clamp(96px, calc(112px * var(--brand-optical-scale, 1)), 140px) !important;
    max-width: 140px !important;
    max-height: 44px !important;
  }

  .client-portfolio .institution-name-index li {
    min-height: 86px !important;
    padding: 16px 14px !important;
  }
}

@media (max-width: 620px) {
  .hero-logo-run-cell,
  .logo-run-cell {
    flex-basis: 132px !important;
    height: 90px !important;
    padding: 14px 14px !important;
  }

  .hero-logo-run-cell img,
  .logo-run-cell img,
  .hero-logo-run img,
  .logo-run img {
    width: clamp(82px, calc(98px * var(--brand-optical-scale, 1)), 116px) !important;
    max-width: 116px !important;
    max-height: 38px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-compact,
  .brands .brand-atlas-item img.is-dark {
    width: 126px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .brands .brand-atlas-item img.is-mark {
    width: 52px !important;
    height: 52px !important;
    max-height: 52px !important;
  }

  .client-portfolio .institution-name-index li {
    min-height: 82px !important;
    padding: 14px 12px !important;
    gap: 6px !important;
  }

  .client-portfolio .institution-name-index li::before {
    font-size: 11px !important;
  }

  .client-portfolio .institution-name-index li strong {
    font-size: 15px !important;
  }
}

/* Release 2026-08-16c: final visual sizing sits after legacy refinements. */
.brands-stage .logo-marquee {
  display: flex !important;
  min-height: 118px !important;
  overflow: hidden !important;
  opacity: 1 !important;
  transform: none !important;
}

.brands-stage .logo-marquee-track,
.brands-stage .logo-run {
  display: flex !important;
  min-height: 118px !important;
  align-items: center !important;
}

.brands-stage .logo-marquee-track {
  width: max-content !important;
  animation: logo-drift 58s linear infinite !important;
  animation-play-state: running !important;
}

.brands-stage .logo-run img {
  width: 156px !important;
  height: 44px !important;
  max-width: 156px !important;
  max-height: 44px !important;
  padding: 24px 30px !important;
  border-right: 1px solid rgba(19, 32, 39, 0.12) !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(var(--brand-optical-scale, 1)) !important;
  transform-origin: center !important;
}

.brands-stage .logo-run img.is-light-logo {
  background: transparent !important;
}

.brands .brand-atlas-item,
.brands .brand-atlas-item:nth-child(3n),
.brands .brand-atlas-item:nth-child(5n),
.brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
  position: relative !important;
  width: 224px !important;
  height: 118px !important;
  padding: 26px 22px !important;
  overflow: hidden !important;
  background: #fbfcfb !important;
  box-sizing: border-box !important;
}

.brands .brand-atlas-item img,
.brands .brand-atlas-item img.is-wide,
.brands .brand-atlas-item img.is-mark,
.brands .brand-atlas-item img.is-compact,
.brands .brand-atlas-item img.is-dark {
  width: 150px !important;
  height: 42px !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 42px !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(var(--brand-optical-scale, 1)) !important;
  transform-origin: center !important;
}

.brands .brand-atlas-item img.is-wide {
  width: 158px !important;
  height: 40px !important;
  max-height: 40px !important;
}

.brands .brand-atlas-item img.is-mark {
  width: 64px !important;
  height: 64px !important;
  max-height: 64px !important;
}

.brands .brand-atlas-item img.is-compact {
  width: 132px !important;
  height: 40px !important;
  max-height: 40px !important;
}

.brands .brand-atlas-item.has-light-logo {
  background: #fbfcfb !important;
}

.brands .brand-atlas-item.has-light-logo::after {
  content: none !important;
}

@media (max-width: 900px) {
  .brands-stage .logo-marquee,
  .brands-stage .logo-marquee-track,
  .brands-stage .logo-run {
    min-height: 102px !important;
  }

  .brands-stage .logo-run img {
    width: 132px !important;
    height: 38px !important;
    max-width: 132px !important;
    max-height: 38px !important;
    padding: 22px 24px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 198px !important;
    height: 104px !important;
    padding: 22px 18px !important;
  }
}

@media (max-width: 620px) {
  .brands-stage .logo-marquee,
  .brands-stage .logo-marquee-track,
  .brands-stage .logo-run {
    min-height: 90px !important;
  }

  .brands-stage .logo-run img {
    width: 112px !important;
    height: 32px !important;
    max-width: 112px !important;
    max-height: 32px !important;
    padding: 18px 20px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 170px !important;
    height: 94px !important;
    padding: 18px 14px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-compact {
    width: 126px !important;
    height: 35px !important;
    max-height: 35px !important;
  }

  .brands .brand-atlas-item img.is-mark {
    width: 54px !important;
    height: 54px !important;
    max-height: 54px !important;
  }
}

/* Release 2026-08-16b: logo optics and institutional gallery composition. */
.brands-stage .logo-marquee {
  display: flex !important;
  min-height: 118px !important;
  margin-top: 64px !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(255, 255, 255, 0.26) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26) !important;
  background: rgba(246, 249, 248, 0.94) !important;
  opacity: 1 !important;
  transform: none !important;
}

.brands-stage .logo-marquee-track,
.brands-stage .logo-run {
  display: flex !important;
  min-height: 118px !important;
  align-items: center !important;
}

.brands-stage .logo-marquee-track {
  width: max-content !important;
  animation: logo-drift 58s linear infinite !important;
  animation-play-state: running !important;
}

.brands-stage .logo-run img {
  width: 156px !important;
  height: 44px !important;
  max-width: 156px !important;
  max-height: 44px !important;
  padding: 24px 30px !important;
  border-right: 1px solid rgba(19, 32, 39, 0.12) !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  opacity: 1 !important;
}

.brands-stage .logo-run img.is-light-logo {
  background: transparent !important;
}

.brands .brand-atlas-item,
.brands .brand-atlas-item:nth-child(3n),
.brands .brand-atlas-item:nth-child(5n),
.brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
  position: relative !important;
  width: 224px !important;
  height: 118px !important;
  padding: 26px 22px !important;
  overflow: hidden !important;
  background: #fbfcfb !important;
  box-sizing: border-box !important;
}

.brands .brand-atlas-item img,
.brands .brand-atlas-item img.is-wide,
.brands .brand-atlas-item img.is-mark,
.brands .brand-atlas-item img.is-compact,
.brands .brand-atlas-item img.is-dark {
  width: 150px !important;
  height: 42px !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 42px !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(var(--brand-optical-scale, 1)) !important;
  transform-origin: center !important;
  filter: none !important;
  opacity: 1 !important;
}

.brands .brand-atlas-item img.is-wide {
  width: 158px !important;
  height: 40px !important;
  max-height: 40px !important;
}

.brands .brand-atlas-item img.is-mark {
  width: 64px !important;
  height: 64px !important;
  max-height: 64px !important;
}

.brands .brand-atlas-item img.is-compact {
  width: 132px !important;
  height: 40px !important;
  max-height: 40px !important;
}

.brands .brand-atlas-item.has-light-logo {
  background: #fbfcfb !important;
}

.brands .brand-atlas-item.has-light-logo::after {
  content: none !important;
}

.markets {
  padding-bottom: 112px !important;
  background: #e9eeec !important;
}

.market-ledger {
  position: relative !important;
  z-index: 3 !important;
  width: min(calc(100% - 96px), var(--shell)) !important;
  margin: -108px auto 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(20, 33, 39, 0.2) !important;
  background: #f7f9f8 !important;
  box-shadow: 0 28px 72px rgba(26, 38, 43, 0.14) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.market-ledger article {
  display: flex !important;
  min-height: 448px !important;
  padding: 48px 42px 40px !important;
  border: 0 !important;
  border-right: 1px solid rgba(20, 33, 39, 0.14) !important;
  background: rgba(251, 252, 251, 0.96) !important;
  flex-direction: column !important;
}

.market-ledger article:first-child {
  border-left: 0 !important;
}

.market-ledger article:nth-child(2) {
  background: #1d2b31 !important;
}

.market-ledger article:nth-child(3) {
  background: #dfe7e4 !important;
  border-right: 0 !important;
}

.market-ledger article:hover {
  transform: none !important;
}

.market-ledger .market-index {
  margin-bottom: 86px !important;
  color: #487daf !important;
}

.market-ledger .market-copy h3 {
  margin: 0 !important;
  color: #18242a !important;
  font-size: 34px !important;
  line-height: 1.2 !important;
}

.market-ledger .market-copy p {
  min-height: 82px !important;
  margin: 24px 0 0 !important;
  color: #5d696d !important;
  font-size: 13px !important;
  line-height: 1.9 !important;
}

.market-ledger ul {
  margin-top: auto !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(20, 33, 39, 0.16) !important;
}

.market-ledger li {
  padding: 11px 0 !important;
  border-bottom: 1px solid rgba(20, 33, 39, 0.12) !important;
  color: #425057 !important;
}

.market-ledger article:nth-child(2) .market-index {
  color: #8bb8e2 !important;
}

.market-ledger article:nth-child(2) .market-copy h3,
.market-ledger article:nth-child(2) .market-copy p,
.market-ledger article:nth-child(2) li {
  color: rgba(255, 255, 255, 0.88) !important;
}

.market-ledger article:nth-child(2) .market-copy p {
  color: rgba(255, 255, 255, 0.68) !important;
}

.market-ledger article:nth-child(2) ul,
.market-ledger article:nth-child(2) li {
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.client-portfolio {
  min-height: 820px !important;
  padding: 0 !important;
}

.client-portfolio .client-portfolio-shell {
  padding-top: 120px !important;
}

.client-portfolio .institution-ribbon {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 4 !important;
  margin: 0 !important;
}

@media (max-width: 900px) {
  .brands-stage .logo-marquee,
  .brands-stage .logo-marquee-track,
  .brands-stage .logo-run {
    min-height: 102px !important;
  }

  .brands-stage .logo-run img {
    width: 132px !important;
    height: 38px !important;
    max-width: 132px !important;
    max-height: 38px !important;
    padding: 22px 24px !important;
  }

  .market-ledger {
    width: min(calc(100% - 48px), var(--shell)) !important;
  }

  .market-ledger article {
    min-height: 412px !important;
    padding: 38px 28px 32px !important;
  }

  .market-ledger .market-index {
    margin-bottom: 64px !important;
  }

  .client-portfolio {
    min-height: 720px !important;
  }

  .client-portfolio .client-portfolio-shell {
    padding-top: 96px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 188px !important;
    height: 104px !important;
    padding: 22px 18px !important;
  }
}

@media (max-width: 620px) {
  .brands-stage .logo-marquee {
    min-height: 90px !important;
    margin-top: 48px !important;
  }

  .brands-stage .logo-marquee-track,
  .brands-stage .logo-run {
    min-height: 90px !important;
  }

  .brands-stage .logo-run img {
    width: 112px !important;
    height: 32px !important;
    max-width: 112px !important;
    max-height: 32px !important;
    padding: 18px 20px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 170px !important;
    height: 94px !important;
    padding: 18px 14px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-compact {
    width: 126px !important;
    height: 35px !important;
    max-height: 35px !important;
  }

  .brands .brand-atlas-item img.is-mark {
    width: 54px !important;
    height: 54px !important;
    max-height: 54px !important;
  }

  .markets {
    padding-bottom: 56px !important;
  }

  .market-ledger {
    width: min(calc(100% - 36px), var(--shell)) !important;
    margin-top: -46px !important;
    grid-template-columns: 1fr !important;
  }

  .market-ledger article {
    min-height: 350px !important;
    padding: 32px 28px 30px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(20, 33, 39, 0.14) !important;
  }

  .market-ledger article:last-child {
    border-bottom: 0 !important;
  }

  .market-ledger .market-index {
    margin-bottom: 48px !important;
  }

  .market-ledger .market-copy h3 {
    font-size: 30px !important;
  }

  .client-portfolio {
    min-height: 630px !important;
  }

  .client-portfolio .client-atmosphere {
    width: 100% !important;
    height: 44% !important;
    bottom: auto !important;
  }

  .client-portfolio .client-portfolio-shell {
    padding-top: 74px !important;
  }
}

@media (max-width: 370px) {
  .hero {
    min-height: 552px;
  }

  .hero-shell {
    padding-top: 72px;
    gap: 12px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

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

  .hero-actions {
    margin-top: 12px;
  }

  .hero-portfolio {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-portfolio strong {
    font-size: 38px;
  }

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

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

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

/* Institutional gallery continuation */
.markets {
  padding: 0 0 124px;
  background: #11191e;
}

.markets-opening {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(580px, 1.22fr);
  align-items: stretch;
}

.markets-opening-copy {
  display: flex;
  min-height: 590px;
  padding: 132px 82px 118px 0;
  flex-direction: column;
  justify-content: center;
}

.markets-opening-copy .eyebrow {
  border-color: #77a9ec;
  color: #77a9ec;
}

.markets-opening-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 570;
  line-height: 1.3;
}

.markets-opening-copy h2 span {
  display: block;
}

.markets-opening-copy > p:last-child {
  max-width: 480px;
  margin: 44px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 2.05;
}

.markets-architecture {
  position: relative;
  min-height: 590px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.markets-architecture::after {
  position: absolute;
  inset: 0;
  background: rgba(13, 24, 31, 0.2);
  content: "";
  pointer-events: none;
}

.markets-architecture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.64) contrast(1.04);
  animation: architectural-breath 18s ease-in-out infinite alternate;
}

.markets-architecture figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  display: flex;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.markets-architecture figcaption span {
  font-size: 11px;
}

.markets-architecture figcaption strong {
  font-size: 13px;
  font-weight: 520;
}

@keyframes architectural-breath {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-0.8%, -0.4%, 0); }
}

.market-ledger {
  margin-top: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.market-ledger article {
  display: grid;
  min-height: 176px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  grid-template-columns: 92px minmax(270px, 0.62fr) minmax(420px, 1.38fr);
  gap: 38px;
  align-items: center;
  transition: border-color 260ms ease, transform 360ms var(--ease);
}

.market-ledger article:hover {
  border-color: #75a8ec;
  transform: translateX(8px);
}

.market-index {
  align-self: start;
  color: #75a8ec;
  font-family: var(--font-display);
  font-size: 14px;
}

.market-copy h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 560;
  line-height: 1.3;
}

.market-copy p {
  max-width: 380px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.9;
}

.market-ledger ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.market-ledger li {
  min-height: 48px;
  padding: 13px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.client-portfolio {
  padding: 132px 0 148px;
  background: #f5f7f6;
}

.client-portfolio-head {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.client-portfolio-head .eyebrow {
  margin-bottom: 26px;
}

.client-portfolio-head h2 {
  font-size: 64px;
  font-weight: 570;
  line-height: 1.16;
}

.client-portfolio-head > p {
  margin: 0 0 8px;
  text-align: right;
}

.institution-stage {
  display: grid;
  margin-top: 78px;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, 176px);
}

.institution-logo {
  position: relative;
  display: grid;
  min-width: 0;
  margin: 0;
  padding: 34px 34px 48px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  place-items: center;
  background: rgba(255, 255, 255, 0.48);
  transition: background-color 260ms ease;
}

.institution-logo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms var(--ease);
}

.institution-logo:hover {
  background: #fff;
}

.institution-logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.institution-logo img {
  width: auto;
  max-width: 70%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.02);
  opacity: 0.78;
  transition: filter 260ms ease, opacity 260ms ease, transform 360ms var(--ease);
}

.institution-logo:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

.institution-logo figcaption {
  position: absolute;
  right: 20px;
  bottom: 14px;
  left: 20px;
  color: #7b8487;
  font-size: 10px;
  text-align: right;
}

.institution-logo-cib { grid-column: 1 / 6; }
.institution-logo-cmb { grid-column: 6 / 10; }
.institution-logo-jd { grid-column: 10 / 13; }
.institution-logo-chery { grid-column: 1 / 4; }
.institution-logo-cnooc { grid-column: 4 / 7; }
.institution-logo-scg { grid-column: 7 / 9; }
.institution-logo-newworld { grid-column: 9 / 13; }

.institution-logo-jd img {
  max-width: 56%;
  filter: grayscale(1) brightness(0.48) contrast(1.18);
  opacity: 0.9;
}
.institution-logo-chery img { max-height: 52px; }
.institution-logo-cnooc img { max-height: 64px; }
.institution-logo-scg img { max-width: 76px; max-height: 76px; }
.institution-logo-newworld img { max-height: 48px; }

.institution-name-index {
  display: grid;
  margin-top: 46px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.institution-name-index span {
  min-height: 72px;
  padding: 23px 22px;
  border-right: 1px solid var(--line);
  color: #384247;
  font-size: 13px;
}

.institution-name-index span:last-child {
  border-right: 0;
}

.credentials {
  padding: 148px 0 0;
  overflow: hidden;
  background: #f0f2f1;
}

.credentials-heading {
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-strong);
}

.credentials-heading .eyebrow {
  margin-bottom: -42px;
}

.credential-spread {
  position: relative;
  display: grid;
  min-height: 740px;
  margin-top: 90px;
  padding: 0 0 136px;
  border-top: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.credential-copy {
  grid-column: 1 / 5;
  padding: 32px 42px 0 0;
  border-top: 2px solid var(--blue);
}

.credential-index {
  display: block;
  margin: 0 0 58px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 700;
}

.credential-name {
  font-size: 12px;
}

.credential-copy h3 {
  font-size: 38px;
}

.authorization-figure {
  grid-column: 5 / 10;
  padding: 28px 28px 0;
  border-top: 1px solid var(--line-strong);
  background: #fff;
}

.authorization-figure img {
  border: 0;
  box-shadow: 0 26px 70px rgba(20, 42, 54, 0.13);
}

.store-figure {
  display: flex;
  min-height: 650px;
  padding: 28px 16px 0;
  grid-column: 10 / 13;
  flex-direction: column;
  justify-self: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: #10171b;
}

.store-figure img {
  width: 100%;
  height: 564px;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

.credential-spread figcaption {
  padding: 0 2px 20px;
}

.store-figure figcaption {
  color: rgba(255, 255, 255, 0.62);
}

.experience-band {
  position: relative;
  overflow: hidden;
  background: #11191e;
  color: #fff;
}

.experience-band::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.experience-spread {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 0;
  padding: 112px 0 124px;
  border-top: 0;
  grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.28fr);
  gap: 110px;
}

.experience-spread h3 {
  color: #fff;
  font-size: 39px;
}

.experience-spread ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  list-style: none;
}

.experience-spread li {
  display: grid;
  min-height: 76px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  transition: border-color 260ms ease;
}

.experience-spread li:hover {
  border-color: #75a8ec;
}

.experience-spread li strong {
  transition: transform 320ms var(--ease);
}

.experience-spread li:hover strong {
  transform: translateX(12px);
}

.experience-spread li span {
  color: #75a8ec;
  font-size: 11px;
}

.experience-spread li strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.brands {
  background: #e9efed;
}

.brands-stage {
  position: relative;
  padding: 146px 0 0;
  overflow: hidden;
  background: #0d171d;
  color: #fff;
}

.brands-architecture {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 78% center;
  filter: grayscale(0.65) saturate(0.6) contrast(1.1);
  opacity: 0.24;
  animation: architectural-breath 22s ease-in-out infinite alternate-reverse;
}

.brands-stage .page-shell {
  position: relative;
  z-index: 1;
}

.brands-intro {
  grid-template-columns: minmax(440px, 0.86fr) minmax(360px, 0.72fr);
  gap: 140px;
}

.brands-intro h2 {
  display: flex;
  color: #fff;
  flex-direction: column;
}

.brands-intro h2 span {
  color: #7aa9e9;
  font-size: 96px;
  font-weight: 430;
  line-height: 0.95;
}

.brands-intro h2 small {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 520;
}

.brands-intro > p {
  color: rgba(255, 255, 255, 0.64);
}

.brands-stage .logo-marquee {
  margin: 96px 0 0;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.96);
}

.brands-stage .logo-run img {
  height: 124px;
}

.brand-catalogue {
  padding: 126px 0 146px;
  background: #e9efed;
}

.brand-browser {
  display: grid;
  margin-top: 0;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 88px;
  align-items: start;
}

.brand-navigation > p {
  margin: 0 0 28px;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 700;
}

.brand-tabs {
  display: flex;
  overflow: visible;
  border-top: 1px solid var(--line-strong);
  border-bottom: 0;
  flex-direction: column;
}

.brand-tabs button {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 17px 28px 17px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.brand-tabs button::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 2px;
  height: auto;
  transform: scaleY(0);
  transform-origin: bottom;
}

.brand-tabs button[aria-selected="true"]::after {
  transform: scaleY(1);
  transform-origin: top;
}

.brand-panel {
  min-width: 0;
  min-height: 650px;
  padding-top: 0;
}

.brand-panel-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-strong);
}

.brand-panel-heading h3 {
  font-size: 38px;
}

.brand-featured {
  display: grid;
  min-height: 190px;
  border-left: 1px solid var(--line);
  grid-template-columns: 1.35fr 1fr 1fr;
}

.brand-feature {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 34px 28px 44px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  place-items: center;
  background: rgba(255, 255, 255, 0.5);
}

.brand-feature::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms var(--ease);
}

.brand-feature:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.brand-feature img {
  width: auto;
  max-width: 62%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 360ms var(--ease);
}

.brand-feature img.is-wide { max-width: 75%; max-height: 46px; }
.brand-feature img.is-mark { max-width: 76px; max-height: 76px; }
.brand-feature img.is-compact { max-width: 54%; max-height: 42px; }
.brand-feature img.is-dark { filter: brightness(0); }
.brand-feature:hover img { transform: translateY(-4px) scale(1.025); }

.brand-feature span {
  position: absolute;
  right: 18px;
  bottom: 13px;
  left: 18px;
  overflow: hidden;
  color: #70797d;
  font-size: 10px;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-atlas {
  margin-top: 54px;
  overflow: hidden;
  border-top: 1px solid var(--line-strong);
}

.brand-atlas-row {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.brand-atlas-track {
  display: flex;
  width: max-content;
  animation: brand-atlas-forward 56s linear infinite;
}

.brand-atlas-row.is-reverse .brand-atlas-track {
  animation-name: brand-atlas-reverse;
  animation-duration: 64s;
}

.brand-atlas-row:hover .brand-atlas-track,
.brands.is-motion-paused .brand-atlas-track {
  animation-play-state: paused;
}

.brand-atlas-run {
  display: flex;
  flex: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-atlas-item {
  display: grid;
  width: 210px;
  height: 116px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
  place-items: center;
  background: rgba(255, 255, 255, 0.3);
  transition: background-color 220ms ease;
}

.brand-atlas-item:nth-child(3n) { width: 210px; }
.brand-atlas-item:nth-child(5n) { width: 210px; }
.brand-atlas-item:hover { background: rgba(255, 255, 255, 0.8); }

.brand-atlas-item img {
  width: auto;
  max-width: 66%;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
  opacity: 1;
  transition: filter 260ms ease, opacity 260ms ease, transform 360ms var(--ease);
}

.brand-atlas-item img.is-wide { max-width: 80%; max-height: 38px; }
.brand-atlas-item img.is-mark { max-width: 52px; max-height: 52px; }
.brand-atlas-item img.is-compact { max-width: 54%; max-height: 34px; }
.brand-atlas-item img.is-dark { filter: none; opacity: 1; }

.brand-atlas-item:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.brand-atlas-item:hover img.is-dark { filter: none; }

@keyframes brand-atlas-forward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes brand-atlas-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.contact {
  position: relative;
  min-height: 630px;
  padding: 142px 0;
  overflow: hidden;
  background: #0b1d36;
}

.contact-architecture {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 76% bottom;
  filter: saturate(0.72) contrast(1.08);
  opacity: 0.62;
  animation: architectural-breath 20s ease-in-out infinite alternate;
}

.contact-shade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  background: rgba(8, 27, 53, 0.94);
}

.contact-layout {
  position: relative;
  z-index: 2;
  min-height: 340px;
  align-items: center;
}

.contact h2 {
  font-size: 54px;
}

.contact-signature {
  margin: 46px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.contact-details {
  background: rgba(6, 22, 43, 0.44);
}

.contact-details a {
  padding-inline: 22px;
}

@media (max-width: 1180px) {
  .markets-opening {
    grid-template-columns: minmax(340px, 0.78fr) minmax(470px, 1.22fr);
  }

  .markets-opening-copy {
    padding-right: 52px;
  }

  .market-ledger article {
    grid-template-columns: 70px minmax(230px, 0.68fr) minmax(360px, 1.32fr);
    gap: 26px;
  }

  .credential-spread {
    gap: 20px;
  }

  .credential-copy {
    padding-right: 22px;
  }

  .brand-browser {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 54px;
  }
}

@media (max-width: 900px) {
  .markets-opening {
    grid-template-columns: 1fr;
  }

  .markets-opening-copy {
    min-height: 0;
    padding: 112px 0 80px;
  }

  .markets-architecture {
    min-height: 440px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .market-ledger article {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .market-ledger ul {
    grid-column: 2;
  }

  .client-portfolio-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .client-portfolio-head > p {
    text-align: left;
  }

  .institution-stage {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(3, 156px);
  }

  .institution-logo-cib { grid-column: 1 / 4; }
  .institution-logo-cmb { grid-column: 4 / 7; }
  .institution-logo-jd { grid-column: 1 / 3; }
  .institution-logo-chery { grid-column: 3 / 5; }
  .institution-logo-cnooc { grid-column: 5 / 7; }
  .institution-logo-scg { grid-column: 1 / 3; }
  .institution-logo-newworld { grid-column: 3 / 7; }

  .credentials-heading {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .credentials-heading .eyebrow {
    margin-bottom: 0;
  }

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

  .credential-copy {
    padding-bottom: 72px;
    grid-column: 1 / -1;
  }

  .authorization-figure,
  .store-figure {
    grid-column: auto;
  }

  .store-figure {
    min-height: 0;
  }

  .experience-spread {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .brands-intro {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .brands-architecture {
    width: 68%;
  }

  .brand-browser {
    grid-template-columns: minmax(0, 1fr);
    gap: 58px;
  }

  .brand-navigation,
  .brand-panel {
    min-width: 0;
  }

  .brand-tabs {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-top: 0;
    border-bottom: 1px solid var(--line-strong);
    flex-direction: row;
    scrollbar-width: none;
  }

  .brand-tabs button {
    width: auto;
    min-width: max-content;
    padding: 14px 20px 19px 0;
    margin-right: 26px;
    border-bottom: 0;
  }

  .brand-tabs button::after {
    top: auto;
    right: 20px;
    bottom: -1px;
    left: 0;
    width: auto;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
  }

  .brand-tabs button[aria-selected="true"]::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .contact-shade {
    width: 78%;
  }
}

@media (max-width: 620px) {
  .markets {
    padding-bottom: 86px;
  }

  .markets-opening-copy {
    padding: 92px 0 62px;
  }

  .markets-opening-copy h2 {
    font-size: 40px;
  }

  .markets-opening-copy > p:last-child {
    margin-top: 30px;
  }

  .markets-architecture {
    min-height: 320px;
  }

  .markets-architecture figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .markets-architecture figcaption strong {
    display: none;
  }

  .market-ledger {
    margin-top: 54px;
  }

  .market-ledger article {
    padding: 28px 0 34px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .market-copy h3 {
    font-size: 27px;
  }

  .market-ledger ul {
    margin-top: 16px;
    grid-column: 1 / -1;
  }

  .market-ledger li {
    padding-inline: 10px;
    border-left: 0;
  }

  .client-portfolio {
    padding: 92px 0 104px;
  }

  .client-portfolio-head h2 {
    font-size: 48px;
  }

  .institution-stage {
    margin-top: 56px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .institution-logo {
    min-height: 138px;
    padding: 28px 18px 42px;
    grid-column: auto;
  }

  .institution-logo-cib,
  .institution-logo-cmb,
  .institution-logo-newworld {
    grid-column: 1 / -1;
  }

  .institution-logo img {
    max-width: 72%;
    max-height: 48px;
  }

  .institution-logo-scg img {
    max-width: 58px;
    max-height: 58px;
  }

  .institution-name-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .institution-name-index span:nth-child(2) {
    border-right: 0;
  }

  .institution-name-index span {
    min-height: 64px;
    padding: 18px 10px;
    font-size: 11px;
  }

  .credentials {
    padding-top: 96px;
  }

  .credentials-heading h2 {
    font-size: 40px;
  }

  .credential-spread {
    min-height: 0;
    margin-top: 62px;
    padding-bottom: 88px;
    grid-template-columns: 1fr;
  }

  .credential-copy,
  .authorization-figure,
  .store-figure {
    grid-column: 1;
  }

  .authorization-figure {
    padding: 18px 18px 0;
  }

  .store-figure {
    margin-top: 28px;
  }

  .store-figure img {
    height: auto;
    max-height: 650px;
  }

  .experience-spread {
    padding: 86px 0 96px;
    gap: 48px;
  }

  .experience-spread h3 {
    font-size: 32px;
  }

  .experience-spread li {
    grid-template-columns: 42px 1fr;
  }

  .brands-stage {
    padding-top: 96px;
  }

  .brands-architecture {
    width: 100%;
    opacity: 0.14;
  }

  .brands-intro h2 span {
    font-size: 76px;
  }

  .brands-stage .logo-marquee {
    margin-top: 66px;
  }

  .brands-stage .logo-run img {
    width: 164px;
    height: 104px;
  }

  .brand-catalogue {
    padding: 86px 0 104px;
  }

  .brand-panel-heading h3 {
    font-size: 31px;
  }

  .brand-featured {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-feature {
    min-height: 148px;
    padding-inline: 16px;
  }

  .brand-feature:nth-child(3) {
    grid-column: 1 / -1;
  }

  .brand-feature img {
    max-width: 72%;
  }

  .brand-atlas {
    margin-top: 40px;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n) {
    width: 166px;
    height: 102px;
    padding: 20px 16px;
  }

  .contact {
    min-height: 620px;
    padding: 104px 0;
  }

  .contact-architecture {
    width: 100%;
    opacity: 0.42;
  }

  .contact-shade {
    width: 100%;
    background: rgba(8, 27, 53, 0.84);
  }

  .contact h2 {
    font-size: 40px;
  }

  .contact-details {
    background: rgba(6, 22, 43, 0.58);
  }
}

@media (prefers-reduced-motion: reduce) {
  .markets-architecture img,
  .brands-architecture,
  .contact-architecture,
  .brand-atlas-track {
    animation: none !important;
  }
}

/* Unified architectural continuation */

.markets {
  padding-bottom: 0;
  overflow: hidden;
  background: #edf1f0;
}

.markets-opening {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: 780px;
  margin: 0;
  overflow: hidden;
}

.markets-architecture {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
}

.markets-architecture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  animation: truepath-scene-drift 26s ease-in-out infinite alternate;
}

.markets-architecture figcaption {
  right: max(48px, calc((100vw - var(--shell)) / 2));
  bottom: 44px;
  left: auto;
  width: min(42vw, 560px);
  color: rgba(15, 27, 35, 0.72);
  border-color: rgba(15, 27, 35, 0.28);
}

.markets-opening-copy {
  position: relative;
  z-index: 2;
  width: min(43vw, 650px);
  min-height: 780px;
  padding: 150px 76px 126px max(48px, calc((100vw - var(--shell)) / 2));
  background: rgba(6, 18, 30, 0.84);
  backdrop-filter: blur(10px);
}

.markets-opening-copy h2 {
  max-width: 520px;
  font-size: 58px;
  line-height: 1.22;
}

.markets-opening-copy > p:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.68);
}

.market-ledger {
  display: grid;
  width: min(calc(100% - 96px), var(--shell));
  margin: 0 auto;
  padding: 72px 0 128px;
  border-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-ledger article {
  display: block;
  min-height: 390px;
  padding: 52px 44px 46px;
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
}

.market-ledger article:first-child {
  border-left: 1px solid var(--line);
}

.market-index {
  display: block;
  margin-bottom: 72px;
  color: var(--blue);
  font-size: 12px;
}

.market-copy h3 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 34px;
}

.market-copy p {
  max-width: 330px;
  min-height: 88px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.market-ledger ul {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr;
}

.market-ledger li {
  min-height: 0;
  padding: 11px 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  color: #4c565b;
  font-size: 11px;
}

.client-portfolio {
  position: relative;
  min-height: 930px;
  padding: 0 0 116px;
  overflow: hidden;
  background: #edf1f0;
}

.client-portfolio::before {
  display: none;
}

.client-architecture {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  animation: truepath-scene-drift 30s ease-in-out infinite alternate-reverse;
}

.client-atmosphere {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  background: rgba(247, 249, 248, 0.82);
  backdrop-filter: blur(8px);
}

.client-portfolio-shell {
  position: relative;
  z-index: 2;
  padding-top: 136px;
}

.client-portfolio-head {
  grid-template-columns: minmax(440px, 0.82fr) minmax(300px, 0.58fr);
  gap: 140px;
  align-items: end;
}

.client-portfolio-head h2 {
  font-size: 68px;
  line-height: 1.08;
}

.client-portfolio-head > p {
  max-width: 360px;
  padding: 0 0 12px;
  color: #3f4a4f;
  line-height: 1.8;
  text-align: left;
}

.institution-ribbon {
  position: relative;
  z-index: 3;
  margin-top: 130px;
  overflow: hidden;
  border-top: 1px solid rgba(18, 31, 39, 0.2);
  border-bottom: 1px solid rgba(18, 31, 39, 0.2);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 4.5rem, #000 calc(100% - 4.5rem), transparent 100%);
}

.institution-ribbon-track {
  display: flex;
  width: max-content;
  animation: institution-ribbon-drift 52s linear infinite;
}

.institution-ribbon:hover .institution-ribbon-track {
  animation-play-state: paused;
}

.institution-logo-run {
  display: flex;
  flex: none;
}

.institution-logo-ribbon {
  position: relative;
  display: grid;
  width: 236px;
  height: 178px;
  margin: 0;
  padding: 42px 34px 52px;
  border-right: 1px solid rgba(18, 31, 39, 0.14);
  place-items: center;
}

.institution-logo-ribbon img {
  width: auto;
  max-width: 82%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter 260ms ease, opacity 260ms ease, transform 340ms var(--ease);
}

.institution-logo-ribbon:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-4px);
}

.institution-logo-ribbon figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: #788186;
  font-size: 9px;
}

.institution-name-index {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 68px;
  border: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(7, 22, 37, 0.9);
  backdrop-filter: blur(12px);
}

.institution-name-index span {
  display: flex;
  min-height: 92px;
  padding: 25px 26px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.institution-name-index span:last-child {
  border-right: 0;
}

.institution-name-index small {
  margin-bottom: 10px;
  color: #7aa9e9;
  font-size: 9px;
  font-weight: 650;
}

.credentials {
  background: #f4f6f5;
}

.credentials-heading {
  grid-template-columns: minmax(520px, 1.1fr) minmax(320px, 0.62fr);
  gap: 104px;
  align-items: end;
}

.credentials-heading h2 {
  max-width: 720px;
  font-size: 58px;
  line-height: 1.18;
}

.credential-spread {
  gap: 0;
  grid-template-columns: minmax(320px, 0.82fr) minmax(400px, 1.08fr) minmax(270px, 0.72fr);
}

.credential-copy {
  max-width: none;
  padding: 54px 46px 70px;
  border-top: 2px solid var(--blue);
  grid-column: 1;
  background: #0b1d31;
}

.credential-copy h3,
.credential-copy .credential-name,
.credential-copy dl,
.credential-copy dd {
  color: #fff;
}

.credential-copy > p:not(.credential-name) {
  color: rgba(255, 255, 255, 0.64);
}

.credential-copy dt,
.credential-index {
  color: #7da9e6;
}

.credential-copy dl,
.credential-copy dl > div {
  border-color: rgba(255, 255, 255, 0.18);
}

.authorization-figure,
.store-figure {
  border-left: 1px solid var(--line);
}

.authorization-figure {
  grid-column: 2;
}

.store-figure {
  grid-column: 3;
}

.brands-stage {
  position: relative;
  min-height: 780px;
  padding: 0;
  overflow: hidden;
  background: #071626;
}

.brands-stage::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(3, 12, 22, 0.3);
  content: "";
}

.brands-architecture {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  opacity: 1;
  animation: truepath-scene-drift 28s ease-in-out infinite alternate;
}

.brands-stage .page-shell {
  display: flex;
  min-height: 780px;
  padding-top: 136px;
  flex-direction: column;
  justify-content: space-between;
}

.brands-intro {
  grid-template-columns: minmax(430px, 0.82fr) minmax(360px, 0.6fr);
  gap: 170px;
  align-items: end;
}

.brands-intro h2 span {
  font-size: 104px;
}

.brands-intro > p {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.44);
  color: rgba(255, 255, 255, 0.78);
}

.brands-stage .logo-marquee {
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brands-stage .logo-run img {
  opacity: 0.9;
}

.brand-catalogue {
  background: #eef2f0;
}

.brand-panel-heading {
  align-items: baseline;
}

.brand-featured {
  background: rgba(255, 255, 255, 0.28);
}

.brand-feature {
  background: transparent;
}

.contact {
  min-height: 650px;
  padding: 150px 0;
}

.contact-architecture {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  filter: none;
  opacity: 1;
  animation: truepath-scene-drift 24s ease-in-out infinite alternate-reverse;
}

.contact-shade {
  width: 57%;
  background: rgba(6, 20, 36, 0.84);
  backdrop-filter: blur(8px);
}

.contact-layout {
  min-height: 350px;
}

.contact-details {
  background: rgba(6, 20, 36, 0.68);
  backdrop-filter: blur(14px);
}

@keyframes truepath-scene-drift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.045) translate3d(-0.55%, -0.35%, 0); }
}

@keyframes institution-ribbon-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .markets-opening {
    min-height: 720px;
  }

  .markets-opening-copy {
    width: 62%;
    min-height: 720px;
    padding-right: 48px;
  }

  .markets-architecture figcaption {
    right: 32px;
    width: 32%;
  }

  .market-ledger {
    width: min(calc(100% - 64px), var(--shell));
    grid-template-columns: 1fr;
  }

  .market-ledger article {
    display: grid;
    min-height: 0;
    padding: 38px 30px;
    border-left: 1px solid var(--line);
    grid-template-columns: 54px minmax(230px, 0.75fr) minmax(280px, 1fr);
    gap: 24px;
  }

  .market-index {
    margin-bottom: 0;
  }

  .market-copy p {
    min-height: 0;
  }

  .market-ledger ul {
    margin-top: 0;
  }

  .client-atmosphere {
    width: 64%;
  }

  .client-portfolio-head {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .institution-name-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .institution-name-index span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .credentials-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .credential-copy {
    grid-column: 1 / -1;
  }

  .authorization-figure,
  .store-figure {
    grid-column: auto;
  }

  .brands-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .brands-intro > p {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .markets-opening {
    min-height: 700px;
  }

  .markets-opening-copy {
    width: 100%;
    min-height: 430px;
    padding: 92px 18px 72px;
    background: rgba(6, 18, 30, 0.78);
  }

  .markets-opening-copy h2 {
    font-size: 40px;
  }

  .markets-architecture img {
    object-position: 58% center;
  }

  .markets-architecture figcaption {
    right: 18px;
    bottom: 22px;
    width: calc(100% - 36px);
  }

  .market-ledger {
    width: calc(100% - 36px);
    padding: 54px 0 88px;
  }

  .market-ledger article {
    display: block;
    padding: 34px 24px 38px;
  }

  .market-index {
    margin-bottom: 42px;
  }

  .market-ledger ul {
    margin-top: 30px;
  }

  .client-portfolio {
    min-height: 920px;
    padding-bottom: 90px;
  }

  .client-architecture {
    object-position: 58% center;
  }

  .client-atmosphere {
    top: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: 390px;
    background: rgba(247, 249, 248, 0.78);
  }

  .client-portfolio-shell {
    padding-top: 92px;
  }

  .client-portfolio-head h2 {
    font-size: 48px;
  }

  .institution-ribbon {
    margin-top: 92px;
  }

  .institution-logo-ribbon {
    width: 198px;
    height: 132px;
    padding: 30px 20px 42px;
  }

  .institution-logo-ribbon img {
    max-height: 46px;
  }

  .institution-name-index {
    width: calc(100% - 36px);
    margin-top: 48px;
  }

  .institution-name-index span {
    min-height: 82px;
    padding: 20px 16px;
    font-size: 11px;
  }

  .credentials-heading h2 {
    font-size: 40px;
  }

  .credential-spread {
    grid-template-columns: 1fr;
  }

  .credential-copy {
    padding: 42px 26px 58px;
    grid-column: 1;
  }

  .authorization-figure,
  .store-figure {
    grid-column: 1;
  }

  .brands-stage {
    min-height: 740px;
  }

  .brands-architecture {
    object-position: 58% center;
  }

  .brands-stage .page-shell {
    min-height: 740px;
    padding-top: 96px;
  }

  .brands-intro h2 span {
    font-size: 76px;
  }

  .brands-stage .logo-marquee {
    margin-top: 58px;
  }

  .contact-architecture {
    object-position: 58% center;
  }

  .contact-shade {
    width: 100%;
    background: rgba(6, 20, 36, 0.76);
  }
}

@media (prefers-reduced-motion: reduce) {
  .markets-architecture img,
  .client-architecture,
  .institution-ribbon-track,
  .brands-architecture,
  .contact-architecture {
    animation: none !important;
  }
}

/* Partner, brand and evidence precision pass */
.client-portfolio {
  min-height: 800px;
  padding-bottom: 122px;
}

.client-portfolio-head {
  grid-template-columns: minmax(440px, 0.82fr) minmax(390px, 0.62fr);
  gap: 112px;
}

.client-category-key {
  display: grid;
  margin: 0 0 12px;
  padding: 0;
  border-top: 1px solid rgba(18, 31, 39, 0.28);
  border-bottom: 1px solid rgba(18, 31, 39, 0.18);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.client-category-key li {
  padding: 17px 18px 16px;
  border-right: 1px solid rgba(18, 31, 39, 0.16);
  color: #344046;
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.client-category-key li:last-child {
  border-right: 0;
}

.institution-ribbon {
  margin-top: 112px;
}

  .institution-logo-ribbon {
    width: 236px;
    height: 160px;
    padding: 34px 26px;
  }

.institution-logo-ribbon img {
  max-width: 82%;
  max-height: 56px;
  filter: none;
  opacity: 1;
  image-rendering: auto;
}

.hero-logo-run img,
.brands-stage .logo-run img {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  image-rendering: auto;
}

.credential-spread {
  min-height: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.credential-copy {
  grid-column: 1 / 5;
  align-self: stretch;
}

.credential-evidence {
  display: grid;
  min-width: 0;
  grid-column: 5 / 13;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
}

.credential-evidence figure {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(18, 31, 39, 0.16);
  border-top: 2px solid #183d69;
  grid-column: auto;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.72);
}

.evidence-head {
  display: flex;
  min-height: 68px;
  padding: 17px 20px 16px;
  border-bottom: 1px solid rgba(18, 31, 39, 0.12);
  align-items: center;
  justify-content: space-between;
}

.evidence-head span {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 750;
}

.evidence-head strong {
  color: #4b565b;
  font-size: 11px;
  font-weight: 560;
}

.document-stage {
  display: grid;
  min-height: 350px;
  padding: 38px 34px;
  place-items: center;
  background: #e6e9e7;
}

.authorization-figure .document-stage img {
  width: 100%;
  border: 0;
  box-shadow: 0 22px 58px rgba(20, 42, 54, 0.16);
}

.device-stage {
  display: grid;
  min-height: 580px;
  padding: 30px;
  overflow: hidden;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.92fr);
  gap: 30px;
  align-items: center;
  background: #e6e9e7;
}

.store-figure .device-stage img {
  width: 100%;
  height: auto;
  max-height: 520px;
  filter: none;
  box-shadow: 0 20px 46px rgba(12, 25, 34, 0.18);
}

.store-figure .store-page-full {
  justify-self: center;
  object-fit: contain;
  object-position: center;
}

.nikon-product-stage {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 50px 42px 38px;
  overflow: hidden;
  border: 1px solid rgba(18, 31, 39, 0.12);
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(231, 235, 233, 0.78));
}

.nikon-product-stage > span,
.nikon-product-stage > small {
  position: absolute;
  z-index: 1;
  left: 24px;
  color: #243038;
}

.nikon-product-stage > span {
  top: 20px;
  font-size: 10px;
  font-weight: 750;
}

.nikon-product-stage > small {
  bottom: 19px;
  color: #677176;
  font-size: 9px;
}

.nikon-product-stage img {
  width: min(100%, 560px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: none;
  box-shadow: none;
}

.credential-evidence figcaption,
.store-figure figcaption {
  display: flex;
  min-height: 58px;
  margin: 0;
  padding: 17px 20px;
  border-top: 1px solid rgba(18, 31, 39, 0.12);
  color: #4c575c;
  font-size: 11px;
  align-items: center;
  gap: 14px;
}

.credential-evidence figcaption span {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 750;
}

.brand-panel {
  min-height: 520px;
}

.brand-atlas {
  margin-top: 38px;
  border-top-color: rgba(18, 31, 39, 0.28);
}

.brand-atlas-row:nth-child(1) .brand-atlas-track {
  animation-duration: 58s;
}

.brand-atlas-row:nth-child(2) .brand-atlas-track {
  animation-duration: 66s;
}

.brand-atlas-row:nth-child(3) .brand-atlas-track {
  animation-duration: 62s;
}

.brand-atlas-item,
.brand-atlas-item:nth-child(3n),
.brand-atlas-item:nth-child(5n) {
  width: 210px;
  height: 108px;
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.56);
}

.brand-atlas-row:nth-child(2) .brand-atlas-item {
  width: 210px;
}

.brand-atlas-item img,
.brand-atlas-item img.is-dark,
.brand-atlas-item:hover img,
.brand-atlas-item:hover img.is-dark {
  width: 156px;
  max-width: none;
  height: 54px;
  max-height: none;
  object-fit: contain;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.brand-atlas-item img.is-wide {
  width: 156px;
  max-width: none;
  height: 54px;
  max-height: none;
}

.brand-atlas-item img.is-mark {
  width: 156px;
  max-width: none;
  height: 54px;
  max-height: none;
}

.brand-atlas-item img.is-compact {
  width: 156px;
  max-width: none;
  height: 54px;
  max-height: none;
}

@media (max-width: 900px) {
  .client-portfolio-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .client-category-key {
    max-width: 520px;
  }

  .credential-copy {
    grid-column: 1 / -1;
  }

  .credential-evidence {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .client-portfolio {
    min-height: 760px;
    padding-bottom: 82px;
  }

  .client-category-key li {
    padding: 14px 8px 13px;
    font-size: 10px;
  }

  .institution-ribbon {
    margin-top: 74px;
  }

  .institution-logo-ribbon {
    width: 196px;
    height: 126px;
    padding: 26px 18px;
  }

  .institution-logo-ribbon img {
    max-height: 44px;
  }

  .credential-evidence {
    grid-template-columns: 1fr;
  }

  .document-stage {
    min-height: 260px;
    padding: 30px 18px;
  }

  .device-stage {
    min-height: 0;
    padding: 26px 28px 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .store-figure .store-page-full {
    width: min(100%, 320px);
    max-height: none;
  }

  .nikon-product-stage {
    min-height: 360px;
    padding: 50px 24px 38px;
  }

  .nikon-product-stage img {
    width: min(100%, 420px);
    max-height: 290px;
  }

  .brand-catalogue {
    padding-top: 92px;
  }

  .brand-panel {
    min-height: 440px;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n),
  .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 168px;
    height: 92px;
    padding: 18px 16px;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact {
    width: 132px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-atlas-track {
    animation: none !important;
  }
}

/* Final visual refinement for collaboration-wall consistency */
.hero-logo-run img {
  max-width: 188px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brands-stage .logo-run img {
  max-width: 188px;
  max-height: 56px;
  padding: 24px 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.institution-logo-ribbon {
  width: 236px;
  height: 160px;
  padding: 34px 26px;
}

.institution-logo-ribbon img {
  max-width: 82%;
  max-height: 56px;
  object-fit: contain;
}

.institution-logo-ribbon.institution-logo-cib img {
  max-width: 210px;
  max-height: 62px;
}

.institution-logo-ribbon.institution-logo-huatong img {
  max-width: 190px;
  max-height: 42px;
}

.institution-logo-ribbon.institution-logo-charity img,
.institution-logo-ribbon.institution-logo-children img {
  max-width: 150px;
  max-height: 30px;
}

.institution-logo-ribbon.institution-logo-jd img {
  max-width: 142px;
}

.institution-logo-ribbon.institution-logo-baoland img {
  max-width: 146px;
  max-height: 42px;
}

.institution-logo-ribbon.institution-logo-scg img {
  max-width: 166px;
  max-height: 38px;
}

.institution-name-index {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.institution-name-index span:last-child {
  border-right: 0;
}

.institution-name-index span {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
  .brands-stage .logo-run img {
    max-width: 150px;
    max-height: 42px;
    padding: 24px 28px;
  }

  .hero-logo-run img {
    max-height: 40px;
    max-width: 132px;
  }

  .institution-ribbon {
    margin-top: 112px;
  }

  .institution-logo-ribbon {
    width: 236px;
    height: 160px;
    padding: 34px 26px;
  }

  .institution-logo-ribbon img {
    max-height: 48px;
  }

  .institution-name-index {
    width: calc(100% - 36px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .institution-name-index span {
    min-height: 76px;
    padding: 20px 16px;
    font-size: 11px;
  }
}

@media (max-width: 620px) {
  .brands-stage .logo-run img {
    max-width: 132px;
    max-height: 40px;
    padding: 22px 18px;
  }

  .hero-logo-run img {
    max-height: 40px;
  }

  .institution-ribbon {
    margin-top: 82px;
  }

  .institution-logo-ribbon {
    width: 196px;
    height: 126px;
    padding: 26px 18px;
  }

  .institution-logo-ribbon img {
    max-height: 42px;
  }

  .institution-name-index {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .institution-name-index span {
    min-height: 68px;
    padding: 18px 10px;
    font-size: 11px;
  }
}

.client-category-key {
  display: none;
}

.institution-name-index b {
  display: block;
  margin-bottom: 6px;
  color: #9fc0f0;
  font-size: 10px;
  letter-spacing: 0.13em;
  line-height: 1;
  font-weight: 700;
}

.institution-name-index span {
  display: grid;
  gap: 2px;
  align-content: center;
}

.institution-name-index span,
.institution-name-index span + span {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.institution-name-index span:last-child {
  border-right: 0;
}

.institution-logo-ribbon {
  width: 236px;
  height: 162px;
  padding: 36px 26px 52px;
  border-right: 1px solid rgba(13, 28, 43, 0.12);
  background: rgba(255, 255, 255, 0.92);
  transition: background-color 240ms ease;
}

.institution-logo-ribbon:hover {
  background: #fff;
}

.institution-logo-ribbon img {
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.institution-logo-ribbon[class*="institution-logo-"] img {
  max-width: 180px !important;
  max-height: 58px !important;
}

.institution-name-index {
  max-width: 100%;
  border-top: 0;
}

.institution-ribbon-track {
  will-change: transform;
}

.brand-atlas {
  margin-top: 48px;
  border-top: 1px solid rgba(13, 31, 46, 0.18);
}

.brand-atlas-row {
  background: rgba(255, 255, 255, 0.64);
}

.brand-atlas-item {
  width: 212px;
  height: 112px;
  padding: 24px 18px;
  border-right: 1px solid rgba(15, 34, 50, 0.12);
  background: transparent;
}

.brand-atlas-row:nth-child(2) .brand-atlas-item,
.brand-atlas-item:nth-child(3n),
.brand-atlas-item:nth-child(5n) {
  width: 212px;
}

.brand-atlas-item img,
.brand-atlas-item img.is-wide,
.brand-atlas-item img.is-mark,
.brand-atlas-item img.is-compact,
.brand-atlas-item img.is-dark {
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  opacity: 1;
  transition: transform 280ms var(--ease);
}

.brand-atlas-item:hover img {
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 900px) {
  .institution-name-index b {
    margin-bottom: 4px;
    font-size: 9px;
  }

  .institution-name-index span {
    min-height: 72px;
    padding: 16px 12px;
    font-size: 11px;
    line-height: 1.4;
  }

  .institution-logo-ribbon {
    width: 236px;
    height: 156px;
    padding: 30px 24px 44px;
  }

  .institution-logo-ribbon img {
    max-height: 48px;
    max-width: 168px;
  }

  .institution-logo-ribbon[class*="institution-logo-"] img {
    max-width: 168px !important;
    max-height: 48px !important;
  }

  .brand-atlas-item {
    width: 198px;
    height: 100px;
    padding: 18px 16px;
  }

  .brand-atlas-row:nth-child(2) .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n) {
    width: 198px;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 44px;
    max-width: 88%;
  }
}

@media (max-width: 620px) {
  .institution-name-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .institution-name-index span {
    min-height: 64px;
    padding: 14px 8px;
    font-size: 10px;
  }

  .institution-name-index b {
    margin-bottom: 3px;
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .institution-logo-ribbon {
    width: 196px;
    height: 130px;
    padding: 24px 16px 34px;
  }

  .institution-logo-ribbon img {
    max-height: 40px;
    max-width: 148px;
  }

  .institution-logo-ribbon[class*="institution-logo-"] img {
    max-width: 148px !important;
    max-height: 40px !important;
  }

  .brand-atlas-item {
    width: 176px;
    height: 92px;
    padding: 16px 14px;
  }

  .brand-atlas-row:nth-child(2) .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n) {
    width: 176px;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 40px;
    max-width: 86%;
  }
}

/* Final premium harmonization (institutions + logo walls) */
.institution-ribbon-track {
  gap: 0;
}

.hero-logo-run img,
.logo-run img,
.brands-stage .logo-run img,
.brands-stage .hero-logo-run img,
.brands-stage .logo-run::before,
.hero-logo-run::before,
.hero-logo-run::after,
.logo-marquee-track::before,
.logo-marquee-track::after {
  box-sizing: border-box;
}

.hero-logo-run img,
.logo-run img,
.brands-stage .logo-run img,
.brands .logo-run img {
  width: auto !important;
  height: auto !important;
  max-height: 52px !important;
  max-width: 148px !important;
  padding: 28px 24px !important;
  object-fit: contain !important;
  object-position: center !important;
  background-color: transparent !important;
  filter: none !important;
  opacity: 1 !important;
}

.institution-name-index {
  margin-top: 32px !important;
  border-top: 1px solid var(--line-strong) !important;
  border-bottom: 1px solid var(--line) !important;
}

.institution-name-index span {
  align-content: center !important;
  gap: 2px !important;
  min-height: 80px !important;
  color: #30414d !important;
}

.institution-name-index b {
  margin-bottom: 4px !important;
  font-size: 10px !important;
  color: #7aa5da !important;
  letter-spacing: 0.08em !important;
}

.institution-name-index span span {
  font-size: 14px !important;
  line-height: 1.3 !important;
}

.institution-logo-ribbon {
  width: 236px !important;
  height: 160px !important;
  padding: 32px 24px !important;
}

.institution-logo-ribbon img,
.institution-logo-ribbon[class*="institution-logo-"] img {
  max-width: 82% !important;
  max-height: 58px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.brand-atlas-item {
  width: 210px !important;
  height: 112px !important;
  padding: 22px 18px !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
}

.brand-atlas-item:nth-child(3n),
.brand-atlas-item:nth-child(5n),
.brand-atlas-row:nth-child(2) .brand-atlas-item {
  width: 210px !important;
  height: 112px !important;
}

.brand-atlas-item img,
.brand-atlas-item img.is-wide,
.brand-atlas-item img.is-mark,
.brand-atlas-item img.is-compact,
.brand-atlas-item img.is-dark {
  max-width: 84% !important;
  max-height: 54px !important;
  min-height: 24px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .institution-ribbon-track {
    gap: 0 !important;
  }

  .hero-logo-run img,
  .logo-run img,
  .brands-stage .logo-run img,
  .brands-stage .hero-logo-run img {
    max-height: 48px !important;
    max-width: 130px !important;
    padding: 24px 20px !important;
  }

  .institution-name-index span {
    min-height: 72px !important;
  }

  .institution-name-index b {
    font-size: 9px !important;
  }

  .institution-logo-ribbon {
    width: 196px !important;
    height: 126px !important;
    padding: 26px 18px !important;
  }

  .institution-logo-ribbon img {
    max-height: 44px !important;
    max-width: 82% !important;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n),
  .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 198px !important;
    height: 100px !important;
    padding: 18px 16px !important;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 42px !important;
    max-width: 86% !important;
  }
}

@media (max-width: 620px) {
  .hero-logo-run img,
  .logo-run img,
  .brands-stage .logo-run img,
  .brands-stage .hero-logo-run img {
    max-height: 44px !important;
    max-width: 142px !important;
    padding: 23px 20px !important;
  }

  .institution-name-index {
    margin-top: 24px !important;
  }

  .institution-name-index span {
    min-height: 64px !important;
    padding: 14px 10px !important;
    font-size: 10px !important;
  }

  .institution-name-index b {
    font-size: 8px !important;
  }

  .institution-logo-ribbon {
    width: 196px !important;
    height: 126px !important;
    padding: 26px 18px !important;
  }

  .institution-logo-ribbon img,
  .institution-logo-ribbon[class*="institution-logo-"] img {
    max-height: 40px !important;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n),
  .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 176px !important;
    height: 92px !important;
    padding: 16px 14px !important;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 40px !important;
    max-width: 86% !important;
  }
}


/* Finalized wall harmonization (institutions + brand walls) */
.institution-ribbon {
  overflow: hidden;
}

.hero-logo-run img,
.logo-run img,
.brands-stage .logo-run img {
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 56px;
  padding: 28px 30px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  image-rendering: auto;
  transition: transform 340ms var(--ease);
}

.hero-logo-run img {
  max-width: 142px;
  max-height: 58px;
  padding: 34px 34px;
  border-right: 1px solid rgba(17, 20, 22, 0.1);
}

.logo-run img {
  border-right: 1px solid var(--line);
}

.institution-logo-ribbon {
  width: 236px;
  height: 160px;
  padding: 34px 26px;
  display: grid;
  box-sizing: border-box;
  place-items: center;
  border-right: 1px solid rgba(18, 31, 39, 0.14);
  background: rgba(255, 255, 255, 0.92);
  transition: background-color 240ms ease;
}

.institution-logo-ribbon:hover {
  background: #fff;
}

.institution-logo-ribbon img,
.institution-logo-ribbon[class*="institution-logo-"] img {
  width: auto;
  height: auto;
  max-width: 84%;
  max-height: 56px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.institution-name-index {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.institution-name-index span {
  min-height: 82px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: #344046;
  font-size: 14px;
  line-height: 1.3;
  display: grid;
  gap: 2px;
  justify-content: start;
  align-content: center;
}

.institution-name-index span:last-child {
  border-right: 0;
}

.institution-name-index span b {
  display: block;
  margin-bottom: 4px;
  color: #79a4d7;
  font-size: 9px;
  letter-spacing: 0.07em;
  line-height: 1;
  font-weight: 650;
}

.institution-name-index span span {
  font-size: 21px;
  line-height: 1.2;
  color: #27333d;
  font-weight: 540;
}

.brand-atlas-item,
.brand-atlas-item:nth-child(3n),
.brand-atlas-item:nth-child(5n),
.brand-atlas-row:nth-child(2) .brand-atlas-item {
  width: 210px;
  height: 114px;
  padding: 22px 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.56);
}

.brand-atlas-item img,
.brand-atlas-item img.is-wide,
.brand-atlas-item img.is-mark,
.brand-atlas-item img.is-compact,
.brand-atlas-item img.is-dark {
  width: auto;
  height: auto;
  max-width: 86%;
  max-height: 56px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@media (max-width: 900px) {
  .hero-logo-run {
    height: 92px;
  }

  .hero-logo-run img,
  .logo-run img,
  .brands-stage .logo-run img {
    max-width: 130px;
    max-height: 48px;
    padding: 24px 24px;
  }

  .institution-logo-ribbon {
    width: 196px;
    height: 126px;
    padding: 26px 18px;
  }

  .institution-logo-ribbon img,
  .institution-logo-ribbon[class*="institution-logo-"] img {
    max-height: 44px;
  }

  .institution-name-index {
    margin-top: 34px;
  }

  .institution-name-index span {
    min-height: 72px;
    padding: 15px 12px;
    font-size: 12px;
  }

  .institution-name-index span span {
    font-size: 17px;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n),
  .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 198px;
    height: 102px;
    padding: 18px 14px;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 44px;
    max-width: 87%;
  }
}

@media (max-width: 620px) {
  .hero-logo-run {
    height: 92px;
  }

  .hero-logo-run img,
  .logo-run img,
  .brands-stage .logo-run img {
    max-width: 142px;
    max-height: 44px;
    padding: 23px 24px;
  }

  .institution-logo-ribbon {
    width: 196px;
    height: 126px;
    padding: 26px 18px;
  }

  .institution-logo-ribbon img,
  .institution-logo-ribbon[class*="institution-logo-"] img {
    max-height: 40px;
    max-width: 78%;
  }

  .institution-name-index {
    margin-top: 24px;
  }

  .institution-name-index span {
    min-height: 64px;
    padding: 14px 10px;
    font-size: 10px;
  }

  .institution-name-index span span {
    font-size: 15px;
  }

  .institution-name-index span b {
    font-size: 8px;
    margin-bottom: 3px;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n),
  .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 176px;
    height: 94px;
    padding: 16px 14px;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 40px;
    max-width: 87%;
  }
}

/* Final logo-wall lock for premium visual consistency */
.client-category-key {
  display: grid !important;
  margin: 36px 0 0;
  padding: 0;
  list-style: none !important;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.client-category-key li {
  padding: 18px 18px 17px !important;
  border-right: 1px solid var(--line);
  color: #27333d;
  text-align: center;
  font-size: 14px !important;
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.4;
  background: transparent;
}

.client-category-key li span {
  margin-right: 5px;
  color: #7aa5d7;
  font-size: 11px !important;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.client-category-key li:last-child {
  border-right: 0;
}

.institution-name-index {
  display: grid !important;
  margin: 0 !important;
  border-top: 1px solid rgba(18, 31, 39, 0.16) !important;
  border-bottom: 1px solid rgba(18, 31, 39, 0.16) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #25313a !important;
}

.institution-name-index span {
  min-height: 92px !important;
  padding: 22px 24px !important;
  border-right: 1px solid rgba(18, 31, 39, 0.16) !important;
  color: #49585f !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 5px !important;
  align-items: flex-start !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.institution-name-index span:last-child {
  border-right: 0 !important;
}

.institution-name-index span strong {
  color: #132238 !important;
  font-size: 15px !important;
  font-weight: 620 !important;
  letter-spacing: 0 !important;
}

.institution-name-index span > span {
  color: #4b77bc !important;
  font-size: 10px !important;
  font-weight: 650 !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 2px !important;
}

.institution-ribbon {
  overflow: hidden;
}

.institution-logo-ribbon {
  width: 236px !important;
  height: 160px !important;
  padding: 34px 26px !important;
  box-sizing: border-box !important;
  place-items: center !important;
  display: grid !important;
  border-right: 1px solid rgba(18, 31, 39, 0.14) !important;
}

.institution-logo-ribbon img,
.institution-logo-ribbon[class*="institution-logo-"] img {
  width: auto !important;
  height: auto !important;
  max-width: 84% !important;
  max-height: 56px !important;
  object-fit: contain !important;
}

.brand-atlas-item,
.brand-atlas-item:nth-child(3n),
.brand-atlas-item:nth-child(5n),
.brand-atlas-row:nth-child(2) .brand-atlas-item {
  width: 210px !important;
  height: 112px !important;
  padding: 22px 18px !important;
  box-sizing: border-box !important;
  display: grid !important;
  place-items: center !important;
  align-content: center !important;
  background: rgba(255, 255, 255, 0.56) !important;
}

.brand-atlas-item img,
.brand-atlas-item img.is-wide,
.brand-atlas-item img.is-mark,
.brand-atlas-item img.is-compact,
.brand-atlas-item img.is-dark {
  width: auto !important;
  height: auto !important;
  max-width: 86% !important;
  max-height: 54px !important;
  object-fit: contain !important;
  filter: none !important;
  opacity: 1 !important;
}

.brand-atlas-item:hover {
  transform: none;
}

@media (max-width: 900px) {
  .client-category-key {
    max-width: 520px;
    margin-top: 32px !important;
  }

  .client-category-key li {
    padding: 14px 8px 13px !important;
    font-size: 11px !important;
  }

  .institution-logo-ribbon {
    width: 196px !important;
    height: 126px !important;
    padding: 26px 18px !important;
  }

  .institution-logo-ribbon img,
  .institution-logo-ribbon[class*="institution-logo-"] img {
    max-height: 44px !important;
    max-width: 82% !important;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n),
  .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 198px !important;
    height: 102px !important;
    padding: 18px 16px !important;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 42px !important;
    max-width: 86% !important;
  }
}

@media (max-width: 620px) {
  .client-category-key {
    margin-top: 24px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-category-key li {
    min-height: 64px;
    padding: 14px 10px !important;
    font-size: 10px !important;
  }

  .client-category-key li span {
    font-size: 9px !important;
  }

  .institution-logo-ribbon {
    width: 196px !important;
    height: 126px !important;
    padding: 26px 18px !important;
  }

  .institution-logo-ribbon img,
  .institution-logo-ribbon[class*="institution-logo-"] img {
    max-height: 40px !important;
    max-width: 78% !important;
  }

  .brand-atlas-item,
  .brand-atlas-item:nth-child(3n),
  .brand-atlas-item:nth-child(5n),
  .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 176px !important;
    height: 94px !important;
    padding: 16px 14px !important;
  }

  .brand-atlas-item img,
  .brand-atlas-item img.is-wide,
  .brand-atlas-item img.is-mark,
  .brand-atlas-item img.is-compact,
  .brand-atlas-item img.is-dark {
    max-height: 40px !important;
    max-width: 87% !important;
  }
}

/* Final harmonization pass: institutional and brand walls keep unified sizing/structure. */
.institution-ribbon,
.client-category-key {
  overflow: hidden;
}

.client-category-key {
  display: grid !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  border-top: 1px solid rgba(18, 31, 39, 0.24) !important;
  border-bottom: 1px solid rgba(18, 31, 39, 0.16) !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.client-category-key li {
  display: grid !important;
  align-content: center !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 82px !important;
  padding: 0 16px !important;
  border-right: 1px solid rgba(18, 31, 39, 0.16) !important;
  color: #344046 !important;
  text-align: center !important;
  line-height: 1.35 !important;
  gap: 3px !important;
}

.client-category-key li:last-child {
  border-right: 0 !important;
}

.client-category-key li span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  min-height: 24px !important;
  margin: 0 auto !important;
  border-radius: 999px !important;
  background: rgba(39, 111, 214, 0.12) !important;
  color: #2457ac !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.client-category-key li strong {
  display: block !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 560 !important;
  color: #232f36 !important;
}

.institution-ribbon {
  margin-top: 112px !important;
  border-top: 1px solid rgba(18, 31, 39, 0.2) !important;
  border-bottom: 1px solid rgba(18, 31, 39, 0.2) !important;
  background: rgba(255, 255, 255, 0.93) !important;
}

.institution-logo-run {
  gap: 0 !important;
}

.institution-logo-ribbon {
  width: 236px !important;
  height: 160px !important;
  padding: 34px 26px !important;
  background: transparent !important;
  border-right: 1px solid rgba(18, 31, 39, 0.14) !important;
  display: grid !important;
  align-items: center !important;
  justify-items: center !important;
  box-sizing: border-box !important;
}

.institution-logo-ribbon img,
.institution-logo-ribbon[class*="institution-logo-"] img,
.institution-logo-ribbon img.is-dark,
.institution-logo-ribbon img.is-mark,
.institution-logo-ribbon img.is-wide,
.institution-logo-ribbon img.is-compact {
  width: auto !important;
  height: auto !important;
  max-width: 84% !important;
  max-height: 56px !important;
  object-fit: contain !important;
  image-rendering: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

.institution-logo-ribbon.institution-logo-jd img,
.institution-logo-ribbon.institution-logo-chery img,
.institution-logo-ribbon.institution-logo-cnooc img,
.institution-logo-ribbon.institution-logo-scg img,
.institution-logo-ribbon.institution-logo-newworld img {
  max-width: 84% !important;
  max-height: 56px !important;
  filter: none !important;
  opacity: 1 !important;
}

.institution-logo-ribbon:hover,
.institution-logo-ribbon:focus-within {
  background: #fff !important;
}

.institution-logo-ribbon:hover img,
.institution-logo-ribbon:focus-within img {
  transform: translateY(-3px) !important;
}

.logo-run img,
.hero-logo-run img,
.brands-stage .logo-run img,
.brands-stage .hero-logo-run img {
  width: auto !important;
  height: auto !important;
  max-height: 56px !important;
  max-width: 160px !important;
  padding: 28px 30px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-right: 1px solid var(--line) !important;
}

.brands .brand-atlas {
  border-top: 1px solid var(--line-strong) !important;
}

.brands .brand-atlas-item {
  width: 210px !important;
  height: 114px !important;
  padding: 22px 16px !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.56) !important;
  align-content: center !important;
  place-items: center !important;
}

.brands .brand-atlas-item:nth-child(3n),
.brands .brand-atlas-item:nth-child(5n),
.brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
  width: 210px !important;
  height: 114px !important;
  padding: 22px 16px !important;
}

.brands .brand-atlas-item img,
.brands .brand-atlas-item img.is-wide,
.brands .brand-atlas-item img.is-mark,
.brands .brand-atlas-item img.is-compact,
.brands .brand-atlas-item img.is-dark {
    width: auto !important;
    aspect-ratio: auto !important;
    height: auto !important;
    max-width: 86% !important;
    max-height: 56px !important;
    min-height: 24px !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
}

.logo-marquee-track {
  justify-content: flex-start !important;
}

.brands-stage .logo-run {
  align-items: center !important;
}

.brands-stage .logo-run img,
.brands-stage .hero-logo-run img {
  object-position: center !important;
}

@media (max-width: 900px) {
  .client-category-key li {
    min-height: 72px !important;
    padding: 0 10px !important;
  }

  .client-category-key li span {
    width: 32px !important;
    font-size: 11px !important;
    min-height: 22px !important;
  }

  .client-category-key li strong {
    font-size: 18px !important;
  }

  .institution-logo-ribbon {
    width: 196px !important;
    height: 126px !important;
    padding: 26px 18px !important;
  }

  .institution-logo-ribbon img,
  .institution-logo-ribbon[class*="institution-logo-"] img,
  .institution-logo-ribbon img.is-dark,
  .institution-logo-ribbon img.is-mark,
  .institution-logo-ribbon img.is-wide,
  .institution-logo-ribbon img.is-compact {
    max-height: 44px !important;
    max-width: 82% !important;
  }

  .hero-logo-run img,
  .logo-run img,
  .brands-stage .logo-run img,
  .brands-stage .hero-logo-run img {
    max-height: 48px !important;
    max-width: 130px !important;
    padding: 24px 24px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 198px !important;
    height: 102px !important;
    padding: 18px 14px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-mark,
  .brands .brand-atlas-item img.is-compact,
  .brands .brand-atlas-item img.is-dark {
    max-height: 44px !important;
    max-width: 87% !important;
  }
}

@media (max-width: 620px) {
  .client-category-key {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .client-category-key li {
    min-height: 64px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
  }

  .client-category-key li span {
    width: 30px !important;
    font-size: 10px !important;
    min-height: 20px !important;
  }

  .client-category-key li strong {
    font-size: 16px !important;
  }

  .institution-logo-ribbon {
    width: 196px !important;
    height: 126px !important;
    padding: 26px 18px !important;
  }

  .institution-logo-ribbon img,
  .institution-logo-ribbon[class*="institution-logo-"] img,
  .institution-logo-ribbon img.is-dark,
  .institution-logo-ribbon img.is-mark,
  .institution-logo-ribbon img.is-wide,
  .institution-logo-ribbon img.is-compact {
    max-height: 40px !important;
    max-width: 78% !important;
  }

  .hero-logo-run img,
  .logo-run img,
  .brands-stage .logo-run img,
  .brands-stage .hero-logo-run img {
    max-height: 44px !important;
    max-width: 142px !important;
    padding: 23px 24px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 176px !important;
    height: 94px !important;
    padding: 16px 14px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-mark,
  .brands .brand-atlas-item img.is-compact,
  .brands .brand-atlas-item img.is-dark {
    max-height: 40px !important;
    max-width: 87% !important;
  }
}

/* Final institution / brand-wall polish for this release */
.client-category-key.institution-name-index,
.institution-name-index {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 !important;
  border-top: 1px solid rgba(18, 31, 39, 0.16) !important;
  border-bottom: 1px solid rgba(18, 31, 39, 0.16) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #25313a !important;
}

.client-category-key.institution-name-index {
  margin-top: 36px !important;
}

.institution-name-index li,
.client-category-key li {
  min-height: 82px !important;
  padding: 0 16px !important;
  border-right: 1px solid rgba(18, 31, 39, 0.16) !important;
  display: grid !important;
  align-content: center !important;
  justify-items: center !important;
  align-items: center !important;
  text-align: center !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 520 !important;
}

.institution-name-index li:last-child {
  border-right: 0 !important;
}

.institution-name-index li b {
  width: 36px !important;
  min-height: 24px !important;
  margin: 0 auto 4px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(39, 111, 214, 0.12) !important;
  color: #2457ac !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.institution-name-index li strong {
  display: block !important;
  color: #232f36 !important;
  font-size: 20px !important;
  font-weight: 560 !important;
  line-height: 1.2 !important;
}

@media (max-width: 900px) {
  .institution-name-index li {
    min-height: 72px !important;
    padding: 0 10px !important;
    font-size: 11px !important;
  }

  .institution-name-index li b {
    width: 32px !important;
    min-height: 22px !important;
    font-size: 11px !important;
  }

  .institution-name-index li strong {
    font-size: 18px !important;
  }
}

@media (max-width: 620px) {
  .institution-name-index li {
    min-height: 64px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
  }

  .institution-name-index li b {
    width: 30px !important;
    min-height: 20px !important;
    font-size: 10px !important;
  }

  .institution-name-index li strong {
    font-size: 16px !important;
  }
}

/* Release seal: keep every current logo treatment on a single optical grid. */
.client-portfolio .institution-ribbon {
  margin-top: 84px !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(18, 31, 39, 0.2) !important;
  border-bottom: 0 !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

.client-portfolio .institution-ribbon-track {
  animation-duration: 58s !important;
  will-change: transform;
}

.client-portfolio .institution-logo-ribbon {
  width: 228px !important;
  height: 154px !important;
  padding: 30px 28px !important;
  background: rgba(255, 255, 255, 0.32) !important;
  border-right: 1px solid rgba(18, 31, 39, 0.12) !important;
}

.client-portfolio .institution-logo-ribbon img,
.client-portfolio .institution-logo-ribbon[class*="institution-logo-"] img {
  display: block !important;
  width: 156px !important;
  height: 44px !important;
  max-width: 100% !important;
  max-height: 44px !important;
  object-fit: contain !important;
  object-position: center !important;
  image-rendering: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

.client-portfolio .institution-logo-charity img {
  width: 158px !important;
  height: 31px !important;
}

.client-portfolio .institution-logo-children img {
  width: 156px !important;
  height: 36px !important;
}

.client-portfolio .institution-logo-baoland img {
  width: 142px !important;
  height: 41px !important;
}

.client-portfolio .client-category-key.institution-name-index {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  margin: 0 !important;
  border-top: 1px solid rgba(18, 31, 39, 0.12) !important;
  border-bottom: 1px solid rgba(18, 31, 39, 0.18) !important;
  background: rgba(246, 248, 248, 0.96) !important;
}

.client-portfolio .institution-name-index li {
  display: grid !important;
  min-height: 96px !important;
  padding: 18px 20px !important;
  border-right: 1px solid rgba(18, 31, 39, 0.12) !important;
  align-content: center !important;
  gap: 8px !important;
  counter-increment: institution-index !important;
  text-align: left !important;
}

.client-portfolio .institution-name-index li strong {
  display: block !important;
  color: #263139 !important;
  font-size: 17px !important;
  font-weight: 560 !important;
  letter-spacing: 0 !important;
}

.credentials .store-page-pair {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(124px, 0.72fr) !important;
  align-items: end !important;
  gap: 16px !important;
  min-height: 0 !important;
  padding: 18px !important;
  background: linear-gradient(145deg, #151d22, #091014 78%) !important;
}

.credentials .store-page {
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: #080d10 !important;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.2) !important;
}

.credentials .store-page img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center top !important;
}

.credentials .store-page-products {
  justify-self: end !important;
  width: min(100%, 236px) !important;
  aspect-ratio: 438 / 690 !important;
}

.credentials .store-page-flagship {
  width: 100% !important;
  height: 294px !important;
}

.credentials .store-page-products img {
  object-position: center 46% !important;
}

.credentials .store-page-flagship img {
  object-position: center 30% !important;
}

.credentials .store-figure figcaption {
  max-width: 100% !important;
}

.brands .brand-atlas-item,
.brands .brand-atlas-item:nth-child(3n),
.brands .brand-atlas-item:nth-child(5n),
.brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
  width: 224px !important;
  height: 118px !important;
  padding: 26px 22px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-sizing: border-box !important;
}

.brands .brand-atlas-item img,
.brands .brand-atlas-item img.is-wide,
.brands .brand-atlas-item img.is-mark,
.brands .brand-atlas-item img.is-compact,
.brands .brand-atlas-item img.is-dark {
  display: block !important;
  width: 150px !important;
  height: 42px !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 42px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  object-position: center !important;
  image-rendering: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

.brands .brand-atlas-item img.is-wide {
  width: 156px !important;
  height: 38px !important;
  max-height: 38px !important;
}

.brands .brand-atlas-item img.is-mark {
  width: 52px !important;
  height: 52px !important;
  max-height: 52px !important;
}

.brands .brand-atlas-item img.is-compact {
  width: 124px !important;
  height: 38px !important;
  max-height: 38px !important;
}

.brands-stage .logo-run img,
.brands-stage .hero-logo-run img,
.hero-logo-run img,
.logo-run img {
  width: clamp(108px, calc(126px * var(--brand-optical-scale, 1)), 164px) !important;
  height: auto !important;
  max-width: 164px !important;
  max-height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  transform: none !important;
  image-rendering: auto !important;
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .client-portfolio .institution-ribbon {
    margin-top: 64px !important;
  }

  .client-portfolio .institution-logo-ribbon {
    width: 192px !important;
    height: 126px !important;
    padding: 24px 20px !important;
  }

  .client-portfolio .institution-logo-ribbon img,
  .client-portfolio .institution-logo-ribbon[class*="institution-logo-"] img {
    width: 138px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .client-portfolio .institution-logo-charity img {
    width: 136px !important;
    height: 27px !important;
  }

  .client-portfolio .institution-logo-children img {
    width: 134px !important;
    height: 31px !important;
  }

  .client-portfolio .institution-logo-baoland img {
    width: 122px !important;
    height: 35px !important;
  }

  .client-portfolio .institution-name-index li {
    min-height: 68px !important;
    padding: 0 12px !important;
  }

  .client-portfolio .institution-name-index li strong {
    font-size: 15px !important;
  }

  .credentials .store-page-pair {
    gap: 10px !important;
    padding: 12px !important;
  }

  .credentials .store-page-products {
    width: min(100%, 184px) !important;
  }

  .credentials .store-page-flagship {
    height: 236px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 188px !important;
    height: 104px !important;
    padding: 22px 18px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-mark,
  .brands .brand-atlas-item img.is-compact,
  .brands .brand-atlas-item img.is-dark {
    width: 138px !important;
    height: 38px !important;
    max-height: 38px !important;
  }

  .brands .brand-atlas-item img.is-wide {
    width: 148px !important;
    height: 34px !important;
    max-height: 34px !important;
  }

  .brands .brand-atlas-item img.is-mark {
    width: 46px !important;
    height: 46px !important;
    max-height: 46px !important;
  }

  .brands .brand-atlas-item img.is-compact {
    width: 112px !important;
    height: 34px !important;
    max-height: 34px !important;
  }
}

@media (max-width: 620px) {
  .client-portfolio .institution-name-index li {
    min-height: 82px !important;
    padding: 14px 12px !important;
    gap: 6px !important;
  }

  .client-portfolio .institution-name-index li strong {
    font-size: 14px !important;
  }

  .credentials .store-page-pair {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 0.7fr) !important;
  }

  .credentials .store-page-products {
    width: min(100%, 156px) !important;
  }

  .credentials .store-page-flagship {
    height: 164px !important;
  }

  .brands .brand-atlas-item,
  .brands .brand-atlas-item:nth-child(3n),
  .brands .brand-atlas-item:nth-child(5n),
  .brands .brand-atlas-row:nth-child(2) .brand-atlas-item {
    width: 170px !important;
    height: 94px !important;
    padding: 18px 14px !important;
  }

  .brands .brand-atlas-item img,
  .brands .brand-atlas-item img.is-wide,
  .brands .brand-atlas-item img.is-mark,
  .brands .brand-atlas-item img.is-compact,
  .brands .brand-atlas-item img.is-dark {
    width: 126px !important;
    height: 35px !important;
    max-height: 35px !important;
  }

  .brands .brand-atlas-item img.is-wide {
    width: 134px !important;
    height: 32px !important;
    max-height: 32px !important;
  }

  .brands .brand-atlas-item img.is-mark {
    width: 42px !important;
    height: 42px !important;
    max-height: 42px !important;
  }

  .brands .brand-atlas-item img.is-compact {
    width: 104px !important;
    height: 32px !important;
    max-height: 32px !important;
  }
}
