:root {
  --demo-ink: #132334;
  --demo-ink-soft: #4f6071;
  --demo-muted: #728292;
  --demo-line: #d8e1e8;
  --demo-line-strong: #b9c8d4;
  --demo-paper: #ffffff;
  --demo-paper-soft: #f5f8fa;
  --demo-blue-pale: #eaf3f9;
  --demo-blue-wash: #dcebf5;
  --demo-blue: #1769a0;
  --demo-blue-deep: #0b3557;
  --demo-blue-dark: #082943;
  --demo-on-blue: #f7fbfe;
  --demo-shadow: 0 24px 60px rgba(8, 41, 67, .12);
  --demo-ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

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

body.demo-home {
  margin: 0;
  overflow-x: hidden;
  background: var(--demo-paper);
  color: var(--demo-ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.demo-home a {
  color: inherit;
  text-decoration: none;
}

.demo-global-banner {
  color: var(--demo-ink);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.demo-global-banner a {
  color: inherit;
  text-decoration: none;
}

.demo-global-banner button,
.demo-global-banner input {
  color: inherit;
  font: inherit;
}

.demo-global-banner svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.demo-home button,
.demo-home input {
  color: inherit;
  font: inherit;
}

.demo-home button {
  cursor: pointer;
}

.demo-home img,
.demo-home svg {
  display: block;
}

.demo-home svg:not(.icon-sprite) {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--demo-paper);
  color: var(--demo-blue-deep);
  box-shadow: var(--demo-shadow);
  transform: translateY(-160%);
  transition: transform .2s var(--demo-ease);
}

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

.demo-home :focus-visible {
  outline: 3px solid rgba(23, 105, 160, .35);
  outline-offset: 3px;
}

.demo-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--demo-paper);
  border-top: 3px solid var(--demo-blue-deep);
}

.demo-header-main {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-country-cluster,
.demo-brand,
.header-actions,
.demo-country-trigger,
.header-search,
.demo-primary-nav,
.hero-hot-queries,
.briefing-topline,
.briefing-country,
.briefing-link,
.hero-country-strip,
.section-heading,
.faq-aside button,
.faq-item h3 button,
.faq-answer a,
.news-meta,
.case-tags,
.outline-link,
.firm-identity,
.firm-featured > a,
.firm-rows article,
.firm-rows article > a,
.policy-source,
.policy-feed article > a,
.official-sources a,
.home-cta button,
.footer-bottom {
  display: flex;
  align-items: center;
}

.brand-country-cluster {
  position: relative;
  flex: 0 0 auto;
  gap: 20px;
}

.demo-brand {
  gap: 11px;
  line-height: 1;
}

.demo-brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: url("/static/site-logo.jpg?v=brand-1") center / contain no-repeat;
  filter: drop-shadow(0 6px 12px rgba(8, 41, 67, .1));
}

.demo-brand-copy {
  display: grid;
  gap: 7px;
}

.demo-brand-copy strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .06em;
}

.demo-brand-copy small {
  color: var(--demo-muted);
  font-size: 10px;
  letter-spacing: .16em;
}

.country-switcher {
  position: relative;
  padding-left: 20px;
  border-left: 1px solid var(--demo-line);
}

.demo-country-trigger {
  gap: 8px;
  padding: 9px 4px;
  border: 0;
  background: transparent;
  color: var(--demo-ink-soft);
  transition: color .25s var(--demo-ease), transform .25s var(--demo-ease);
}

.demo-country-trigger:hover {
  color: var(--demo-blue);
}

.demo-country-trigger:active {
  transform: translateY(1px);
}

.demo-country-trigger svg {
  width: 18px;
  height: 18px;
}

.demo-country-trigger .country-chevron {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: transform .25s var(--demo-ease);
}

.demo-country-trigger[aria-expanded="true"] .country-chevron {
  transform: rotate(-90deg);
}

.country-menu {
  position: absolute;
  top: calc(100% + 17px);
  left: 0;
  width: 680px;
  padding: 22px;
  background: var(--demo-paper);
  border: 1px solid var(--demo-line);
  box-shadow: var(--demo-shadow);
  transform-origin: top left;
  animation: menu-in .28s var(--demo-ease) both;
}

.country-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50px;
  width: 12px;
  height: 12px;
  background: var(--demo-paper);
  border-top: 1px solid var(--demo-line);
  border-left: 1px solid var(--demo-line);
  transform: rotate(45deg);
}

.country-menu[hidden] {
  display: none;
}

.country-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.country-menu-head span {
  font-size: 15px;
  font-weight: 750;
}

.country-menu-head small {
  color: var(--demo-muted);
  font-size: 12px;
}

.country-menu-search {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  padding: 0 13px;
  border: 1px solid var(--demo-line-strong);
  background: var(--demo-paper-soft);
}

.country-menu-search:focus-within {
  border-color: var(--demo-blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 160, .1);
}

.country-menu-search svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--demo-blue);
}

.country-menu-search input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.country-menu-search input::placeholder {
  color: #8b99a5;
}

.country-options {
  max-height: min(56vh, 520px);
  padding-right: 7px;
  overflow-y: auto;
  scrollbar-color: var(--demo-line-strong) transparent;
  scrollbar-width: thin;
}

.country-region + .country-region {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--demo-line);
}

.country-region h3 {
  margin: 0 0 10px;
  color: var(--demo-blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.country-region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.country-options button {
  min-width: 0;
  padding: 13px 14px;
  display: grid;
  gap: 2px;
  text-align: left;
  border: 1px solid var(--demo-line);
  background: var(--demo-paper);
  transition: border-color .25s var(--demo-ease), background-color .25s var(--demo-ease), transform .25s var(--demo-ease);
}

.country-options button:hover,
.country-options button[aria-pressed="true"] {
  border-color: var(--demo-blue);
  background: var(--demo-blue-pale);
}

.country-options button:active {
  transform: translateY(1px);
}

.country-options button[hidden],
.country-region[hidden] {
  display: none;
}

.country-options strong {
  font-size: 14px;
}

.country-options small {
  color: var(--demo-muted);
  font-size: 11px;
}

.country-empty {
  margin: 20px 0 4px;
  color: var(--demo-muted);
  font-size: 13px;
  text-align: center;
}

.country-empty[hidden] {
  display: none;
}

.header-actions {
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 14px;
}

.header-account-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-account-links > a:not(.header-login) {
  padding: 8px 12px;
  color: var(--demo-ink-soft);
  font-size: 13px;
  font-weight: 650;
  transition: color .2s ease, background-color .2s ease;
}

.header-account-links > a:not(.header-login):hover {
  background: var(--demo-blue-pale);
  color: var(--demo-blue-deep);
}

.header-search {
  width: min(390px, 40vw);
  height: 40px;
  border: 1px solid var(--demo-line-strong);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.header-search:focus-within {
  border-color: var(--demo-blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 160, .1);
}

.header-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.header-search input::placeholder {
  color: #93a0ab;
}

.header-search button {
  width: 42px;
  height: 100%;
  display: grid;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--demo-line);
  background: var(--demo-paper-soft);
  color: var(--demo-blue-deep);
}

.header-search button svg {
  width: 17px;
  height: 17px;
}

.header-login {
  padding: 8px 18px;
  background: var(--demo-blue);
  color: var(--demo-paper) !important;
  font-size: 13px;
  font-weight: 700;
  transition: background-color .25s ease, transform .25s var(--demo-ease);
}

.header-login:hover {
  background: var(--demo-blue-deep);
}

.header-login:active {
  transform: translateY(1px);
}

.mobile-menu-trigger {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--demo-line);
  background: var(--demo-paper);
}

.mobile-menu-trigger svg {
  width: 21px;
  height: 21px;
}

.mobile-menu-trigger .close-icon,
.mobile-menu-trigger[aria-expanded="true"] .menu-icon {
  display: none;
}

.mobile-menu-trigger[aria-expanded="true"] .close-icon {
  display: block;
}

.demo-nav-wrap {
  background: var(--demo-blue-deep);
  box-shadow: 0 1px 0 rgba(8, 41, 67, .12);
}

.demo-primary-nav {
  min-height: 49px;
  gap: 0;
}

.demo-global-banner .demo-primary-nav {
  justify-content: stretch;
  gap: 0;
}

.demo-primary-nav a {
  flex: 1 1 0;
  min-height: 49px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: rgba(247, 251, 254, .82);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
  transition: color .25s ease, background-color .25s ease;
}

.demo-global-banner .demo-primary-nav a {
  flex: 1 1 0;
}

.demo-primary-nav a:hover,
.demo-primary-nav a.is-active {
  background: rgba(255, 255, 255, .1);
  color: var(--demo-paper);
}

.demo-primary-nav .nav-home {
  display: flex;
  justify-content: center;
  gap: 0;
}

.nav-country-logo {
  width: 0;
  height: 24px;
  flex: 0 0 auto;
  margin-right: 0;
  opacity: 0;
  background: url("/static/site-logo.jpg?v=brand-1") center / contain no-repeat;
  transition: width .25s var(--demo-ease), margin-right .25s var(--demo-ease), opacity .2s ease;
}

.nav-home.is-country-context {
  background: var(--demo-blue);
  color: var(--demo-paper);
  font-weight: 750;
}

.nav-home.is-country-context:hover {
  background: #125987;
}

.nav-home.is-country-context .nav-country-logo {
  width: 24px;
  margin-right: 8px;
  opacity: 1;
}

.demo-primary-nav a.is-active::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 3px;
  background: var(--demo-paper);
}

.demo-hero {
  position: relative;
  padding: 76px 0 0;
  background: var(--demo-blue-pale);
  border-bottom: 1px solid var(--demo-line);
}

.demo-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--demo-blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, .95fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

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

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--demo-blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
}

.hero-kicker > span:first-child {
  width: 30px;
  height: 2px;
  background: var(--demo-blue);
}

.hero-copy h1 {
  max-width: 660px;
  margin: 20px 0 24px;
  color: var(--demo-blue-dark);
  font-size: clamp(43px, 4.35vw, 62px);
  font-weight: 820;
  letter-spacing: -.055em;
  line-height: 1.13;
}

.hero-copy > p {
  max-width: 610px;
  margin: 0 0 30px;
  color: var(--demo-ink-soft);
  font-size: 17px;
  line-height: 1.85;
}

.hero-query {
  max-width: 680px;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  background: var(--demo-paper);
  border: 1px solid var(--demo-line-strong);
  box-shadow: 0 14px 36px rgba(8, 41, 67, .08);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.hero-query:focus-within {
  border-color: var(--demo-blue);
  box-shadow: 0 18px 42px rgba(8, 41, 67, .13);
}

.hero-query-label {
  margin-left: 18px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-right: 1px solid var(--demo-line);
  color: var(--demo-blue);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-query-label svg {
  width: 18px;
  height: 18px;
}

.hero-query input {
  width: 100%;
  min-width: 0;
  height: 62px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.hero-query input::placeholder {
  color: #8997a3;
}

.hero-query button {
  height: 46px;
  margin-right: 9px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: var(--demo-blue);
  color: var(--demo-paper);
  font-size: 13px;
  font-weight: 750;
  transition: background-color .25s ease, transform .25s var(--demo-ease);
}

.hero-query button:hover {
  background: var(--demo-blue-deep);
}

.hero-query button:active {
  transform: translateY(1px);
}

.hero-query button svg {
  width: 16px;
  height: 16px;
}

.hero-hot-queries {
  gap: 18px;
  margin-top: 15px;
  color: var(--demo-muted);
  font-size: 12px;
}

.hero-hot-queries a {
  border-bottom: 1px solid transparent;
  color: var(--demo-ink-soft);
  transition: color .2s ease, border-color .2s ease;
}

.hero-hot-queries a:hover {
  color: var(--demo-blue);
  border-color: var(--demo-blue);
}

.hero-briefing {
  position: relative;
  align-self: start;
  min-width: 0;
  margin-top: 8px;
  padding: 30px 32px 28px;
  background: var(--demo-blue-deep);
  color: var(--demo-on-blue);
  box-shadow: 28px 28px 0 var(--demo-blue-wash);
}

.briefing-topline {
  justify-content: space-between;
  gap: 20px;
  color: rgba(247, 251, 254, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.briefing-live {
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .04em;
}

.briefing-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a9d1e8;
  box-shadow: 0 0 0 0 rgba(169, 209, 232, .5);
  animation: status-pulse 2.4s ease-out infinite;
}

.briefing-country {
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.briefing-country > div:first-child {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 10px;
  align-items: baseline;
}

.briefing-country small {
  grid-column: 1 / -1;
  color: rgba(247, 251, 254, .58);
  font-size: 11px;
}

.briefing-country strong {
  font-size: clamp(38px, 3.2vw, 48px);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.15;
}

.briefing-country > div:first-child span {
  color: rgba(247, 251, 254, .55);
  font-size: 11px;
}

.briefing-score {
  display: grid;
  justify-items: end;
}

.briefing-score span {
  color: rgba(247, 251, 254, .58);
  font-size: 10px;
}

.briefing-score strong {
  color: #d9edf8;
  font-size: 18px;
}

.briefing-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.briefing-metrics div {
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.briefing-metrics div:first-child {
  padding-left: 0;
}

.briefing-metrics div:last-child {
  padding-right: 0;
  border-right: 0;
}

.briefing-metrics dt {
  margin: 0;
  color: var(--demo-paper);
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -.03em;
}

.briefing-metrics dd {
  margin: 3px 0 0;
  color: rgba(247, 251, 254, .55);
  font-size: 10px;
  white-space: nowrap;
}

.briefing-link {
  justify-content: space-between;
  margin-top: 18px;
  color: rgba(247, 251, 254, .78);
  font-size: 12px;
  transition: color .2s ease;
}

.briefing-link:hover {
  color: var(--demo-paper);
}

.briefing-link svg {
  width: 16px;
  height: 16px;
}

.hero-country-strip {
  min-height: 72px;
  gap: 0;
  position: relative;
  z-index: 2;
  margin-bottom: -36px;
  background: var(--demo-paper);
  border: 1px solid var(--demo-line);
  box-shadow: 0 14px 40px rgba(8, 41, 67, .09);
}

.country-strip-label {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 25px;
  background: var(--demo-blue);
  color: var(--demo-paper);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.hero-country-strip button {
  height: 38px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-right: 1px solid var(--demo-line);
  background: transparent;
  color: var(--demo-ink-soft);
  font-size: 13px;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}

.hero-country-strip button:hover {
  background: var(--demo-paper-soft);
  color: var(--demo-blue);
}

.hero-country-strip button:active {
  transform: translateY(1px);
}

.hero-country-strip button span {
  color: var(--demo-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
}

.hero-country-strip .all-country-link {
  margin-left: auto;
  border-right: 0;
  color: var(--demo-blue);
  font-weight: 700;
}

.all-country-link svg {
  width: 15px;
  height: 15px;
}

.home-section {
  padding: 20px 0 52px;
}

.section-heading {
  display: grid;
  grid-template-columns: auto minmax(240px, .75fr) minmax(320px, 1.25fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
  padding: 10px 16px;
  border: 1px solid var(--demo-line);
  border-left: 3px solid var(--demo-blue);
  background: var(--demo-blue-pale);
}

.section-heading > div {
  display: contents;
}

.section-index {
  grid-column: 1;
  margin: 0;
  color: var(--demo-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  white-space: nowrap;
}

.section-heading h2,
.cases-intro h2 {
  grid-column: 2;
  margin: 0;
  color: var(--demo-blue-dark);
  font-size: clamp(28px, 2.3vw, 34px);
  font-weight: 790;
  letter-spacing: -.045em;
  line-height: 1.15;
}

.split-heading > p,
.action-heading > div > p:last-child {
  grid-column: 3;
  max-width: none;
  margin: 0;
  color: var(--demo-ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.action-heading > div > p:last-child {
  margin-top: 0;
}

.faq-section {
  padding-top: 16px;
  background: var(--demo-paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;
}

.faq-aside {
  border-top: 2px solid var(--demo-blue-deep);
}

.faq-aside button {
  width: 100%;
  gap: 13px;
  padding: 18px 12px;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--demo-line);
  background: transparent;
  color: var(--demo-ink-soft);
  transition: background-color .25s ease, color .25s ease, padding-left .25s var(--demo-ease);
}

.faq-aside button:hover,
.faq-aside button.is-active {
  padding-left: 17px;
  background: var(--demo-blue-pale);
  color: var(--demo-blue-deep);
}

.faq-aside button:active {
  transform: translateY(1px);
}

.faq-aside button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--demo-blue);
}

.faq-aside button span {
  display: grid;
  gap: 2px;
}

.faq-aside strong {
  font-size: 14px;
}

.faq-aside small {
  color: var(--demo-muted);
  font-size: 11px;
}

.faq-list {
  border-top: 2px solid var(--demo-blue-deep);
}

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

.faq-item[hidden] {
  display: none;
}

.faq-item h3 {
  margin: 0;
}

.faq-item h3 button {
  width: 100%;
  min-height: 78px;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 4px;
  text-align: left;
  border: 0;
  background: transparent;
  font-size: 17px;
  font-weight: 680;
}

.faq-item h3 button > span {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.faq-item h3 button i {
  color: var(--demo-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 750;
}

.faq-item h3 button > svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--demo-muted);
  transform: rotate(90deg);
  transition: transform .28s var(--demo-ease), color .28s ease;
}

.faq-item h3 button[aria-expanded="true"] > svg {
  color: var(--demo-blue);
  transform: rotate(-90deg);
}

.faq-answer {
  padding: 0 48px 24px 36px;
  animation: answer-in .3s var(--demo-ease) both;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--demo-ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

.faq-answer a {
  width: max-content;
  gap: 8px;
  color: var(--demo-blue);
  font-size: 12px;
  font-weight: 700;
}

.faq-answer a svg {
  width: 15px;
  height: 15px;
  transition: transform .25s var(--demo-ease);
}

.faq-answer a:hover svg {
  transform: translateX(4px);
}

.news-section {
  background: var(--demo-paper-soft);
  border-top: 1px solid var(--demo-line);
  border-bottom: 1px solid var(--demo-line);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: 56px;
}

.news-visual {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--demo-blue-wash);
}

.news-visual > svg,
.news-thumb > svg {
  width: 100%;
  height: 100%;
  transition: transform .7s var(--demo-ease);
}

.news-visual:hover > svg,
.news-thumb:hover > svg {
  transform: scale(1.035);
}

.news-visual-port {
  aspect-ratio: 16 / 9;
}

.news-visual-port svg rect,
.news-thumb svg rect {
  fill: var(--demo-blue-wash);
  stroke: none;
}

.news-visual-port .news-water {
  fill: #b8d3e4;
  stroke: none;
}

.news-visual-port .news-lines,
.news-visual-port path:not(.news-water) {
  fill: none;
  stroke: var(--demo-blue-deep);
  stroke-width: 5;
}

.news-visual-port .news-sun {
  fill: var(--demo-paper);
  stroke: var(--demo-blue);
  stroke-width: 4;
}

.news-image-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 14px;
  background: var(--demo-blue);
  color: var(--demo-paper);
  font-size: 11px;
  font-weight: 750;
}

.news-lead-copy {
  padding: 25px 2px 0;
}

.news-meta {
  gap: 12px;
  color: var(--demo-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}

.news-meta span {
  color: var(--demo-blue);
}

.news-meta span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  margin: 0 0 3px 12px;
  background: var(--demo-line-strong);
}

.news-lead h3 {
  margin: 11px 0 12px;
  font-size: clamp(22px, 2.1vw, 29px);
  font-weight: 730;
  letter-spacing: -.03em;
  line-height: 1.45;
}

.news-lead h3 a,
.news-feed h3 a {
  background-image: linear-gradient(var(--demo-blue), var(--demo-blue));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: color .25s ease, background-size .4s var(--demo-ease);
}

.news-lead h3 a:hover,
.news-feed h3 a:hover {
  color: var(--demo-blue);
  background-size: 100% 1px;
}

.news-lead-copy > p,
.news-feed article > div > p {
  margin: 0;
  color: var(--demo-ink-soft);
  font-size: 13px;
  line-height: 1.8;
}

.news-feed {
  border-top: 2px solid var(--demo-blue-deep);
}

.news-feed article {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--demo-line);
}

.news-thumb {
  height: 116px;
  overflow: hidden;
  background: var(--demo-blue-wash);
}

.news-thumb svg path,
.news-thumb svg circle {
  fill: none;
  stroke: var(--demo-blue-deep);
  stroke-width: 3.5;
}

.news-thumb svg circle {
  fill: rgba(255, 255, 255, .45);
}

.news-feed h3 {
  margin: 7px 0 7px;
  font-size: 16px;
  font-weight: 690;
  line-height: 1.55;
}

.news-feed article > div > p {
  color: var(--demo-muted);
  font-size: 12px;
}

.cases-section {
  position: relative;
  background: var(--demo-blue-dark);
  color: rgba(247, 251, 254, .78);
  overflow: hidden;
}

.cases-section::after {
  content: "CASE";
  position: absolute;
  right: -18px;
  bottom: -88px;
  color: rgba(255, 255, 255, .025);
  font-size: 270px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}

.cases-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 88px;
}

.cases-intro .section-index {
  color: #9ccbe6;
}

.cases-intro h2 {
  color: var(--demo-paper);
}

.cases-intro > p:not(.section-index) {
  margin: 22px 0 26px;
  color: rgba(247, 251, 254, .62);
  line-height: 1.9;
}

.outline-link {
  width: max-content;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 251, 254, .58);
  color: var(--demo-paper);
  font-size: 13px;
  font-weight: 700;
}

.outline-link svg {
  width: 17px;
  height: 17px;
  transition: transform .25s var(--demo-ease);
}

.outline-link:hover svg {
  transform: translateX(5px);
}

.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 58px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 251, 254, .15);
}

.case-stats div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(247, 251, 254, .15);
}

.case-stats dt {
  color: var(--demo-paper);
  font-size: 27px;
  font-weight: 730;
}

.case-stats dd {
  margin: 2px 0 0;
  color: rgba(247, 251, 254, .48);
  font-size: 11px;
}

.case-list {
  border-top: 1px solid rgba(247, 251, 254, .24);
}

.case-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 44px;
  gap: 24px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid rgba(247, 251, 254, .17);
  transition: padding-left .3s var(--demo-ease), background-color .3s ease;
}

.case-list article:hover {
  padding-left: 15px;
  background: rgba(255, 255, 255, .035);
}

.case-number {
  color: rgba(247, 251, 254, .36);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
}

.case-tags {
  gap: 8px;
}

.case-tags span {
  padding: 2px 8px;
  border: 1px solid rgba(185, 220, 240, .26);
  color: #b9dcf0;
  font-size: 9px;
}

.case-list h3 {
  margin: 9px 0 5px;
  color: var(--demo-paper);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}

.case-list h3 a:hover {
  color: #cbe6f5;
}

.case-list article p {
  margin: 0;
  color: rgba(247, 251, 254, .45);
  font-size: 11px;
}

.case-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 251, 254, .2);
  transition: color .25s ease, background-color .25s ease, transform .25s var(--demo-ease);
}

.case-arrow:hover {
  background: var(--demo-paper);
  color: var(--demo-blue-deep);
  transform: translateX(4px);
}

.case-arrow svg {
  width: 17px;
  height: 17px;
}

.firms-section {
  background: var(--demo-paper);
}

.firms-board {
  display: grid;
  grid-template-columns: minmax(390px, .85fr) minmax(0, 1.15fr);
  border: 1px solid var(--demo-line);
}

.firm-featured {
  min-height: 420px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  position: relative;
  padding: 28px 31px;
  background: var(--demo-blue-pale);
  border-right: 1px solid var(--demo-line);
}

.firm-rank {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.firm-rank span {
  color: var(--demo-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.firm-rank strong {
  color: rgba(11, 53, 87, .12);
  font-size: 72px;
  font-weight: 850;
  line-height: .8;
  letter-spacing: -.08em;
}

.firm-identity {
  align-self: center;
  gap: 20px;
}

.firm-monogram {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  flex: 0 0 76px;
  background: var(--demo-blue-deep);
  color: var(--demo-paper);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.firm-identity span {
  color: var(--demo-blue);
  font-size: 10px;
  font-weight: 750;
}

.firm-identity h3 {
  margin: 5px 0 7px;
  color: var(--demo-blue-dark);
  font-size: 23px;
  line-height: 1.3;
}

.firm-identity p {
  margin: 0;
  color: var(--demo-muted);
  font-size: 12px;
}

.firm-case {
  align-self: end;
  padding: 17px 48px 0 0;
  border-top: 1px solid var(--demo-line-strong);
}

.firm-case small {
  color: var(--demo-muted);
  font-size: 10px;
}

.firm-case p {
  margin: 5px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.firm-featured > a {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 30px;
  bottom: 28px;
  justify-content: center;
  border: 1px solid var(--demo-line-strong);
  color: var(--demo-blue);
  transition: background-color .25s ease, color .25s ease, transform .25s var(--demo-ease);
}

.firm-featured > a:hover {
  background: var(--demo-blue);
  color: var(--demo-paper);
  transform: translateX(4px);
}

.firm-featured > a svg {
  width: 17px;
  height: 17px;
}

.firm-rows {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.firm-rows article {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 86px 40px;
  gap: 20px;
  padding: 24px 25px;
  border-bottom: 1px solid var(--demo-line);
  transition: background-color .25s ease, padding-left .3s var(--demo-ease);
}

.firm-rows article:last-child {
  border-bottom: 0;
}

.firm-rows article:hover {
  padding-left: 31px;
  background: var(--demo-paper-soft);
}

.firm-row-rank {
  color: var(--demo-blue);
  font-size: 12px;
  font-weight: 750;
}

.firm-row-name {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.firm-row-name strong {
  overflow: hidden;
  color: var(--demo-blue-dark);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.firm-row-name small {
  color: var(--demo-muted);
  font-size: 11px;
}

.firm-row-case {
  display: grid;
  justify-items: end;
  line-height: 1.15;
}

.firm-row-case small {
  color: var(--demo-muted);
  font-size: 9px;
}

.firm-row-case strong {
  color: var(--demo-blue-deep);
  font-size: 20px;
}

.firm-rows article > a {
  width: 34px;
  height: 34px;
  justify-content: center;
  border: 1px solid var(--demo-line);
  color: var(--demo-blue);
}

.firm-rows article > a:hover {
  border-color: var(--demo-blue);
  background: var(--demo-blue);
  color: var(--demo-paper);
}

.firm-rows article > a svg {
  width: 15px;
  height: 15px;
}

.policies-section {
  background: var(--demo-paper-soft);
  border-top: 1px solid var(--demo-line);
}

.policies-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 60px;
}

.policy-feed {
  border-top: 2px solid var(--demo-blue-deep);
}

.policy-feed article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 42px;
  gap: 24px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid var(--demo-line);
}

.policy-feed time {
  display: grid;
  padding-right: 20px;
  border-right: 1px solid var(--demo-line);
  line-height: 1.1;
}

.policy-feed time strong {
  color: var(--demo-blue-deep);
  font-size: 27px;
  font-weight: 700;
}

.policy-feed time span {
  margin-top: 5px;
  color: var(--demo-muted);
  font-size: 9px;
}

.policy-source {
  gap: 10px;
}

.policy-source span {
  color: var(--demo-blue);
  font-size: 10px;
  font-weight: 750;
}

.policy-source i {
  padding: 1px 6px;
  border: 1px solid var(--demo-line-strong);
  color: var(--demo-muted);
  font-size: 8px;
  font-style: normal;
}

.policy-feed h3 {
  margin: 6px 0 5px;
  font-size: 16px;
  font-weight: 670;
  line-height: 1.5;
}

.policy-feed h3 a:hover {
  color: var(--demo-blue);
}

.policy-feed article p {
  margin: 0;
  color: var(--demo-muted);
  font-size: 11px;
}

.policy-feed article > a {
  width: 38px;
  height: 38px;
  justify-content: center;
  border: 1px solid var(--demo-line);
  color: var(--demo-blue);
  transition: transform .25s var(--demo-ease), background-color .25s ease, color .25s ease;
}

.policy-feed article > a:hover {
  background: var(--demo-blue);
  color: var(--demo-paper);
  transform: translateX(4px);
}

.policy-feed article > a svg {
  width: 16px;
  height: 16px;
}

.official-sources {
  align-self: start;
  padding: 25px;
  background: var(--demo-paper);
  border: 1px solid var(--demo-line);
  box-shadow: 12px 12px 0 var(--demo-blue-wash);
}

.official-sources-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 0 3px 18px;
  border-bottom: 2px solid var(--demo-blue-deep);
}

.official-sources-head span {
  font-weight: 750;
}

.official-sources-head small {
  color: var(--demo-blue);
  font-size: 11px;
}

.official-sources a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  gap: 13px;
  padding: 17px 3px;
  border-bottom: 1px solid var(--demo-line);
  transition: padding-left .25s var(--demo-ease), color .25s ease;
}

.official-sources a:last-child {
  border-bottom: 0;
}

.official-sources a:hover {
  padding-left: 9px;
  color: var(--demo-blue);
}

.official-sources a > svg:first-child {
  width: 27px;
  height: 27px;
  color: var(--demo-blue);
}

.official-sources a > svg:last-child {
  width: 16px;
  height: 16px;
}

.official-sources a > span {
  display: grid;
  gap: 2px;
}

.official-sources a strong {
  font-size: 13px;
}

.official-sources a small {
  color: var(--demo-muted);
  font-size: 10px;
}

.home-cta {
  padding: 72px 0;
  background: #eef3f6;
  color: var(--demo-blue-deep);
}

.contact-shell {
  display: grid;
  gap: 24px;
}

.contact-intro {
  margin-bottom: 18px;
  text-align: center;
}

.contact-intro > p:first-child {
  margin: 0 0 13px;
  color: var(--demo-blue);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
}

.home-cta h2 {
  margin: 0;
  color: var(--demo-blue-deep);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 760;
  letter-spacing: -.05em;
  line-height: 1.15;
}

.contact-intro > p:last-child {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--demo-muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  min-height: 430px;
  overflow: hidden;
  background: var(--demo-paper);
  color: var(--demo-blue-deep);
  border: 1px solid rgba(11, 53, 87, .13);
  box-shadow: 0 20px 48px rgba(8, 41, 67, .1);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
}

.contact-eyebrow {
  margin: 0 0 18px;
  color: var(--demo-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-details h3 {
  max-width: 620px;
  margin: 0;
  color: var(--demo-blue-dark);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 760;
  letter-spacing: -.04em;
  line-height: 1.3;
}

.contact-details > p:not(.contact-eyebrow) {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--demo-muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-list {
  margin-top: 28px;
  font-style: normal;
}

.contact-email {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--demo-blue-dark);
  text-decoration: none;
}

.contact-email > span:first-child {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--demo-blue-pale);
  color: var(--demo-blue);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50%;
}

.contact-email > span:last-child {
  display: grid;
  gap: 4px;
}

.contact-email small {
  color: var(--demo-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.contact-email strong {
  overflow-wrap: anywhere;
  font-size: 16px;
  font-weight: 750;
}

.contact-wechat {
  margin: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 36px;
  background: var(--demo-blue);
  color: var(--demo-paper);
  text-align: center;
}

.contact-wechat > p {
  margin: 0;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .04em;
}

.contact-wechat img {
  width: min(100%, 250px);
  height: auto;
  display: block;
  padding: 4px;
  background: var(--demo-paper);
}

.contact-social {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 48px;
  padding: 34px 40px;
  background: var(--demo-blue-dark);
  color: var(--demo-paper);
}

.contact-social-intro > p:first-child {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.contact-social-intro h3 {
  margin: 0;
  color: var(--demo-paper);
  font-size: 21px;
  letter-spacing: -.02em;
}

.contact-social-intro > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

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

.contact-social-grid figure {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.contact-social-grid img {
  width: 112px;
  height: 112px;
  display: block;
  object-fit: contain;
  background: var(--demo-paper);
}

.contact-social-grid figcaption {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.contact-social-grid figcaption strong {
  font-size: 14px;
}

.contact-social-grid figcaption span {
  color: rgba(255, 255, 255, .56);
  font-size: 10px;
  overflow-wrap: anywhere;
}

.demo-footer {
  background: var(--demo-blue-dark);
  color: rgba(247, 251, 254, .66);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 100px;
  padding-top: 64px;
  padding-bottom: 52px;
}

.demo-brand-footer {
  width: max-content;
  color: var(--demo-paper) !important;
}

.demo-brand-footer .demo-brand-copy small {
  color: rgba(247, 251, 254, .48);
}

.footer-main > div > p {
  max-width: 310px;
  margin: 21px 0 0;
  font-size: 12px;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}

.footer-main nav > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main nav strong {
  margin-bottom: 6px;
  color: var(--demo-paper);
  font-size: 12px;
}

.footer-main nav a {
  width: max-content;
  color: rgba(247, 251, 254, .58);
  font-size: 11px;
  transition: color .2s ease;
}

.footer-main nav a:hover {
  color: var(--demo-paper);
}

.footer-bottom {
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 21px;
  border-top: 1px solid rgba(247, 251, 254, .12);
  color: rgba(247, 251, 254, .36);
  font-size: 10px;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes answer-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(169, 209, 232, .45); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(169, 209, 232, 0); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-briefing {
    animation: hero-enter .7s var(--demo-ease) both;
  }

  .hero-copy > *:nth-child(2) { animation-delay: .07s; }
  .hero-copy > *:nth-child(3) { animation-delay: .14s; }
  .hero-copy > *:nth-child(4) { animation-delay: .21s; }
  .hero-copy > *:nth-child(5) { animation-delay: .28s; }
  .hero-briefing { animation-delay: .18s; }
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .page-shell {
    width: min(100% - 48px, 1100px);
  }

  .demo-primary-nav a {
    padding-inline: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, .9fr);
    gap: 48px;
  }

  .hero-query-label {
    display: none;
  }

  .hero-query {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .briefing-metrics dd {
    white-space: normal;
  }

  .hero-country-strip button {
    padding-inline: 17px;
  }

  .faq-layout,
  .cases-grid {
    gap: 52px;
  }

  .news-layout {
    gap: 40px;
  }

  .news-feed article {
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 18px;
  }

  .news-thumb {
    height: 104px;
  }

  .firm-featured {
    padding-inline: 25px;
  }

  .firm-rows article {
    grid-template-columns: 34px minmax(0, 1fr) 64px 36px;
    gap: 14px;
    padding-inline: 20px;
  }
}

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

  .page-shell {
    width: min(100% - 40px, 820px);
  }

  .demo-header {
    top: 0;
  }

  .demo-header-main {
    min-height: 70px;
  }

  .demo-brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .demo-brand-copy strong {
    font-size: 18px;
  }

  .demo-brand-copy small {
    display: none;
  }

  .header-search {
    display: none;
  }

  .header-account-links {
    display: flex;
    gap: 0;
    white-space: nowrap;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .header-account-links > a:not(.header-login) {
    padding: 6px 7px;
    font-size: 11px;
  }

  .header-login {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 6px 9px;
    font-size: 11px;
  }

  .mobile-menu-trigger {
    display: grid;
  }

  .demo-nav-wrap {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--demo-paper);
    border-bottom: 1px solid var(--demo-line);
    box-shadow: 0 18px 38px rgba(8, 41, 67, .12);
  }

  .demo-primary-nav {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s var(--demo-ease), opacity .25s ease, padding .35s var(--demo-ease);
  }

  .demo-primary-nav[data-open="true"] {
    max-height: 360px;
    padding-top: 10px;
    padding-bottom: 14px;
    opacity: 1;
  }

  .demo-primary-nav a {
    min-height: 48px;
    justify-items: start;
    padding: 0 16px;
    color: var(--demo-ink-soft);
    border-bottom: 1px solid var(--demo-line);
  }

  .demo-primary-nav .nav-home {
    justify-content: flex-start;
  }

  .demo-primary-nav .nav-home.is-country-context,
  .demo-primary-nav .nav-home.is-country-context:hover {
    background: var(--demo-blue);
    color: var(--demo-paper);
  }

  .demo-primary-nav a:hover,
  .demo-primary-nav a.is-active {
    background: var(--demo-blue-pale);
    color: var(--demo-blue-deep);
  }

  .demo-primary-nav a.is-active::after {
    inset: 10px auto 10px 0;
    width: 3px;
    height: auto;
    background: var(--demo-blue);
  }

  .demo-hero {
    padding-top: 54px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    padding-bottom: 22px;
  }

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

  .hero-briefing {
    width: min(100% - 28px, 620px);
    margin-top: 0;
    justify-self: end;
    box-shadow: 20px 20px 0 var(--demo-blue-wash);
  }

  .hero-country-strip {
    width: calc(100% - 40px);
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: thin;
  }

  .hero-country-strip .all-country-link {
    margin-left: 0;
  }

  .section-heading {
    align-items: flex-start;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-aside {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    overflow-x: auto;
    border-top-width: 1px;
  }

  .faq-aside button {
    border-right: 1px solid var(--demo-line);
  }

  .news-layout,
  .policies-grid {
    grid-template-columns: 1fr;
  }

  .news-feed article {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .news-thumb {
    height: 126px;
  }

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

  .cases-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 40px;
  }

  .cases-intro .section-index,
  .cases-intro h2,
  .cases-intro > p:not(.section-index) {
    grid-column: 1;
  }

  .cases-intro .outline-link {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
  }

  .case-stats {
    grid-column: 1 / -1;
    margin-top: 26px;
  }

  .firms-board {
    grid-template-columns: 1fr;
  }

  .firm-featured {
    min-height: 350px;
    border-right: 0;
    border-bottom: 1px solid var(--demo-line);
  }

  .policies-grid {
    gap: 42px;
  }

  .official-sources {
    width: min(100% - 14px, 560px);
    justify-self: start;
  }

  .contact-shell {
    gap: 24px;
  }

  .contact-social {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main {
    gap: 50px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    width: calc(100% - 32px);
  }

  .demo-header-main {
    gap: 12px;
  }

  .brand-country-cluster {
    gap: 12px;
  }

  .country-switcher {
    padding-left: 12px;
  }

  .demo-country-trigger {
    gap: 5px;
    font-size: 12px;
  }

  .demo-country-trigger > svg:first-child {
    display: none;
  }

  .country-menu {
    position: fixed;
    top: 72px;
    left: 16px;
    width: calc(100vw - 32px);
  }

  .country-menu::before {
    display: none;
  }

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

  .header-login-register {
    display: none;
  }

  .demo-hero::before {
    width: 4px;
  }

  .demo-hero {
    padding-top: 44px;
  }

  .hero-copy h1 {
    margin-top: 16px;
    font-size: clamp(36px, 9.7vw, 44px);
    letter-spacing: -.06em;
  }

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

  .hero-query {
    min-height: 58px;
  }

  .hero-query input {
    height: 56px;
    padding-left: 14px;
  }

  .hero-query button {
    height: 42px;
    padding-inline: 13px;
  }

  .hero-hot-queries {
    gap: 12px;
  }

  .hero-briefing {
    width: calc(100% - 14px);
    padding: 24px 22px;
    box-shadow: 14px 14px 0 var(--demo-blue-wash);
  }

  .briefing-metrics div {
    padding-inline: 8px;
  }

  .briefing-metrics dt {
    font-size: 17px;
  }

  .briefing-metrics dd {
    font-size: 9px;
  }

  .hero-country-strip {
    width: calc(100% - 32px);
  }

  .home-section {
    padding: 28px 0 44px;
  }

  .faq-section {
    padding-top: 28px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px 16px;
    margin-bottom: 20px;
    padding: 14px;
  }

  .section-index {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .section-heading h2 {
    grid-column: 1;
    grid-row: 2;
  }

  .section-heading h2,
  .cases-intro h2 {
    font-size: 30px;
  }

  .split-heading > p,
  .action-heading > div > p:last-child {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 13px;
  }

  .faq-item h3 button {
    font-size: 15px;
  }

  .faq-item h3 button > span {
    gap: 11px;
  }

  .faq-answer {
    padding-left: 27px;
    padding-right: 10px;
  }

  .news-layout {
    gap: 34px;
  }

  .news-feed article {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 15px;
  }

  .news-thumb {
    height: 96px;
  }

  .news-feed h3 {
    margin-top: 4px;
    font-size: 14px;
  }

  .news-feed article > div > p {
    display: none;
  }

  .cases-intro {
    display: block;
  }

  .cases-intro .outline-link {
    margin-top: 22px;
  }

  .case-list article {
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 16px;
  }

  .case-number {
    display: none;
  }

  .case-list h3 {
    font-size: 16px;
  }

  .firm-featured {
    min-height: 390px;
    padding: 24px 21px;
  }

  .firm-identity {
    align-items: flex-start;
  }

  .firm-monogram {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .firm-identity h3 {
    font-size: 19px;
  }

  .firm-rows article {
    grid-template-columns: 28px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 20px 16px;
  }

  .firm-row-case {
    display: none;
  }

  .policy-feed article {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
  }

  .policy-feed article > a {
    display: none;
  }

  .policy-feed time {
    padding-right: 12px;
  }

  .policy-feed article p {
    display: none;
  }

  .official-sources {
    width: calc(100% - 10px);
    padding: 20px;
    box-shadow: 10px 10px 0 var(--demo-blue-wash);
  }

  .home-cta {
    padding: 58px 0;
  }

  .contact-shell {
    gap: 20px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    box-shadow: 0 14px 34px rgba(8, 41, 67, .1);
  }

  .contact-details {
    padding: 34px 26px;
  }

  .contact-details h3 {
    font-size: 27px;
  }

  .contact-email strong {
    font-size: 14px;
  }

  .contact-wechat {
    padding: 34px 24px;
  }

  .contact-social {
    padding: 28px 24px;
  }

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

  .footer-main nav {
    gap: 22px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 420px) {
  .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-social-grid figure {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .contact-social-grid img {
    width: 96px;
    height: 96px;
  }

  .demo-header-main {
    gap: 8px;
  }

  .demo-header-main .demo-brand-copy {
    display: none;
  }

  .brand-country-cluster {
    gap: 10px;
  }

  .country-switcher {
    padding-left: 10px;
  }

  .country-region-grid {
    grid-template-columns: 1fr;
  }

  .country-menu {
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero-hot-queries a:last-child {
    display: none;
  }

  .briefing-country {
    gap: 12px;
  }

  .briefing-country strong {
    font-size: 34px;
  }

  .briefing-score strong {
    font-size: 16px;
  }

  .news-feed article {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .news-thumb {
    height: 84px;
  }

  .case-list article p {
    display: none;
  }

  .firm-identity {
    display: block;
  }

  .firm-monogram {
    margin-bottom: 15px;
  }

  .firm-row-name small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

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

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

/* Shared master-detail library */
.faq-section {
  padding-top: 16px;
}

.membership-section {
  padding: 72px 0;
  background: #17251f;
  color: #f4f1e8;
}

.membership-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr) auto;
  gap: 48px;
  align-items: center;
}

.membership-panel h2 {
  max-width: 720px;
  margin: 12px 0 16px;
  color: inherit;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.12;
}

.membership-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(244, 241, 232, 0.76);
  line-height: 1.8;
}

.membership-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: rgba(244, 241, 232, 0.9);
}

.membership-action {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(244, 241, 232, 0.5);
  color: #f4f1e8;
  text-decoration: none;
  white-space: nowrap;
}

.membership-action:hover {
  background: #f4f1e8;
  color: #17251f;
}

@media (max-width: 900px) {
  .membership-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .membership-action {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .membership-section {
    padding: 48px 0;
  }
}

.cases-section .section-index {
  color: #a9d1e8;
}

.cases-section .section-heading {
  border-color: rgba(247, 251, 254, .18);
  border-left-color: #6aaed4;
  background: rgba(247, 251, 254, .06);
}

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

.cases-section .action-heading > div > p:last-child {
  color: rgba(247, 251, 254, .74);
}

.content-library {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--demo-line);
  background: var(--demo-paper);
  box-shadow: 0 22px 56px rgba(8, 41, 67, .08);
}

.content-library-nav {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #f4f8fb;
  border-right: 1px solid var(--demo-line);
}

.content-library-nav-head {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  color: var(--demo-paper);
  background: var(--demo-blue-deep);
}

.content-library-nav-head span {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .03em;
}

.content-library-nav [data-library-list] {
  flex: 1 1 auto;
}

.content-library-nav [data-library-list] button {
  width: 100%;
  min-height: 90px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 0;
  border-bottom: 1px solid var(--demo-line);
  text-align: left;
  background: transparent;
  color: var(--demo-ink-soft);
  transition: color .2s ease, background-color .2s ease, padding-left .25s var(--demo-ease);
}

.content-library-nav [data-library-list] button:hover {
  color: var(--demo-blue-deep);
  background: rgba(255, 255, 255, .78);
}

.content-library-nav [data-library-list] button[aria-pressed="true"] {
  padding-left: 22px;
  color: var(--demo-blue-deep);
  background: var(--demo-paper);
  box-shadow: inset 4px 0 0 var(--demo-blue);
}

.library-list-index {
  color: var(--demo-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}

.library-list-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.library-list-copy strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.library-list-copy small {
  overflow: hidden;
  color: var(--demo-muted);
  font-size: 9px;
  letter-spacing: .02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.library-list-arrow {
  color: var(--demo-line-strong);
  font-size: 16px;
  transition: transform .25s var(--demo-ease), color .2s ease;
}

.content-library-nav button[aria-pressed="true"] .library-list-arrow {
  color: var(--demo-blue);
  transform: translateX(3px);
}

.content-library-nav-head .content-library-all {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  padding: 6px 0 6px 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 720;
  white-space: nowrap;
  transition: color .2s ease;
}

.content-library-nav-head .content-library-all svg {
  width: 14px;
  height: 14px;
  transition: transform .25s var(--demo-ease);
}

.content-library-nav-head .content-library-all:hover {
  color: var(--demo-paper);
}

.content-library-nav-head .content-library-all:hover svg {
  transform: translateX(4px);
}

.content-library-detail {
  min-width: 0;
  padding: 52px clamp(30px, 5vw, 72px) 42px;
  background:
    linear-gradient(135deg, rgba(222, 237, 246, .35), transparent 38%),
    var(--demo-paper);
  animation: detail-enter .32s var(--demo-ease) both;
}

.content-library-detail[data-active-item] {
  animation-name: detail-enter;
}

.library-detail-head {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--demo-line);
}

.library-detail-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 15px;
  color: var(--demo-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.library-detail-eyebrow time {
  color: var(--demo-muted);
  font-weight: 650;
  letter-spacing: .04em;
}

.library-detail-head h3 {
  max-width: 780px;
  margin: 0;
  color: var(--demo-blue-dark);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 770;
  letter-spacing: -.035em;
  line-height: 1.35;
}

.library-detail-summary {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--demo-ink-soft);
  font-size: 15px;
  font-weight: 580;
  line-height: 1.85;
}

.library-detail-body {
  max-width: 800px;
  padding: 25px 0 7px;
}

.library-detail-body p {
  margin: 0 0 15px;
  color: var(--demo-ink-soft);
  font-size: 14px;
  line-height: 2;
}

.library-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

.library-facts li {
  min-height: 74px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 15px;
  color: var(--demo-blue-deep);
  background: var(--demo-blue-pale);
  border: 1px solid #d7e6ef;
}

.library-facts li span {
  color: var(--demo-blue);
  font-size: 11px;
}

.library-facts li strong {
  font-size: 11px;
  font-weight: 680;
  line-height: 1.6;
}

.library-detail-footer {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--demo-line);
}

.library-empty {
  display: grid;
  min-height: 260px;
  place-content: center;
  gap: 10px;
  padding: 40px;
  text-align: center;
  color: var(--demo-muted);
}

.library-empty strong {
  color: var(--demo-navy);
  font-size: 22px;
}

.library-empty p {
  max-width: 440px;
  margin: 0;
  line-height: 1.8;
}

.library-detail-footer a {
  color: var(--demo-blue);
  font-size: 11px;
  font-weight: 760;
}

.library-detail-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.library-detail-footer .library-match-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #0b4f7a;
  border-radius: 4px;
  color: #fff;
  background: linear-gradient(135deg, #0d5f91 0%, #073f68 100%);
  box-shadow: 0 10px 24px rgba(7, 63, 104, 0.24);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.library-detail-footer .library-match-action:hover {
  color: #fff;
  background: linear-gradient(135deg, #1473a8 0%, #08466f 100%);
  box-shadow: 0 14px 30px rgba(7, 63, 104, 0.32);
  text-decoration: none;
  transform: translateY(-2px);
}

.library-detail-footer .library-match-action:focus-visible {
  outline: 3px solid rgba(23, 129, 181, 0.28);
  outline-offset: 3px;
}

.library-inline-contact {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--demo-blue);
  background: var(--demo-blue-pale);
  color: var(--demo-blue-deep);
}

.library-inline-contact .library-inline-contact-kicker {
  margin: 0 0 7px;
  color: var(--demo-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.library-inline-contact h4 {
  margin: 0;
  font-size: 21px;
}

.library-inline-contact > p:not(.library-inline-contact-kicker) {
  max-width: 640px;
  margin: 10px 0 16px;
  color: var(--demo-muted);
  font-size: 12px;
  line-height: 1.75;
}

.library-inline-contact-action {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: var(--demo-paper) !important;
  background: var(--demo-blue-deep);
  font-size: 12px !important;
  text-decoration: none !important;
}

.library-anonymous-source {
  color: var(--demo-muted);
  font-size: 10px;
}

.library-source-image {
  margin: -52px clamp(-72px, -5vw, -30px) 34px;
  background: var(--demo-blue-pale);
}

.library-source-image img {
  width: 100%;
  height: 235px;
  display: block;
  object-fit: cover;
}

.library-source-image figcaption {
  padding: 9px 14px;
  color: var(--demo-muted);
  background: var(--demo-paper-soft);
  border-bottom: 1px solid var(--demo-line);
  font-size: 9px;
  line-height: 1.6;
}

.library-illustration {
  position: relative;
  height: 235px;
  overflow: hidden;
  margin: -52px clamp(-72px, -5vw, -30px) 34px;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, .9) 0 5%, transparent 5.4%),
    linear-gradient(145deg, #dbeaf3, #a9cddd 58%, #6f9eb5);
}

.library-illustration::before,
.library-illustration::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.library-illustration::before {
  right: 8%;
  bottom: 0;
  width: 36%;
  height: 58%;
  border: 3px solid rgba(10, 60, 91, .66);
  border-bottom: 0;
  background: repeating-linear-gradient(90deg, transparent 0 17px, rgba(255, 255, 255, .5) 18px 22px);
  transform: skewY(-5deg);
}

.library-illustration::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(9, 67, 101, .18));
  clip-path: polygon(0 42%, 22% 25%, 44% 58%, 64% 18%, 100% 46%, 100% 100%, 0 100%);
}

.illustration-skyline {
  position: absolute;
  left: 9%;
  bottom: 18%;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 8px;
}

.illustration-skyline i {
  width: 26px;
  height: 58px;
  display: block;
  border: 2px solid rgba(8, 54, 83, .68);
  background: rgba(255, 255, 255, .2);
}

.illustration-skyline i:nth-child(2) { height: 92px; }
.illustration-skyline i:nth-child(3) { width: 42px; height: 126px; border-radius: 60% 60% 0 0; }
.illustration-skyline i:nth-child(4) { height: 78px; }
.illustration-skyline i:nth-child(5) { width: 20px; height: 106px; }
.illustration-skyline i:nth-child(6) { height: 48px; }

.illustration-label {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 2;
  padding: 7px 10px;
  color: var(--demo-paper);
  background: var(--demo-blue-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.library-illustration-invoice { background: linear-gradient(145deg, #e9eff3, #bad8e5 55%, #719aae); }
.library-illustration-tax { background: linear-gradient(145deg, #e8eee8, #b5d3c4 55%, #628f79); }
.library-illustration-talent { background: linear-gradient(145deg, #e9e7f2, #c4c1df 55%, #777da9); }
.library-illustration-hq { background: linear-gradient(145deg, #e8edf5, #bdcde0 55%, #6b87a5); }
.library-illustration-growth { background: linear-gradient(145deg, #eef0dd, #d3daae 55%, #89965c); }
.library-illustration-ownership { background: linear-gradient(145deg, #f0e8df, #ddc4ab 55%, #a77d5d); }
.library-illustration-investor { background: linear-gradient(145deg, #eee8df, #d9c6a5 55%, #987947); }

.privacy-note {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 22px;
  color: var(--demo-paper);
  background: var(--demo-blue-deep);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.privacy-note span {
  flex: 0 0 auto;
  color: #a9d1e8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.privacy-note p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  line-height: 1.65;
}

.content-library-firms {
  border-top: 0;
}

.official-directory {
  margin-top: 30px;
  border: 1px solid var(--demo-line);
  background: var(--demo-paper);
}

.official-directory-head {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: var(--demo-paper);
  background: var(--demo-blue-deep);
}

.official-directory-head span {
  font-size: 13px;
  font-weight: 760;
}

.official-directory-head small {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
}

.official-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.official-directory-grid a {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 18px 20px;
  border-right: 1px solid var(--demo-line);
  border-bottom: 1px solid var(--demo-line);
  transition: color .2s ease, background-color .2s ease;
}

.official-directory-grid a:nth-child(4n) { border-right: 0; }
.official-directory-grid a:nth-last-child(-n + 4) { border-bottom: 0; }

.official-directory-grid a:hover {
  color: var(--demo-blue);
  background: var(--demo-blue-pale);
}

.official-directory-grid a span {
  color: var(--demo-blue);
  font-size: 9px;
  font-weight: 820;
  letter-spacing: .13em;
}

.official-directory-grid a strong {
  font-size: 13px;
  font-weight: 720;
}

.official-directory-grid a small {
  color: var(--demo-muted);
  font-size: 10px;
}

@keyframes detail-enter {
  from { opacity: .55; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Collection archive pages */
.demo-archive {
  height: 100vh;
  overflow: hidden;
  color: var(--demo-ink);
  background: var(--demo-paper-soft);
}

.archive-header {
  height: 64px;
  box-sizing: border-box;
  padding: 10px 0;
  background: var(--demo-paper);
  border-bottom: 1px solid var(--demo-line);
}

.archive-header .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.archive-back {
  color: var(--demo-blue);
  font-size: 12px;
  font-weight: 720;
}

.archive-hero {
  height: 96px;
  box-sizing: border-box;
  padding: 11px 0 10px;
  color: var(--demo-paper);
  background: var(--demo-blue-deep);
}

.archive-hero p {
  max-width: 820px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.55;
}

.archive-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.archive-hero .archive-count {
  width: fit-content;
  flex: 0 0 auto;
  margin: 0 0 2px;
  padding: 4px 8px;
  color: #d7edf9;
  border: 1px solid rgba(215, 237, 249, .26);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .06em;
}

.archive-login-hint {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-right: 10px;
  padding: 3px 9px;
  color: #073f68;
  background: #d7edf9;
  font-weight: 850;
}

.archive-hero .section-index { color: #a9d1e8; }

.archive-hero h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.05em;
  line-height: 1.05;
}

.archive-workspace {
  height: calc(100vh - 160px);
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  padding-top: 12px;
  padding-bottom: 12px;
}

.demo-global-archive .archive-workspace {
  height: calc(100vh - 229px);
}

.archive-library {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

@media (max-width: 900px) {
  .demo-global-archive .archive-workspace {
    height: calc(100vh - 166px);
  }
}

.archive-drawer-toggle,
.archive-drawer-backdrop,
.archive-drawer-close {
  display: none;
}

.archive-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.archive-library .content-library-nav {
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.archive-library .content-library-nav-head small {
  color: rgba(255, 255, 255, .64);
  font-size: 10px;
}

.archive-library [data-archive-list] {
  min-height: 0;
  overflow-y: auto;
  flex: 1 1 0;
  overscroll-behavior: contain;
  scrollbar-color: #b4cbd8 transparent;
  scrollbar-width: thin;
}

.archive-library [data-archive-list]::-webkit-scrollbar {
  width: 7px;
}

.archive-library [data-archive-list]::-webkit-scrollbar-thumb {
  background: #b4cbd8;
  border: 2px solid #f4f8fb;
  border-radius: 999px;
}

.archive-library .content-library-detail {
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: 30px clamp(28px, 4vw, 58px) 42px;
}

.archive-library .library-detail-head {
  padding-bottom: 17px;
}

.archive-library .library-detail-head h3 {
  font-size: clamp(23px, 2.2vw, 32px);
}

.archive-library .library-detail-summary {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.7;
}

.archive-library .library-detail-body {
  padding: 17px 0 3px;
}

.archive-library .library-detail-body p {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.8;
}

.archive-library .library-facts {
  margin: 12px 0 8px;
}

.archive-library .library-facts li {
  min-height: 52px;
  padding: 10px 12px;
}

.archive-library .library-detail-footer {
  min-height: 32px;
  padding-top: 0;
  border-top: 0;
}

.library-read-more {
  color: var(--demo-paper) !important;
  padding: 8px 12px;
  background: var(--demo-blue);
  text-decoration: none !important;
}

@media (max-width: 900px) {
  .content-library {
    grid-template-columns: 310px minmax(0, 1fr);
  }

  .content-library-detail {
    padding-inline: 34px;
  }

  .library-illustration {
    margin-inline: -34px;
  }

  .library-facts {
    grid-template-columns: 1fr;
  }

  .library-facts li {
    min-height: 0;
  }

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

  .official-directory-grid a:nth-child(2n) { border-right: 0; }
  .official-directory-grid a:nth-child(-n + 4) { border-bottom: 1px solid var(--demo-line); }
  .official-directory-grid a:nth-last-child(-n + 2) { border-bottom: 0; }
}

@media (max-width: 700px) {
  .content-library {
    display: block;
    min-height: 0;
    overflow: visible;
    box-shadow: 0 14px 34px rgba(8, 41, 67, .07);
  }

  .content-library-nav {
    border-right: 0;
    border-bottom: 1px solid var(--demo-line);
  }

  .content-library-nav [data-library-list] {
    max-height: 390px;
    overflow-y: auto;
  }

  .content-library-nav [data-library-list] button {
    min-height: 70px;
  }

  .content-library-detail {
    min-height: 620px;
    padding: 36px 22px 28px;
    scroll-margin-top: 80px;
  }

  .library-illustration {
    height: 190px;
    margin: -36px -22px 28px;
  }

  .library-detail-head h3 {
    font-size: 25px;
  }

  .library-detail-summary {
    font-size: 14px;
  }

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

  .privacy-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .official-directory-grid a {
    min-height: 104px;
    padding: 15px;
  }

}

@media (max-width: 820px) and (orientation: portrait) {
  [data-library="firms"] .library-detail-footer,
  [data-archive="firms"] .library-detail-footer,
  [data-archive="partners"] .library-detail-footer {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  [data-library="firms"] .library-detail-footer .library-read-more,
  [data-archive="firms"] .library-detail-footer .library-read-more,
  [data-archive="partners"] .library-detail-footer .library-read-more {
    order: 1;
  }

  [data-library="firms"] .library-detail-footer .library-match-action,
  [data-archive="firms"] .library-detail-footer .library-match-action,
  [data-archive="partners"] .library-detail-footer .library-match-action {
    order: 1;
    min-height: 40px;
    margin-left: auto;
    padding: 9px 12px;
    font-size: 12px;
  }

  [data-library="firms"] .library-detail-footer .library-anonymous-source,
  [data-archive="firms"] .library-detail-footer .library-anonymous-source,
  [data-archive="partners"] .library-detail-footer .library-anonymous-source {
    order: 2;
    flex: 1 0 100%;
  }

  .demo-archive {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
  }

  .archive-hero {
    height: 90px;
    padding: 9px 0 8px;
  }

  .archive-title-row {
    align-items: flex-end;
    flex-direction: row;
    gap: 12px;
  }

  .archive-hero h1 {
    font-size: clamp(23px, 6vw, 29px);
  }

  .archive-hero .archive-count {
    margin: 0 0 2px;
    white-space: nowrap;
  }

  .archive-description {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .archive-workspace {
    height: calc(100vh - 154px);
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .demo-global-archive .archive-workspace {
    height: calc(100vh - 160px);
  }

  .archive-library.content-library {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
  }

  .demo-archive .archive-drawer-toggle {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    color: var(--demo-paper);
    background: var(--demo-blue-deep);
    border: 1px solid rgba(255, 255, 255, .36);
    box-shadow: 0 8px 22px rgba(8, 41, 67, .26);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .archive-drawer-toggle span {
    font-size: 15px;
    line-height: 1;
  }

  .archive-drawer-backdrop {
    position: absolute;
    z-index: 4;
    inset: 0;
    display: block;
    padding: 0;
    background: rgba(8, 32, 50, .2);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
  }

  .archive-library .content-library-nav {
    position: absolute;
    z-index: 5;
    inset: 0 auto 0 0;
    width: 75%;
    height: 100%;
    border-right: 1px solid var(--demo-line);
    border-bottom: 0;
    box-shadow: 16px 0 38px rgba(8, 41, 67, .24);
    transform: translateX(-105%);
    transition: transform .26s var(--demo-ease);
  }

  .archive-drawer-close {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--demo-paper);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .24);
    font-size: 18px;
    line-height: 1;
  }

  .archive-library [data-archive-list] {
    max-height: none;
  }

  .archive-library .content-library-detail {
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    padding: 66px 22px 28px;
  }

  .archive-library.is-drawer-open .content-library-nav {
    transform: translateX(0);
  }

  .archive-library.is-drawer-open .archive-drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 700px) and (orientation: landscape) {
  .demo-archive {
    height: 100vh;
    min-height: 0;
    overflow: hidden;
  }

  .archive-library.content-library {
    display: grid;
    grid-template-columns: minmax(220px, 36vw) minmax(0, 1fr);
    height: 100%;
    overflow: hidden;
  }

  .archive-library .content-library-nav,
  .archive-library .content-library-detail {
    height: 100%;
    min-height: 0;
  }

  .archive-library [data-archive-list],
  .archive-library .content-library-detail {
    max-height: none;
    overflow-y: auto;
  }
}

@media (max-width: 420px) {
  .official-directory-grid {
    grid-template-columns: 1fr;
  }

  .official-directory-grid a,
  .official-directory-grid a:nth-child(2n),
  .official-directory-grid a:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--demo-line);
  }

  .official-directory-grid a:last-child { border-bottom: 0; }
}

@media (max-width: 700px) {
  .faq-section {
    padding-top: 28px;
  }
}
