html {
  scroll-behavior: auto !important;
}
@keyframes preloader-slide {
  0% {
    left: -55%;
  }
  100% {
    left: 100%;
  }
}

.ab {
  --navy: #2c2e81;
  --navy-mid: #3b3f9e;
  --navy-pale: #eef0fb;
  --ink: #141313;
  --muted: #5e5e57;
  --line: rgba(20, 19, 19, 0.08);
}
.ab-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.ab-sec {
  padding: 72px 0;
}
@media (max-width: 768px) {
  .ab-sec {
    padding: 52px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  display: inline-block;
}
.section-h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ab-sec-head.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 8px;
}
.ab-sec-head.center .eyebrow {
  justify-content: center;
}
.ab-sec-sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(64px) scale(0.94);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.1s;
}
.reveal.d2 {
  transition-delay: 0.2s;
}
.reveal.d3 {
  transition-delay: 0.3s;
}
.reveal.d4 {
  transition-delay: 0.4s;
}
.reveal.d5 {
  transition-delay: 0.5s;
}

.px-page {
  --px-ink: #0a0a0c;
  --px-text: #52525b;
  --px-line: rgba(0, 0, 0, 0.08);
  --px-brand: #2c2e81;
  --px-brand-2: #4b4fd6;
  --px-ease: cubic-bezier(0.22, 1, 0.36, 1);

  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.px-page [data-px-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--px-ease),
    transform 0.7s var(--px-ease);
  transition-delay: var(--px-delay, 0s);
}
.px-page [data-px-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .px-page [data-px-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.px-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(52px, 8vw, 92px) 0 clamp(30px, 4vw, 48px);
  text-align: center;
}
.px-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    62% 60% at 50% 44%,
    rgba(255, 255, 255, 0.86),
    rgba(255, 255, 255, 0.5) 62%,
    rgba(255, 255, 255, 0.3) 100%
  );
  pointer-events: none;
}
.px-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -80px;
  z-index: -2;
  background-image: url("../../assets/images/hero-building.webp");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  opacity: 0.22;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.35) 78%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.35) 78%,
    transparent 100%
  );
}
.px-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.px-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--px-brand);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--px-line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.px-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--px-brand-2);
  box-shadow: 0 0 0 4px rgba(75, 79, 214, 0.16);
}
.px-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--px-ink);
  margin: 0;
  max-width: 18ch;
}
.px-hero-title .px-grad {
  background: linear-gradient(
    100deg,
    var(--px-brand) 8%,
    var(--px-brand-2) 62%,
    #7a7ce0 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.px-hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: var(--px-text);
  max-width: 62ch;
  margin: 0;
  font-weight: 400;
}

.ab-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.ab-overview h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.22;
  color: var(--ink);
}
.ab-overview h2 strong {
  font-weight: 800;
  color: var(--navy);
}
.ab-overview .body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
}
@media (max-width: 900px) {
  .ab-overview {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.ab-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  max-width: 980px;
  margin: 0 auto;
}
.ab-stat .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.ab-stat .num .cur {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  font-weight: 700;
}
.ab-stat .lab {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  text-wrap: pretty;
}
@media (max-width: 700px) {
  .ab-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
  }
}

.ab-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: clamp(28px, 3.4vw, 44px);
}
@media (max-width: 860px) {
  .ab-vm {
    grid-template-columns: 1fr;
  }
}
.vm-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  border-radius: 26px;
  padding: clamp(30px, 3.4vw, 46px);
  overflow: hidden;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.vm-card.light {
  background: #f5f5f7;
  color: var(--ink);
}
.vm-card.dark {
  background: linear-gradient(155deg, #2f318a 0%, #191b52 68%, #14163f 100%);
  color: #fff;
}
.vm-card.dark::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  aspect-ratio: 1;
  z-index: -1;
  background: radial-gradient(
    circle,
    rgba(123, 127, 231, 0.35),
    transparent 68%
  );
  pointer-events: none;
}
.vm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -34px rgba(18, 22, 60, 0.3);
}
.vm-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.vm-card.light .vm-tag {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}
.vm-card.dark .vm-tag {
  color: #e5e6ff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.vm-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(25px, 2.9vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin: auto 0 0;
  color: inherit;
}
.vm-card.dark h3 {
  font-size: clamp(20px, 2.3vw, 30px);
}
.vm-card h3 em {
  font-style: normal;
}
.vm-card.light h3 em {
  color: var(--navy);
}
.vm-card.dark h3 em {
  color: #b9bcf0;
}
.vm-note {
  font-size: 15px;
  line-height: 1.65;
  margin-top: 18px;
  padding-top: 18px;
  max-width: 46ch;
}
.vm-card.light .vm-note {
  color: var(--muted);
  border-top: 1px solid rgba(20, 19, 19, 0.1);
}
.vm-card.dark .vm-note {
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ab-values {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.1vw, 18px);
  margin-top: 44px;
}
@media (max-width: 1200px) {
  .ab-values {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1201px) and (max-width: 1340px) {
  .val-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    margin: 12px 0 14px;
  }
  .val-ico svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 680px) {
  .ab-values {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 420px) {
  .ab-values {
    grid-template-columns: 1fr;
  }
}
.val-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(20px, 1.7vw, 28px) clamp(16px, 1.4vw, 24px)
    clamp(22px, 1.9vw, 30px);
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s,
    border-color 0.3s;
}
.val-card::after {
  content: attr(data-letter);
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 84px;
  line-height: 0.9;
  color: rgba(44, 46, 129, 0.09);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  mask-image: linear-gradient(to bottom, #000 40%, rgba(0, 0, 0, 0.25) 100%);
  transition: color 0.45s;
}
.val-card:hover::after {
  color: rgba(44, 46, 129, 0.12);
}
.val-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(20, 22, 60, 0.045);
  border-color: rgba(44, 46, 129, 0.2);
}
.val-card > * {
  position: relative;
  z-index: 1;
}
.val-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: rgba(44, 46, 129, 0.85);
  letter-spacing: 0.06em;
}
.val-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--navy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 18px;
  transition: background 0.25s;
}
.val-card:hover .val-ico {
  background: var(--navy);
}
.val-ico svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  transition: color 0.25s;
}
.val-card:hover .val-ico svg {
  color: #fff;
}
.val-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 8px;
}
.val-card p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}

.ab-band {
  background: #f5f5f7;
}
.ab-mandate {
  margin-top: clamp(28px, 3.4vw, 48px);
  border-top: 1px solid rgba(20, 19, 19, 0.12);
}
.mn-item {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.4fr);
  gap: clamp(20px, 5vw, 96px);
  align-items: start;
  padding: clamp(32px, 4vw, 60px) 0;
  border-bottom: 1px solid rgba(20, 19, 19, 0.12);
}
@media (max-width: 800px) {
  .mn-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: clamp(28px, 6vw, 40px) 0;
  }
}
.mn-head {
  position: sticky;
  top: calc(var(--hx-nav) + var(--hx-nav-gap));
}
@media (max-width: 800px) {
  .mn-head {
    position: static;
  }
}
.mn-num {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: rgba(44, 46, 129, 0.24);
  font-variant-numeric: tabular-nums;
  margin-bottom: clamp(12px, 1.4vw, 18px);
  transition: color 0.45s ease;
}
.mn-item:hover .mn-num {
  color: var(--navy);
}
.mn-item h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 2.1vw, 29px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}
.mn-item p {
  font-size: clamp(15px, 1.15vw, 16.5px);
  line-height: 1.72;
  color: var(--muted);
  max-width: 60ch;
}

.ab-fns {
  margin-top: clamp(30px, 3.4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(36px, 5vw, 88px);
  border-top: 1px solid var(--line);
}
@media (max-width: 640px) {
  .ab-fns {
    grid-template-columns: 1fr;
  }
}
.fn-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
  align-items: start;
  padding: clamp(26px, 2.8vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}
.fn-n {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: rgba(44, 46, 129, 0.28);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s ease;
}
.fn-row:hover .fn-n {
  color: var(--navy);
}
.fn-row p {
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.7;
  letter-spacing: -0.003em;
  color: #44443f;
  text-wrap: pretty;
  padding-top: clamp(3px, 0.5vw, 7px);
}
@media (max-width: 640px) {
  .fn-row {
    gap: 12px;
    padding: clamp(22px, 6vw, 30px) 0;
  }
  .fn-n {
    font-size: 26px;
  }
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.ab-btn.solid {
  background: #fff;
  color: var(--navy);
}
.ab-btn.solid:hover {
  transform: translateY(-2px);
}
.ab-btn.ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
}
.ab-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ab {
  --hx-nav: 114px;
  --hx-nav-gap: 20px;
}
@media (max-width: 900px) {
  .ab {
    --hx-nav: 58px;
  }
}
.ab #history-sticky-wrapper {
  background: #0d0f2e;
}
.ab #history-sticky {
  background: #0d0f2e;
  padding-bottom: clamp(60px, 8vw, 110px);
}

.hx-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: min(78vh, 720px);
  padding: clamp(70px, 10vw, 120px) 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(13, 15, 46, 0.8) 0%,
      rgba(13, 15, 46, 0.9) 55%,
      rgba(13, 15, 46, 1) 100%
    ),
    radial-gradient(
      120% 120% at 50% 0%,
      rgba(27, 29, 87, 0.55) 0%,
      rgba(13, 15, 46, 0.85) 70%
    ),
    url("../../assets/images/hero-building.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hx-intro-inner {
  max-width: 760px;
  padding: 0 28px;
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hx-intro-inner.is-in {
  opacity: 1;
  transform: none;
}
.hx-intro .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
  color: #8f93e0;
}
.hx-intro .eyebrow span {
  background: #8f93e0;
}
.hx-intro-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hx-intro-title em {
  font-style: normal;
  background: linear-gradient(120deg, #c7c9ff, #8f93e0 60%, #6b6fd8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hx-intro-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  max-width: 560px;
  margin: 0 auto;
}

.hx-timeline {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
}
.hx-entry {
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(0, 1.6fr);
  gap: clamp(24px, 4vw, 64px);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.hx-entry.is-in {
  opacity: 1;
  transform: none;
}
.hx-side {
  position: relative;
}
.hx-side-sticky {
  position: sticky;
  top: calc(var(--hx-nav) + var(--hx-nav-gap));
  padding: clamp(34px, 4vw, 56px) 0 24px;
}
.hx-num {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8f93e0;
  margin-bottom: 14px;
}
.hx-year {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(150deg, #ffffff 0%, #c7c9ff 60%, #6b6fd8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hx-panel {
  position: relative;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(34px, 4vw, 56px) 0 clamp(34px, 4vw, 56px)
    clamp(24px, 3vw, 48px);
}
.hx-entry:last-child .hx-panel {
  border-image: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0.12) 55%,
      rgba(255, 255, 255, 0) 100%
    )
    1;
}
.hx-panel::before {
  content: "";
  position: absolute;
  left: -5px;
  top: calc(clamp(34px, 4vw, 56px) + 9px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8f93e0;
  box-shadow: 0 0 0 5px #0d0f2e;
  transition:
    background 0.5s ease,
    transform 0.5s ease;
}
.hx-entry.is-in .hx-panel::before {
  background: #fff;
  transform: scale(1.15);
}
.hx-panel-inner {
  max-width: 660px;
}
.hx-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.hx-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}
.hx-body p {
  margin: 0 0 12px;
}
.hx-body ul {
  margin: 8px 0 12px;
  padding-left: 18px;
  list-style: disc;
}
.hx-body > :last-child {
  margin-bottom: 0;
}
.hx-body li {
  margin-bottom: 5px;
}
.hx-body strong {
  color: #fff;
}

@media (max-width: 820px) {
  .hx-entry {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hx-side-sticky {
    position: static;
    padding: 30px 0 0;
  }
  .hx-year {
    font-size: 44px;
  }
  .hx-panel {
    border-left: 0;
    padding: 14px 0 34px;
  }
  .hx-entry:last-child .hx-panel {
    border-image: none;
  }
  .hx-panel::before {
    display: none;
  }
  .hx-entry + .hx-entry .hx-side-sticky {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
  }
  .hx-title {
    margin-bottom: 14px;
  }
  .hx-body {
    font-size: 14.5px;
  }
}

.ab .bd-head {
  max-width: 860px;
}
.ab .bd-head-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.ab .bd-board {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.ab .bd-tier {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid rgba(23, 28, 74, 0.08);
}
.ab .bd-tier-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ndic-muted, #6b7280);
  text-align: center;
  margin-bottom: 26px;
}
.ab .bd-row {
  display: grid;
  justify-content: center;
  gap: 28px;
  grid-template-columns: minmax(0, 320px);
}
.ab .bd-row-3 {
  grid-template-columns: repeat(3, minmax(0, 300px));
}
.ab .bd-row-2 {
  grid-template-columns: repeat(2, minmax(0, 300px));
}
.ab .bd-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.ab a.bd-card {
  cursor: pointer;
}
.ab a.bd-card:focus-visible {
  outline: 3px solid rgba(44, 46, 129, 0.4);
  outline-offset: 6px;
  border-radius: 22px;
}
.ab .bd-card:hover {
  transform: translateY(-6px);
}
.ab .bd-photo {
  overflow: hidden;
  border-radius: 20px;
  height: 360px;
  background: #f4f5f8;
  box-shadow: 0 6px 22px rgba(20, 22, 60, 0.08);
  transition: box-shadow 0.45s;
}
.ab .bd-card:hover .bd-photo {
  box-shadow: 0 18px 42px rgba(20, 22, 60, 0.16);
}
.ab .bd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ab .bd-card:hover .bd-photo img {
  transform: scale(1.03);
}
.ab .bd-card-lead .bd-photo {
  height: 420px;
}
.ab .bd-meta {
  padding: 18px 2px 0;
  text-align: center;
}
.ab .bd-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--brand-dark, #171c4a);
}
.ab .bd-card-lead .bd-name {
  font-size: 21px;
}
.ab .bd-role {
  margin-top: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ndic-muted, #6b7280);
}

@media (max-width: 900px) {
  .ab .bd-row-3,
  .ab .bd-row-2 {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }
}
@media (max-width: 620px) {
  .ab .bd-board {
    margin-top: 40px;
    gap: 40px;
  }
  .ab .bd-row,
  .ab .bd-row-3,
  .ab .bd-row-2 {
    grid-template-columns: minmax(0, 340px);
    gap: 24px;
  }
  .ab .bd-photo,
  .ab .bd-card-lead .bd-photo {
    height: 340px;
  }
}

/* ── Organisational structure chart ── */
.ab-org {
  background: #f5f5f7;
}
.ab #org-chart-root {
  margin-top: clamp(26px, 3.2vw, 42px);
}
.ab .org-scroll {
  overflow: visible;
}
.ab #org-chart {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  padding: clamp(26px, 3.4vw, 46px) clamp(20px, 3vw, 44px);
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(20, 19, 19, 0.07);
  box-shadow: 0 18px 44px -40px rgba(18, 22, 60, 0.22);
}
.ab #org-chart svg#org-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.ab #org-chart .org-row {
  position: relative;
  z-index: 1;
}
.ab .org-row-board {
  display: flex;
  justify-content: center;
  margin-bottom: 52px;
}
.ab .org-row-exec {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-bottom: 60px;
}
.ab .org-row-exec > .org-cell {
  display: flex;
  justify-content: center;
}
.ab .org-row-branches {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}
.ab .org-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab .org-branch > .org-branch-head {
  margin-bottom: 34px;
}
.ab .org-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.ab .org-stack.left {
  align-items: flex-start;
}
.ab .org-stack.mid,
.ab .org-stack.right {
  align-items: flex-end;
}

/* Boxes */
.ab #org-chart .org-box {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 86%;
  max-width: 246px;
  min-height: 52px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.25;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 13px;
  background: #ffffff;
  color: var(--navy);
  border: 1px solid #e4e7f2;
  box-shadow: 0 1px 2px rgba(18, 22, 60, 0.03);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.ab .org-row-exec .org-box,
.ab .org-row-board .org-box,
.ab .org-branch-head {
  width: 82%;
}
.ab #org-chart .org-box.org-lead {
  color: #ffffff;
  border: none;
  font-weight: 700;
  letter-spacing: 0;
  min-height: 56px;
}
.ab #org-chart .org-box.k-board {
  background: #1c2a6e;
}
.ab #org-chart .org-box.k-md {
  background: #2f68d4;
}
.ab #org-chart .org-box.k-edc {
  background: #189ad6;
  color: #12233a;
}
.ab #org-chart .org-box.k-edo {
  background: #1cc0ea;
  color: #12233a;
}
.ab #org-chart .org-box:hover {
  transform: translateY(-2px);
  border-color: #9aa6d8;
  box-shadow: 0 5px 14px -10px rgba(18, 22, 60, 0.32);
}
.ab #org-chart .org-box.org-lead:hover {
  box-shadow: 0 6px 16px -12px rgba(18, 22, 60, 0.34);
}
.ab #org-chart .org-box.neighbor {
  border-color: #9aa6d8;
}

/* Connector lines */
.ab .org-line {
  fill: none;
  stroke: #cbd0e2;
  stroke-width: 1.3px;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition:
    stroke 0.2s ease,
    stroke-width 0.2s ease;
}
.ab .org-line.dotted {
  stroke-dasharray: 1.4 4.6;
  stroke: #ccd1e3;
}
.ab .org-line.lit {
  stroke: #6f74c9;
  stroke-width: 1.7px;
  filter: drop-shadow(0 0 2px rgba(111, 116, 201, 0.32));
}
.ab .org-pulse {
  fill: none;
  stroke: #8f93e0;
  stroke-width: 2.1px;
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(143, 147, 224, 0.55));
}

/* ── Mobile: keep the 3-column tree, scale type + spacing down ── */
@media (max-width: 860px) {
  .ab #org-chart {
    padding: 22px 12px 26px;
    border-radius: 16px;
  }
  .ab .org-row-board {
    margin-bottom: 32px;
  }
  .ab .org-row-exec {
    margin-bottom: 36px;
  }
  .ab .org-branch > .org-branch-head {
    margin-bottom: 24px;
  }
  .ab .org-stack {
    gap: 13px;
  }
  .ab #org-chart .org-box {
    width: 90%;
    max-width: none;
    min-height: 40px;
    padding: 6px 7px;
    font-size: 0.64rem;
    line-height: 1.2;
    border-radius: 9px;
  }
  .ab .org-row-exec .org-box,
  .ab .org-row-board .org-box,
  .ab .org-branch-head {
    width: 90%;
  }
  .ab #org-chart .org-box.org-lead {
    min-height: 42px;
  }
}
@media (max-width: 560px) {
  .ab #org-chart {
    padding: 16px 7px 20px;
  }
  .ab .org-row-board {
    margin-bottom: 24px;
  }
  .ab .org-row-exec {
    margin-bottom: 28px;
  }
  .ab .org-branch > .org-branch-head {
    margin-bottom: 18px;
  }
  .ab .org-stack {
    gap: 10px;
  }
  .ab #org-chart .org-box {
    width: 94%;
    min-height: 34px;
    padding: 4px 5px;
    font-size: 0.55rem;
    letter-spacing: -0.01em;
    border-radius: 7px;
  }
  .ab .org-row-exec .org-box,
  .ab .org-row-board .org-box,
  .ab .org-branch-head {
    width: 94%;
  }
  .ab #org-chart .org-box.org-lead {
    min-height: 36px;
    font-size: 0.56rem;
  }
  .ab .org-line {
    stroke-width: 1px;
  }
}
@media (max-width: 400px) {
  .ab #org-chart {
    padding: 12px 4px 16px;
  }
  .ab .org-stack {
    gap: 8px;
  }
  .ab #org-chart .org-box {
    font-size: 0.48rem;
    padding: 3px 4px;
    min-height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab .org-pulse {
    display: none;
  }
  .ab #org-chart .org-box {
    transition: none;
  }
}

.ab-past {
  background: #fff;
}
.pl-shell {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 56px);
  align-items: start;
  margin-top: clamp(28px, 3.4vw, 46px);
}
@media (max-width: 900px) {
  .pl-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.pl-rail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 6px;
  border-right: 1px solid var(--line);
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0,
    #000 calc(100% - 42px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0,
    #000 calc(100% - 42px),
    transparent 100%
  );
}
.pl-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 11px 14px;
  border-radius: 11px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.pl-tab-period {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--muted);
  transition: color 0.25s ease;
}
.pl-tab-count {
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  background: #f5f5f7;
  border-radius: 999px;
  padding: 3px 8px;
  flex-shrink: 0;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}
.pl-tab:hover {
  background: #f7f7f9;
}
.pl-tab:hover .pl-tab-period {
  color: var(--ink);
}
.pl-tab.is-active {
  background: rgba(44, 46, 129, 0.06);
}
.pl-tab.is-active .pl-tab-period {
  color: var(--navy);
  font-weight: 700;
}
.pl-tab.is-active .pl-tab-count {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 900px) {
  .pl-rail {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    -webkit-mask-image: none;
    mask-image: none;
  }
  .pl-tab {
    flex-shrink: 0;
    width: auto;
  }
}

.pl-panel-head {
  padding-bottom: clamp(18px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
}
.pl-panel-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.pl-panel-period {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin-top: 8px;
}
.pl-panel-count {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}
.pl-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(24px, 3vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 700px) {
  .pl-list {
    grid-template-columns: 1fr;
  }
}
.pl-member {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.pl-member-idx {
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(44, 46, 129, 0.42);
}
.pl-member-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pl-member-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
}
.pl-member-role {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--muted);
}
