:root {
  --primary: #364656;
  --ink: #17202a;
  --deep: #101820;
  --slate: #61707e;
  --line: #d9dee2;
  --paper: #f7f5f0;
  --white: #ffffff;
  --gold: #c8a46b;
  --sage: #6f8176;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Manrope, Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

[data-aos] {
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 24, 32, 0.95);
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.18);
}

.top-strip {
  display: none;
  justify-content: center;
  gap: 18px;
  padding: 9px 24px;
  background: rgba(16, 24, 32, 0.82);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.nav-shell {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(1580px, calc(100% - 64px));
  min-height: 112px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 286px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  gap: 36px;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  cursor: default;
  line-height: 1;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 180ms ease;
}

.nav-item:hover .nav-link::after,
.nav-item:focus-within .nav-link::after {
  width: 100%;
}

.has-mega .nav-link {
  padding-right: 13px;
}

.has-mega .nav-link::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-62%) rotate(45deg);
  opacity: 0.68;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 34px);
  left: 0;
  display: grid;
  gap: 0;
  min-width: 260px;
  padding: 22px 0;
  background: var(--white);
  color: var(--deep);
  border: 0;
  box-shadow: 0 28px 56px rgba(16, 24, 32, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.mega-panel.wide {
  grid-template-columns: 1fr;
  min-width: 318px;
}

.mega-panel::before {
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  height: 35px;
  content: "";
}

.mega-panel button {
  position: relative;
  width: 100%;
  padding: 9px 28px;
  border: 0;
  background: transparent;
  color: var(--deep);
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
  cursor: default;
}

.mega-panel button:hover,
.mega-panel button:focus-visible {
  background: transparent;
  color: var(--deep);
  outline: 0;
}

.mega-panel button::before {
  display: inline-block;
  width: 0;
  height: 1px;
  margin-right: 0;
  vertical-align: middle;
  background: var(--slate);
  content: "";
  transition: width 160ms ease, margin-right 160ms ease;
}

.mega-panel button:hover::before,
.mega-panel button:focus-visible::before {
  width: 16px;
  margin-right: 8px;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-actions {
  justify-content: flex-end;
  gap: 12px;
}

.login-link,
.language-switch,
.button {
  border: 1px solid transparent;
  border-radius: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.login-link,
.language-switch {
  padding: 13px 16px;
  background: var(--white);
  color: var(--deep);
  font-size: 13px;
  white-space: nowrap;
}

.language-switch {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.language-menu {
  position: relative;
}

.language-switch {
  min-width: 50px;
}

/* .language-switch::after {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
} */

.language-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  padding: 8px;
  background: var(--white);
  color: var(--deep);
  box-shadow: 0 24px 48px rgba(16, 24, 32, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-panel a {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.language-panel a:hover,
.language-panel a:focus-visible,
.language-panel a[aria-current="page"] {
  background: rgba(54, 70, 86, 0.08);
  outline: 0;
}

.language-menu:hover .language-panel,
.language-menu:focus-within .language-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 210px max(40px, calc((100vw - 1320px) / 2)) 90px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92) 0%, rgba(54, 70, 86, 0.7) 48%, rgba(16, 24, 32, 0.32) 100%),
    linear-gradient(180deg, rgba(16, 24, 32, 0.2), rgba(16, 24, 32, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--sage);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 1060px;
  margin: 0 auto;
  font-size: clamp(44px, 6.8vw, 96px);
  line-height: 1.06;
  letter-spacing: 0;
}

.en-page h1 {
  max-width: 1200px;
  font-size: clamp(42px, 5.35vw, 76px);
  line-height: 1.08;
}

.hero-copy {
  max-width: 780px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--gold);
  color: var(--deep);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--deep);
  border: 1px solid rgba(16, 24, 32, 0.34);
  background: transparent;
}

.hero-card {
  position: absolute;
  right: max(40px, calc((100vw - 1320px) / 2));
  bottom: 52px;
  z-index: 2;
  width: min(380px, calc(100% - 80px));
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  box-shadow: var(--shadow);
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.15;
}

.hero-card p {
  margin: 12px 0 0;
  color: var(--slate);
}

section {
  padding: 110px max(28px, calc((100vw - 1200px) / 2));
}

.section-heading {
  max-width: 740px;
  margin-bottom: 46px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 18px;
}

.intro-band {
  position: relative;
  background: var(--white);
  color: var(--deep);
  overflow: hidden;
}

.intro-band::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(24, 73, 105, 0.08), rgba(24, 73, 105, 0)),
    radial-gradient(circle at 82% 18%, rgba(200, 164, 107, 0.14), transparent 26%);
  content: "";
  pointer-events: none;
}

.intro-band > * {
  position: relative;
  z-index: 1;
}

.about-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 72px;
  align-items: center;
}

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

.about-copy h2 {
  color: var(--deep);
}

.about-copy .eyebrow {
  color: var(--primary);
}

.about-copy p {
  margin: 0;
  font-size: 18px;
  color: var(--slate);
}

.about-copy p + p {
  margin-top: 20px;
}

.about-lede {
  margin-top: 28px !important;
  color: var(--deep) !important;
  font-size: clamp(22px, 2vw, 30px) !important;
  font-weight: 800;
  line-height: 1.35;
}

.about-visual {
  position: relative;
  min-height: 560px;
}

.about-visual figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(16, 24, 32, 0.16);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-main {
  right: 0;
  bottom: 0;
  width: 68%;
  height: 460px;
}

.about-image-main img {
  object-position: 74% center;
  filter: saturate(0.86) contrast(1.04);
}

.about-image-secondary {
  top: 0;
  left: 0;
  width: 48%;
  height: 360px;
  border: 10px solid var(--white);
}

.about-image-secondary img {
  object-position: 18% center;
  filter: saturate(0.68) sepia(0.14) brightness(1.08);
}

.about-badge {
  position: absolute;
  left: 10%;
  bottom: 34px;
  width: 178px;
  padding: 24px;
  background: var(--primary);
  color: var(--deep);
  box-shadow: 0 22px 46px rgba(16, 24, 32, 0.18);
}

.about-badge span {
  display: block;
  color: var(--gold);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.about-badge p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 248, 0.72);
}

.stat-panel div {
  padding: 30px 34px;
  background: transparent;
  color: var(--deep);
  border-right: 1px solid var(--line);
}

.stat-panel div:last-child {
  border-right: 0;
}

.stat-panel span {
  display: block;
  color: var(--primary);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.stat-panel p {
  margin: 10px 0 0;
  color: var(--slate);
}

.license-grid,
.service-grid,
.asset-grid,
.structured-grid {
  display: grid;
  gap: 22px;
}

.license-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.license-card,
.service-card,
.asset-grid article {
  position: relative;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
}

.intro-band .license-grid {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.intro-band .license-card {
  padding: 0 34px 0 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  box-shadow: none;
}

.intro-band .license-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.intro-band .license-card h3 {
  max-width: 420px;
  color: var(--deep);
  font-size: 24px;
}

.intro-band .license-card p {
  max-width: 520px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.85;
}

.intro-band .license-card .number {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 34px;
}

.number,
.service-index,
.asset-grid span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.license-card p,
.service-card p,
.asset-grid p,
.dark-card p,
.dark-card li,
.check-list p,
.muted,
.asset-intro {
  color: var(--slate);
}

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

.service-card {
  min-height: 310px;
  background: #fbfbf9;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 164, 107, 0.58);
  box-shadow: 0 24px 46px rgba(16, 24, 32, 0.1);
}

.service-card.featured {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.brokerage-section {
  padding-inline: 0;
  padding-bottom: 0;
  background: var(--white);
}

.brokerage-section .section-heading {
  max-width: 980px !important;
  width: min(980px, calc(100% - 56px));
}

.brokerage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid rgba(16, 24, 32, 0.78);
  border-bottom: 1px solid rgba(16, 24, 32, 0.78);
}

.brokerage-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--white);
  color: var(--deep);
  border-right: 1px solid rgba(16, 24, 32, 0.78);
  transition: color 220ms ease, background 220ms ease;
}

.brokerage-card:last-child {
  border-right: 0;
}

.brokerage-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 24, 32, 0.36) 0%, rgba(16, 24, 32, 0.46) 42%, rgba(16, 24, 32, 0.14) 100%),
    linear-gradient(90deg, rgba(16, 24, 32, 0.34), rgba(16, 24, 32, 0));
  content: "";
  opacity: 0;
  z-index: 1;
  transition: opacity 240ms ease;
}

.brokerage-thumb {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 240ms ease;
}

.brokerage-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 520ms ease, filter 520ms ease;
}

.brokerage-card:nth-child(1) .brokerage-thumb img {
  object-position: 15% center;
}

.brokerage-card:nth-child(2) .brokerage-thumb img {
  object-position: 42% center;
  filter: saturate(0.9) hue-rotate(12deg);
}

.brokerage-card:nth-child(3) .brokerage-thumb img {
  object-position: 66% center;
  filter: saturate(0.82) contrast(1.04);
}

.brokerage-card:nth-child(4) .brokerage-thumb img {
  object-position: 86% center;
  filter: saturate(0.72) brightness(0.9);
}

.brokerage-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 42px 20px;
}

.brokerage-content h3 {
  max-width: 330px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 900;
  line-height: 1.12;
}

.en-page .brokerage-content h3 {
  max-width: 100%;
  font-size: clamp(31px, 2.6vw, 44px);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.brokerage-content h3 span {
  display: block;
}

.brokerage-content h3 .grey {
  color: rgba(23, 32, 42, 0.38);
  transition: color 220ms ease;
}

.brokerage-content p {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.brokerage-number {
  display: flex;
  justify-content: flex-end;
}

.brokerage-number span {
  display: block;
  color: transparent;
  font-family: Manrope, Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: clamp(118px, 12vw, 205px);
  font-weight: 900;
  line-height: 0.8;
  -webkit-text-stroke: 1.4px rgba(16, 24, 32, 0.95);
  text-stroke: 1.4px rgba(16, 24, 32, 0.95);
  transition: color 220ms ease, -webkit-text-stroke-color 220ms ease, text-stroke-color 220ms ease;
}

.brokerage-card:hover {
  color: var(--white);
}

.brokerage-card:hover::after,
.brokerage-card:hover .brokerage-thumb {
  opacity: 1;
}

.brokerage-card:hover .brokerage-thumb img {
  transform: scale(1.13);
  filter: saturate(1.05) contrast(1.04);
}

.brokerage-card:hover .brokerage-content h3 .grey {
  color: var(--white);
}

.brokerage-card:hover .brokerage-content p {
  opacity: 1;
  transform: translateY(0);
}

.brokerage-card:hover .brokerage-number span {
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
  text-stroke-color: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
}

.split-media {
  position: relative;
  min-height: 560px;
  background: transparent;
}

.bond-collage {
  display: grid;
  grid-template-columns: 0.92fr 0.98fr;
  gap: 34px;
  align-items: start;
  isolation: isolate;
}

.bond-collage::before {
  position: absolute;
  top: -42px;
  right: 30%;
  width: 130px;
  height: 130px;
  border: 3px solid rgba(16, 24, 32, 0.12);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.bond-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 22px 52px rgba(16, 24, 32, 0.1);
}

.bond-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.bond-photo-left {
  height: 510px;
}

.bond-photo-left img {
  object-position: 24% center;
  filter: saturate(0.78) sepia(0.08) hue-rotate(166deg) brightness(1.04);
}

.bond-photo-right {
  height: 510px;
  margin-top: 112px;
}

.bond-photo-right img {
  object-position: 78% center;
  filter: saturate(0.7) contrast(1.08);
}

.bond-photo:hover img {
  transform: scale(1.06);
}

.market-board span,
.dark-card span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.split-content > p:not(.eyebrow) {
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
}

.check-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 24px;
  align-items: center;
  padding: 28px 0 30px;
  border-bottom: 1px solid rgba(16, 24, 32, 0.14);
  background: transparent;
}

.check-list article:first-child {
  border-top: 1px solid rgba(16, 24, 32, 0.14);
}

.process-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(23, 32, 42, 0.44);
  font-size: 15px;
  font-weight: 800;
}

.check-list h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
}

.process-icon {
  position: relative;
  display: block;
  width: 56px;
  height: 56px;
  justify-self: end;
}

.process-icon-chat::before,
.process-icon-chat::after {
  position: absolute;
  border-radius: 3px;
  content: "";
}

.process-icon-chat::before {
  right: 5px;
  top: 15px;
  width: 29px;
  height: 22px;
  background: var(--deep);
  box-shadow: -16px -11px 0 rgba(16, 24, 32, 0.26);
}

.process-icon-chat::after {
  right: 8px;
  top: 34px;
  width: 10px;
  height: 10px;
  background: var(--deep);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.process-icon-search::before {
  position: absolute;
  right: 8px;
  top: 7px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--deep);
  content: "";
}

.process-icon-search::after {
  position: absolute;
  right: 4px;
  top: 34px;
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.74);
  content: "";
  transform: rotate(45deg);
}

.process-icon-search {
  background:
    linear-gradient(var(--deep), var(--deep)) 0 31px / 24px 3px no-repeat,
    linear-gradient(rgba(16, 24, 32, 0.32), rgba(16, 24, 32, 0.32)) 8px 22px / 18px 3px no-repeat,
    linear-gradient(rgba(16, 24, 32, 0.2), rgba(16, 24, 32, 0.2)) 0 15px / 12px 3px no-repeat;
}

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

.structured-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

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

.dark-card {
  padding: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.dark-card.accent {
  background: var(--primary);
}

.dark-card h3 {
  margin-top: 12px;
  font-size: 34px;
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.74);
}

.dark-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 20px;
}

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

.asset-section .section-heading {
  max-width: 980px;
  width: min(980px, calc(100% - 56px));
}

.asset-intro {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 18px;
}

.asset-service-list {
  width: min(1280px, 100%);
  margin: 46px auto 0;
  background: var(--primary);
  color: var(--white);
}

.asset-service-list article {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1.05fr) minmax(280px, 0.95fr) 64px;
  gap: 24px;
  align-items: center;
  min-height: 158px;
  padding: 34px 0 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  background: var(--primary);
  transition: min-height 220ms ease, margin 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.asset-service-list article::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(54, 70, 86, 0.96), rgba(54, 70, 86, 0.62)),
    url("assets/hero-financial-district.png") center 46% / cover;
  content: "";
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 220ms ease, transform 420ms ease;
  z-index: 1;
}

.asset-service-list article:last-child {
  border-bottom: 0;
}

.asset-service-list article > * {
  position: relative;
  z-index: 2;
}

.asset-row-index {
  color: rgba(255, 255, 255, 0.46);
  font-size: 15px;
  font-weight: 900;
  justify-self: end;
}

.asset-service-list h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.1;
}

.asset-service-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.asset-row-meta {
  display: block;
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 15px !important;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.asset-service-list article p:not(.asset-row-meta) {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.asset-service-list article:hover p:not(.asset-row-meta),
.asset-service-list article:hover .asset-row-meta {
  opacity: 1;
  transform: translate(0, 0);
}

.asset-service-list article:hover {
  min-height: 184px;
  margin-inline: -28px;
  padding-inline: 28px;
  box-shadow: 0 24px 56px rgba(16, 24, 32, 0.16);
}

.asset-service-list article:hover::before {
  opacity: 1;
  transform: scale(1);
}

.asset-row-arrow {
  position: relative;
  width: 58px;
  height: 58px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  justify-self: center;
  transition: border-color 180ms ease, transform 180ms ease;
}

.asset-row-arrow::before,
.asset-row-arrow::after {
  position: absolute;
  content: "";
}

.asset-row-arrow::before {
  top: 26px;
  left: 15px;
  width: 26px;
  height: 3px;
  background: currentColor;
}

.asset-row-arrow::after {
  top: 18px;
  left: 28px;
  width: 15px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
}

.asset-service-list article:hover .asset-row-arrow {
  border-color: var(--white);
  transform: translateX(3px);
}

.investor-highlights-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.investor-highlights-intro {
  position: sticky;
  top: 132px;
  max-width: 470px;
}

.investor-highlights-intro h2 {
  margin-bottom: 22px;
}

.investor-highlights-intro p:not(.eyebrow) {
  margin: 0 0 30px;
  color: var(--slate);
  font-size: 18px;
}

.highlight-grid {
  display: grid;
  gap: 18px;
}

.highlight-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 168px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.highlight-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--gold);
  content: "";
}

.highlight-card:hover {
  border-color: rgba(54, 70, 86, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.highlight-card > span {
  color: var(--gold);
  font-family: Manrope, Inter, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.highlight-card p {
  margin: 0;
  color: var(--slate);
}

.highlight-card div > p:first-child {
  margin-bottom: 6px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlight-card h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: clamp(24px, 2vw, 32px);
}

.highlight-card a,
.insight-feature a,
.insight-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.highlight-card a::after,
.insight-feature a::after,
.insight-card a::after {
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.highlight-card a:hover::after,
.insight-feature a:hover::after,
.insight-card a:hover::after {
  transform: translateX(4px) rotate(45deg);
}

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

.insights-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.insight-feature {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: 42px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.94), rgba(54, 70, 86, 0.68)),
    url("assets/hero-financial-district.png") center / cover;
}

.insight-feature::after {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  content: "";
  pointer-events: none;
}

.insight-feature > *,
.insight-card > * {
  position: relative;
  z-index: 1;
}

.insight-feature span,
.insight-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.insight-feature h3 {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;
}

.insight-feature p {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.insight-feature a {
  color: var(--white);
}

.insight-card-stack {
  display: grid;
  gap: 24px;
}

.insight-card {
  display: grid;
  align-content: end;
  min-height: 203px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.insight-card:hover {
  border-color: rgba(54, 70, 86, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.insight-card h3 {
  margin: 0 0 12px;
  color: var(--deep);
  font-size: clamp(26px, 2.4vw, 38px);
}

.insight-card p {
  margin: 0 0 22px;
  color: var(--slate);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  background: var(--primary);
  color: var(--white);
}

.contact-info h2 {
  margin-bottom: 30px;
}

dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

dt {
  color: var(--gold);
  font-weight: 900;
}

dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background: var(--white);
  color: var(--deep);
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 900;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfbf9;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: end;
  padding: 42px max(28px, calc((100vw - 1200px) / 2));
  background: #0c1218;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer img {
  width: 250px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer p {
  margin: 0;
}

.corporate-page .nav-link {
  cursor: pointer;
}

.corporate-page .nav-link[href] {
  display: inline-block;
}

.corp-hero {
  position: relative;
  min-height: 690px;
  padding: 170px max(40px, calc((100vw - 1320px) / 2)) 58px;
  color: var(--white);
  overflow: hidden;
}

.corp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.95), rgba(54, 70, 86, 0.74) 48%, rgba(16, 24, 32, 0.28)),
    linear-gradient(180deg, rgba(16, 24, 32, 0.2), rgba(16, 24, 32, 0.84));
}

.corp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
  max-width: 1320px;
  margin: 0 auto;
}

.corp-hero-content {
  max-width: 910px;
}

.corp-hero h1 {
  max-width: 920px;
  margin: 0;
  text-align: left;
  font-size: clamp(48px, 6.2vw, 88px);
}

.corp-hero .hero-copy,
.corp-hero .hero-actions {
  margin-left: 0;
  justify-content: flex-start;
  text-align: left;
}

.corp-market-panel {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.corp-market-panel span,
.snapshot-facts span,
.investor-card span,
.news-row span,
.contact-entry-list span {
  display: block;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.corp-market-panel strong {
  display: block;
  margin-top: 12px;
  font-size: 31px;
  line-height: 1.16;
}

.corp-market-panel p {
  margin: 14px 0 0;
  color: var(--slate);
}

.corp-snapshot,
.corp-investors {
  background: #fbfbf9;
}

.corp-snapshot,
.corp-why,
.corp-contact {
  overflow: hidden;
}

.snapshot-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

.snapshot-lede {
  padding: 42px;
  background: var(--primary);
  color: var(--white);
}

.snapshot-lede h3 {
  font-size: clamp(29px, 3vw, 44px);
}

.snapshot-lede p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.text-link,
.investor-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 900;
}

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

.snapshot-facts article,
.capability-card,
.investor-card,
.news-row article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.snapshot-facts strong {
  display: block;
  margin-top: 12px;
  color: var(--deep);
  font-size: 24px;
  line-height: 1.18;
}

.snapshot-facts p,
.capability-card p,
.investor-card p,
.news-row p {
  margin: 14px 0 0;
  color: var(--slate);
}

.corp-capabilities {
  background: var(--white);
}

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

.capability-card {
  min-height: 286px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 107, 0.58);
  box-shadow: 0 24px 46px rgba(16, 24, 32, 0.1);
}

.capability-card.featured {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

.capability-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.capability-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.corp-why {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
  background: var(--deep);
  color: var(--white);
}

.why-media {
  display: grid;
  min-height: 520px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-media img {
  width: 100%;
  opacity: 0.86;
  filter: grayscale(0.2) contrast(1.1);
}

.why-content h2 {
  max-width: 720px;
}

.why-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.why-list article {
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.why-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-list h3 {
  margin-top: 8px;
  color: var(--white);
  font-size: 30px;
}

.why-list p {
  max-width: 740px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.investor-card {
  min-height: 270px;
}

.investor-card.live {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.investor-card.live span {
  color: var(--gold);
}

.investor-card.live p {
  color: rgba(255, 255, 255, 0.74);
}

.investor-card h3 {
  margin-top: 16px;
  font-size: 32px;
}

.corp-news {
  background: var(--white);
}

.news-row article {
  min-height: 260px;
}

.news-row time {
  display: block;
  margin-top: 18px;
  color: rgba(23, 32, 42, 0.44);
  font-size: 13px;
  font-weight: 900;
}

.news-row h3 {
  margin-top: 16px;
  font-size: 28px;
}

.corp-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  background: var(--primary);
  color: var(--white);
}

.contact-entry-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-entry-list a {
  display: block;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.contact-entry-list span {
  margin-bottom: 7px;
  color: var(--gold);
}

@media (max-width: 1420px) {
  .nav-shell {
    grid-template-columns: 270px minmax(0, 1fr) auto;
    gap: 18px;
    width: min(100% - 40px, 1360px);
  }

  .brand img {
    width: 258px;
  }

  .nav-links {
    gap: 22px;
    font-size: 14px;
  }

  .nav-actions {
    gap: 8px;
  }

  .login-link,
  .language-switch {
    padding: 12px 13px;
    font-size: 12px;
  }
}

@media (max-width: 1180px) {
  body.menu-lock {
    overflow: hidden;
  }

  .site-header.menu-open,
  .site-header:has(.nav-shell.is-open) {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 32, 0.96);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.24);
  }

  .nav-shell {
    grid-template-columns: 270px auto;
    width: min(100%, 1100px);
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-shell.is-open {
    align-content: start;
    height: 100vh;
    overflow: hidden;
    padding-bottom: 24px;
  }

  .brand img {
    width: 260px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-shell.is-open .nav-links,
  .nav-shell.is-open .nav-actions {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 8px;
    padding: 8px 0 18px;
  }

  .nav-shell.is-open .nav-item,
  .nav-shell.is-open .nav-link,
  .nav-shell.is-open .mega-panel,
  .nav-shell.is-open .mega-panel button,
  .nav-shell.is-open .language-menu,
  .nav-shell.is-open .language-switch,
  .nav-shell.is-open .language-panel,
  .nav-shell.is-open .nav-actions a,
  .nav-shell.is-open .nav-actions button {
    width: 100%;
  }

  .nav-shell.is-open .nav-links {
    gap: 0;
  }

  .nav-shell.is-open .nav-item {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav-shell.is-open .nav-link {
    display: block;
    min-height: 56px;
    padding: 18px 46px 18px 0;
    font-size: 18px;
    text-align: left;
  }

  .nav-shell.is-open .nav-link::after,
  .nav-shell.is-open .nav-link::before {
    display: none;
  }

  .nav-shell.is-open .has-mega .nav-link {
    position: relative;
    display: block;
    padding-right: 46px;
  }

  .nav-shell.is-open .has-mega .nav-link::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 4px;
    width: 10px;
    height: 10px;
    margin: 0;
    border-color: currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 160ms ease;
  }

  .nav-shell.is-open .nav-item.is-expanded .nav-link::before {
    transform: translateY(-35%) rotate(-135deg);
  }

  .nav-shell.is-open .mega-panel,
  .nav-shell.is-open .mega-panel.wide {
    position: static;
    grid-template-columns: 1fr;
    min-width: 0;
    margin-top: 8px;
    padding: 0;
    background: transparent;
    color: var(--white);
    border: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    display: none;
  }

  .nav-shell.is-open .nav-item.is-expanded .mega-panel {
    display: grid;
    opacity: 1;
    visibility: visible;
  }

  .nav-shell.is-open .mega-panel::before {
    display: none;
  }

  .nav-shell.is-open .mega-panel button {
    min-height: 44px;
    padding: 10px 0 10px 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.3;
    border-bottom: 0;
    border-left: 1px solid rgba(200, 164, 107, 0.5);
  }

  .nav-shell.is-open .nav-actions a,
  .nav-shell.is-open .nav-actions button {
    min-height: 52px;
    padding: 16px 14px;
    font-size: 15px;
  }

  .nav-shell.is-open .language-menu {
    display: grid;
    gap: 8px;
  }

  .nav-shell.is-open .language-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .nav-shell.is-open .language-panel {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-shell.is-open .language-panel a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    text-align: center;
  }

  .nav-shell.is-open .language-panel a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.12);
  }

  .nav-shell.is-open .mega-panel button:hover,
  .nav-shell.is-open .mega-panel button:focus-visible {
    background: transparent;
    color: var(--white);
  }

  .service-grid,
  .brokerage-grid,
  .capability-grid,
  .investor-grid,
  .news-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brokerage-card,
  .brokerage-content {
    min-height: 520px;
  }

  .brokerage-card {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 24, 32, 0.78);
  }

  .brokerage-card:nth-child(2n + 1) {
    border-right: 1px solid rgba(16, 24, 32, 0.78);
  }

  .brokerage-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 820px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translate3d(0, 24px, 0);
  }

  [data-aos="fade-left"].aos-animate,
  [data-aos="fade-right"].aos-animate {
    transform: translateZ(0);
  }

  .top-strip {
    justify-content: space-between;
    font-size: 12px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand img {
    width: 220px;
  }

  .hero {
    min-height: 720px;
    padding: 168px 24px 44px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    margin-top: 42px;
    width: 100%;
  }

  section {
    padding: 76px 24px;
  }

  .about-showcase,
  .license-grid,
  .split-section,
  .structured-grid,
  .investor-highlights-section,
  .insights-layout,
  .contact-section,
  .corp-hero-grid,
  .snapshot-layout,
  .corp-why,
  .corp-contact,
  .footer {
    grid-template-columns: 1fr;
  }

  .corp-hero {
    min-height: auto;
    padding: 128px 24px 48px;
  }

  .corp-hero h1,
  .corp-hero .hero-copy,
  .corp-hero .hero-actions {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .corp-hero-content {
    max-width: 100%;
  }

  .corp-market-panel {
    width: min(520px, 100%);
    margin: 0 auto;
  }

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

  .why-media {
    min-height: auto;
  }

  .dark-card,
  .contact-form {
    padding: 26px;
  }

  .about-showcase {
    gap: 42px;
  }

  .about-copy {
    max-width: none;
  }

  .investor-highlights-intro {
    position: static;
    max-width: none;
  }

  .highlight-card {
    grid-template-columns: 66px minmax(0, 1fr) auto;
    padding: 28px;
  }

  .insight-feature {
    min-height: 380px;
  }

  .insight-card-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-visual {
    min-height: 480px;
  }

  .about-image-main {
    width: 72%;
    height: 390px;
  }

  .about-image-secondary {
    width: 46%;
    height: 300px;
  }

  .intro-band .license-card {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band .license-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .stat-panel {
    margin-top: 48px;
  }

  .asset-service-list article {
    grid-template-columns: 38px minmax(0, 1fr) 54px;
    gap: 18px;
    min-height: 146px;
    padding: 28px 22px 28px 0;
  }

  .asset-service-list article > p {
    grid-column: 2 / 3;
  }

  .asset-service-list article:hover {
    margin-inline: -16px;
    padding-inline: 16px 22px;
  }

  .asset-row-arrow {
    width: 50px;
    height: 50px;
  }

  .split-media {
    min-height: 430px;
  }

  .bond-collage {
    gap: 22px;
  }

  .bond-photo-left,
  .bond-photo-right {
    height: 390px;
  }

  .bond-photo-right {
    margin-top: 70px;
  }

  .brokerage-section .section-heading {
    width: calc(100% - 48px);
  }

  .brokerage-grid {
    margin-top: 42px;
  }

  .brokerage-content {
    padding: 34px 26px 30px;
  }
}

@media (max-width: 560px) {
  .top-strip a {
    display: none;
  }

  .service-grid,
  .brokerage-grid,
  .capability-grid,
  .investor-grid,
  .news-row,
  .insight-card-stack,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .snapshot-lede,
  .snapshot-facts article,
  .capability-card,
  .investor-card,
  .news-row article,
  .highlight-card,
  .insight-card {
    padding: 26px;
  }

  .highlight-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .highlight-card > span {
    font-size: 34px;
  }

  .highlight-card a,
  .insight-feature a,
  .insight-card a {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
  }

  .insight-feature {
    min-height: 340px;
    padding: 30px 26px;
  }

  .insight-feature::after {
    inset: 16px;
  }

  .corp-market-panel {
    display: none;
  }

  .about-visual {
    min-height: 420px;
  }

  .about-image-main {
    width: 78%;
    height: 330px;
  }

  .about-image-secondary {
    width: 52%;
    height: 240px;
    border-width: 7px;
  }

  .about-badge {
    left: 0;
    bottom: 18px;
    width: 142px;
    padding: 18px;
  }

  .about-badge span {
    font-size: 38px;
  }

  .stat-panel {
    grid-template-columns: 1fr;
  }

  .stat-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-panel div:last-child {
    border-bottom: 0;
  }

  .asset-service-list {
    margin-top: 34px;
  }

  .asset-service-list article,
  .asset-service-list article:hover {
    grid-template-columns: 30px minmax(0, 1fr) 44px;
    gap: 14px;
    min-height: 128px;
    margin-inline: 0;
    padding: 24px 16px 24px 0;
  }

  .asset-service-list h3 {
    font-size: 28px;
  }

  .asset-service-list p {
    font-size: 15px;
  }

  .asset-service-list article p:not(.asset-row-meta),
  .asset-service-list article .asset-row-meta {
    opacity: 1;
    transform: none;
  }

  .asset-row-arrow {
    width: 42px;
    height: 42px;
    border-width: 2px;
  }

  .asset-row-arrow::before {
    top: 19px;
    left: 11px;
    width: 19px;
    height: 2px;
  }

  .asset-row-arrow::after {
    top: 13px;
    left: 21px;
    width: 12px;
    height: 12px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .bond-collage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bond-collage::before {
    top: -26px;
    right: 18px;
    width: 94px;
    height: 94px;
  }

  .bond-photo-left,
  .bond-photo-right {
    height: 320px;
  }

  .bond-photo-right {
    margin-top: 0;
    width: 86%;
    justify-self: end;
  }

  .check-list article {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 16px;
    padding: 24px 0;
  }

  .process-icon {
    width: 44px;
    height: 44px;
    transform: scale(0.82);
    transform-origin: center right;
  }

  .brokerage-card,
  .brokerage-content {
    min-height: 430px;
  }

  .brokerage-card,
  .brokerage-card:nth-child(2n + 1) {
    border-right: 0;
  }

  .brokerage-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 24, 32, 0.78);
  }

  .brokerage-card:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 41px;
  }

  .en-page h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
