:root {
  /* The hero follows the viewport only within this manually adjustable range. */
  --manager-hero-image-width-min: 1280px;
  --manager-hero-image-width-max: 1920px;
  --manager-hero-edge-fade-left-max: 240px;
  --manager-hero-edge-fade-right-max: 240px;
}

body {
  background: var(--ivory);
}

body[data-site="manager"] .cookie-notice {
  border-color: rgba(69, 76, 82, 0.2);
  color: #2c3741;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.99), rgba(241, 241, 238, 0.98) 58%, rgba(224, 225, 222, 0.98));
  box-shadow: 0 20px 60px rgba(25, 31, 38, 0.2);
}

body[data-site="manager"] .cookie-notice a {
  color: #876522;
}

body[data-site="manager"] .cookie-notice a:hover {
  color: #5f4617;
}

.manager-header {
  color: var(--white);
}

.manager-header .brand-copy span {
  color: rgba(255, 255, 255, 0.56);
}

.manager-header .site-nav > a:not(.btn) {
  color: rgba(255, 255, 255, 0.72);
}

.manager-header .menu-toggle {
  border-color: rgba(255, 255, 255, 0.26);
}

.manager-header.scrolled {
  color: var(--navy-900);
}

.manager-header.scrolled .brand-copy span {
  color: var(--muted);
}

.manager-header.scrolled .site-nav > a:not(.btn) {
  color: rgba(17, 34, 51, 0.75);
}

.spc-hero {
  position: relative;
  display: flex;
  min-height: 930px;
  flex-direction: column;
  color: var(--white);
  background-color: var(--navy-950);
  overflow: hidden;
}

.spc-hero .hero-image,
.spc-hero .hero-shade {
  position: absolute;
  inset-block: 0;
}

.spc-hero .hero-image {
  --manager-hero-edge-fade-left: clamp(
    0px,
    calc(100vw - var(--manager-hero-image-width-max)),
    var(--manager-hero-edge-fade-left-max)
  );
  --manager-hero-edge-fade-right: clamp(
    0px,
    calc(100vw - var(--manager-hero-image-width-max) - 48px),
    var(--manager-hero-edge-fade-right-max)
  );
  inset-inline-start: 50%;
  width: clamp(
    var(--manager-hero-image-width-min),
    100%,
    var(--manager-hero-image-width-max)
  );
  overflow: hidden;
  transform: translateX(-50%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--manager-hero-edge-fade-left),
    #000 calc(100% - var(--manager-hero-edge-fade-right)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 var(--manager-hero-edge-fade-left),
    #000 calc(100% - var(--manager-hero-edge-fade-right)),
    transparent 100%
  );
}

.spc-hero .hero-image::before {
  position: absolute;
  inset: 0;
  background-image: var(
    --manager-hero-image,
    url("../assets/im-hero/im-hong-kong-hero.webp")
  );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  transform: scale(1.035);
  animation: spc-hero-drift 18s ease-in-out infinite alternate;
}

.spc-hero .hero-shade {
  inset-inline: 0;
  background:
    linear-gradient(90deg, rgba(4, 13, 24, 0.8) 0%, rgba(5, 18, 32, 0.77) 41%, rgba(5, 18, 32, 0.23) 73%),
    linear-gradient(0deg, rgba(5, 15, 28, 0.8) 0%, transparent 36%);
  pointer-events: none;
}

.spc-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 680px;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 126px 0 88px;
}

.spc-hero .hero-copy {
  width: min(700px, 62%);
}

.spc-hero .hero-kicker {
  margin: 0 0 18px;
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  line-height: 1.5;
}

.spc-hero .hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.9rem, 5vw, 4.75rem);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.spc-hero .hero-copy h1 em {
  color: var(--gold-300);
  font-style: normal;
}

.spc-hero .hero-subtitle {
  margin: 30px 0 0;
  color: #f0d499;
  font-size: clamp(1.12rem, 2vw, 1.625rem);
  font-weight: 520;
}

.spc-hero .hero-description {
  max-width: 650px;
  margin: 21px 0 0;
  color: #b7c4d1;
  font-size: 0.94rem;
  line-height: 1.85;
}

.spc-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.spc-hero .hero-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 650;
  transition:
    transform 200ms ease,
    color 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

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

.spc-hero .hero-button--gold {
  color: #111b27;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 12px 30px rgba(201, 162, 84, 0.2);
}

.spc-hero .hero-button--gold:hover {
  background: linear-gradient(135deg, #f4dea9, #d5af61);
}

.spc-hero .hero-button--glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(9px);
}

.spc-hero .hero-button--glass:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.13);
}

.spc-hero .entity-card {
  position: relative;
  width: 360px;
  flex: 0 0 360px;
  overflow: hidden;
  color: #f7fbff;
  border: 1px solid rgba(182, 207, 224, 0.26);
  border-left: 3px solid rgba(222, 189, 119, 0.92);
  background:
    linear-gradient(145deg, rgba(28, 59, 78, 0.9), rgba(5, 19, 33, 0.76)),
    rgba(7, 22, 38, 0.72);
  box-shadow:
    0 26px 68px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(125%);
  transition:
    transform 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease;
}

.spc-hero .entity-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(183, 211, 229, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 211, 229, 0.1) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 350ms ease;
}

.spc-hero .entity-card::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, #f1d79d, rgba(216, 180, 108, 0));
  content: "";
  pointer-events: none;
  transition: width 550ms ease;
}

.spc-hero .entity-card:hover {
  border-color: rgba(202, 221, 233, 0.4);
  border-left-color: #e1c37e;
  box-shadow:
    0 30px 76px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.spc-hero .entity-card:hover::before {
  opacity: 0.27;
}

.spc-hero .entity-card:hover::after {
  width: 100%;
}

.spc-hero .entity-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #f8e7bd;
  border-bottom: 1px solid rgba(210, 226, 237, 0.16);
  background: linear-gradient(90deg, rgba(216, 180, 108, 0.15), rgba(255, 255, 255, 0.025));
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

.spc-hero .entity-card__top > span:last-child {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #e5c884;
  border: 1px solid rgba(229, 200, 132, 0.42);
  background: rgba(5, 19, 33, 0.34);
}

.spc-hero .entity-card dl {
  position: relative;
  z-index: 1;
  margin: 0;
}

.spc-hero .entity-card dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition:
    background 250ms ease,
    box-shadow 250ms ease;
}

.spc-hero .entity-card dl div:last-child {
  border-bottom: 0;
}

.spc-hero .entity-card dl div:hover {
  background: linear-gradient(90deg, rgba(216, 180, 108, 0.14), rgba(255, 255, 255, 0.025));
  box-shadow: inset 3px 0 #d8b46c;
}

.spc-hero .entity-card dt {
  color: rgba(207, 225, 237, 0.68);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.spc-hero .entity-card dd {
  margin: 0;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.spc-hero .hero-bottom {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(226, 194, 124, 0.42);
  border-bottom: 1px solid rgba(112, 163, 182, 0.24);
  background: linear-gradient(90deg, rgba(22, 57, 73, 0.97), rgba(18, 48, 65, 0.97) 55%, rgba(27, 53, 64, 0.97));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 -16px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(125%);
}

.spc-hero .hero-bottom__inner {
  display: grid;
  min-height: 80px;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
}

.spc-hero .hero-bottom__inner > div {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 22px;
  border-left: 1px solid rgba(197, 222, 230, 0.2);
  transition:
    background 250ms ease,
    box-shadow 250ms ease;
}

.spc-hero .hero-bottom__inner > div:hover {
  background: rgba(216, 180, 108, 0.1);
  box-shadow: inset 0 -2px #d8b46c;
}

.spc-hero .hero-bottom__inner strong,
.spc-hero .hero-bottom__inner span {
  display: block;
}

.spc-hero .hero-bottom__inner strong {
  color: #f7fbfd;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.spc-hero .hero-bottom__inner span {
  margin-top: 5px;
  color: #a8c1cd;
  font-size: 0.8rem;
}

.spc-hero .hero-bottom__inner a {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  color: var(--gold-300);
  border-left: 1px solid rgba(197, 222, 230, 0.2);
  background: rgba(216, 180, 108, 0.08);
  font-size: 0.84rem;
  transition:
    color 250ms ease,
    background 250ms ease;
}

.spc-hero .hero-bottom__inner a:hover {
  color: #fff0ca;
  background: rgba(216, 180, 108, 0.15);
}

.capability-rail-wrap {
  position: relative;
  z-index: 3;
  padding: 0;
}

.capability-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 21, 37, 0.7);
  backdrop-filter: blur(14px);
}

.capability-rail-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.capability-rail-item span {
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.capability-rail-item strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.capability-rail-item small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.capability-rail-item svg {
  width: 18px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes spc-hero-drift {
  from {
    transform: scale(1.035) translate3d(-0.35%, 0, 0);
  }

  to {
    transform: scale(1.085) translate3d(0.65%, -0.45%, 0);
  }
}

.firm-intro {
  background: var(--white);
}

.firm-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.58fr);
  gap: clamp(60px, 9vw, 130px);
}

.firm-copy .section-title {
  max-width: 870px;
}

.firm-copy .section-title span {
  color: var(--gold-600);
}

.firm-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.firm-columns h3 {
  margin-bottom: 15px;
  color: var(--navy-900);
  font-size: 0.86rem;
}

.firm-columns p {
  color: var(--muted);
  font-size: 0.86rem;
}

.firm-facts {
  position: relative;
  align-self: start;
  padding: 34px 32px;
  border: 1px solid rgba(154, 116, 49, 0.24);
  background: linear-gradient(145deg, var(--gold-100), var(--ivory));
  box-shadow: var(--shadow-sm);
}

.firm-facts::before {
  position: absolute;
  top: -1px;
  right: 36px;
  left: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-300));
  content: "";
}

.firm-facts h3 {
  margin-bottom: 5px;
  color: var(--navy-900);
  font-family:
    Georgia, "Noto Serif TC", "Songti TC", "PMingLiU", "Noto Serif SC",
    "Songti SC", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.fact-list div {
  padding-block: 12px;
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
}

.fact-list div:last-child {
  border: 0;
}

.fact-list dt {
  margin-bottom: 5px;
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--navy-800);
  font-size: 0.86rem;
  font-weight: 650;
}

.operating-note {
  margin-top: 20px;
  padding: 16px;
  border-left: 2px solid var(--gold-600);
  color: #6a5a39;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.capabilities {
  background:
    linear-gradient(180deg, rgba(250, 242, 223, 0.7), transparent 34%),
    var(--paper);
}

.section-head-split {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 54px;
}

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

.capability-card {
  position: relative;
  min-height: 470px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.capability-card:hover {
  border-color: rgba(182, 138, 61, 0.42);
  box-shadow: var(--shadow-sm);
  transform: translateY(-8px);
}

.capability-card-index {
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 0.84rem;
}

.capability-visual {
  position: relative;
  height: 132px;
  margin: 38px -32px 34px;
  border-block: 1px solid rgba(16, 42, 67, 0.08);
  background:
    linear-gradient(rgba(16, 42, 67, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 67, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
}

.capability-visual::after {
  position: absolute;
  right: 9%;
  bottom: 28px;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600), transparent);
  content: "";
  transform: rotate(-9deg);
  transform-origin: center;
}

.capability-visual.research::before {
  position: absolute;
  top: 25px;
  left: 15%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(182, 138, 61, 0.35);
  border-radius: 50%;
  box-shadow:
    48px 14px 0 -20px rgba(208, 170, 98, 0.18),
    105px -10px 0 -34px rgba(16, 42, 67, 0.12);
  content: "";
}

.capability-visual.portfolio::before {
  position: absolute;
  top: 28px;
  left: 16%;
  width: 68%;
  height: 74px;
  background:
    linear-gradient(90deg, var(--navy-800) 0 19%, transparent 19% 22%, var(--gold-500) 22% 54%, transparent 54% 57%, #c4b58f 57% 79%, transparent 79% 82%, #8799a7 82%);
  clip-path: polygon(0 82%, 0 100%, 100% 100%, 100% 28%, 82% 45%, 57% 18%, 32% 58%);
  content: "";
  opacity: 0.8;
}

.capability-visual.risk::before {
  position: absolute;
  top: 26px;
  left: 15%;
  width: 70%;
  height: 80px;
  border: 1px solid rgba(16, 42, 67, 0.18);
  background:
    linear-gradient(90deg, rgba(16, 42, 67, 0.08) 50%, transparent 50%),
    linear-gradient(rgba(16, 42, 67, 0.08) 50%, transparent 50%);
  background-size: 50% 50%;
  box-shadow: inset 0 -26px var(--gold-100);
  content: "";
}

.capability-card h3 {
  margin-bottom: 15px;
  color: var(--navy-900);
  font-family:
    Georgia, "Noto Serif TC", "Songti TC", "PMingLiU", "Noto Serif SC",
    "Songti SC", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.capability-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.capability-card .text-link {
  position: absolute;
  right: 32px;
  bottom: 29px;
  left: 32px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.approach {
  color: var(--white);
  background:
    linear-gradient(130deg, rgba(223, 194, 127, 0.055), transparent 48%),
    var(--navy-950);
}

.approach .section-title {
  color: var(--white);
}

.approach .section-intro {
  color: rgba(255, 255, 255, 0.58);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.approach-step {
  min-height: 350px;
  padding: 35px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.approach-step:last-child {
  border-right: 0;
}

.approach-step-index {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 104px;
  border: 1px solid rgba(223, 194, 127, 0.4);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 0.8rem;
  place-items: center;
}

.approach-step h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-family:
    Georgia, "Noto Serif TC", "Songti TC", "PMingLiU", "Noto Serif SC",
    "Songti SC", serif;
  font-size: 1.33rem;
  font-weight: 500;
}

.approach-step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.committee-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
  padding: 20px 24px;
  border: 1px solid rgba(223, 194, 127, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.committee-band span {
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.committee-band p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.committee-band small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.risk {
  background: var(--ivory);
}

.risk-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(60px, 9vw, 120px);
}

.risk-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

.risk-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.risk-item-number {
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.risk-item h3 {
  margin-bottom: 9px;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.risk-item p {
  color: var(--muted);
  font-size: 0.86rem;
}

.operating {
  position: relative;
  color: var(--navy-900);
  background:
    radial-gradient(circle at 90% 50%, rgba(208, 170, 98, 0.22), transparent 27%),
    var(--gold-100);
  overflow: hidden;
}

.operating-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(60px, 10vw, 140px);
}

.operating-model {
  position: relative;
  display: grid;
  gap: 15px;
}

.operating-node {
  position: relative;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(16, 42, 67, 0.15);
  background: rgba(255, 255, 255, 0.62);
}

.operating-node::before {
  position: absolute;
  bottom: -16px;
  left: 60px;
  width: 1px;
  height: 16px;
  background: rgba(16, 42, 67, 0.2);
  content: "";
}

.operating-node:last-child::before {
  display: none;
}

.operating-node span {
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.operating-node strong {
  color: var(--navy-800);
  font-size: 0.86rem;
}

.operating-copy .section-intro {
  margin-bottom: 32px;
}

.boundary-note {
  padding: 20px;
  border-left: 2px solid var(--gold-700);
  color: #5a4d34;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.86rem;
}

.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.team-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.team-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 84px;
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.team-card-label::after {
  width: 40px;
  height: 1px;
  background: currentColor;
  content: "";
}

.team-card h3 {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-family:
    Georgia, "Noto Serif TC", "Songti TC", "PMingLiU", "Noto Serif SC",
    "Songti SC", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.team-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.verification-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 22px 26px;
  border: 1px solid rgba(154, 116, 49, 0.2);
  color: #655535;
  background: var(--gold-100);
  font-size: 0.84rem;
}

.verification-panel strong {
  flex: 0 0 auto;
  color: var(--gold-700);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.insights-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 0.75fr);
  gap: 18px;
  margin-top: 60px;
}

.insight-card {
  position: relative;
  min-height: 380px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.insight-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(223, 194, 127, 0.07), transparent),
    var(--navy-900);
}

.insight-meta {
  margin-bottom: 92px;
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured .insight-meta {
  color: var(--gold-300);
}

.insight-card h3 {
  margin-bottom: 15px;
  color: var(--navy-900);
  font-family:
    Georgia, "Noto Serif TC", "Songti TC", "PMingLiU", "Noto Serif SC",
    "Songti SC", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.featured h3 {
  color: var(--white);
}

.insight-card p {
  color: var(--muted);
  font-size: 0.84rem;
}

.featured p {
  color: rgba(255, 255, 255, 0.52);
}

.insight-card .text-link {
  position: absolute;
  right: 30px;
  bottom: 27px;
  left: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.featured .text-link {
  color: var(--gold-300);
  border-color: rgba(255, 255, 255, 0.12);
}

.manager-contact {
  color: var(--white);
  background: var(--navy-950);
}

.manager-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.65fr);
  gap: clamp(70px, 10vw, 140px);
}

.manager-contact .section-title {
  color: var(--white);
}

.manager-contact .section-intro {
  color: rgba(255, 255, 255, 0.55);
}

.manager-contact-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.manager-contact-points small {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manager-contact-points p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.manager-contact .inquiry-form {
  position: relative;
  align-self: start;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(223, 194, 127, 0.38);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    rgba(6, 21, 37, 0.76);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.04);
}

.manager-contact .inquiry-form::before {
  position: absolute;
  top: -1px;
  right: 34px;
  left: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-300));
  content: "";
}

.manager-contact .inquiry-form h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family:
    Georgia, "Noto Serif TC", "Songti TC", "PMingLiU", "Noto Serif SC",
    "Songti SC", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.manager-contact .inquiry-form > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.manager-contact .form-label {
  color: rgba(255, 255, 255, 0.58);
}

.manager-contact .form-control {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.055);
}

.manager-contact .form-control::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.fund-access-button {
  white-space: nowrap;
}

.investor-access-backdrop {
  position: fixed;
  z-index: 2200;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(3, 12, 22, 0.8);
  backdrop-filter: blur(13px);
  animation: investor-backdrop-in 200ms ease both;
}

.investor-access-backdrop.is-open {
  display: grid;
}

.investor-access-modal [hidden] {
  display: none !important;
}

.investor-access-modal {
  position: relative;
  width: min(575px, 100%);
  max-height: calc(100vh - 56px);
  overflow: auto;
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
  animation: investor-modal-in 280ms ease both;
}

.investor-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: #6e7f8f;
  border-radius: 50%;
  background: #f0f4f7;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.investor-modal-close:hover {
  color: var(--navy-900);
  background: var(--gold-100);
}

.investor-modal-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--gold-700);
  background: var(--gold-100);
}

.investor-modal-eyebrow {
  margin: 0 0 12px;
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
}

.investor-access-modal h2 {
  margin: 0;
  color: var(--navy-900);
  font-family:
    Georgia, "Noto Serif TC", "Songti TC", "PMingLiU", "Noto Serif SC",
    "Songti SC", "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 570;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.investor-modal-lead {
  margin: 13px 0 25px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.investor-field-label,
.investor-login-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #526578;
  font-size: 0.78rem;
  font-weight: 650;
}

.investor-select-wrap {
  position: relative;
}

.investor-select-wrap select,
.investor-login-form input[type="email"],
.investor-login-form input[type="password"] {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: #173047;
  border: 1px solid #cdd9e4;
  border-radius: 2px;
  outline: 0;
  background: var(--white);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.investor-select-wrap select {
  appearance: none;
  padding-right: 42px;
}

.investor-select-wrap > span {
  position: absolute;
  top: 12px;
  right: 15px;
  color: #6f8191;
  pointer-events: none;
}

.investor-select-wrap select:focus,
.investor-login-form input:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(208, 170, 98, 0.14);
}

.investor-eligibility-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  color: #44596d;
  border: 1px solid #dce6ef;
  background: #f3f7fb;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.65;
}

.investor-eligibility-check input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--gold-600);
}

.investor-modal-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  color: var(--success);
  font-size: 0.75rem;
}

.investor-modal-facts span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.investor-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 27px;
}

.investor-privacy-copy {
  margin: 17px 0 0;
  color: #8998a5;
  font-size: 0.75rem;
  line-height: 1.6;
}

.investor-login-form {
  display: grid;
  gap: 16px;
}

.investor-login-form label {
  display: block;
}

.investor-login-form input::placeholder {
  color: #a9b4be;
}

.investor-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 0 4px;
}

.investor-remember {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #647688;
  font-size: 0.78rem;
}

.investor-remember input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--gold-600);
}

.investor-text-button,
.investor-back-link {
  padding: 0;
  color: var(--gold-700);
  background: none;
  cursor: pointer;
  font-size: 0.78rem;
}

.investor-text-button:hover,
.investor-back-link:hover {
  color: var(--navy-700);
}

.investor-back-link {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
}

.investor-login-submit {
  width: 100%;
}

.investor-static-notice {
  position: fixed;
  z-index: 2300;
  bottom: 24px;
  left: 50%;
  padding: 12px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--navy-800);
  box-shadow: 0 18px 50px rgba(3, 12, 22, 0.28);
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.investor-static-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes investor-backdrop-in {
  from {
    opacity: 0;
  }
}

@keyframes investor-modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
}

@media (max-width: 1080px) {
  .manager-header .site-nav {
    gap: 15px;
  }

  .manager-header .site-nav .btn {
    padding-inline: 14px;
  }

  .spc-hero .entity-card {
    width: 310px;
    flex-basis: 310px;
  }

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

  .capability-card {
    min-height: 390px;
  }

  .capability-card .capability-visual {
    height: 110px;
  }

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

  .approach-step:nth-child(2) {
    border-right: 0;
  }

  .approach-step:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

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

  .spc-hero-content {
    min-height: 640px;
  }

  .spc-hero .hero-copy {
    width: 100%;
  }

  .spc-hero .entity-card {
    display: none;
  }

  .spc-hero .hero-bottom__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .spc-hero .hero-bottom__inner a {
    display: none;
  }

  .firm-grid,
  .section-head-split,
  .risk-layout,
  .operating-grid,
  .manager-contact-grid {
    grid-template-columns: 1fr;
  }

  .firm-facts {
    max-width: 680px;
  }

  .risk-sticky {
    position: static;
  }

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

  .insight-card.featured {
    grid-column: 1 / -1;
  }

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

@media (max-width: 860px) {
  .manager-header .site-nav {
    background: rgba(9, 29, 51, 0.98);
  }

  .manager-header.scrolled .site-nav {
    background: rgba(255, 253, 248, 0.98);
  }

  .manager-header .site-nav > a:not(.btn) {
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.78);
  }

  .manager-header.scrolled .site-nav > a:not(.btn) {
    border-color: var(--line);
    color: var(--navy-800);
  }

  .manager-header.scrolled .menu-toggle {
    border-color: var(--line);
  }
}

@media (max-width: 700px) {
  .fund-access-button {
    width: 100%;
  }

  .investor-access-backdrop {
    align-items: end;
    padding: 10px;
  }

  .investor-access-modal {
    width: 100%;
    max-height: calc(100vh - 10px);
    padding: 34px 22px 26px;
  }

  .investor-access-modal h2 {
    font-size: 1.7rem;
  }

  .investor-modal-facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .investor-modal-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .investor-static-notice {
    bottom: 14px;
    width: calc(100% - 20px);
    text-align: center;
  }

  .spc-hero {
    min-height: 1020px;
  }

  .spc-hero .hero-image::before {
    background-position: 64% center;
  }

  .spc-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 13, 24, 0.95), rgba(5, 18, 32, 0.58)),
      linear-gradient(0deg, rgba(5, 15, 28, 0.96), transparent 48%);
  }

  .spc-hero-content {
    min-height: 620px;
    padding: 118px 0 68px;
  }

  .spc-hero .hero-copy h1 {
    font-size: 2.56rem;
    line-height: 1.04;
  }

  .spc-hero .hero-subtitle {
    font-size: 1.12rem;
  }

  .spc-hero .hero-description {
    font-size: 0.86rem;
  }

  .spc-hero .hero-actions {
    width: 100%;
  }

  .spc-hero .hero-button {
    flex: 1;
    padding: 0 14px;
  }

  .spc-hero .hero-bottom__inner {
    width: calc(100% - 18px);
  }

  .spc-hero .hero-bottom__inner > div {
    padding: 8px 9px;
  }

  .spc-hero .hero-bottom__inner strong {
    font-size: 0.75rem;
  }

  .spc-hero .hero-bottom__inner span {
    font-size: 0.75rem;
  }

  .capability-rail,
  .firm-columns,
  .approach-steps,
  .insights-grid,
  .manager-contact-points {
    grid-template-columns: 1fr;
  }

  .capability-rail-item {
    padding: 21px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .approach-step {
    min-height: 290px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .approach-step-index {
    margin-bottom: 70px;
  }

  .committee-band,
  .verification-panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .committee-band {
    display: grid;
    gap: 10px;
  }

  .operating-node {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .risk-item {
    grid-template-columns: 42px 1fr;
  }

  .insight-card.featured {
    grid-column: auto;
  }
}

.manager-header .language-switch {
  color: rgba(255, 255, 255, 0.58);
}

.manager-header.scrolled .language-switch {
  color: rgba(17, 34, 51, 0.45);
}

.firm-copy .prose-stack {
  max-width: 760px;
  margin-top: 34px;
}

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

.capability-grid--four .capability-card {
  min-height: 500px;
  padding-inline: 25px;
}

.capability-grid--four .capability-visual {
  margin-right: -25px;
  margin-left: -25px;
}

.capability-visual.execution::before {
  position: absolute;
  top: 28px;
  left: 16%;
  width: 68%;
  height: 74px;
  border: 1px solid rgba(16, 42, 67, 0.18);
  background:
    linear-gradient(135deg, transparent 46%, var(--gold-500) 47% 52%, transparent 53%),
    radial-gradient(circle at 23% 68%, var(--navy-700) 0 6px, transparent 7px),
    radial-gradient(circle at 52% 43%, var(--gold-600) 0 6px, transparent 7px),
    radial-gradient(circle at 80% 25%, var(--navy-500) 0 6px, transparent 7px);
  content: "";
}

.approach-steps.process-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-five .approach-step {
  min-height: 380px;
  padding-inline: 22px;
}

.process-five .approach-step-index {
  margin-bottom: 88px;
}

.operating .notice-box {
  margin-top: 34px;
}

.manager-contact .contact-card {
  align-self: start;
  border-color: rgba(223, 194, 127, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    rgba(6, 21, 37, 0.76);
}

.manager-contact .contact-card dd {
  color: rgba(255, 255, 255, 0.68);
}

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

@media (max-width: 1100px) {
  .approach-steps.process-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-five .approach-step:last-child {
    grid-column: 1 / -1;
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .manager-header .site-nav .language-switch {
    color: rgba(255, 255, 255, 0.55);
  }

  .manager-header.scrolled .site-nav .language-switch {
    color: rgba(17, 34, 51, 0.45);
  }
}

@media (max-width: 700px) {
  .capability-grid.capability-grid--four,
  .approach-steps.process-five {
    grid-template-columns: 1fr;
  }

  .process-five .approach-step:last-child {
    grid-column: auto;
    min-height: 290px;
  }
}
body[data-site="manager"] .risk-notice-panel .modal-heading {
  font-size: clamp(2.5rem, 3.1vw, 2.25rem);
}
