:root {
  --accent-cyan: #00f2ff;
  --navy-900: #002d62;
  --navy-800: #0a3f7f;
  --blue-600: #0056b3;
  --blue-500: #1f6fd0;
  --white: #ffffff;
  --surface: #f5f8fc;
  --surface-muted: #eef3f9;
  --border: rgba(0, 45, 98, 0.12);
  --text-heading: #0d2340;
  --text-body: #516273;
  --text-light: rgba(255, 255, 255, 0.9);
  --shadow-lg: 0 24px 60px rgba(0, 31, 63, 0.16);
  --shadow-md: 0 16px 40px rgba(0, 31, 63, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --nav-fintech-dark: #001432;
  --nav-hover-bg: rgba(1, 10, 24, 0.9);
  --nav-hover-text: #ffffff;
  /* Company timeline spine / connectors — teal to match hero / brand accents */
  --company-timeline-spine: #077181;
  --company-timeline-spine-rgb: 7, 113, 129;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.7;
  color: var(--text-body);
  background:
    radial-gradient(circle at top left, rgba(31, 111, 208, 0.08), transparent 30%),
    linear-gradient(180deg, #f9fbfe 0%, #f4f8fc 100%);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.container--xl {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

body.has-fixed-drawer {
  overflow: hidden;
}

@keyframes portalKenBurns {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
  100% {
    transform: scale(1.03) translate3d(0.8%, 1%, 0);
  }
}

.api-portal-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.api-portal-bg__image,
.api-portal-bg__overlay {
  position: absolute;
  inset: -4%;
}

.api-portal-bg__image {
  background-image: url("../images/bg1.png");
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: portalKenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
}

.api-portal-bg__overlay {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 20, 50, 0.74) 0%, rgba(0, 20, 50, 0.68) 55%, rgba(0, 20, 50, 0.76) 100%),
    radial-gradient(circle at top left, rgba(89, 149, 255, 0.12), transparent 28%);
}

body.api-platform-body main,
body.api-platform-body footer,
body.api-platform-body .product-assistant {
  position: relative;
  z-index: 1;
}

.sidebar-card {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 150px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow:
    0 28px 80px rgba(0, 10, 28, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.sidebar-card::-webkit-scrollbar {
  width: 8px;
}

.sidebar-card::-webkit-scrollbar-track {
  background: rgba(0, 20, 50, 0.28);
  border-radius: 999px;
}

.sidebar-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(125, 178, 255, 0.75), rgba(61, 139, 255, 0.55));
  border-radius: 999px;
  border: 1px solid rgba(0, 20, 50, 0.22);
}

.sidebar-card {
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 178, 255, 0.72) rgba(0, 20, 50, 0.28);
}

.sidebar-card__section + .sidebar-card__section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card__section-title {
  display: block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(228, 236, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page {
  padding-top: 116px;
}

.page--home {
  padding-top: 0;
}

.page--hero-shell {
  padding-top: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1220px, calc(100% - 24px));
  z-index: 20000 !important;
}

.site-header--hero {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20000 !important;
}

.page--hero-shell .hero--page {
  padding-top: 148px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 242, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(7, 13, 24, 0.86) 0%,
    rgba(10, 20, 34, 0.8) 52%,
    rgba(6, 12, 22, 0.84) 100%
  );
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.32),
    0 0 0 0.5px rgba(0, 242, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header--hero .site-header__inner {
  background: linear-gradient(
    165deg,
    rgba(7, 13, 24, 0.58) 0%,
    rgba(10, 20, 34, 0.5) 52%,
    rgba(6, 12, 22, 0.55) 100%
  ) !important;
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    0 0 0 0.5px rgba(0, 242, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

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

.site-brand__logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 15px;
  border-radius: 12px;
  border: 1px solid rgba(0, 242, 255, 0.2);
  background: linear-gradient(
    152deg,
    rgba(18, 32, 52, 0.42) 0%,
    rgba(8, 14, 28, 0.38) 100%
  );
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(0, 242, 255, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.site-brand img {
  max-height: 32px;
  width: auto;
}

/* Header logo: no filled chip — show asset only; soft halo keeps dark type readable on glass bar */
.site-header .site-brand__logo-container {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header .site-brand img {
  display: block;
  max-height: 32px;
  width: auto;
  filter: none;
}

.site-brand__text {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link,
.site-nav__toggle,
.mobile-menu__link,
.mobile-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy-900);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.site-header .site-nav__link,
.site-header .site-nav__toggle,
.site-header .menu-button {
  color: rgba(236, 242, 252, 0.96);
}

.site-header--hero .site-nav__link,
.site-header--hero .site-nav__toggle,
.site-header--hero .menu-button {
  color: #f4f9ff;
}

.site-header--hero.navbar-scrolled .site-header__inner {
  background: linear-gradient(
    165deg,
    rgba(7, 13, 24, 0.94) 0%,
    rgba(10, 20, 34, 0.9) 52%,
    rgba(6, 12, 22, 0.92) 100%
  ) !important;
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.38),
    0 0 0 0.5px rgba(0, 242, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.site-header--hero.navbar-scrolled .site-nav__link,
.site-header--hero.navbar-scrolled .site-nav__toggle,
.site-header--hero.navbar-scrolled .menu-button,
.site-header--hero.navbar-scrolled .lang-switch__btn {
  color: rgba(241, 247, 255, 0.95);
}

.site-header--hero.navbar-scrolled .site-nav__link.is-active,
.site-header--hero.navbar-scrolled .site-nav__toggle.is-active {
  background: var(--nav-fintech-dark);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 20, 36, 0.35);
}

.site-header--hero.navbar-scrolled .lang-switch__btn {
  border: 1px solid rgba(0, 242, 255, 0.22);
  background: rgba(0, 242, 255, 0.06);
  color: rgba(241, 247, 255, 0.9);
  box-shadow: none;
}

.site-header--hero.navbar-scrolled .lang-switch__btn.is-active {
  border-color: rgba(0, 242, 255, 0.35);
  background: rgba(0, 242, 255, 0.16);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 242, 255, 0.22),
    0 6px 14px rgba(0, 20, 50, 0.2);
}

.site-header .site-nav__link:hover,
.site-header .site-nav__toggle:hover,
.site-header .site-nav__toggle.is-active {
  background: rgba(0, 242, 255, 0.14);
  color: #ffffff;
}

.mobile-menu__link:hover,
.mobile-menu__toggle:hover,
.mobile-menu__toggle.is-active {
  background: var(--nav-hover-bg);
  color: var(--nav-hover-text);
}

.site-nav__link.is-active {
  background: var(--nav-fintech-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 20, 36, 0.35);
}

.site-header--hero .site-nav__link.is-active {
  background: var(--nav-fintech-dark);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 20, 36, 0.4);
}

.site-nav__toggle svg,
.mobile-menu__toggle svg {
  transition: transform 0.2s ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown.is-open .site-nav__toggle svg,
.mobile-submenu-toggle.is-open svg {
  transform: rotate(180deg);
}

.nav-dropdown.is-open .site-nav__toggle {
  background: rgba(0, 242, 255, 0.14);
  color: #ffffff;
}

@keyframes nav-dropdown-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nav-dropdown-orbit-rev {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes nav-dropdown-core-pulse {
  0%,
  100% {
    opacity: 0.88;
    filter: drop-shadow(0 0 3px rgba(0, 242, 255, 0.85));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 1));
  }
}

@keyframes nav-dropdown-core-breathe {
  0%,
  100% {
    filter: drop-shadow(0 0 4px rgba(0, 242, 255, 0.2)) drop-shadow(0 0 12px rgba(0, 242, 255, 0.08));
  }

  50% {
    filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.45)) drop-shadow(0 0 26px rgba(0, 242, 255, 0.18));
  }
}

@keyframes nav-dropdown-live-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 6px rgba(0, 242, 255, 0.95), 0 0 12px rgba(0, 242, 255, 0.4);
  }

  50% {
    opacity: 0.82;
    transform: scale(0.88);
    box-shadow: 0 0 10px rgba(0, 242, 255, 1), 0 0 20px rgba(0, 242, 255, 0.55);
  }
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 20010;
  min-width: min(580px, calc(100vw - 32px));
  max-width: calc(100vw - 28px);
  padding: 0;
  border: 1px solid rgba(0, 242, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(165deg, #070d18 0%, #0a1422 40%, #060b14 100%);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.5),
    0 0 0 0.5px rgba(0, 242, 255, 0.07),
    inset 0 1px 0 rgba(0, 242, 255, 0.06);
  display: none;
  overflow: hidden;
}

.nav-dropdown.is-open {
  z-index: 20005;
}

.nav-dropdown.is-open .nav-dropdown__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  column-gap: 0;
}

.nav-dropdown__rail {
  display: none;
}

.nav-dropdown__rail-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.nav-dropdown__core-visual {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  animation: nav-dropdown-core-breathe 3.8s ease-in-out infinite;
  will-change: filter;
}

.nav-dropdown__core-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nav-dropdown__core-orbit {
  transform-origin: 50px 50px;
}

.nav-dropdown__core-orbit--a {
  animation: nav-dropdown-orbit 16s linear infinite;
  stroke-dasharray: 48 92;
}

.nav-dropdown__core-orbit--b {
  animation: nav-dropdown-orbit-rev 22s linear infinite;
  stroke-dasharray: 36 74;
}

.nav-dropdown__core-pulse {
  animation: nav-dropdown-core-pulse 2.5s ease-in-out infinite;
}

.nav-dropdown__rail-kicker {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 242, 255, 0.42);
  line-height: 1.35;
}

.nav-dropdown__rail-title {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(241, 247, 255, 0.94);
  line-height: 1.35;
}

.nav-dropdown__map {
  padding: 12px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(0, 242, 255, 0.07) 0%, transparent 55%),
    radial-gradient(90% 70% at 100% 100%, rgba(0, 90, 140, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0d1628 0%, #0a121f 45%, #080f1a 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.nav-dropdown__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 12px 11px;
  min-width: 0;
  background: linear-gradient(
    152deg,
    rgba(18, 32, 52, 0.52) 0%,
    rgba(10, 18, 34, 0.42) 48%,
    rgba(8, 14, 28, 0.38) 100%
  );
  border: 1px solid rgba(0, 242, 255, 0.22);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.04),
    0 0 0 0.5px rgba(0, 242, 255, 0.08),
    0 0 28px rgba(0, 242, 255, 0.07),
    0 12px 32px rgba(0, 0, 0, 0.28);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.nav-dropdown__group:hover {
  background: linear-gradient(
    152deg,
    rgba(22, 42, 62, 0.58) 0%,
    rgba(12, 26, 44, 0.48) 50%,
    rgba(10, 20, 36, 0.44) 100%
  );
  border-color: rgba(0, 242, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.06),
    0 0 0 0.5px rgba(0, 242, 255, 0.14),
    0 0 36px rgba(0, 242, 255, 0.12),
    0 14px 36px rgba(0, 0, 0, 0.32);
}

.nav-dropdown__group:last-child {
  padding-bottom: 11px;
}

.nav-dropdown__link {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-dropdown__link:hover:not(.nav-dropdown__link--map) {
  background: rgba(0, 45, 98, 0.08);
  color: var(--navy-900);
}

.nav-dropdown__link--map {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 6px 4px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(230, 238, 250, 0.96);
  font-size: 0;
  font-weight: 700;
  line-height: 1.3;
}

.nav-dropdown__link--map:hover {
  background: rgba(0, 242, 255, 0.08);
  color: #f4f9ff;
}

.nav-dropdown__link--map:hover .nav-dropdown__link-label {
  color: #ffffff;
}

.nav-dropdown__link-label {
  flex: 1;
  min-width: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: rgba(236, 242, 252, 0.96);
}

.nav-dropdown__status {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 1px;
  border-radius: 50%;
  background: #00e8ff;
  animation: nav-dropdown-live-dot 2.2s ease-in-out infinite;
}

.nav-dropdown__glyph {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 232, 255, 0.38);
}

.nav-dropdown__link--map:hover .nav-dropdown__glyph {
  color: rgba(0, 242, 255, 0.92);
}

.nav-dropdown__glyph-svg {
  width: 27px;
  height: 27px;
  display: block;
}

.nav-dropdown__glyph-svg path {
  stroke-width: 0.85;
  vector-effect: non-scaling-stroke;
}

.nav-dropdown__glyph-svg circle {
  vector-effect: non-scaling-stroke;
}

.nav-dropdown__sublinks {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 2px 2px 8px;
  margin: 0;
}

.nav-dropdown__sublink {
  display: block;
  padding: 6px 10px 6px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  color: rgba(188, 204, 226, 0.86);
  font-size: 0;
  font-weight: 650;
  line-height: 1.42;
  text-align: left;
  word-break: break-word;
  text-decoration: none;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.nav-dropdown__sublink-text {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  color: rgba(198, 214, 236, 0.9);
}

.nav-dropdown__sublink:hover {
  background: linear-gradient(90deg, rgba(0, 242, 255, 0.12) 0%, rgba(0, 242, 255, 0.03) 52%, transparent 100%);
  border-left-color: rgba(0, 242, 255, 0.75);
  box-shadow: inset 0 0 20px rgba(0, 242, 255, 0.04);
}

.nav-dropdown__sublink:hover .nav-dropdown__sublink-text {
  color: rgba(224, 244, 255, 0.96);
}

@media (max-width: 1180px) {
  .nav-dropdown__panel {
    min-width: min(520px, calc(100vw - 28px));
  }

  .nav-dropdown__map {
    gap: 8px;
    padding: 10px;
  }

  .nav-dropdown__group {
    padding: 10px 10px 9px;
    border-radius: 12px;
  }
}

@media (max-width: 540px) {
  .nav-dropdown__map {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-dropdown__panel {
    min-width: min(100%, calc(100vw - 24px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown__core-orbit--a,
  .nav-dropdown__core-orbit--b,
  .nav-dropdown__core-pulse,
  .nav-dropdown__core-visual,
  .nav-dropdown__status {
    animation: none !important;
  }

  .nav-dropdown__core-visual {
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.28));
  }

  .nav-dropdown__core-pulse {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(0, 242, 255, 0.7));
  }

  .nav-dropdown__status {
    opacity: 1;
    transform: none;
    box-shadow: 0 0 6px rgba(0, 242, 255, 0.85);
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(0, 242, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 14, 26, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.site-header--hero .lang-switch {
  background: rgba(8, 14, 26, 0.38);
  border: 1px solid rgba(0, 242, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.lang-switch__btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 4px 10px;
  background: transparent;
  color: rgba(220, 232, 248, 0.82);
  font-size: 0.8125rem;
  font-weight: 800;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.lang-switch__btn:hover {
  color: #ffffff;
}

.site-header--hero .lang-switch__btn {
  color: rgba(244, 249, 255, 0.9);
}

.site-header--hero .lang-switch__btn:hover {
  color: #ffffff;
}

.lang-switch__btn.is-active {
  background: rgba(0, 242, 255, 0.16);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 242, 255, 0.28);
}

.site-header--hero .lang-switch__btn.is-active {
  background: rgba(0, 242, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 242, 255, 0.3);
}

.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 242, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(
    152deg,
    rgba(18, 32, 52, 0.45) 0%,
    rgba(8, 14, 28, 0.4) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(0, 242, 255, 0.06),
    0 8px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: rgba(236, 242, 252, 0.95);
}

.site-header--hero .site-brand img {
  filter: none;
}

.page-light-bg .site-header--hero .site-header__inner {
  background: linear-gradient(
    165deg,
    rgba(7, 13, 24, 0.9) 0%,
    rgba(10, 20, 34, 0.86) 52%,
    rgba(6, 12, 22, 0.88) 100%
  ) !important;
  border: 1px solid rgba(0, 242, 255, 0.18);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.3),
    0 0 0 0.5px rgba(0, 242, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.page-light-bg .site-header--hero .site-nav__link,
.page-light-bg .site-header--hero .site-nav__toggle,
.page-light-bg .site-header--hero .menu-button,
.page-light-bg .site-header--hero .lang-switch__btn {
  color: rgba(241, 247, 255, 0.95);
}

.page-light-bg .site-header--hero .site-nav__link:hover,
.page-light-bg .site-header--hero .site-nav__toggle:hover {
  background: rgba(0, 242, 255, 0.14);
  color: #ffffff;
}

.page-light-bg .site-header--hero .site-nav__link.is-active,
.page-light-bg .site-header--hero .site-nav__toggle.is-active {
  background: var(--nav-fintech-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 20, 36, 0.3);
}

.page-light-bg .site-header--hero .lang-switch {
  background: rgba(8, 14, 26, 0.5);
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.page-light-bg .site-header--hero .lang-switch__btn:hover {
  color: #ffffff;
}

.page-light-bg .site-header--hero .lang-switch__btn.is-active {
  background: rgba(0, 242, 255, 0.16);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 242, 255, 0.28);
}

.page-light-bg .site-header--hero .site-brand img {
  filter: none;
}

/* Light hero pages: scrolled bar stays dark glass so contrast stays correct over dark sections. */
.page-light-bg .site-header--hero.navbar-scrolled .site-header__inner {
  background: linear-gradient(
    165deg,
    rgba(7, 13, 24, 0.94) 0%,
    rgba(10, 20, 34, 0.9) 52%,
    rgba(6, 12, 22, 0.92) 100%
  ) !important;
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.38),
    0 0 0 0.5px rgba(0, 242, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.page-light-bg .site-header--hero.navbar-scrolled .site-nav__link,
.page-light-bg .site-header--hero.navbar-scrolled .site-nav__toggle,
.page-light-bg .site-header--hero.navbar-scrolled .menu-button,
.page-light-bg .site-header--hero.navbar-scrolled .lang-switch__btn {
  color: rgba(241, 247, 255, 0.95);
}

.page-light-bg .site-header--hero.navbar-scrolled .site-nav__link.is-active,
.page-light-bg .site-header--hero.navbar-scrolled .site-nav__toggle.is-active {
  background: var(--nav-fintech-dark);
  color: #ffffff;
  box-shadow: 0 6px 14px rgba(0, 20, 36, 0.35);
}

.page-light-bg .site-header--hero.navbar-scrolled .lang-switch__btn {
  border: 1px solid rgba(0, 242, 255, 0.22);
  background: rgba(0, 242, 255, 0.06);
  color: rgba(241, 247, 255, 0.9);
  box-shadow: none;
}

.page-light-bg .site-header--hero.navbar-scrolled .lang-switch__btn.is-active {
  border-color: rgba(0, 242, 255, 0.35);
  background: rgba(0, 242, 255, 0.16);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(0, 242, 255, 0.22),
    0 6px 14px rgba(0, 20, 50, 0.2);
}

.page-light-bg .site-header--hero.navbar-scrolled .lang-switch {
  background: rgba(8, 14, 26, 0.45);
  border: 1px solid rgba(0, 242, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.page-light-bg .site-header--hero.navbar-scrolled .site-nav__link:hover,
.page-light-bg .site-header--hero.navbar-scrolled .site-nav__toggle:hover {
  background: rgba(0, 242, 255, 0.14);
  color: #ffffff;
}

.page-light-bg .site-header--hero.navbar-scrolled .lang-switch__btn:hover {
  color: #ffffff;
}

.mobile-menu {
  display: none;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(0, 45, 98, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 31, 63, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  max-height: calc(100dvh - 92px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__nav {
  display: grid;
  gap: 5px;
}

.mobile-menu__link,
.mobile-menu__toggle {
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 16px;
}

.mobile-menu__submenu {
  display: none;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(0, 45, 98, 0.12);
}

.mobile-menu__submenu.is-open {
  display: grid;
  gap: 2px;
}

.mobile-menu__submenu a {
  padding: 5px 0;
  color: #29415d;
  font-size: 0.9rem;
  font-weight: 700;
}

.mobile-menu__submenu a:hover {
  color: var(--navy-900);
}

.mobile-menu__sublink {
  padding: 3px 0 3px 12px !important;
  font-size: 0.86rem !important;
  font-weight: 650 !important;
  color: #385775 !important;
}

.mobile-menu__language {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
  padding: 10px 4px 0;
  border-top: 1px solid rgba(0, 45, 98, 0.1);
}

.mobile-menu__language-label {
  color: #29415d;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu .mobile-lang-switch {
  display: inline-flex;
  flex-shrink: 0;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(0, 242, 255, 0.22);
  background: rgba(8, 14, 26, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(0, 31, 63, 0.16);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

.mobile-menu .mobile-lang-switch .lang-switch__btn {
  min-width: 38px;
  padding: 4px 10px;
  color: rgba(244, 249, 255, 0.9);
}

.mobile-menu .mobile-lang-switch .lang-switch__btn:hover {
  color: #ffffff;
}

.mobile-menu .mobile-lang-switch .lang-switch__btn.is-active {
  background: rgba(0, 242, 255, 0.18);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 242, 255, 0.3);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero--home {
  padding: 92px 0 72px;
}

.hero--home-institutional {
  min-height: 100vh;
  padding: 0;
}

.hero--home-institutional .hero__background {
  background:
    linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 10, 30, 0.85)),
    url("../images/Central.jpg") center / cover fixed no-repeat;
}

.hero--home-institutional .hero__background::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.hero--page.hero--page-cinematic .hero__background {
  background:
    linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 10, 30, 0.85)),
    url("../images/Central.jpg") center / cover fixed no-repeat;
}

.hero--page.hero--page-cinematic .hero__background::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

@media (prefers-reduced-motion: reduce) {
  .hero--page.hero--page-cinematic .hero__background {
    background-attachment: scroll, scroll;
  }
}

.hero--page.hero--page-cinematic.hero--ims-bg .hero__background {
  background:
    linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 10, 30, 0.85)),
    url("../images/bg3.png") center / cover fixed no-repeat;
}

/* IMS — hero (mockup layout + psc dashboard preview) */
.hero--ims-lead {
  min-height: clamp(520px, 72vh, 760px);
  padding-block: clamp(108px, 12vw, 148px) clamp(64px, 8vw, 96px);
}

.hero--page.hero--page-cinematic.hero--ims-lead .hero__background {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 242, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 85% 75%, rgba(124, 77, 255, 0.1) 0%, transparent 60%),
    linear-gradient(rgba(0, 20, 50, 0.72), rgba(0, 10, 30, 0.88)),
    url("../images/bg1.png") center / cover fixed no-repeat;
}

.hero--ims-lead .hero__background::after {
  opacity: 0.45;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 95%);
}

.ims-hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ims-hero-ambient::before,
.ims-hero-ambient::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.ims-hero-ambient::before {
  width: min(480px, 60vw);
  height: min(480px, 60vw);
  top: -8%;
  right: 8%;
  background: rgba(0, 242, 255, 0.22);
}

.ims-hero-ambient::after {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  bottom: 5%;
  left: -5%;
  background: rgba(56, 120, 255, 0.18);
}

.ims-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 4.5vw, 52px);
  align-items: center;
}

.ims-hero-copy {
  min-width: 0;
}

.ims-hero-eyebrow {
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  font-size: clamp(0.68rem, 0.72rem + 0.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.ims-hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  margin: 0 0 clamp(16px, 2.2vw, 22px);
  font-size: clamp(1.85rem, 1rem + 2.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: rgba(255, 255, 255, 0.98);
}

.ims-hero-title__line {
  display: block;
}

.ims-hero-title__accent {
  background: linear-gradient(120deg, #bae6fd 0%, #38bdf8 42%, #22d3ee 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7dd3fc;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .ims-hero-title__accent {
    color: transparent;
  }
}

.ims-hero-lede {
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: min(52ch, 100%);
  font-size: clamp(0.96rem, 0.92rem + 0.22vw, 1.06rem);
  font-weight: 500;
  line-height: 1.68;
  color: rgba(203, 213, 245, 0.86);
}

.ims-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.ims-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.ims-hero-cta:hover {
  transform: translateY(-1px);
}

.ims-hero-cta--primary {
  background: linear-gradient(135deg, #00f2ff 0%, #00b8d4 55%, #0096c7 100%);
  color: #041220;
  box-shadow: 0 14px 36px rgba(0, 242, 255, 0.28);
}

.ims-hero-cta--primary:hover {
  box-shadow: 0 18px 44px rgba(0, 242, 255, 0.36);
}

.ims-hero-cta--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
}

.ims-hero-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.ims-hero-visual {
  min-width: 0;
}

.ims-hero-browser {
  animation: psc-float 5s ease-in-out infinite;
}

.ims-hero-browser .psc-dash {
  min-height: 320px;
  gap: 12px;
}

.ims-dash-kpis {
  grid-template-columns: repeat(3, 1fr);
}

.ims-dash-charts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: end;
}

.ims-dash-chart {
  min-width: 0;
}

.ims-dash-donut {
  width: 96px;
  height: 96px;
}

.ims-dash-chart--wide .psc-line-chart {
  height: 64px;
}

.ims-dash-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ims-dash-panel {
  min-width: 0;
}

.hero--ims-lead .ims-hero-eyebrow {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

.hero--ims-lead .ims-hero-title,
.hero--ims-lead .ims-hero-lede,
.hero--ims-lead .ims-hero-actions {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero--ims-lead .ims-hero-lede {
  animation-delay: 0.1s;
}

.hero--ims-lead .ims-hero-actions {
  animation-delay: 0.18s;
}

.hero--ims-lead .ims-hero-visual {
  opacity: 0;
  animation: hero-df-lead-in-left 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
}

@media (max-width: 960px) {
  .ims-hero-grid {
    grid-template-columns: 1fr;
  }

  .ims-hero-visual {
    max-width: min(520px, 100%);
    margin-inline: auto;
  }

  .ims-dash-kpis {
    grid-template-columns: 1fr;
  }

  .ims-dash-charts {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .ims-dash-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .ims-hero-visual {
    display: none;
  }

  .ims-hero-browser .psc-report-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--ims-lead .ims-hero-eyebrow,
  .hero--ims-lead .ims-hero-title,
  .hero--ims-lead .ims-hero-lede,
  .hero--ims-lead .ims-hero-actions,
  .hero--ims-lead .ims-hero-visual {
    opacity: 1;
    animation: none;
  }

  .ims-hero-browser {
    animation: none;
  }
}

/* IMS — industry challenges & target audience */
.ims-challenges {
  position: relative;
  padding: clamp(64px, 8vw, 96px) 0 clamp(72px, 9vw, 104px);
  color: rgba(226, 234, 255, 0.92);
  background: linear-gradient(180deg, #071426 0%, #0a1628 48%, #0c1e36 100%);
  border-top: 1px solid rgba(0, 242, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.ims-challenges__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(0, 242, 255, 0.08) 0%, transparent 62%),
    radial-gradient(ellipse 40% 30% at 90% 80%, rgba(124, 77, 255, 0.06) 0%, transparent 65%);
}

.ims-challenges__inner {
  position: relative;
  z-index: 1;
}

.ims-challenges__head {
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.ims-challenges__title {
  margin: 0 0 clamp(14px, 2vw, 18px);
  font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #ffffff;
}

.ims-challenges__subtitle {
  margin: 0;
  font-size: clamp(0.96rem, 0.92rem + 0.2vw, 1.06rem);
  font-weight: 500;
  line-height: 1.72;
  color: rgba(203, 213, 245, 0.78);
}

.ims-challenges__pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  margin-bottom: clamp(48px, 6vw, 64px);
}

.ims-pain-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
}

@media (hover: hover) {
  .ims-pain-card:hover {
    border-color: rgba(251, 146, 60, 0.42);
    background: rgba(251, 146, 60, 0.04);
    box-shadow:
      0 0 0 1px rgba(251, 146, 60, 0.1),
      0 16px 40px rgba(251, 146, 60, 0.1);
    transform: translateY(-2px);
  }

  .ims-pain-card:hover .ims-pain-card__icon {
    color: #fb923c;
    background: rgba(251, 146, 60, 0.12);
    border-color: rgba(251, 146, 60, 0.28);
  }
}

.ims-pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(251, 146, 60, 0.85);
  background: rgba(251, 146, 60, 0.08);
  transition:
    color 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease;
}

.ims-pain-card__title {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.ims-pain-card__text {
  margin: 0;
  font-size: clamp(0.9rem, 0.86rem + 0.15vw, 0.96rem);
  font-weight: 500;
  line-height: 1.65;
  color: rgba(203, 213, 245, 0.72);
}

.ims-challenges__audience {
  padding-top: clamp(8px, 1.5vw, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ims-challenges__audience-title {
  margin: 0 0 clamp(24px, 3vw, 32px);
  text-align: center;
  font-size: clamp(0.72rem, 0.68rem + 0.15vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5ee1ff;
}

.ims-challenges__audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.ims-audience-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 2.4vw, 26px) clamp(22px, 2.6vw, 28px);
  border-radius: 14px;
  border: 1px solid rgba(0, 242, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.04),
    0 0 24px rgba(0, 242, 255, 0.06);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
}

@media (hover: hover) {
  .ims-audience-card:hover {
    border-color: rgba(0, 242, 255, 0.48);
    background: rgba(0, 242, 255, 0.05);
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.12),
      0 0 32px rgba(0, 242, 255, 0.14);
    transform: translateY(-2px);
  }

  .ims-audience-card:hover .ims-audience-card__icon {
    color: #00f2ff;
    box-shadow: 0 0 18px rgba(0, 242, 255, 0.35);
  }
}

.ims-audience-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #7ef0ff;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.2);
  transition:
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.ims-audience-card__label {
  font-size: clamp(0.98rem, 0.94rem + 0.15vw, 1.06rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
}

.ims-challenges__audience-kicker {
  margin: 0 0 clamp(18px, 2.4vw, 24px);
  text-align: center;
  font-size: clamp(0.98rem, 0.94rem + 0.15vw, 1.06rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.ims-challenges__audience-user-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 16px);
}

.ims-challenges__audience-user-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 20px);
  border-radius: 12px;
  border: 1px solid rgba(0, 242, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  font-size: clamp(0.92rem, 0.88rem + 0.12vw, 0.98rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.ims-challenges__audience-user-list li::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ee1ff;
  box-shadow: 0 0 10px rgba(94, 225, 255, 0.45);
}

.ims-challenges__audience-segments {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: clamp(32px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ims-audience-segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  align-items: stretch;
}

.ims-audience-segment-card {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 22px);
  height: 100%;
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 16px;
  border: 1px solid rgba(0, 242, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.04),
    0 0 28px rgba(0, 242, 255, 0.05);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s ease;
}

@media (hover: hover) {
  .ims-audience-segment-card:hover {
    border-color: rgba(0, 242, 255, 0.42);
    background: rgba(0, 242, 255, 0.04);
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.1),
      0 0 36px rgba(0, 242, 255, 0.12);
    transform: translateY(-2px);
  }
}

.ims-audience-segment-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ims-audience-segment-card__num {
  flex-shrink: 0;
  font-size: clamp(1.35rem, 1.2rem + 0.4vw, 1.65rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(94, 225, 255, 0.38);
}

.ims-audience-segment-card__title {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.96);
}

.ims-audience-segment-card__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ims-audience-segment-card__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(94, 225, 255, 0.82);
}

.ims-audience-segment-card__tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ims-audience-segment-card__tags li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 255, 0.2);
  background: rgba(0, 242, 255, 0.07);
  font-size: clamp(0.82rem, 0.8rem + 0.08vw, 0.88rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}

.ims-audience-segment-card__scenarios {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ims-audience-segment-card__scenarios li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(0.86rem, 0.83rem + 0.1vw, 0.92rem);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(203, 213, 245, 0.88);
}

.ims-audience-segment-card__scenarios li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  border-radius: 50%;
  background: #5ee1ff;
  box-shadow: 0 0 8px rgba(94, 225, 255, 0.4);
}

@media (max-width: 960px) {
  .ims-challenges__pain-grid {
    grid-template-columns: 1fr;
  }

  .ims-challenges__audience-user-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ims-audience-segment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ims-challenges__audience-user-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ims-challenges__audience-user-list li {
    min-height: 0;
    padding: 12px 10px;
    gap: 8px;
    font-size: 0.82rem;
  }
}

/* IMS — core capabilities (sidebar tabs + dashboard previews) */
.ims-modules {
  position: relative;
  padding: clamp(72px, 9vw, 104px) 0 clamp(80px, 10vw, 112px);
  color: rgba(226, 234, 255, 0.92);
  background: linear-gradient(180deg, #0c1e36 0%, #0a1628 50%, #070f1e 100%);
  border-top: 1px solid rgba(0, 242, 255, 0.05);
  overflow: hidden;
  isolation: isolate;
}

.ims-modules__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 20% 100%, rgba(0, 242, 255, 0.07) 0%, transparent 62%),
    radial-gradient(ellipse 45% 35% at 85% 15%, rgba(124, 77, 255, 0.07) 0%, transparent 60%);
}

.ims-modules__inner {
  position: relative;
  z-index: 1;
}

.ims-modules__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px);
  text-align: center;
}

.ims-modules__title {
  margin: 0 0 clamp(14px, 2vw, 18px);
  font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #ffffff;
}

.ims-modules__subtitle {
  margin: 0;
  font-size: clamp(0.96rem, 0.92rem + 0.2vw, 1.06rem);
  font-weight: 500;
  line-height: 1.72;
  color: rgba(203, 213, 245, 0.78);
}

.ims-modules__shell {
  display: grid;
  grid-template-columns: minmax(200px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

.ims-modules__tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.ims-modules__tab {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(203, 213, 245, 0.72);
  font-size: clamp(0.88rem, 0.84rem + 0.15vw, 0.96rem);
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  cursor: pointer;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.ims-modules__tab:hover {
  border-color: rgba(0, 242, 255, 0.28);
  background: rgba(0, 242, 255, 0.06);
  color: rgba(230, 245, 255, 0.92);
}

.ims-modules__tab.is-active {
  border-color: rgba(0, 242, 255, 0.48);
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.1),
    0 0 24px rgba(0, 242, 255, 0.12);
}

.ims-modules__panels {
  position: relative;
  min-height: 360px;
}

.ims-modules__panel {
  display: none;
}

.ims-modules__panel.is-active {
  display: block;
  animation: ims-module-fade-in 380ms ease both;
}

@keyframes ims-module-fade-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ims-modules__panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
  align-items: start;
}

.ims-modules__preview {
  order: 1;
  min-width: 0;
}

.ims-modules__copy {
  order: 2;
  min-width: 0;
  max-width: 62ch;
}

.ims-modules__panel-title {
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.96);
}

.ims-modules__panel-text {
  margin: 0;
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  font-weight: 500;
  line-height: 1.68;
  color: rgba(203, 213, 245, 0.76);
}

.ims-modules__browser {
  animation: none;
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.1),
    0 20px 56px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 242, 255, 0.08);
}

.ims-modules__dash {
  min-height: 280px;
}

.ims-modules__feed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ims-modules__feed {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.ims-modules__risk-stats,
.ims-modules__sim-stats {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 8px;
}

.ims-modules__sim-stats {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
  .ims-modules__shell {
    grid-template-columns: 1fr;
  }

  .ims-modules__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 8px;
  }

  .ims-modules__tab {
    width: 100%;
    white-space: normal;
    padding: 10px 16px;
  }
}

@media (max-width: 640px) {
  .ims-modules__feed-grid {
    grid-template-columns: 1fr;
  }

  .ims-modules__sim-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ims-modules__panel.is-active {
    animation: none;
  }
}

/* IMS — ROI stats */
.ims-roi {
  position: relative;
  padding: clamp(64px, 8vw, 92px) 0;
  color: rgba(226, 234, 255, 0.92);
  background:
    radial-gradient(ellipse 70% 50% at 50% -20%, rgba(0, 242, 255, 0.12), transparent 55%),
    linear-gradient(180deg, #071426 0%, #0c1e36 100%);
  border-top: 1px solid rgba(0, 242, 255, 0.08);
  border-bottom: 1px solid rgba(0, 45, 98, 0.35);
  overflow: hidden;
  isolation: isolate;
}

.ims-roi__ambient {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.ims-roi__inner {
  position: relative;
  z-index: 1;
}

.ims-roi__head {
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 48px);
  text-align: center;
}

.ims-roi__title {
  margin: 0;
  font-size: clamp(1.55rem, 1.1rem + 1.8vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.22;
  color: #ffffff;
}

.ims-roi__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.ims-roi-stat {
  position: relative;
  padding: clamp(24px, 2.8vw, 30px) clamp(18px, 2.2vw, 22px);
  border-radius: 16px;
  border: 1px solid rgba(0, 242, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  text-align: center;
  overflow: hidden;
}

.ims-roi-stat__glow {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 255, 0.22) 0%, transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.ims-roi-stat__value {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #7ef0ff;
  text-shadow: 0 0 28px rgba(0, 242, 255, 0.35);
}

.ims-roi-stat__value--text {
  font-size: clamp(1.45rem, 1rem + 1.4vw, 2rem);
  letter-spacing: -0.02em;
}

.ims-roi-stat__title {
  position: relative;
  z-index: 1;
  margin: clamp(14px, 2vw, 18px) 0 8px;
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  font-weight: 800;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
}

.ims-roi-stat__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(0.82rem, 0.78rem + 0.12vw, 0.88rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(203, 213, 245, 0.68);
}

@media (max-width: 960px) {
  .ims-roi__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .ims-roi__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ims-roi-stat {
    padding: 18px 12px;
  }

  .ims-roi-stat__value {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .ims-roi-stat__value--text {
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .ims-roi-stat__title {
    margin-top: 12px;
    font-size: 0.86rem;
  }

  .ims-roi-stat__desc {
    font-size: 0.76rem;
  }
}

/* IMS — mobile comfort tuning */
@media (max-width: 640px) {
  .hero--ims-lead {
    min-height: auto;
    padding-block: 72px 46px;
  }

  .ims-hero-grid {
    gap: 22px;
  }

  .ims-hero-eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .ims-hero-title {
    margin-bottom: 16px;
    font-size: clamp(1.72rem, 9vw, 2.35rem);
    line-height: 1.12;
  }

  .ims-hero-lede {
    margin-bottom: 22px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .ims-hero-actions {
    gap: 10px;
  }

  .ims-hero-cta {
    width: 100%;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .ims-challenges,
  .ims-modules,
  .ims-roi {
    padding-block: 48px 56px;
  }

  .ims-challenges__head,
  .ims-modules__head,
  .ims-roi__head {
    margin-bottom: 30px;
  }

  .ims-challenges__title,
  .ims-modules__title,
  .ims-roi__title {
    font-size: clamp(1.34rem, 7vw, 1.72rem);
    line-height: 1.24;
  }

  .ims-challenges__subtitle,
  .ims-modules__subtitle {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .ims-challenges__pain-grid {
    gap: 12px;
    margin-bottom: 38px;
  }

  .ims-pain-card,
  .ims-audience-segment-card {
    gap: 12px;
    padding: 18px;
    border-radius: 14px;
  }

  .ims-pain-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .ims-pain-card__title,
  .ims-audience-segment-card__title,
  .ims-modules__panel-title {
    font-size: 0.98rem;
    line-height: 1.32;
  }

  .ims-pain-card__text,
  .ims-audience-segment-card__scenarios li,
  .ims-modules__panel-text {
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .ims-challenges__audience {
    padding-top: 8px;
  }

  .ims-challenges__audience-title {
    margin-bottom: 18px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .ims-challenges__audience-segments {
    margin-top: 34px;
    padding-top: 28px;
  }

  .ims-audience-segment-grid {
    gap: 14px;
  }

  .ims-audience-segment-card__head {
    gap: 10px;
  }

  .ims-audience-segment-card__num {
    font-size: 1.22rem;
  }

  .ims-audience-segment-card__block {
    gap: 8px;
  }

  .ims-audience-segment-card__label {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .ims-audience-segment-card__tags {
    gap: 6px;
  }

  .ims-audience-segment-card__tags li {
    padding: 5px 9px;
    font-size: 0.78rem;
  }

  .ims-audience-segment-card__scenarios {
    gap: 6px;
  }

  .ims-modules__tabs {
    gap: 8px;
  }

  .ims-modules__tab {
    min-height: 54px;
    padding: 10px 12px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .ims-modules__panels {
    min-height: 0;
  }

  .ims-modules__panel-grid {
    gap: 18px;
  }

  .ims-modules__browser {
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.08),
      0 14px 36px rgba(0, 0, 0, 0.32);
  }

  .ims-modules__dash {
    min-height: 0;
  }

  .ims-roi__grid {
    gap: 10px;
  }

  .ims-roi-stat {
    border-radius: 14px;
  }
}

.hero--page.hero--page-cinematic.hero--wealth-bg .hero__background {
  background:
    linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 10, 30, 0.85)),
    url("../images/bg4.png") center / cover fixed no-repeat;
}

/* Wealth — hero (mockup layout + PSC portfolio preview) */
.hero--wealth-lead {
  min-height: clamp(560px, 78vh, 820px);
  padding-block: clamp(108px, 12vw, 148px) clamp(48px, 6vw, 72px);
}

.hero--wealth-lead .hero__background::after {
  opacity: 0.35;
}

.wealth-hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.wealth-hero-ambient::before,
.wealth-hero-ambient::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
}

.wealth-hero-ambient::before {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: 8%;
  right: 5%;
  background: rgba(0, 242, 255, 0.18);
}

.wealth-hero-ambient::after {
  width: min(320px, 42vw);
  height: min(320px, 42vw);
  bottom: 12%;
  left: 10%;
  background: rgba(56, 120, 255, 0.14);
}

.wealth-hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 44px);
}

.wealth-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.wealth-hero-copy {
  min-width: 0;
}

.wealth-hero-eyebrow {
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  font-size: clamp(0.68rem, 0.72rem + 0.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.wealth-hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  margin: 0 0 clamp(16px, 2.2vw, 22px);
  font-size: clamp(1.85rem, 1rem + 2.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: rgba(255, 255, 255, 0.98);
}

.wealth-hero-title__line {
  display: block;
}

.wealth-hero-title__accent {
  background: linear-gradient(120deg, #bae6fd 0%, #38bdf8 42%, #818cf8 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7dd3fc;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .wealth-hero-title__accent {
    color: transparent;
  }
}

.wealth-hero-lede {
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: min(52ch, 100%);
  font-size: clamp(0.96rem, 0.92rem + 0.22vw, 1.06rem);
  font-weight: 500;
  line-height: 1.68;
  color: rgba(203, 213, 245, 0.86);
}

.wealth-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.wealth-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.wealth-hero-cta:hover {
  transform: translateY(-1px);
}

.wealth-hero-cta--primary {
  background: linear-gradient(135deg, #38bdf8 0%, #2563eb 55%, #4f46e5 100%);
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(56, 189, 248, 0.28);
}

.wealth-hero-cta--primary:hover {
  box-shadow: 0 18px 44px rgba(56, 189, 248, 0.36);
}

.wealth-hero-cta--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.94);
}

.wealth-hero-cta--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
}

.wealth-hero-visual {
  min-width: 0;
}

.wealth-hero-stage {
  position: relative;
  width: 100%;
  max-width: min(580px, 100%);
  margin-inline: auto;
  padding-right: clamp(52px, 14%, 76px);
}

.wealth-hero-browser {
  width: 100%;
  animation: psc-float 5s ease-in-out infinite;
}

.wealth-hero-browser .psc-screen {
  min-height: 0;
}

.wealth-hero-browser .psc-dash {
  min-height: 0;
  gap: 10px;
}

.wealth-hero-dash {
  padding: clamp(10px, 1.5vw, 14px);
}

.wealth-hero-kpi__label {
  color: rgba(150, 185, 230, 0.65);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.wealth-hero-kpi__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.wealth-hero-kpi__value {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.92rem, 0.85rem + 0.4vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wealth-hero-kpi__change {
  font-size: 0.82rem;
  font-weight: 700;
}

.wealth-hero-dash-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 12px;
  align-items: start;
}

.wealth-hero-chart-panel {
  min-width: 0;
}

.wealth-hero-chart-head {
  margin-bottom: 6px;
}

.wealth-hero-line-chart {
  height: 72px;
  width: 100%;
}

.wealth-hero-alloc-panel {
  min-width: 0;
}

.wealth-hero-alloc-inner {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.wealth-hero-donut {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
}

.wealth-hero-legend {
  flex: 1 1 auto;
  min-width: 5.5rem;
  gap: 4px;
}

.wealth-hero-legend .psc-legend-item {
  font-size: 0.62rem;
  line-height: 1.45;
  white-space: nowrap;
}

.wealth-hero-satellites {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wealth-hero-card {
  min-height: 0;
  padding: 10px 12px;
  gap: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.wealth-hero-card .psc-holding-row {
  font-size: 0.72rem;
}

.wealth-hero-phone {
  position: absolute;
  right: 0;
  top: 18%;
  width: clamp(136px, 26%, 158px);
  z-index: 2;
}

.wealth-hero-phone__frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  height: auto;
  overflow: hidden;
  padding: 8px 7px 10px;
  border-radius: 22px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.97), rgba(8, 15, 29, 0.99));
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(0, 242, 255, 0.08);
}

.wealth-hero-phone__notch {
  flex: 0 0 auto;
  width: 38%;
  height: 4px;
  margin: 0 auto 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
}

.wealth-hero-phone .psc-dash.wealth-hero-phone__dash {
  flex: 1;
  min-height: 0;
  padding: 4px 5px 5px;
  gap: 3px;
  border-radius: 14px;
  overflow: hidden;
}

.wealth-hero-phone__topbar {
  padding-bottom: 4px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wealth-hero-phone__topbar .psc-dash__topbar-title {
  font-size: 0.54rem;
}

.wealth-hero-phone__chip {
  padding: 2px 6px;
  font-size: 0.52rem;
}

.wealth-hero-phone__kpi-label {
  color: rgba(150, 185, 230, 0.6);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1px;
}

.wealth-hero-phone__value {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.wealth-hero-phone__change {
  font-size: 0.52rem;
  font-weight: 700;
  margin-bottom: 1px;
}

.wealth-hero-phone__tabs {
  gap: 2px;
}

.wealth-hero-phone__tabs .psc-period-tab {
  padding: 2px 5px;
  font-size: 0.48rem;
}

.wealth-hero-phone__chart {
  height: 20px;
  width: 100%;
}

.wealth-hero-phone__alloc .psc-chart-title,
.wealth-hero-phone__section .psc-chart-title {
  margin-bottom: 2px;
  font-size: 0.48rem;
}

.wealth-hero-phone__alloc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-top: 1px;
}

.wealth-hero-phone__donut {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.wealth-hero-phone__legend {
  width: 100%;
}

.wealth-hero-phone__legend .psc-legend-dot {
  width: 5px;
  height: 5px;
}

.wealth-hero-phone__section {
  padding-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.wealth-hero-phone__row {
  font-size: 0.46rem;
  padding: 2px 0;
}

.wealth-hero-features {
  list-style: none;
  margin: 0;
  padding: clamp(16px, 2.2vw, 24px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wealth-hero-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  margin: 0;
}

.wealth-hero-feature__icon {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.35));
  color: #7dd3fc;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.wealth-hero-feature__title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
}

.wealth-hero-feature__text {
  margin: 0;
  grid-column: 2;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(203, 213, 245, 0.78);
}

.hero--wealth-lead .wealth-hero-eyebrow {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

.hero--wealth-lead .wealth-hero-title,
.hero--wealth-lead .wealth-hero-lede,
.hero--wealth-lead .wealth-hero-actions {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero--wealth-lead .wealth-hero-lede {
  animation-delay: 0.08s;
}

.hero--wealth-lead .wealth-hero-actions {
  animation-delay: 0.16s;
}

.hero--wealth-lead .wealth-hero-visual {
  opacity: 0;
  animation: hero-df-lead-in-left 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero--wealth-lead .wealth-hero-feature {
  opacity: 0;
  animation: hero-df-lead-in-left 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero--wealth-lead .wealth-hero-feature:nth-child(1) { animation-delay: 0.28s; }
.hero--wealth-lead .wealth-hero-feature:nth-child(2) { animation-delay: 0.34s; }
.hero--wealth-lead .wealth-hero-feature:nth-child(3) { animation-delay: 0.4s; }
.hero--wealth-lead .wealth-hero-feature:nth-child(4) { animation-delay: 0.46s; }

@media (max-width: 1080px) {
  .wealth-hero-grid {
    grid-template-columns: 1fr;
  }

  .wealth-hero-visual {
    max-width: min(560px, 100%);
    margin-inline: auto;
  }

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

@media (max-width: 720px) {
  .wealth-hero-visual {
    max-width: min(260px, 72%);
  }

  .wealth-hero-stage {
    padding-right: 0;
  }

  .wealth-hero-browser {
    display: none;
  }

  .wealth-hero-phone {
    position: static;
    width: 100%;
    margin: 6px auto 0;
  }

  .wealth-hero-phone__frame {
    aspect-ratio: 9 / 19.5;
  }

  .wealth-hero-dash-body {
    grid-template-columns: 1fr;
  }

  .wealth-hero-satellites {
    grid-template-columns: 1fr;
  }

  .wealth-hero-features {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--wealth-lead .wealth-hero-eyebrow,
  .hero--wealth-lead .wealth-hero-title,
  .hero--wealth-lead .wealth-hero-lede,
  .hero--wealth-lead .wealth-hero-actions,
  .hero--wealth-lead .wealth-hero-visual,
  .hero--wealth-lead .wealth-hero-feature {
    opacity: 1;
    animation: none;
  }

  .wealth-hero-browser {
    animation: none;
  }
}

.hero--page.hero--page-cinematic.hero--join-bg .hero__background {
  background:
    linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 10, 30, 0.85)),
    url("../images/bg5.png") center / cover fixed no-repeat;
}

.hero--page.hero--page-cinematic.hero--digital-finance-bg .hero__background {
  background:
    linear-gradient(rgba(0, 20, 50, 0.7), rgba(0, 10, 30, 0.85)),
    url("../images/bg9.png") center / cover fixed no-repeat;
}

/* Digital Finance — first hero: copy + feature strip */
.df-hero-split {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.8vw, 18px);
}

.df-hero-split__main {
  display: block;
}

.df-hero-split__copy {
  min-width: 0;
}

.df-hero-eyebrow {
  margin: 0 0 clamp(10px, 1.4vw, 14px);
  font-size: clamp(0.68rem, 0.72rem + 0.2vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--df-color-hero-eyebrow, #7dd3fc);
}

.df-hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  margin: 0 0 clamp(16px, 2.2vw, 22px);
  font-size: clamp(1.85rem, 1rem + 2.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: var(--df-color-hero-title, rgba(255, 255, 255, 0.98));
}

.df-hero-title__line {
  display: block;
}

.df-hero-title__line--1 {
  color: var(--df-color-hero-title, rgba(255, 255, 255, 0.98));
}

.df-hero-title__line--2 {
  line-height: 1.12;
}

.df-hero-title__prefix {
  display: inline;
  color: var(--df-color-hero-title, rgba(255, 255, 255, 0.98));
}

.df-hero-title__accent {
  display: inline;
  background: linear-gradient(120deg, #bae6fd 0%, #38bdf8 42%, #22d3ee 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #7dd3fc;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .df-hero-title__accent {
    color: transparent;
  }
}

.df-hero-lede {
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: min(52ch, 100%);
  font-size: clamp(0.96rem, 0.92rem + 0.22vw, 1.06rem);
  font-weight: 500;
  line-height: 1.68;
  color: var(--df-color-hero-lede, rgba(203, 213, 245, 0.86));
}

.df-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.df-hero-features {
  list-style: none;
  margin: 0;
  padding: clamp(10px, 1.6vw, 16px) 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.df-hero-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  margin: 0;
  opacity: 0;
  animation: hero-df-lead-in-left 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.df-hero-feature:nth-child(1) {
  animation-delay: 0.32s;
}

.df-hero-feature:nth-child(2) {
  animation-delay: 0.4s;
}

.df-hero-feature:nth-child(3) {
  animation-delay: 0.48s;
}

.df-hero-feature__icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.35));
  color: #7dd3fc;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.df-hero-feature__title {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--df-color-hero-feature-title, rgba(255, 255, 255, 0.96));
}

.df-hero-feature__text {
  margin: 0;
  grid-column: 2;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--df-color-hero-feature-text, rgba(203, 213, 245, 0.78));
}

.hero--digital-finance-lead .df-hero-eyebrow {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
}

.hero--digital-finance-lead .df-hero-title {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero--digital-finance-lead .df-hero-lede {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}

.hero--digital-finance-lead .df-hero-actions {
  opacity: 0;
  animation: hero-df-lead-in-left 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.digital-finance-lead-card {
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.digital-finance-lead-card__title {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
}

.digital-finance-lead-card__text {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(226, 234, 255, 0.82);
}

/* Digital finance #modules: services header + 3-column showcase (mockup layout) */
.df-modules-section {
  position: relative;
  z-index: 0;
  overflow: clip;
  background:
    radial-gradient(circle at 12% 8%, rgba(31, 111, 208, 0.07), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(31, 111, 208, 0.06), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 55%, #f7fafc 100%);
}

.df-modules-section__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle, rgba(31, 111, 208, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 55%);
}

.df-modules-section .container {
  position: relative;
  z-index: 1;
}

#modules.section {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(72px, 8vw, 96px);
}

.df-modules-services-header {
  text-align: center;
  max-width: min(720px, 100%);
  margin-inline: auto;
}

.df-modules-services-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 20px);
  margin: 0 0 clamp(12px, 1.8vw, 16px);
}

.df-modules-services-eyebrow__line {
  flex: 0 0 clamp(40px, 10vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 111, 208, 0.55), var(--blue-500));
  border-radius: 1px;
}

.df-modules-services-eyebrow__line:last-of-type {
  background: linear-gradient(90deg, var(--blue-500), rgba(31, 111, 208, 0.55), transparent);
}

.df-modules-services-eyebrow__text {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--df-color-eyebrow, var(--blue-600));
  white-space: nowrap;
}

.df-modules-services-title {
  margin: 0 0 clamp(14px, 2vw, 20px);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--df-color-heading, var(--text-heading));
  max-width: none;
}

.df-modules-services-lede {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-body);
}

.df-modules-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1.12fr) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0px, 0.5vw, 8px);
  row-gap: clamp(20px, 4vw, 28px);
  margin-top: clamp(36px, 4.5vw, 52px);
  margin-bottom: 0;
  padding-inline: 0;
  perspective: 1400px;
}

.df-modules-showcase__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-block: clamp(8px, 1.5vw, 16px) 0;
}

.df-modules-showcase__image {
  display: block;
  width: min(340px, 92%);
  max-width: 100%;
  height: auto;
  border-radius: clamp(22px, 3vw, 32px);
  box-shadow:
    0 28px 56px rgba(0, 45, 98, 0.14),
    0 0 0 1px rgba(0, 45, 98, 0.06);
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3 / 4;
  transform: translateZ(0);
  filter: contrast(1.04) saturate(1.04);
}

.df-modules-showcase__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(340px, 100%);
  margin-inline: 0;
  padding: clamp(22px, 2.8vw, 28px) clamp(20px, 2.5vw, 26px);
  border-radius: clamp(18px, 2.4vw, 24px);
  background: #fff;
  border: 1px solid rgba(31, 111, 208, 0.12);
  box-shadow:
    0 20px 48px rgba(31, 111, 208, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset,
    0 0 40px rgba(56, 163, 255, 0.12);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease;
  transform-style: preserve-3d;
}

.df-modules-showcase__card--left {
  justify-self: end;
  transform: rotateY(11deg) translateX(clamp(4px, 1.2vw, 18px));
  transform-origin: right center;
}

.df-modules-showcase__card--right {
  justify-self: start;
  transform: rotateY(-11deg) translateX(calc(-1 * clamp(4px, 1.2vw, 18px)));
  transform-origin: left center;
}

@media (hover: hover) {
  .df-modules-showcase__card:hover {
    z-index: 4;
    box-shadow:
      0 26px 56px rgba(31, 111, 208, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.95) inset,
      0 0 48px rgba(56, 163, 255, 0.16);
  }

  .df-modules-showcase__card--left:hover {
    transform: rotateY(7deg) translateX(clamp(4px, 1.2vw, 18px)) translateY(-4px);
  }

  .df-modules-showcase__card--right:hover {
    transform: rotateY(-7deg) translateX(calc(-1 * clamp(4px, 1.2vw, 18px))) translateY(-4px);
  }
}

.df-modules-showcase__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: clamp(14px, 2vw, 18px);
  border-radius: 12px;
  color: var(--blue-600);
  background: linear-gradient(145deg, rgba(31, 111, 208, 0.12), rgba(31, 111, 208, 0.06));
  border: 1px solid rgba(31, 111, 208, 0.14);
}

.df-modules-showcase__card-title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--df-color-heading, var(--text-heading));
}

.df-modules-showcase__card-rule {
  width: 48px;
  height: 4px;
  margin: clamp(12px, 1.8vw, 16px) 0 clamp(14px, 2vw, 18px);
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
  border-radius: 2px;
}

.df-modules-showcase__card-text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-body);
  text-align: start;
}

.df-modules-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(18px, 2.4vw, 22px);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-600);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.df-modules-showcase__cta:hover {
  color: var(--blue-500);
  gap: 14px;
}

.df-modules-showcase__cta-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(31, 111, 208, 0.12);
  color: var(--blue-600);
  border: 1px solid rgba(31, 111, 208, 0.18);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.df-modules-showcase__cta:hover .df-modules-showcase__cta-icon {
  background: rgba(31, 111, 208, 0.18);
  transform: translateX(2px);
}

@media (max-width: 960px) {
  .df-modules-showcase {
    grid-template-columns: 1fr;
    margin-top: clamp(28px, 5vw, 40px);
    gap: clamp(20px, 4vw, 28px);
  }

  .df-modules-showcase__visual {
    display: none;
  }

  .df-modules-showcase__card--left {
    order: 1;
    justify-self: center;
    transform: none;
    transform-origin: center;
  }

  .df-modules-showcase__card--right {
    order: 2;
    justify-self: center;
    transform: none;
    transform-origin: center;
  }

  .df-modules-showcase__card {
    max-width: min(100%, 440px);
    margin-inline: auto;
  }

  .df-modules-showcase__image {
    width: min(280px, 72vw);
    margin-inline: auto;
  }

  @media (hover: hover) {
    .df-modules-showcase__card--left:hover,
    .df-modules-showcase__card--right:hover {
      transform: translateY(-3px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .df-modules-showcase__card {
    transition: none;
  }

  .df-modules-showcase__cta,
  .df-modules-showcase__cta-icon {
    transition: none;
  }

  @media (hover: hover) {
    .df-modules-showcase__card--left:hover,
    .df-modules-showcase__card--right:hover {
      transform: none;
    }

    .df-modules-showcase__cta:hover .df-modules-showcase__cta-icon {
      transform: none;
    }
  }
}

@keyframes hero-df-lead-in-left {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero--page {
  padding: 72px 0 58px;
}

.hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(31, 111, 208, 0.34), transparent 28%),
    linear-gradient(135deg, rgba(0, 45, 98, 0.98), rgba(0, 45, 98, 0.92) 55%, rgba(0, 86, 179, 0.86));
}

.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 90%);
}

.hero__grid,
.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

.hero__grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8ed8ff;
  box-shadow: 0 0 14px rgba(142, 216, 255, 0.9);
}

.hero__title,
.page-hero__title {
  color: var(--white);
}

.hero__title {
  max-width: 9.5ch;
  font-size: clamp(2.4rem, 4.4vw, 4.7rem);
}

.page-hero__title {
  font-size: clamp(2.1rem, 3.8vw, 3.8rem);
}

.hero__body,
.page-hero__body {
  margin-top: 20px;
  max-width: 62ch;
  color: var(--text-light);
  font-size: 1.08rem;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

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

.button--primary {
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 14px 30px rgba(0, 31, 63, 0.18);
}

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

.button--solid {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 86, 179, 0.24);
}

.button--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy-900);
}

.hero-chart {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 31, 63, 0.22);
  backdrop-filter: blur(16px);
}

.hero-chart__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chart__tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(142, 216, 255, 0.18);
  color: #d8f4ff;
  font-size: 0.74rem;
}

.hero-chart svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.hero-chart__grid line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.hero-chart__area {
  fill: url(#hero-chart-fill);
  opacity: 0.95;
  animation: chart-area 4s ease-in-out infinite;
}

.hero-chart__line {
  fill: none;
  stroke: #8ed8ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 780;
  stroke-dashoffset: 780;
  animation:
    chart-draw 2.4s ease forwards,
    chart-glow 3s ease-in-out 2.4s infinite;
}

.hero-chart__point {
  fill: #ffffff;
  stroke: #8ed8ff;
  stroke-width: 4;
}

.hero-chart__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hero-chart__metric {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-chart__metric strong {
  display: block;
  color: var(--white);
  font-size: 1.1rem;
}

.hero-chart__metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

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

.hero-profile-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 31, 63, 0.14);
  backdrop-filter: blur(14px);
}

.hero-profile-card strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
}

.hero-profile-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-home__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 140px 0 72px;
}

@keyframes heroHomeReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero--home-institutional .hero-home__content > * {
  animation: heroHomeReveal 1.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero--home-institutional .hero-home__content > *:nth-child(1) {
  animation-delay: 0.12s;
}

.hero--home-institutional .hero-home__content > *:nth-child(2) {
  animation-delay: 0.38s;
}

.hero--home-institutional .hero-home__content > *:nth-child(3) {
  animation-delay: 0.64s;
}

.hero--home-institutional .hero-home__content > *:nth-child(4) {
  animation-delay: 0.9s;
}

.hero--home-institutional .hero-home__stats {
  animation: heroHomeReveal 1.75s cubic-bezier(0.22, 1, 0.36, 1) 1.05s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero--home-institutional .hero-home__content > *,
  .hero--home-institutional .hero-home__stats {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hero-home__content {
  width: 100%;
  max-width: min(980px, 100%);
  text-align: left;
}

.hero-home__eyebrow {
  justify-content: center;
}

.hero-home__title {
  max-width: none;
  margin: 0;
  font-size: 2.625rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-home__body {
  max-width: min(62ch, 100%);
  margin: 24px 0 0;
  text-align: left;
}

.hero-home__actions {
  justify-content: flex-start;
  margin-top: 32px;
}

.hero-home__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding-top: 72px;
}

.hero-home__stat-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 31, 63, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
}

.hero-home__stat-card strong {
  display: block;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 800;
}

.hero-home__stat-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.hero-home__stats.hero-stats--pending .js-hero-counter {
  opacity: 0;
}

.hero-home__stat-card .js-hero-counter {
  transition: opacity 0.2s ease;
}

.hero-home__stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-home__stat-card span.hero-home__stat-label--long {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
}

.solutions-visual-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    linear-gradient(rgba(0, 20, 50, 0.8), rgba(0, 10, 30, 0.9)),
    url("../images/Central.jpg") center / cover fixed no-repeat;
}

.solutions-visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.solutions-visual-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 20, 50, 0.8), rgba(0, 10, 30, 0.9));
  pointer-events: none;
}

.solutions-visual-section__inner {
  position: relative;
  z-index: 1;
}

.solutions-visual-section__intro {
  max-width: 780px;
}

.solutions-visual-section__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #00f2ff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solutions-visual-section__heading {
  max-width: 18ch;
  color: var(--white);
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
}

.solutions-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.solutions-visual-card {
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.solutions-visual-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 242, 255, 0.28);
  border-radius: 18px;
  color: #00f2ff;
  background: rgba(0, 242, 255, 0.08);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.08),
    0 0 18px rgba(0, 242, 255, 0.32);
}

.solutions-visual-card__title {
  margin-top: 22px;
  color: var(--white);
  font-size: 1.18rem;
}

.solutions-visual-card__body {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.8;
}

.solutions-visual-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #00f2ff;
  font-size: 0.95rem;
  font-weight: 800;
}

.solutions-visual-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
}

.solutions-visual-card__links .solutions-visual-card__link {
  margin-top: 0;
}

.solutions-visual-card__link:hover {
  color: #7cf8ff;
}

.partners-section {
  padding: 80px 0;
  background: #ffffff;
}

.partners-section__inner {
  display: grid;
  gap: 24px;
}

.partners-section__intro {
  text-align: center;
}

.partners-section__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-section__heading {
  max-width: 100%;
  margin: 0 auto;
  color: var(--text-heading);
  font-size: clamp(2rem, 2.8vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
}

.partners-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.partners-grid__logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.partners-grid__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-5px);
}

/* Home: Company timeline — starfield + vertical data beams */
#company-timeline {
  scroll-margin-top: 100px;
}

.company-timeline-section.company-timeline-section--cosmic {
  position: relative;
  padding: clamp(48px, 6vw, 88px) 0 clamp(28px, 4vw, 48px);
  overflow: hidden;
  color: #dbe3ef;
  background-color: #050c18;
  border-top: none;
  border-bottom: none;
}

.company-timeline-section__cosmic-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 14, 28, 0.78) 0%, rgba(8, 20, 40, 0.68) 48%, rgba(4, 10, 22, 0.82) 100%),
    url("../images/Central.jpg") center / cover fixed no-repeat;
}

.company-timeline-section__stars {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    radial-gradient(1px 1px at 7% 11%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 18% 24%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 31% 8%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 44% 19%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 56% 12%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 71% 22%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 84% 9%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1px 1px at 92% 28%, rgba(255, 255, 255, 0.32), transparent),
    radial-gradient(1px 1px at 12% 42%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 27% 55%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 63% 48%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 78% 62%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 48% 72%, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(1px 1px at 88% 78%, rgba(255, 255, 255, 0.15), transparent);
}

.company-timeline-section__inner {
  position: relative;
  z-index: 1;
}

.company-timeline-section__intro {
  max-width: min(640px, 100%);
  margin-bottom: clamp(8px, 2vw, 20px);
}

.company-timeline-section--cosmic .section__eyebrow.company-timeline-section__eyebrow,
.company-timeline-section--cosmic .company-timeline-section__eyebrow {
  color: rgba(248, 250, 252, 0.92);
  font-size: clamp(0.8rem, 0.95vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.company-timeline-section--cosmic .company-timeline-section__heading {
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 3.15vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #f8fafc;
  text-shadow: 0 0 42px rgba(56, 189, 248, 0.12);
}

.company-timeline-section--cosmic .company-timeline-section__lede {
  margin: 0;
  max-width: 48ch;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.58;
  font-weight: 500;
  color: rgba(241, 245, 249, 0.88);
}

.company-timeline-section--serpentine .company-timeline-section__intro--serpentine {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(20px, 3vw, 36px);
  text-align: center;
}

.company-timeline-section--serpentine .company-timeline-section__lede--serpentine {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.journey-serpentine {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 24px) clamp(6px, 1.6vw, 18px) clamp(36px, 5vw, 62px);
  min-height: auto;
}

.journey-serpentine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(114, 231, 255, 0.2) 0%, rgba(69, 203, 255, 0.95) 45%, rgba(114, 231, 255, 0.2) 100%);
  box-shadow:
    0 0 0 1px rgba(120, 225, 255, 0.28),
    0 0 18px rgba(73, 202, 255, 0.9),
    0 0 42px rgba(73, 202, 255, 0.55);
  z-index: 0;
}

.journey-serpentine__ribbon {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: min(72%, 420px);
  height: 100%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
}

.company-timeline.journey-serpentine__list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.company-timeline-section--motion:not(.company-timeline-section--in-view) .company-timeline.journey-serpentine__list .company-timeline__row {
  opacity: 0;
}

.company-timeline-section--motion:not(.company-timeline-section--in-view) .journey-serpentine__step--left .journey-serpentine__copy {
  opacity: 0;
  transform: translateX(-56px);
}

.company-timeline-section--motion:not(.company-timeline-section--in-view) .journey-serpentine__step--right .journey-serpentine__copy {
  opacity: 0;
  transform: translateX(56px);
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row {
  opacity: 1;
  transform: none;
}

.company-timeline-section--motion .journey-serpentine__copy {
  transition:
    opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.company-timeline-section--motion.company-timeline-section--in-view .journey-serpentine__copy {
  opacity: 1;
  transform: translateX(0);
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row:nth-child(1) {
  transition-delay: 0ms;
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row:nth-child(2) {
  transition-delay: 45ms;
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row:nth-child(3) {
  transition-delay: 90ms;
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row:nth-child(4) {
  transition-delay: 135ms;
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row:nth-child(5) {
  transition-delay: 180ms;
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row:nth-child(6) {
  transition-delay: 225ms;
}

.company-timeline-section--motion.company-timeline-section--in-view .company-timeline.journey-serpentine__list .company-timeline__row:nth-child(7) {
  transition-delay: 270ms;
}

.company-timeline.journey-serpentine__list .company-timeline__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 96px minmax(260px, 1fr);
  align-items: start;
  gap: 0 clamp(8px, 1.8vw, 16px);
  min-height: clamp(140px, 16vw, 180px);
  margin: 0;
  padding: clamp(14px, 1.6vw, 20px) 0;
}

.journey-serpentine__step--left .journey-serpentine__copy {
  grid-column: 1;
  text-align: left;
  margin-right: clamp(10px, 1.8vw, 24px);
}

.journey-serpentine__step--left .journey-serpentine__node-wrap {
  grid-column: 2;
  justify-self: center;
}

.journey-serpentine__step--right .journey-serpentine__node-wrap {
  grid-column: 2;
  justify-self: center;
}

.journey-serpentine__step--right .journey-serpentine__copy {
  grid-column: 3;
  text-align: left;
  margin-left: clamp(10px, 1.8vw, 24px);
}

.journey-serpentine__copy {
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 14px;
  border: 1px solid rgba(194, 205, 219, 0.72);
  background: rgba(250, 252, 255, 0.97);
  box-shadow:
    0 16px 28px rgba(3, 10, 24, 0.36),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  position: relative;
}

.journey-serpentine__step--left .journey-serpentine__copy::after,
.journey-serpentine__step--right .journey-serpentine__copy::after {
  content: "";
  position: absolute;
  top: 44px;
  width: clamp(20px, 2vw, 28px);
  height: 2px;
  background: linear-gradient(90deg, rgba(145, 167, 189, 0.32), rgba(88, 173, 255, 0.78));
}

.journey-serpentine__step--left .journey-serpentine__copy::after {
  right: calc(clamp(20px, 3.8vw, 34px) * -1);
}

.journey-serpentine__step--right .journey-serpentine__copy::after {
  left: calc(clamp(20px, 3.8vw, 34px) * -1);
}

.journey-serpentine__headline {
  margin: 0 0 8px;
}

.journey-serpentine__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: clamp(0.74rem, 0.92vw, 0.82rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #0f4568;
  background: linear-gradient(180deg, rgba(196, 238, 255, 0.98), rgba(177, 229, 255, 0.96));
  border: 1px solid rgba(98, 178, 229, 0.75);
}

.journey-serpentine__title {
  display: block;
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: #15263d;
}

.journey-serpentine__desc {
  margin: 0;
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  color: #354a62;
}

.journey-serpentine__link {
  color: #0ea5e9;
  font-weight: 600;
  text-decoration: none;
}

.journey-serpentine__link:hover {
  text-decoration: underline;
}

.journey-serpentine__node-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding-top: 0;
}

.journey-serpentine__node {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 3px solid #f1fbff;
  background: radial-gradient(circle at 35% 30%, #8de9ff 0%, #3cb8f7 72%, #2190de 100%);
  color: transparent;
  box-shadow:
    0 0 0 1px rgba(122, 210, 255, 0.38),
    0 0 15px rgba(74, 197, 255, 0.95);
}

.journey-serpentine__node svg {
  display: none;
}

.journey-serpentine__step--1 {
  --step-color: #2563eb;
}

.journey-serpentine__step--2 {
  --step-color: #0d9488;
}

.journey-serpentine__step--3 {
  --step-color: #16a34a;
}

.journey-serpentine__step--4 {
  --step-color: #9333ea;
}

.journey-serpentine__step--5 {
  --step-color: #ea580c;
}

.journey-serpentine__step--6 {
  --step-color: #db2777;
}

.journey-serpentine__step--7 {
  --step-color: #0ea5e9;
}

.company-timeline-section__purpose {
  position: relative;
  z-index: 1;
  padding: clamp(8px, 2vw, 20px) 16px 0;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.company-timeline-section__purpose-eyebrow {
  margin: 0 0 12px;
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(186, 198, 214, 0.95);
}

.company-timeline-section__purpose-heading {
  margin: 0;
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.022em;
  color: #f8fafc;
  text-shadow: 0 0 32px rgba(56, 189, 248, 0.1);
}

.company-timeline-section__purpose-heading--gradient {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  background-image: linear-gradient(
    90deg,
    #22d3ee 0%,
    #38bdf8 18%,
    #818cf8 42%,
    #c084fc 68%,
    #f472b6 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 28px rgba(56, 189, 248, 0.2));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .company-timeline-section__purpose-heading--gradient {
    color: #f1f5f9;
    -webkit-text-fill-color: unset;
    filter: none;
  }
}

html:lang(en) .company-timeline-section--cosmic .company-timeline-section__heading {
  font-size: clamp(1.68rem, 3vw, 2.55rem);
  line-height: 1.1;
}

html:lang(en) .company-timeline-section--cosmic .company-timeline-section__lede {
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.55;
  max-width: 52ch;
}

html:lang(en) .company-timeline-section--cosmic .journey-serpentine__title {
  font-size: clamp(0.84rem, 0.95vw, 0.95rem);
}

html:lang(en) .company-timeline-section--cosmic .journey-serpentine__desc {
  font-size: clamp(0.76rem, 0.88vw, 0.86rem);
  line-height: 1.5;
  hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 720px) {
  .company-timeline-section--motion:not(.company-timeline-section--in-view) .journey-serpentine__step--left .journey-serpentine__copy,
  .company-timeline-section--motion:not(.company-timeline-section--in-view) .journey-serpentine__step--right .journey-serpentine__copy {
    transform: translateX(0) translateY(26px);
  }

  .journey-serpentine::before {
    left: 24px;
    transform: none;
  }

  .company-timeline.journey-serpentine__list .company-timeline__row {
    grid-template-columns: minmax(52px, 64px) 1fr;
    gap: 12px;
    min-height: 0;
  }

  .journey-serpentine__step--left .journey-serpentine__copy,
  .journey-serpentine__step--right .journey-serpentine__copy {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    padding: clamp(18px, 4.2vw, 24px) clamp(18px, 5vw, 26px);
  }

  .journey-serpentine__step--left .journey-serpentine__node-wrap,
  .journey-serpentine__step--right .journey-serpentine__node-wrap {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    padding-top: 16px;
  }

  .journey-serpentine__step--right .journey-serpentine__node-wrap {
    justify-self: center;
  }

  .journey-serpentine__year {
    margin-left: auto;
    margin-right: auto;
  }

  .journey-serpentine__step--left .journey-serpentine__copy::after,
  .journey-serpentine__step--right .journey-serpentine__copy::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .company-timeline-section--cosmic .company-timeline-section__intro {
    margin-bottom: 4px;
  }
}

/* Home: ISO/IEC 27001 compliance (Section 5) */
#section-5-compliance {
  scroll-margin-top: 100px;
}

.compliance-section {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0;
  overflow: hidden;
  color: #94a3b8;
  background:
    linear-gradient(rgba(0, 20, 50, 0.8), rgba(0, 10, 30, 0.9)),
    url("../images/Central.jpg") center / cover fixed no-repeat;
}

.compliance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.compliance-section__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(rgba(0, 20, 50, 0.8), rgba(0, 10, 30, 0.9));
}

.compliance-section__container {
  position: relative;
  z-index: 1;
}

.compliance-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

.compliance-section__visual {
  display: flex;
  justify-content: center;
}

.compliance-section__visual-inner {
  position: relative;
  width: 100%;
  max-width: 360px;
  min-height: 200px;
}

.compliance-section__blueprint {
  position: absolute;
  inset: -12px;
  border-radius: 16px;
  background-color: rgba(0, 242, 255, 0.02);
  background-image:
    linear-gradient(rgba(0, 242, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, #000 35%, transparent 100%);
  pointer-events: none;
}

.compliance-section__image-wrap {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 255, 0.4);
  box-shadow:
    0 0 30px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(0, 242, 255, 0.2);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s ease;
}

.compliance-section__image-wrap:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 36px rgba(0, 0, 0, 0.88),
    0 0 28px rgba(0, 242, 255, 0.48),
    0 0 42px rgba(0, 242, 255, 0.12);
}

.compliance-section__cert-image {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.compliance-section__badge-label {
  margin: 0 0 12px;
  font-family: ui-monospace, "Cascadia Code", "SF Mono", Consolas, "Roboto Mono", monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00f2ff;
}

.compliance-section__heading {
  margin: 0 0 18px;
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
}

.compliance-section__desc {
  margin: 0 0 24px;
  max-width: 600px;
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.8;
  color: #94a3b8;
}

.compliance-section__cia {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Inter, "Noto Sans TC", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.95);
}

.compliance-section__cia-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.compliance-section__cia-icon {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.95;
}

.compliance-section__cia-sep {
  color: rgba(148, 163, 184, 0.35);
  font-weight: 400;
  padding: 0 6px;
  user-select: none;
}

@media (prefers-reduced-motion: reduce) {
  .compliance-section__image-wrap {
    transition: none;
  }

  .compliance-section__image-wrap:hover {
    transform: none;
  }

  .compliance-section {
    background-attachment: scroll, scroll;
  }

  .compliance-section::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

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

  .compliance-section__visual {
    order: -1;
  }
}

.section {
  padding: 84px 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(238, 243, 249, 0.9));
}

.section__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section__heading {
  max-width: 16ch;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section__heading--wide {
  max-width: 24ch;
}

.section__heading--fintech-ecosystem {
  max-width: min(22ch, 100%);
  color: var(--white);
}

.fintech-ecosystem__hero .section__heading--fintech-ecosystem {
  max-width: none;
}

#solutions.section--fintech-ecosystem {
  scroll-margin-top: 120px;
}

.section--fintech-ecosystem {
  position: relative;
  z-index: 0;
  overflow-x: clip;
  overflow-y: visible;
  padding: 96px 0;
  background-color: #f4f7fb;
  background-image:
    linear-gradient(
      165deg,
      rgba(9, 22, 52, 0.8) 0%,
      rgba(5, 18, 48, 0.78) 42%,
      rgba(8, 22, 52, 0.84) 100%
    ),
    url("../images/bg2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: none;
  border-bottom: none;
}

.section--fintech-ecosystem__ambient {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(0, 242, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 60%, rgba(99, 102, 241, 0.12), transparent 50%),
    radial-gradient(ellipse 45% 35% at 0% 70%, rgba(0, 86, 179, 0.1), transparent 50%);
  opacity: 0.55;
}

.section--fintech-ecosystem__particles {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.section--fintech-ecosystem__particles::before,
.section--fintech-ecosystem__particles::after {
  content: "";
  position: absolute;
  inset: -15%;
  will-change: transform;
}

.section--fintech-ecosystem__particles::before {
  background-image: radial-gradient(rgba(0, 242, 255, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.55;
  mask-image: linear-gradient(90deg, black 0%, black 58%, transparent 88%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 58%, transparent 88%);
  animation: fintech-eco-particles-drift-a 42s linear infinite;
}

.section--fintech-ecosystem__particles::after {
  background-image: radial-gradient(rgba(147, 197, 253, 0.35) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.4;
  mask-image: linear-gradient(90deg, black 0%, black 52%, transparent 82%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, black 52%, transparent 82%);
  animation: fintech-eco-particles-drift-b 56s linear infinite reverse;
}

.section--fintech-ecosystem__stardust {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.14;
  /* Longer fade-in avoids a sharp horizontal “seam” where the mask ramps up */
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.2) 42%,
    rgba(0, 0, 0, 0.55) 62%,
    rgba(0, 0, 0, 0.95) 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 18%,
    rgba(0, 0, 0, 0.2) 42%,
    rgba(0, 0, 0, 0.55) 62%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

.section--fintech-ecosystem__grid-floor {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(46%, 560px);
  z-index: 0;
  /* Offset pattern so the first horizontal grid line does not sit on the mask edge */
  background:
    linear-gradient(rgba(0, 242, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: 0 8px;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 14%,
    rgba(0, 0, 0, 0.2) 32%,
    rgba(0, 0, 0, 0.55) 48%,
    black 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 14%,
    rgba(0, 0, 0, 0.2) 32%,
    rgba(0, 0, 0, 0.55) 48%,
    black 100%
  );
  opacity: 0.55;
}

@keyframes fintech-eco-particles-drift-a {
  to {
    transform: translate3d(-72px, 48px, 0);
  }
}

@keyframes fintech-eco-particles-drift-b {
  to {
    transform: translate3d(56px, -40px, 0);
  }
}

.section--fintech-ecosystem__inner {
  position: relative;
  z-index: 1;
}

.section--fintech-ecosystem .section__eyebrow.fintech-ecosystem__eyebrow {
  color: #00f2ff;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
}

.fintech-ecosystem__intro {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.fintech-ecosystem__hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
  width: 100%;
  max-width: min(1240px, 100%);
  margin-inline: auto;
}

.fintech-ecosystem__intro-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.fintech-ecosystem__hero .fintech-ecosystem__intro {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.section--fintech-ecosystem .fintech-ecosystem__hero .fintech-ecosystem__intro .section__heading--fintech-ecosystem {
  margin-inline: 0;
  max-width: none;
  font-size: clamp(2.12rem, 3.25vw, 3.2rem);
  line-height: 1.18;
}

.fintech-ecosystem__heading-lead,
.fintech-ecosystem__title-gradient {
  display: inline;
  font: inherit;
  letter-spacing: inherit;
}

.fintech-ecosystem__title-gradient {
  background: linear-gradient(90deg, #38bdf8 0%, #00f2ff 40%, #5855eb 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.fintech-ecosystem__hero .fintech-ecosystem__lede {
  margin-top: 18px;
  margin-inline: 0;
  max-width: 48ch;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.72;
}

.fintech-ecosystem__lede {
  margin-top: 16px;
  margin-inline: auto;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.14rem;
  line-height: 1.72;
}

.fintech-ecosystem__diagram-col {
  min-width: 0;
  width: 100%;
  justify-self: center;
}

.fintech-ecosystem__hero .fintech-ecosystem__diagram-col {
  margin-top: clamp(14px, 2.5vw, 38px);
}

.fintech-ecosystem__diagram-col .fintech-ecosystem {
  margin-top: 0;
}

.fintech-ecosystem__diagram-col .fintech-ecosystem__layout--centered.fintech-ecosystem__layout--hero {
  margin-top: 0;
  margin-bottom: clamp(8px, 1.5vw, 20px);
  margin-inline: 0;
  max-width: none;
  width: 100%;
  padding-inline: 0;
  justify-content: center;
}

.fintech-ecosystem {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .fintech-ecosystem__hero {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
    align-items: stretch;
  }

  .fintech-ecosystem__hero .fintech-ecosystem__diagram-col {
    margin-top: clamp(6px, 1.4vw, 18px);
  }

  .fintech-ecosystem__diagram-col {
    max-width: min(560px, 100%);
    margin-inline: auto;
    align-self: center;
    justify-self: center;
  }

  .fintech-ecosystem__diagram-col .fintech-ecosystem__layout--centered.fintech-ecosystem__layout--hero {
    margin-inline: auto;
    justify-content: center;
    padding-inline: clamp(12px, 3vw, 20px);
  }

  .fintech-ecosystem__capacity--stacked {
    max-width: none;
  }
}

.fintech-ecosystem__layout--centered {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: min(1080px, 98vw);
  margin-inline: auto;
  margin-top: clamp(18px, 2.5vw, 28px);
  margin-bottom: clamp(14px, 2.2vw, 28px);
  padding-inline: clamp(8px, 1.8vw, 14px);
  overflow: visible;
}

.fintech-ecosystem__orbit-arm {
  --fe-node-r: 84px;
  --fe-orbit-inline-gap: clamp(6px, 1vw, 10px);
  --fe-orbit-body-outset-west: clamp(28px, 4.8vw, 56px);
  --fe-orbit-body-outset-east: clamp(28px, 4.8vw, 56px);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  margin: 0;
  transform: rotate(var(--fe-angle)) translateY(calc(-1 * var(--fe-orbit-r)));
  overflow: visible;
  pointer-events: none;
}

.fintech-ecosystem__orbit-arm-spin-cancel {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  transform-origin: center center;
}

.section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__orbit-arm-spin-cancel {
  animation: fintech-eco-orbit-counter var(--fe-orbit-spin-duration, 120s) linear infinite;
}

.fintech-ecosystem__orbit-arm-upright {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: rotate(calc(-1 * var(--fe-angle)));
  transform-origin: center center;
}

.fintech-ecosystem__orbit-arm-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.fintech-ecosystem__orbit-arm-inner .fintech-ecosystem__panel-link {
  pointer-events: auto;
}

.fintech-ecosystem__orbit-icon-col {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 168px;
  height: 168px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fintech-ecosystem__orbit-icon-col .fintech-ecosystem__pillar-heading {
  margin: 0;
}

button.fintech-ecosystem__orbit-icon-trigger .fintech-ecosystem__orbit-title {
  position: static;
  z-index: 1;
  margin: 0;
  padding: 0 4px;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}

button.fintech-ecosystem__orbit-icon-trigger .fintech-ecosystem__pillar-heading {
  margin: 0;
  width: 100%;
  font-size: 0.92rem;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fintech-ecosystem__node-tagline {
  margin: 4px 0 0;
  padding: 0 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  pointer-events: none;
}

.fintech-ecosystem__orbit-icon-col .fintech-ecosystem__node--orbit {
  position: relative;
  left: auto;
  top: auto;
  z-index: 2;
  transform: none;
  cursor: pointer;
  flex-shrink: 0;
}

button.fintech-ecosystem__orbit-icon-trigger {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 8px 10px 10px;
  border: none;
  font: inherit;
  color: inherit;
  text-align: center;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
  transition: transform 0.22s ease;
  background: radial-gradient(circle at 35% 28%, rgba(0, 242, 255, 0.12), transparent 55%), rgba(8, 20, 45, 0.94);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.18),
    0 0 22px rgba(0, 242, 255, 0.14),
    0 14px 36px rgba(0, 0, 0, 0.42);
}

button.fintech-ecosystem__orbit-icon-trigger .fintech-ecosystem__node-inner {
  flex-shrink: 0;
  gap: 0;
  justify-content: center;
  align-items: center;
  width: auto;
  min-height: 0;
}

button.fintech-ecosystem__orbit-icon-trigger:focus-visible {
  outline: 2px solid rgba(0, 242, 255, 0.75);
  outline-offset: 3px;
}

button.fintech-ecosystem__orbit-icon-trigger:hover {
  transform: translateY(-1px);
}

/* Orbit nodes — cardinal accents: top cyan-blue, right purple, bottom neon green, left teal */
.fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger {
  background:
    radial-gradient(circle at 35% 28%, rgba(34, 211, 238, 0.32), transparent 56%),
    rgba(6, 16, 38, 0.96);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.55),
    0 0 28px rgba(34, 211, 238, 0.42),
    0 0 52px rgba(14, 165, 233, 0.32),
    0 0 80px rgba(56, 189, 248, 0.16),
    0 14px 36px rgba(0, 0, 0, 0.45);
  color: rgba(224, 250, 255, 0.98);
}

.fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover {
  animation: fintech-orbit-node-pulse-sw 1.35s ease-in-out infinite;
}

.fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__node-icon svg {
  width: 32px;
  height: 32px;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__node-icon svg {
  width: 40px;
  height: 40px;
}

.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger {
  background:
    radial-gradient(circle at 50% 42%, rgba(192, 132, 252, 0.14), transparent 58%),
    rgba(8, 5, 22, 0.97);
  border: 1.5px solid rgba(216, 180, 254, 0.92);
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.5),
    0 0 24px rgba(192, 132, 252, 0.52),
    0 0 44px rgba(168, 85, 247, 0.34),
    0 0 64px rgba(139, 92, 246, 0.18),
    0 14px 36px rgba(0, 0, 0, 0.48);
  color: rgba(237, 233, 254, 0.98);
}

.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover {
  animation: fintech-orbit-node-pulse-nw 1.35s ease-in-out infinite;
}

.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__node-icon {
  border: 1px solid rgba(216, 180, 254, 0.42);
  background: rgba(192, 132, 252, 0.07);
  color: rgba(221, 214, 254, 0.95);
  box-shadow: 0 0 18px rgba(192, 132, 252, 0.22);
}

.fintech-ecosystem__orbit-arm--nw button.fintech-ecosystem__orbit-icon-trigger .fintech-ecosystem__pillar-heading {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.015em;
  -webkit-line-clamp: 4;
}

.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__node-tagline {
  color: rgba(226, 232, 240, 0.7);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__node-icon {
  width: 56px;
  height: 56px;
}

.fintech-ecosystem__orbit-arm--ne .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger {
  background:
    radial-gradient(circle at 35% 28%, rgba(74, 222, 128, 0.22), transparent 52%),
    rgba(5, 24, 16, 0.98);
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.58),
    0 0 26px rgba(74, 222, 128, 0.48),
    0 0 48px rgba(34, 197, 94, 0.3),
    0 0 68px rgba(16, 185, 129, 0.12),
    0 14px 36px rgba(0, 0, 0, 0.45);
  color: rgba(220, 252, 231, 0.98);
}

.fintech-ecosystem__orbit-arm--ne .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover {
  animation: fintech-orbit-node-pulse-ne 1.35s ease-in-out infinite;
}

.fintech-ecosystem__orbit-arm--se .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger {
  background:
    radial-gradient(circle at 35% 28%, rgba(45, 212, 191, 0.28), transparent 55%),
    rgba(6, 18, 32, 0.96);
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.55),
    0 0 30px rgba(20, 184, 166, 0.42),
    0 0 56px rgba(6, 182, 212, 0.28),
    0 0 84px rgba(34, 211, 238, 0.14),
    0 14px 36px rgba(0, 0, 0, 0.45);
  color: rgba(204, 251, 241, 0.98);
}

.fintech-ecosystem__orbit-arm--se .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover {
  animation: fintech-orbit-node-pulse-se 1.35s ease-in-out infinite;
}

.fintech-ecosystem__orbit-body {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  width: max-content;
  max-width: min(280px, 34vw);
  transform: translate(0, -50%);
  pointer-events: auto;
}

.fintech-ecosystem__orbit .fintech-ecosystem__orbit-arm .fintech-ecosystem__orbit-body {
  display: none !important;
}

.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-body,
.fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-body {
  transform: translate(
      calc(-100% - var(--fe-node-r) - var(--fe-orbit-inline-gap) - var(--fe-orbit-body-outset-west)),
      -50%
    );
  text-align: right;
}

.fintech-ecosystem__orbit-arm--ne .fintech-ecosystem__orbit-body,
.fintech-ecosystem__orbit-arm--se .fintech-ecosystem__orbit-body {
  transform: translate(
      calc(var(--fe-node-r) + var(--fe-orbit-inline-gap) + var(--fe-orbit-body-outset-east)),
      -50%
    );
  text-align: left;
}

.fintech-ecosystem__pillar-heading {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.fintech-ecosystem__orbit-body .fintech-ecosystem__list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.58;
  list-style-position: outside;
}

.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-body .fintech-ecosystem__list,
.fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-body .fintech-ecosystem__list {
  padding-left: 0;
  padding-right: 1.2rem;
  list-style-position: outside;
}

.fintech-ecosystem__orbit-body .fintech-ecosystem__list li {
  display: list-item;
  margin: 0;
  padding: 0;
  line-height: 1.55;
}

.fintech-ecosystem__orbit-body .fintech-ecosystem__list li + li {
  margin-top: 10px;
}

.fintech-ecosystem__orbit-body .fintech-ecosystem__panel-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7cf8ff;
  text-decoration: none;
}

.fintech-ecosystem__panel-links {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.fintech-ecosystem__panel-links .fintech-ecosystem__panel-link {
  margin-top: 0;
}

.fintech-ecosystem__orbit-body .fintech-ecosystem__panel-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.fintech-ecosystem__popup:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 25050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 28px);
}

.fintech-ecosystem__popup-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(3, 10, 24, 0.38);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

.fintech-ecosystem__popup-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(0, 242, 255, 0.32);
  background:
    linear-gradient(165deg, rgba(10, 26, 54, 0.98) 0%, rgba(5, 16, 40, 0.99) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.12),
    0 28px 80px rgba(0, 0, 0, 0.58),
    0 0 48px rgba(0, 242, 255, 0.08);
}

.fintech-ecosystem__popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.fintech-ecosystem__popup-close:hover {
  background: rgba(0, 242, 255, 0.14);
  color: #ffffff;
}

.fintech-ecosystem__popup-scroll {
  overflow-y: auto;
  padding: clamp(22px, 4vw, 32px);
  padding-right: clamp(48px, 8vw, 56px);
}

.fintech-ecosystem__popup-heading {
  margin: 0 0 16px;
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.12rem, 2.55vw, 1.38rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.fintech-ecosystem__popup-body .fintech-ecosystem__orbit-body {
  display: block !important;
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  max-width: none;
  transform: none !important;
  text-align: left !important;
  pointer-events: auto;
}

.fintech-ecosystem__popup-body .fintech-ecosystem__list {
  padding-left: 1.2rem;
  padding-right: 0;
  list-style-position: outside;
  font-size: 0.92rem;
  line-height: 1.62;
}

.fintech-ecosystem__popup-body .fintech-ecosystem__panel-link {
  font-size: 0.93rem;
  margin-top: 14px;
}

.fintech-ecosystem__node--orbit.fintech-ecosystem__node--circle {
  width: 168px;
  max-width: 168px;
  height: 168px;
  min-height: 168px;
  margin: 0;
  padding: 0;
}

.fintech-ecosystem__node--orbit.fintech-ecosystem__node--circle .fintech-ecosystem__node-icon {
  width: 66px;
  height: 66px;
}

.fintech-ecosystem__stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: min(72vw, 520px);
  margin-inline: auto;
}

.fintech-ecosystem__stage--compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: min(920px, 96vw);
  min-height: clamp(460px, min(58vw, 62dvh), 640px);
  padding-block: clamp(12px, 2.2vmin, 28px);
  overflow: visible;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__orbit {
  --fe-orbit-r: clamp(172px, 24vw, 216px);
  max-width: min(520px, 96vw);
  flex-shrink: 0;
  margin-block: auto;
}

.fintech-ecosystem__rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  transform-origin: 50% 50%;
}

.section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__stage--compact .fintech-ecosystem__rings {
  animation: fintech-eco-orbit-spin var(--fe-orbit-spin-duration, 120s) linear infinite;
}

.fintech-ecosystem__orbit {
  --fe-orbit-r: clamp(168px, 28vw, 210px);
  --fe-orbit-spin-duration: 120s;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  margin-inline: auto;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__hub {
  width: min(46%, 176px);
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__hub-label {
  font-size: clamp(1.05rem, 2.55vw, 1.28rem);
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__hub-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__hub-core {
  padding: 12px 14px 12px;
  gap: 5px;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__hub-cube svg {
  width: 28px;
  height: 28px;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__hub-glow {
  inset: -28%;
  opacity: 0.82;
  filter: blur(20px);
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__orbit-arm {
  --fe-node-r: 92px;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__orbit-icon-col {
  width: 184px;
  height: 184px;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__node--orbit.fintech-ecosystem__node--circle {
  width: 184px;
  max-width: 184px;
  height: 184px;
  min-height: 184px;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__node--orbit.fintech-ecosystem__node--circle .fintech-ecosystem__node-icon {
  width: 74px;
  height: 74px;
}

.fintech-ecosystem__stage--compact button.fintech-ecosystem__orbit-icon-trigger .fintech-ecosystem__pillar-heading {
  font-size: 0.84rem;
  line-height: 1.12;
}

.fintech-ecosystem__stage--compact .fintech-ecosystem__node-tagline {
  font-size: 0.54rem;
  letter-spacing: 0.04em;
}

.fintech-ecosystem__hub {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(48%, 230px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.fintech-ecosystem__hub-glow {
  position: absolute;
  inset: -32%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 242, 255, 0.55) 0%, rgba(99, 102, 241, 0.22) 42%, transparent 72%);
  filter: blur(20px);
  opacity: 0.88;
  transform-origin: center center;
}

.fintech-ecosystem__hub-core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  padding: 16px 14px 14px;
  border-radius: 50%;
  pointer-events: auto;
  cursor: default;
  border: 2px solid rgba(186, 230, 253, 0.38);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.16), transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.38), transparent 50%),
    linear-gradient(145deg, rgba(0, 30, 60, 0.95), rgba(5, 15, 40, 0.98));
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.45),
    0 0 28px rgba(0, 242, 255, 0.55),
    0 0 52px rgba(0, 242, 255, 0.38),
    0 0 96px rgba(56, 189, 248, 0.22),
    0 0 120px rgba(99, 102, 241, 0.14),
    0 14px 44px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    box-shadow 0.45s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.fintech-ecosystem__hub-core:hover {
  border-color: rgba(224, 250, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.65),
    0 0 36px rgba(0, 242, 255, 0.72),
    0 0 72px rgba(0, 242, 255, 0.45),
    0 0 110px rgba(56, 189, 248, 0.28),
    0 0 140px rgba(99, 102, 241, 0.18),
    0 14px 44px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: scale(1.02);
}

.fintech-ecosystem__hub-cube {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 18px rgba(0, 242, 255, 0.4));
}

.fintech-ecosystem__hub-cube svg {
  display: block;
}

.fintech-ecosystem__hub-label {
  color: var(--white);
  font-size: clamp(1.12rem, 3.1vw, 1.42rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.22;
  text-shadow:
    0 0 18px rgba(0, 242, 255, 0.45),
    0 0 36px rgba(0, 242, 255, 0.2);
}

.fintech-ecosystem__hub-sub {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
}

.fintech-ecosystem__link-web {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.fintech-ecosystem__beam--pulse {
  animation: fintech-beam-flow 2.8s ease-in-out infinite;
}

.fintech-ecosystem__beam:nth-child(1) {
  animation-delay: 0s;
}

.fintech-ecosystem__beam:nth-child(2) {
  animation-delay: 0.35s;
}

.fintech-ecosystem__beam:nth-child(3) {
  animation-delay: 0.7s;
}

.fintech-ecosystem__beam:nth-child(4) {
  animation-delay: 1.05s;
}

.fintech-ecosystem__track {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-origin: 50% 50%;
  animation: none;
}

.fintech-ecosystem__connectors {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.fintech-ecosystem__connector {
  opacity: 0.9;
  transition:
    stroke 0.35s ease,
    stroke-width 0.35s ease,
    opacity 0.35s ease;
}

.fintech-ecosystem__connector--banking {
  stroke: rgba(34, 211, 238, 0.82);
}

.fintech-ecosystem__connector--asset {
  stroke: rgba(192, 132, 252, 0.88);
}

.fintech-ecosystem__connector--wealth {
  stroke: rgba(74, 222, 128, 0.85);
}

.fintech-ecosystem__connector--digital {
  stroke: rgba(45, 212, 191, 0.85);
}

.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-trigger:hover) .fintech-ecosystem__connector--banking,
.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-trigger:focus-visible) .fintech-ecosystem__connector--banking,
.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-icon-trigger:hover) .fintech-ecosystem__connector--asset,
.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-icon-trigger:focus-visible) .fintech-ecosystem__connector--asset,
.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--ne .fintech-ecosystem__orbit-icon-trigger:hover) .fintech-ecosystem__connector--wealth,
.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--ne .fintech-ecosystem__orbit-icon-trigger:focus-visible) .fintech-ecosystem__connector--wealth,
.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--se .fintech-ecosystem__orbit-icon-trigger:hover) .fintech-ecosystem__connector--digital,
.fintech-ecosystem__orbit:has(.fintech-ecosystem__orbit-arm--se .fintech-ecosystem__orbit-icon-trigger:focus-visible) .fintech-ecosystem__connector--digital {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 1.95;
  opacity: 1;
}

.fintech-ecosystem__orbit:has(.fintech-ecosystem__hub-core:hover) .fintech-ecosystem__connector {
  opacity: 1;
  stroke-width: 1.5;
  animation: fintech-connector-data-flow 1.05s linear infinite;
}

.fintech-ecosystem__stage:has(.fintech-ecosystem__hub-core:hover) .fintech-ecosystem__rings {
  filter: brightness(1.28) drop-shadow(0 0 16px rgba(0, 242, 255, 0.38));
}

.section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__track {
  animation: fintech-eco-orbit-spin var(--fe-orbit-spin-duration, 120s) linear infinite;
}

.fintech-ecosystem__node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  box-sizing: border-box;
  width: 136px;
  max-width: 136px;
  min-height: 102px;
  margin-left: -68px;
  margin-top: -51px;
  padding: 10px 8px 11px;
  border: 1px solid rgba(0, 242, 255, 0.22);
  border-radius: 18px;
  background: rgba(8, 20, 45, 0.9);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transform: rotate(var(--fe-angle, 0deg)) translateY(calc(-1 * var(--fe-orbit-r))) rotate(calc(-1 * var(--fe-angle, 0deg)));
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.fintech-ecosystem__node--circle {
  width: 128px;
  max-width: 128px;
  height: 128px;
  min-height: 128px;
  margin-left: -64px;
  margin-top: -64px;
  padding: 9px 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 28%, rgba(0, 242, 255, 0.1), transparent 55%), rgba(8, 20, 45, 0.94);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.fintech-ecosystem__node:hover,
.fintech-ecosystem__node:focus-visible {
  border-color: rgba(0, 242, 255, 0.55);
  outline: none;
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.2),
    0 12px 32px rgba(0, 242, 255, 0.12);
}

.fintech-ecosystem__node.is-active {
  border-color: rgba(0, 242, 255, 0.92);
  background: rgba(0, 36, 62, 0.94);
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.45),
    0 0 26px rgba(0, 242, 255, 0.42),
    0 0 48px rgba(0, 242, 255, 0.24),
    0 14px 36px rgba(0, 0, 0, 0.38);
  animation: fintech-pillar-active-neon 2.4s ease-in-out infinite;
}

.fintech-ecosystem__node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  min-height: 0;
  animation: none;
}

.fintech-ecosystem__node--circle .fintech-ecosystem__node-inner {
  justify-content: center;
  gap: 5px;
  max-height: 100%;
}

.fintech-ecosystem__node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 242, 255, 0.38);
  background: rgba(0, 242, 255, 0.07);
  color: #7cf8ff;
}

.fintech-ecosystem__node--circle .fintech-ecosystem__node-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.fintech-ecosystem__node-icon svg {
  display: block;
}

.fintech-ecosystem__node.is-active .fintech-ecosystem__node-icon {
  border-color: rgba(0, 242, 255, 0.65);
  background: rgba(0, 242, 255, 0.14);
  color: #b8fffc;
}

.fintech-ecosystem__node-title {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.02em;
  word-break: break-word;
}

.fintech-ecosystem__node--circle .fintech-ecosystem__node-title {
  font-size: 0.7rem;
  line-height: 1.28;
  -webkit-line-clamp: 4;
}

@keyframes fintech-hub-link-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

@keyframes fintech-hub-neon-outer {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
    filter: blur(20px);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
    filter: blur(26px);
  }
}

@keyframes fintech-core-neon-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.18),
      0 0 28px rgba(0, 242, 255, 0.38),
      0 0 56px rgba(0, 242, 255, 0.24),
      0 0 88px rgba(99, 102, 241, 0.16),
      0 14px 44px rgba(0, 0, 0, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.32),
      0 0 40px rgba(0, 242, 255, 0.55),
      0 0 72px rgba(0, 242, 255, 0.36),
      0 0 110px rgba(99, 102, 241, 0.26),
      0 14px 44px rgba(0, 0, 0, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
}

@keyframes fintech-pillar-active-neon {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.42),
      0 0 22px rgba(0, 242, 255, 0.38),
      0 0 44px rgba(0, 242, 255, 0.22),
      0 14px 36px rgba(0, 0, 0, 0.38);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.55),
      0 0 32px rgba(0, 242, 255, 0.48),
      0 0 58px rgba(0, 242, 255, 0.3),
      0 14px 36px rgba(0, 0, 0, 0.38);
  }
}

@keyframes fintech-beam-flow {
  0%,
  100% {
    stroke-opacity: 0.2;
  }

  50% {
    stroke-opacity: 0.78;
  }
}

@keyframes fintech-eco-orbit-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fintech-eco-orbit-counter {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes fintech-connector-data-flow {
  to {
    stroke-dashoffset: -48;
  }
}

@keyframes fintech-orbit-node-pulse-sw {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(56, 189, 248, 0.55),
      0 0 28px rgba(34, 211, 238, 0.42),
      0 0 52px rgba(14, 165, 233, 0.32),
      0 0 80px rgba(56, 189, 248, 0.16),
      0 14px 36px rgba(0, 0, 0, 0.45);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(103, 232, 249, 0.78),
      0 0 40px rgba(34, 211, 238, 0.58),
      0 0 72px rgba(14, 165, 233, 0.46),
      0 0 104px rgba(56, 189, 248, 0.24),
      0 14px 36px rgba(0, 0, 0, 0.4);
  }
}

@keyframes fintech-orbit-node-pulse-nw {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(168, 85, 247, 0.5),
      0 0 24px rgba(192, 132, 252, 0.52),
      0 0 44px rgba(168, 85, 247, 0.34),
      0 0 64px rgba(139, 92, 246, 0.18),
      0 14px 36px rgba(0, 0, 0, 0.48);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(233, 213, 255, 0.58),
      0 0 34px rgba(216, 180, 254, 0.62),
      0 0 58px rgba(192, 132, 252, 0.4),
      0 0 82px rgba(168, 85, 247, 0.22),
      0 14px 36px rgba(0, 0, 0, 0.42);
  }
}

@keyframes fintech-orbit-node-pulse-ne {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(74, 222, 128, 0.58),
      0 0 26px rgba(74, 222, 128, 0.48),
      0 0 48px rgba(34, 197, 94, 0.3),
      0 0 68px rgba(16, 185, 129, 0.12),
      0 14px 36px rgba(0, 0, 0, 0.45);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(134, 239, 172, 0.78),
      0 0 38px rgba(74, 222, 128, 0.55),
      0 0 64px rgba(34, 197, 94, 0.36),
      0 0 90px rgba(16, 185, 129, 0.16),
      0 14px 36px rgba(0, 0, 0, 0.4);
  }
}

@keyframes fintech-orbit-node-pulse-se {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(45, 212, 191, 0.55),
      0 0 30px rgba(20, 184, 166, 0.42),
      0 0 56px rgba(6, 182, 212, 0.28),
      0 0 84px rgba(34, 211, 238, 0.14),
      0 14px 36px rgba(0, 0, 0, 0.45);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(94, 234, 212, 0.78),
      0 0 42px rgba(45, 212, 191, 0.55),
      0 0 76px rgba(20, 184, 166, 0.42),
      0 0 108px rgba(34, 211, 238, 0.22),
      0 14px 36px rgba(0, 0, 0, 0.4);
  }
}

.fintech-ecosystem__panels {
  margin-top: 0;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
  align-self: start;
  position: relative;
  isolation: isolate;
  min-height: min(44vh, 400px);
  padding: clamp(20px, 2.5vw, 26px) clamp(20px, 2.5vw, 26px) clamp(22px, 2.8vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(4, 12, 32, 0.62) 45%,
      rgba(2, 8, 22, 0.82) 100%
    );
  box-shadow:
    0 28px 72px rgba(0, 4, 18, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(44px) saturate(1.05);
  -webkit-backdrop-filter: blur(44px) saturate(1.05);
  transform: none;
  overflow: hidden;
}

.fintech-ecosystem__panels::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 48%,
    rgba(0, 242, 255, 0.03) 100%
  );
  opacity: 0.42;
}

.fintech-ecosystem__panels > * {
  position: relative;
  z-index: 1;
}

.fintech-ecosystem__panel {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fintech-ecosystem__panel[hidden] {
  display: none;
}

@keyframes fintech-eco-panel-slide {
  from {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fintech-eco-panel-slide-pillar {
  from {
    opacity: 0;
    transform: translate3d(52px, 0, 0) scale(0.985);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.fintech-ecosystem__panel.fintech-ecosystem__panel--enter {
  animation: fintech-eco-panel-slide 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fintech-ecosystem__panel.fintech-ecosystem__panel--enter.fintech-ecosystem__panel--enter-pillar {
  animation: fintech-eco-panel-slide-pillar 0.62s cubic-bezier(0.16, 1, 0.32, 1) both;
}

.fintech-ecosystem__panel--idle .fintech-ecosystem__placeholder-lede {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.fintech-ecosystem__panel--idle .fintech-ecosystem__placeholder-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
}

.fintech-ecosystem__panel-kicker {
  margin: 0 0 14px;
  color: rgba(0, 242, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fintech-ecosystem__bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fintech-ecosystem__bento--3 .fintech-ecosystem__solution-card:nth-child(3) {
  grid-column: 1 / -1;
}

@keyframes fintech-eco-card-light-up {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    filter: brightness(0.72);
    box-shadow:
      0 0 0 rgba(0, 242, 255, 0),
      0 8px 24px rgba(0, 0, 0, 0.2);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
    box-shadow:
      0 0 0 0.5px rgba(0, 242, 255, 0.45),
      0 0 20px rgba(0, 242, 255, 0.12),
      0 12px 36px rgba(0, 4, 18, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

.fintech-ecosystem__solution-card {
  margin: 0;
  padding: 14px 15px 16px;
  border-radius: 18px;
  background: rgba(6, 14, 32, 0.52);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  border: 0.5px solid rgba(0, 242, 255, 0.35);
  box-shadow:
    0 0 0 0.5px rgba(0, 242, 255, 0.12),
    0 8px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(14px);
  filter: brightness(0.75);
}

.fintech-ecosystem__layout--has-selection .fintech-ecosystem__panel:not([hidden]) .fintech-ecosystem__solution-card {
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    filter 0.35s ease;
}

.fintech-ecosystem__layout--has-selection .fintech-ecosystem__panel:not([hidden]) .fintech-ecosystem__solution-card:hover {
  border-color: rgba(0, 242, 255, 0.55);
  box-shadow:
    0 0 0 0.5px rgba(0, 242, 255, 0.5),
    0 0 28px rgba(0, 242, 255, 0.2),
    0 14px 40px rgba(0, 4, 18, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  filter: brightness(1.06);
}

.fintech-ecosystem__panel--enter-pillar .fintech-ecosystem__solution-card {
  animation: fintech-eco-card-light-up 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fintech-ecosystem__panel--enter-pillar .fintech-ecosystem__solution-card:nth-child(1) {
  animation-delay: 0.04s;
}

.fintech-ecosystem__panel--enter-pillar .fintech-ecosystem__solution-card:nth-child(2) {
  animation-delay: 0.11s;
}

.fintech-ecosystem__panel--enter-pillar .fintech-ecosystem__solution-card:nth-child(3) {
  animation-delay: 0.18s;
}

.fintech-ecosystem__panel--enter-pillar .fintech-ecosystem__solution-card:nth-child(4) {
  animation-delay: 0.25s;
}

.fintech-ecosystem__solution-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 11px;
  border-radius: 14px;
  background: rgba(0, 242, 255, 0.1);
  color: rgba(0, 242, 255, 0.92);
  border: 0.5px solid rgba(0, 242, 255, 0.22);
  box-shadow: 0 0 16px rgba(0, 242, 255, 0.08);
}

.fintech-ecosystem__solution-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fintech-ecosystem__solution-card-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.fintech-ecosystem__solution-card-desc {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.45;
}

.fintech-ecosystem__panel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: rgba(0, 242, 255, 0.95);
  background: rgba(0, 242, 255, 0.04);
  border: 1px solid rgba(0, 242, 255, 0.42);
  box-shadow: 0 0 0 rgba(0, 242, 255, 0);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease;
}

.fintech-ecosystem__panel-cta:hover {
  color: #e8fdff;
  background: rgba(0, 242, 255, 0.12);
  border-color: rgba(0, 242, 255, 0.75);
  box-shadow:
    0 0 24px rgba(0, 242, 255, 0.35),
    0 0 48px rgba(0, 242, 255, 0.12);
  transform: translateY(-1px);
}

.fintech-ecosystem__panel-cta:focus-visible {
  outline: 2px solid rgba(0, 242, 255, 0.65);
  outline-offset: 3px;
}

.fintech-ecosystem__value-band {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 3.5vw, 48px);
}

.fintech-ecosystem__value-band-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: clamp(14px, 2vw, 20px) clamp(12px, 2vw, 22px);
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.38);
  background: rgba(4, 12, 28, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 242, 255, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.28);
}

.fintech-ecosystem__value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  padding-inline: clamp(12px, 1.8vw, 18px);
}

.fintech-ecosystem__value-item:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.fintech-ecosystem__value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 242, 255, 0.08);
  border: 1px solid rgba(0, 242, 255, 0.22);
  color: rgba(0, 242, 255, 0.92);
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.12);
}

.fintech-ecosystem__value-item:nth-child(2) .fintech-ecosystem__value-icon {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(129, 140, 248, 0.35);
  color: rgba(165, 180, 252, 0.95);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.fintech-ecosystem__value-item:nth-child(3) .fintech-ecosystem__value-icon {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.28);
  color: rgba(110, 231, 183, 0.95);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.12);
}

.fintech-ecosystem__value-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.fintech-ecosystem__value-copy strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.25;
}

.fintech-ecosystem__value-copy span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.35;
}

.fintech-ecosystem__trusted {
  position: relative;
  z-index: 2;
  margin-top: clamp(26px, 3.2vw, 40px);
  text-align: center;
}

.fintech-ecosystem__trusted-panel {
  padding: clamp(18px, 2.6vw, 26px) clamp(14px, 2.4vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 10, 24, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fintech-ecosystem__trusted-kicker {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.fintech-ecosystem__trusted-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.6vw, 26px);
  padding: 6px 4px 2px;
  isolation: isolate;
}

/* Uniform silver / white wordmarks — forces raster + SVG logos to the same treatment (incl. Systex). */
.fintech-ecosystem__trusted-logo {
  height: clamp(26px, 3.8vw, 38px);
  width: auto;
  max-width: min(132px, 24vw);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

.fintech-ecosystem__trusted-logo:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.28));
}

.fintech-ecosystem__footer {
  position: relative;
  z-index: 2;
  margin-top: clamp(32px, 4vw, 56px);
  display: grid;
  gap: 22px;
}

.fintech-ecosystem__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
}

.fintech-ecosystem__strip-label-row {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 7.5rem;
}

.fintech-ecosystem__strip-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fintech-ecosystem__strip-chevron {
  color: rgba(255, 255, 255, 0.32);
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 300;
  translate: 0 1px;
}

.fintech-ecosystem__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fintech-ecosystem__chips li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 242, 255, 0.22);
  background: rgba(0, 242, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.fintech-ecosystem__chips li.fintech-ecosystem__chip--active-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.38), rgba(37, 99, 235, 0.22));
  border-color: rgba(96, 165, 250, 0.78);
  color: #e0f2fe;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.32),
    0 0 22px rgba(59, 130, 246, 0.28);
}

.fintech-ecosystem__chips li.fintech-ecosystem__chip--active-teal {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.3), rgba(6, 182, 212, 0.18));
  border-color: rgba(34, 211, 238, 0.68);
  color: #ecfeff;
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.28),
    0 0 22px rgba(34, 211, 238, 0.24);
}

.fintech-ecosystem__chips--wrap {
  flex: 1;
  min-width: 0;
}

.fintech-ecosystem__capacity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
}

.fintech-ecosystem__capacity--stacked {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vw, 16px);
  margin-top: clamp(22px, 3vw, 32px);
  width: 100%;
  max-width: min(440px, 100%);
}

.fintech-ecosystem__capacity--above {
  margin-top: 12px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.fintech-ecosystem__cap-item {
  position: relative;
}

.fintech-ecosystem__cap-item--split {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  padding: 18px 16px 16px 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #091634;
  backdrop-filter: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.fintech-ecosystem__cap-item--split::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  opacity: 1;
}

.fintech-ecosystem__cap-item--split:hover {
  transform: translateY(-2px);
}

.fintech-ecosystem__cap-item__text strong {
  display: block;
  margin-bottom: 6px;
  padding-right: 4px;
  color: var(--white);
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.fintech-ecosystem__cap-item__text span {
  display: block;
  color: rgba(203, 213, 225, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.fintech-ecosystem__cap-item__icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  align-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
}

.fintech-ecosystem__cap-item__text {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding-right: 8px;
}

.fintech-ecosystem__cap-item__cta {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  align-self: end;
  display: flex;
  margin-top: 4px;
  opacity: 0.92;
  transition: color 0.2s ease, transform 0.2s ease;
}

.fintech-ecosystem__cap-item--tone-blue {
  border: 1px solid rgba(56, 189, 248, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(0, 242, 255, 0.12);
}

.fintech-ecosystem__cap-item--tone-blue::before {
  background: linear-gradient(180deg, #38bdf8 0%, #5855eb 95%);
}

.fintech-ecosystem__cap-item--tone-blue .fintech-ecosystem__cap-item__icon {
  color: rgba(125, 211, 252, 0.96);
  background:
    radial-gradient(circle at 30% 22%, rgba(56, 189, 248, 0.35), transparent 55%),
    rgba(0, 242, 255, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.42);
  box-shadow:
    0 0 18px rgba(0, 242, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.fintech-ecosystem__cap-item--tone-blue .fintech-ecosystem__cap-item__cta {
  color: rgba(56, 189, 248, 0.88);
}

.fintech-ecosystem__cap-item--tone-blue:hover {
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 36px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(0, 242, 255, 0.2);
}

.fintech-ecosystem__cap-item--tone-blue:hover .fintech-ecosystem__cap-item__cta {
  color: #7dd3fc;
  transform: translateX(2px);
}

.fintech-ecosystem__cap-item--tone-teal {
  border: 1px solid rgba(45, 212, 191, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.32),
    0 0 22px rgba(45, 212, 191, 0.12);
}

.fintech-ecosystem__cap-item--tone-teal::before {
  background: linear-gradient(180deg, #2dd4bf 0%, #06b6d4 100%);
}

.fintech-ecosystem__cap-item--tone-teal .fintech-ecosystem__cap-item__icon {
  color: rgba(153, 246, 228, 0.95);
  background:
    radial-gradient(circle at 30% 22%, rgba(45, 212, 191, 0.32), transparent 55%),
    rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.42);
  box-shadow:
    0 0 18px rgba(45, 212, 191, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.fintech-ecosystem__cap-item--tone-teal .fintech-ecosystem__cap-item__cta {
  color: rgba(45, 212, 191, 0.88);
}

.fintech-ecosystem__cap-item--tone-teal:hover {
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 36px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(45, 212, 191, 0.22);
}

.fintech-ecosystem__cap-item--tone-teal:hover .fintech-ecosystem__cap-item__cta {
  color: #99f6e4;
  transform: translateX(2px);
}

.fintech-ecosystem__cap-item--featured.fintech-ecosystem__cap-item--tone-teal {
  border-color: rgba(0, 242, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 0 1px rgba(0, 242, 255, 0.22),
    0 10px 32px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(0, 242, 255, 0.2);
}

.fintech-ecosystem__cap-item--tone-purple {
  border: 1px solid rgba(88, 85, 235, 0.45);
  background:
    linear-gradient(135deg, rgba(88, 85, 235, 0.12) 0%, transparent 48%),
    linear-gradient(165deg, rgba(99, 102, 241, 0.06) 0%, transparent 55%),
    #091634;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(88, 85, 235, 0.2),
    0 0 1px rgba(88, 85, 235, 0.45);
}

.fintech-ecosystem__cap-item--tone-purple::before {
  background: linear-gradient(180deg, #a78bfa 0%, #5855eb 52%, rgba(79, 70, 229, 0.9) 100%);
}

.fintech-ecosystem__cap-item--tone-purple .fintech-ecosystem__cap-item__icon {
  color: rgba(196, 181, 253, 0.95);
  background:
    radial-gradient(circle at 30% 22%, rgba(167, 139, 250, 0.35), transparent 55%),
    rgba(88, 85, 235, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.45);
  box-shadow:
    0 0 20px rgba(88, 85, 235, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.fintech-ecosystem__cap-item--tone-purple .fintech-ecosystem__cap-item__cta {
  color: rgba(167, 139, 250, 0.9);
}

.fintech-ecosystem__cap-item--tone-purple:hover {
  border-color: rgba(139, 92, 246, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 40px rgba(0, 0, 0, 0.32),
    0 0 36px rgba(88, 85, 235, 0.32),
    0 0 0 1px rgba(88, 85, 235, 0.22);
}

.fintech-ecosystem__cap-item--tone-purple:hover .fintech-ecosystem__cap-item__cta {
  color: #c4b5fd;
  transform: translateX(2px);
}

.section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__intro,
.section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__capacity,
.section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem,
.section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__value-band,
.section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__trusted,
.section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__footer {
  opacity: 0;
  transform: translateY(20px);
}

.section--fintech-ecosystem.fintech-ecosystem--in-view .fintech-ecosystem__intro,
.section--fintech-ecosystem.fintech-ecosystem--in-view .fintech-ecosystem__capacity,
.section--fintech-ecosystem.fintech-ecosystem--in-view .fintech-ecosystem,
.section--fintech-ecosystem.fintech-ecosystem--in-view .fintech-ecosystem__value-band,
.section--fintech-ecosystem.fintech-ecosystem--in-view .fintech-ecosystem__trusted,
.section--fintech-ecosystem.fintech-ecosystem--in-view .fintech-ecosystem__footer {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__value-band {
  transition-delay: 0.06s;
}

.section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__trusted {
  transition-delay: 0.12s;
}

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

  .fintech-ecosystem__value-band-inner {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .fintech-ecosystem__value-item:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
    padding-top: clamp(14px, 2vw, 18px);
  }

  .fintech-ecosystem__layout--centered {
    margin-top: 22px;
    padding-inline: 12px;
  }

  .fintech-ecosystem__stage--compact {
    min-height: auto;
    max-width: none;
  }

  .fintech-ecosystem__connectors {
    display: none;
  }

  .fintech-ecosystem__orbit-arm {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: min(420px, 100%);
    height: auto;
    margin-inline: auto;
    margin-block: 0;
    transform: none !important;
    pointer-events: auto;
  }

  .fintech-ecosystem__orbit-arm-spin-cancel,
  .fintech-ecosystem__orbit-arm-upright {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    transform: none !important;
    animation: none !important;
    pointer-events: auto;
  }

  .fintech-ecosystem__orbit-arm-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    height: auto;
    pointer-events: auto;
  }

  .fintech-ecosystem__orbit-icon-col {
    order: -1;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
    height: auto;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-title {
    position: static;
    left: auto;
    bottom: auto;
    margin: 0;
    transform: none;
    max-width: 100%;
    width: 100%;
    text-align: center !important;
  }

  .fintech-ecosystem__orbit-arm-inner .fintech-ecosystem__orbit-icon-trigger .fintech-ecosystem__pillar-heading {
    font-size: 0.95rem;
    line-height: 1.14;
    -webkit-line-clamp: 6;
  }

  .fintech-ecosystem__orbit-body {
    position: relative;
    left: auto;
    top: auto;
    transform: none !important;
    flex: 0 1 auto;
    min-width: 0;
    width: 100%;
    max-width: min(380px, 100%);
    margin-inline: auto;
    text-align: left !important;
  }

  .fintech-ecosystem__orbit-body .fintech-ecosystem__list {
    margin-inline: auto;
    width: fit-content;
    max-width: 100%;
  }

  .fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-body .fintech-ecosystem__list,
  .fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-body .fintech-ecosystem__list {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    list-style-position: outside;
  }

  .fintech-ecosystem__orbit-arm-inner .fintech-ecosystem__node--orbit {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
  }

  .fintech-ecosystem__bento {
    grid-template-columns: 1fr;
  }

  .fintech-ecosystem__bento--3 .fintech-ecosystem__solution-card:nth-child(3) {
    grid-column: 1;
  }

  .fintech-ecosystem__stage {
    min-height: auto;
    max-width: none;
  }

  .fintech-ecosystem__rings {
    display: none;
  }

  .fintech-ecosystem__orbit {
    max-width: min(480px, 100%);
    margin-inline: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .fintech-ecosystem__hub {
    display: none !important;
  }

  .fintech-ecosystem__track {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: none !important;
  }

  .fintech-ecosystem__orbit-arm-inner .fintech-ecosystem__node--orbit.fintech-ecosystem__node--circle {
    width: 260px;
    max-width: 260px;
    height: 260px;
    min-height: 260px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 28%, rgba(0, 242, 255, 0.1), transparent 55%), rgba(8, 20, 45, 0.94);
    box-shadow:
      0 0 0 1px rgba(0, 242, 255, 0.12),
      0 10px 28px rgba(0, 0, 0, 0.35);
  }

  .fintech-ecosystem__orbit-arm-inner .fintech-ecosystem__node-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .fintech-ecosystem__orbit-arm-inner .fintech-ecosystem__node-icon {
    width: 102px;
    height: 102px;
    border-radius: 50%;
  }

  .fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__node-icon svg {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--fintech-ecosystem__particles::before,
  .section--fintech-ecosystem__particles::after {
    animation: none !important;
  }

  .fintech-ecosystem__track {
    animation: none !important;
  }

  .fintech-ecosystem__orbit-arm-spin-cancel {
    animation: none !important;
  }

  .section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__rings {
    animation: none !important;
  }

  .fintech-ecosystem__node-inner {
    animation: none !important;
  }

  .fintech-ecosystem__hub-glow {
    animation: none !important;
  }

  .fintech-ecosystem__hub-core {
    animation: none !important;
  }

  .fintech-ecosystem__node.is-active {
    animation: none !important;
  }

  .fintech-ecosystem__beam--pulse {
    animation: none !important;
  }

  .fintech-ecosystem__panel.fintech-ecosystem__panel--enter,
  .fintech-ecosystem__panel.fintech-ecosystem__panel--enter.fintech-ecosystem__panel--enter-pillar {
    animation: none !important;
  }

  .fintech-ecosystem__solution-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__intro,
  .section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__capacity,
  .section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem,
  .section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__value-band,
  .section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__trusted,
  .section--fintech-ecosystem.fintech-ecosystem--motion:not(.fintech-ecosystem--in-view) .fintech-ecosystem__footer {
    opacity: 1;
    transform: none;
  }

  .section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__value-band,
  .section--fintech-ecosystem.fintech-ecosystem--in-view.fintech-ecosystem--motion .fintech-ecosystem__trusted {
    transition-delay: 0s;
  }

  .fintech-ecosystem__cap-item:hover {
    transform: none;
  }

  .fintech-ecosystem__power-link-flow,
  .fintech-ecosystem__power-link-bg,
  .fintech-ecosystem__power-link-pulse {
    animation: none !important;
  }

  .fintech-ecosystem__orbit:has(.fintech-ecosystem__hub-core:hover) .fintech-ecosystem__connector {
    animation: none !important;
  }

  .fintech-ecosystem__orbit-arm--sw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover,
  .fintech-ecosystem__orbit-arm--nw .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover,
  .fintech-ecosystem__orbit-arm--ne .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover,
  .fintech-ecosystem__orbit-arm--se .fintech-ecosystem__orbit-icon-col .fintech-ecosystem__orbit-icon-trigger:hover {
    animation: none !important;
  }

  .fintech-ecosystem__hub-core:hover {
    transform: none;
  }
}

.section__body {
  max-width: 64ch;
  margin-top: 18px;
  font-size: 1.03rem;
}

.section__grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
  align-items: start;
}

.stat-grid,
.card-grid,
.news-list,
.job-grid,
.detail-grid,
.feature-grid {
  display: grid;
  gap: 22px;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

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

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

.news-list {
  margin-top: 32px;
}

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

.panel,
.stat-card,
.info-card,
.news-card,
.career-card,
.solution-card,
.timeline-card,
.footer-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.panel,
.info-card,
.solution-card,
.news-card,
.career-card,
.timeline-card,
.footer-card {
  padding: 28px;
}

.stat-card {
  padding: 26px;
}

.stat-card__label {
  color: var(--blue-600);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-card__value {
  display: block;
  margin-top: 12px;
  color: var(--text-heading);
  font-size: 1.6rem;
  font-weight: 800;
}

.stat-card__text,
.info-card__text,
.news-card__body,
.career-card__body,
.solution-card__body,
.timeline-card__body {
  margin-top: 10px;
  color: var(--text-body);
}

.info-card__title,
.news-card__title,
.career-card__title,
.solution-card__title,
.timeline-card__title {
  font-size: 1.2rem;
}

.page--culture-main {
  padding-top: 0;
}

body.page--culture {
  background-color: #00050a;
  background-image:
    linear-gradient(rgba(0, 10, 25, 0.78), rgba(0, 5, 15, 0.85)),
    url("../images/bg2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: rgba(180, 210, 255, 0.68);
}

body.page--culture h1,
body.page--culture h2,
body.page--culture h3 {
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Culture page — mockup dark layout
   ═══════════════════════════════════════════════════════════════════════════ */

.culture-glass-card {
  overflow: hidden;
  border: 1px solid rgba(0, 194, 255, 0.22);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow:
    0 0 0 1px rgba(0, 194, 255, 0.06),
    0 0 32px rgba(0, 194, 255, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.culture-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.culture-btn:hover {
  transform: translateY(-1px);
}

.culture-btn--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
}

.culture-btn--ghost:hover {
  border-color: rgba(0, 242, 255, 0.45);
  background: rgba(0, 242, 255, 0.08);
}

.culture-btn--gradient {
  background: linear-gradient(135deg, #00c2ff 0%, #5855eb 100%);
  color: #021428;
  box-shadow: 0 14px 30px rgba(0, 194, 255, 0.28);
}

.culture-btn--gradient:hover {
  background: linear-gradient(135deg, #33d4ff 0%, #6b68f0 100%);
  box-shadow: 0 16px 34px rgba(0, 194, 255, 0.34);
}

.culture-btn--sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

/* Hero */
.culture-hero {
  position: relative;
  padding: clamp(148px, 14vw, 168px) 0 clamp(72px, 9vw, 100px);
  overflow: hidden;
  color: rgba(232, 244, 255, 0.92);
}

.culture-hero__inner {
  position: relative;
  z-index: 1;
}

.culture-hero__copy {
  min-width: 0;
  max-width: 42rem;
}

.culture-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #00c2ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.culture-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.culture-hero__body {
  margin: clamp(18px, 2.2vw, 24px) 0 0;
  max-width: 52ch;
  color: rgba(180, 210, 255, 0.72);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.culture-hero__copy .culture-btn {
  margin-top: clamp(28px, 3.5vw, 36px);
}

/* Shared sections */
.culture-values,
.culture-network {
  position: relative;
  padding: clamp(72px, 9vw, 100px) 0;
  background: transparent;
}

.culture-network {
  padding-bottom: clamp(80px, 10vw, 112px);
}

.culture-section__header {
  max-width: 720px;
  margin-bottom: clamp(32px, 4.5vw, 52px);
}

.culture-section__header--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.culture-section__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: #00c2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.culture-section__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Values — open layout */
.culture-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 40px);
}

.culture-value__icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: #00c2ff;
}

.culture-value__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
}

.culture-value__body {
  margin: 0;
  color: rgba(180, 210, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Join network */
.culture-network__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: clamp(32px, 4.5vw, 56px);
  align-items: center;
}

.culture-network__lede {
  margin: 14px 0 0;
  max-width: 52ch;
  color: rgba(180, 210, 255, 0.68);
  font-size: clamp(0.98rem, 1.05vw, 1.06rem);
  line-height: 1.65;
}

.culture-network__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3.5vw, 36px);
}

.culture-network__card {
  display: flex;
  gap: clamp(18px, 2.5vw, 24px);
  align-items: flex-start;
  padding: clamp(24px, 3vw, 32px);
}

.culture-network__card-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 255, 0.22);
  background:
    radial-gradient(circle, rgba(0, 242, 255, 0.22) 0%, rgba(0, 242, 255, 0.04) 70%),
    rgba(0, 242, 255, 0.06);
  color: #00c2ff;
  box-shadow: 0 0 28px rgba(0, 242, 255, 0.18);
}

.culture-network__card-content {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.culture-network__card-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

.culture-network__card-body {
  margin: 0;
  color: rgba(180, 210, 255, 0.68);
  font-size: 0.94rem;
  line-height: 1.65;
}

.culture-open-positions__list {
  display: grid;
  gap: 16px;
}

body.page--culture .contact-section {
  border-top: 1px solid rgba(0, 45, 98, 0.08);
}

@media (max-width: 1024px) {
  .culture-network__inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .culture-values__grid {
    grid-template-columns: 1fr;
  }

  .culture-network__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .culture-network__actions .culture-btn {
    width: 100%;
  }

  .culture-network__card {
    flex-direction: column;
  }
}

.info-card__meta,
.news-card__meta {
  color: var(--blue-600);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.news-card__date {
  color: var(--text-heading);
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-side-note,
.page-hero__note {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.page-hero__note strong,
.hero-side-note strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
}

.hero--digital-finance-clean {
  background: #ffffff;
}

/* Stacked under the cinematic Web3 hero — avoid double header offset */
.page--hero-shell .hero--digital-finance-clean.hero--page {
  padding-top: clamp(44px, 5vw, 72px);
}

.hero--digital-finance-clean .hero__background {
  background: url("../images/background.png") center / cover no-repeat;
}

.hero--digital-finance-clean .hero__background::after {
  display: none;
}

.hero--digital-finance-clean .hero__eyebrow {
  border-color: rgba(0, 45, 98, 0.08);
  background: rgba(0, 45, 98, 0.04);
  color: var(--navy-900);
}

.hero--digital-finance-clean .hero__title,
.hero--digital-finance-clean .page-hero__title,
.hero--digital-finance-clean .page-hero__body,
.hero--digital-finance-clean .page-hero__note,
.hero--digital-finance-clean .page-hero__note strong {
  color: var(--navy-900);
}

.hero--digital-finance-clean .page-hero__body {
  color: var(--text-body);
}

.hero--digital-finance-clean .page-hero__note {
  border: 1px solid rgba(0, 45, 98, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.digital-finance-hero,
.digital-finance-hero--balanced {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  min-height: 560px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.digital-finance-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  flex: 0 1 600px;
  margin-left: 0;
  padding: 20px 120px 20px 0;
  text-align: left;
  opacity: 0;
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.digital-finance-hero__title {
  max-width: 12ch;
  color: var(--navy-900);
  font-size: clamp(2.9rem, 4.2vw, 3.2rem);
  line-height: 1.12;
  margin-bottom: 28px;
}

.digital-finance-hero__body {
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.6;
}

.digital-finance-hero__actions {
  margin-top: 30px;
}

.digital-finance-hero__cta {
  border-radius: 8px;
  background: #0056b3;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 86, 179, 0.24);
}

.digital-finance-hero__cta:hover {
  background: #0a3f7f;
}

.digital-finance-hero__media {
  position: absolute;
  right: 5%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 420px;
  max-width: 42%;
  min-width: 0;
  pointer-events: none;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  min-height: 430px;
}

.hero-image-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: min(520px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.07) 0%, rgba(0, 123, 255, 0.04) 46%, rgba(0, 123, 255, 0) 74%);
  transform: translateX(-50%);
  z-index: 0;
}

.hero-image {
  position: absolute;
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-image--digital-finance {
  right: 5%;
  bottom: 0;
  left: auto;
  width: min(100%, 400px);
  max-width: 400px;
  z-index: 1;
  opacity: 0;
  animation: digital-finance-hero-fade-in 1.1s ease-out 0.15s forwards, digital-finance-float 5s ease-in-out 1.15s infinite;
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.digital-finance-hero__content::before {
  content: "";
  position: absolute;
  inset: -18px -26px -18px -22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 60px rgba(0, 20, 50, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}

.digital-finance-hero-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(0, 45, 98, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.digital-finance-hero-panel__label {
  color: var(--df-color-eyebrow, var(--blue-600));
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.digital-finance-hero-panel__value {
  color: var(--df-color-heading, var(--text-heading));
  font-size: 1.3rem;
  font-weight: 800;
}

/* Digital Finance — “Our solution” split (reference layout, site navy / cyan tone) */
#digital-finance-our-solution {
  scroll-margin-top: 100px;
}

.df-solution-showcase {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  background-color: #0a1f36;
  background-image:
    radial-gradient(ellipse 80% 55% at 15% 35%, rgba(0, 242, 255, 0.08), transparent 52%),
    radial-gradient(ellipse 60% 50% at 92% 75%, rgba(99, 102, 241, 0.1), transparent 48%),
    linear-gradient(165deg, rgba(4, 13, 24, 0.9) 0%, rgba(10, 31, 54, 0.88) 42%, rgba(5, 15, 26, 0.92) 100%),
    url("../images/bg1.png");
  background-position: center;
  background-size: auto, auto, auto, cover;
  background-repeat: no-repeat;
}

.df-solution-showcase__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background:
    linear-gradient(rgba(0, 242, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.df-solution-showcase__inner {
  position: relative;
  z-index: 1;
}

.df-solution-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.df-solution-showcase__visual {
  position: relative;
  min-height: min(420px, 52vw);
}

.df-solution-showcase__stack {
  position: relative;
  width: min(100%, 440px);
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.df-solution-showcase__stack::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118%;
  height: 88%;
  transform: translate(-50%, -46%);
  border-radius: 36px;
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 242, 255, 0.18), transparent 62%);
  filter: blur(28px);
  opacity: 0.75;
  z-index: 0;
  pointer-events: none;
}

.df-solution-showcase__frame {
  position: absolute;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 255, 0.22);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: rgba(6, 14, 28, 0.85);
}

.df-solution-showcase__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.df-solution-showcase__frame--back {
  inset: 4% 8% 12% 18%;
  z-index: 1;
  transform: rotate(-2deg);
  opacity: 0.92;
}

.df-solution-showcase__frame--front {
  inset: 10% 14% 4% 4%;
  z-index: 2;
  transform: rotate(1.5deg);
}

.df-solution-showcase__title {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--df-color-dark-heading, #f1f5f9);
  text-shadow: 0 0 42px rgba(0, 242, 255, 0.12);
}

.df-solution-showcase__lede {
  margin: 0;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--df-color-dark-body, rgba(226, 234, 255, 0.86));
}

.df-solution-showcase__bullet-list {
  margin: 0;
  padding-left: 1.2em;
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--df-color-dark-body, rgba(226, 234, 255, 0.86));
  list-style: disc;
}

.df-solution-showcase__bullet-list li {
  margin: 0 0 0.65em;
  padding-left: 0.15em;
}

.df-solution-showcase__bullet-list li:last-child {
  margin-bottom: 0;
}

.df-solution-showcase__quote {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.5vw, 24px);
  margin: clamp(36px, 5vw, 52px) 0 0;
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 3vw, 32px);
  border-radius: 22px;
  border: 1px solid rgba(0, 45, 98, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 249, 253, 0.98) 100%);
  box-shadow:
    0 20px 50px rgba(0, 20, 50, 0.18),
    0 0 0 1px rgba(0, 242, 255, 0.08);
}

.df-solution-showcase__quote-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #00b8d4;
  background: linear-gradient(145deg, rgba(0, 242, 255, 0.14), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(0, 242, 255, 0.28);
}

.df-solution-showcase__quote-text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: clamp(0.94rem, 1.2vw, 1.02rem);
  line-height: 1.55;
  font-weight: 600;
  font-style: italic;
  color: var(--df-color-dark-body, rgba(226, 234, 255, 0.86));
}

@media (max-width: 900px) {
  .df-solution-showcase__grid {
    grid-template-columns: 1fr;
  }

  .df-solution-showcase__visual {
    order: -1;
    min-height: min(380px, 62vw);
  }

  .df-solution-showcase__stack {
    max-height: 440px;
  }

  .df-solution-showcase__lede,
  .df-solution-showcase__bullet-list {
    max-width: none;
  }

  .df-solution-showcase__quote {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Digital Finance — Fund information platform showcase */
#digital-finance-wealth-portfolio {
  padding-bottom: 0;
}

.df-fund-platform {
  position: relative;
  margin-top: 0;
  padding: clamp(58px, 7vw, 92px) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
  color: rgba(232, 244, 255, 0.9);
  background:
    radial-gradient(ellipse 70% 45% at 76% 20%, rgba(0, 242, 255, 0.16), transparent 56%),
    radial-gradient(ellipse 55% 40% at 24% 80%, rgba(99, 102, 241, 0.16), transparent 54%),
    linear-gradient(145deg, #061426 0%, #071d38 52%, #040b16 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.df-fund-platform::before,
.df-fund-platform::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.df-fund-platform::before {
  inset: 0;
  background:
    linear-gradient(rgba(0, 242, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(130deg, transparent 0%, black 26%, transparent 84%);
  -webkit-mask-image: linear-gradient(130deg, transparent 0%, black 26%, transparent 84%);
}

.df-fund-platform::after {
  right: -12%;
  top: 2%;
  width: 42%;
  height: 70%;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 255, 0.12);
  transform: rotate(-18deg);
  box-shadow: 0 0 70px rgba(0, 242, 255, 0.08);
}

.df-fund-platform > * {
  position: relative;
  z-index: 1;
}

.df-fund-platform__inner {
  position: relative;
}

.df-fund-platform__hero {
  display: flex;
  justify-content: center;
  text-align: center;
}

.df-fund-platform__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(320px, 40vw, 460px);
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(0, 242, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(3, 16, 33, 0.86), rgba(3, 14, 28, 0.96)),
    radial-gradient(circle at top left, rgba(0, 242, 255, 0.18), transparent 46%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.df-fund-platform__image {
  width: 100%;
  max-height: 430px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.df-fund-platform__placeholder {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(0, 242, 255, 0.36);
  border-radius: 18px;
  color: rgba(225, 246, 255, 0.78);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(0, 242, 255, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.03);
}

.df-fund-platform__placeholder-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  color: var(--accent-cyan);
  background: rgba(0, 242, 255, 0.08);
  border: 1px solid rgba(0, 242, 255, 0.2);
}

.df-fund-platform__placeholder strong {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.df-fund-platform__placeholder span:not(.df-fund-platform__placeholder-icon) {
  max-width: 24ch;
  font-size: 0.9rem;
  line-height: 1.45;
}

.df-fund-platform__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 820px);
  min-width: 0;
  padding-block: clamp(10px, 3vw, 26px);
}

.df-fund-platform__eyebrow {
  margin-bottom: 10px;
  color: var(--df-color-dark-eyebrow, rgba(0, 242, 255, 0.88));
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.df-fund-platform__title {
  max-width: 15ch;
  color: var(--df-color-dark-heading, #f1f5f9);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.df-fund-platform__lede {
  margin-top: clamp(16px, 2vw, 22px);
  max-width: 58ch;
  color: var(--df-color-dark-body, rgba(226, 234, 255, 0.86));
  font-size: 1.02rem;
  line-height: 1.65;
}

.df-fund-platform__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(18px, 2.6vw, 28px);
}

.df-fund-platform__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.df-fund-platform__button--primary {
  color: #001426;
  background: linear-gradient(135deg, #00f2ff, #22d3ee);
  box-shadow: 0 12px 28px rgba(0, 242, 255, 0.25);
}

.df-fund-platform__button--ghost {
  color: #dff7ff;
  border: 1px solid rgba(0, 242, 255, 0.58);
  background: rgba(0, 242, 255, 0.04);
}

.df-fund-platform__button:hover {
  transform: translateY(-2px);
}

.df-fund-platform__proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 760px);
  margin-top: clamp(24px, 4vw, 42px);
}

.df-fund-platform__proof {
  display: grid;
  gap: 6px;
  padding-inline: 16px;
  border-left: 1px solid rgba(148, 204, 255, 0.2);
}

.df-fund-platform__proof:first-child {
  padding-inline: 16px;
  border-left: 0;
}

.df-fund-platform__proof-icon {
  color: var(--accent-cyan);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.df-fund-platform__proof strong {
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.25;
}

.df-fund-platform__proof span:last-child {
  color: rgba(216, 230, 246, 0.68);
  font-size: 0.76rem;
  line-height: 1.45;
}

.df-fund-platform__modules {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(18px, 3vw, 28px);
}

.df-fund-platform__module {
  min-width: 0;
  padding: clamp(16px, 1.8vw, 20px);
  border: 1px solid rgba(74, 144, 226, 0.35);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(13, 45, 83, 0.82), rgba(7, 24, 48, 0.92)),
    radial-gradient(circle at 20% 10%, rgba(0, 242, 255, 0.16), transparent 38%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.df-fund-platform__module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  color: var(--accent-cyan);
  background: rgba(0, 242, 255, 0.08);
  border: 1px solid rgba(0, 242, 255, 0.22);
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.1);
}

.df-fund-platform__module h4 {
  color: #ffffff;
  font-size: 0.98rem;
  line-height: 1.25;
}

.df-fund-platform__module p {
  margin-top: 10px;
  color: rgba(224, 236, 252, 0.72);
  font-size: 0.8rem;
  line-height: 1.55;
}

.df-fund-platform__bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 12px;
  border: 1px solid rgba(74, 144, 226, 0.34);
  border-radius: 16px;
  background: rgba(12, 38, 76, 0.72);
  overflow: hidden;
}

.df-fund-platform__bar-item {
  display: grid;
  gap: 3px;
  padding: 16px 20px;
}

.df-fund-platform__bar-item + .df-fund-platform__bar-item {
  border-left: 1px solid rgba(148, 204, 255, 0.18);
}

.df-fund-platform__bar-item strong {
  color: #ffffff;
  font-size: 0.92rem;
}

.df-fund-platform__bar-item span {
  color: rgba(220, 234, 252, 0.68);
  font-size: 0.75rem;
  line-height: 1.4;
}

.df-fund-platform__journey {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.7fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  margin-top: clamp(18px, 3vw, 30px);
}

.df-fund-platform__journey-intro span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.df-fund-platform__journey-intro h4 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.05;
}

.df-fund-platform__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.df-fund-platform__steps li {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.df-fund-platform__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(2ch + 20px);
  width: calc(100% - 38px);
  border-top: 1px dashed rgba(0, 242, 255, 0.45);
}

.df-fund-platform__steps span {
  color: var(--accent-cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.df-fund-platform__steps strong {
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.3;
}

.df-fund-capabilities {
  position: relative;
  padding: clamp(58px, 7vw, 90px) 0 clamp(64px, 8vw, 104px);
  overflow: hidden;
  color: rgba(232, 244, 255, 0.9);
  background:
    radial-gradient(ellipse 55% 38% at 18% 8%, rgba(0, 242, 255, 0.1), transparent 58%),
    radial-gradient(ellipse 50% 40% at 94% 80%, rgba(99, 102, 241, 0.13), transparent 56%),
    linear-gradient(180deg, #04101f 0%, #06172c 52%, #030a14 100%);
  border-top: 1px solid rgba(0, 242, 255, 0.12);
}

.df-fund-capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 242, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 88%);
}

.df-fund-capabilities__inner {
  position: relative;
  z-index: 1;
}

.df-fund-capabilities__header {
  max-width: 680px;
  margin-bottom: clamp(22px, 3.5vw, 34px);
}

.df-fund-capabilities__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--df-color-dark-eyebrow, rgba(0, 242, 255, 0.88));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.df-fund-capabilities__title {
  color: var(--df-color-dark-heading, #f1f5f9);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Platform Showcase (psc-) — dark-mode tab showcase
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Section shell ── */
.psc-section {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0 clamp(80px, 10vw, 124px);
  background: #070f1e;
  overflow: hidden;
  isolation: isolate;
}

.psc-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(0, 210, 255, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 55% 40% at 80% 80%,  rgba(124, 77, 255, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 10% 70%,  rgba(0, 200, 200, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.psc-container {
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.psc-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

.psc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 242, 255, 0.3);
  background: rgba(0, 242, 255, 0.08);
  color: var(--df-color-dark-eyebrow, rgba(0, 242, 255, 0.88));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.psc-title {
  color: var(--df-color-dark-heading, #f1f5f9);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.psc-desc {
  margin: 16px auto 0;
  max-width: 56ch;
  color: var(--df-color-dark-muted, rgba(148, 163, 184, 0.95));
  font-size: 1.02rem;
  line-height: 1.65;
}

/* ── Tab navigation ── */
.psc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.psc-tab {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(180, 210, 255, 0.65);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}

.psc-tab:hover {
  background: rgba(0, 242, 255, 0.08);
  border-color: rgba(0, 242, 255, 0.3);
  color: rgba(220, 245, 255, 0.9);
}

.psc-tab.is-active {
  background: rgba(0, 242, 255, 0.12);
  border-color: rgba(0, 242, 255, 0.55);
  color: #00f2ff;
  box-shadow: 0 0 16px rgba(0, 242, 255, 0.2), inset 0 0 10px rgba(0, 242, 255, 0.06);
}

/* ── Panel layout ── */
.psc-panels {
  position: relative;
}

.psc-panel {
  display: none;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.psc-panel.is-active {
  display: grid;
  animation: psc-fade-in 420ms ease both;
}

@keyframes psc-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Left copy ── */
.psc-panel__copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.psc-panel__tag {
  display: inline-block;
  color: rgba(0, 242, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.psc-panel__heading {
  color: var(--df-color-dark-heading, #f1f5f9);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.psc-panel__text {
  color: var(--df-color-dark-muted, rgba(148, 163, 184, 0.95));
  font-size: 0.95rem;
  line-height: 1.7;
}

.psc-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.psc-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(200, 225, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.5;
}

.psc-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: #00f2ff;
  box-shadow: 0 0 6px rgba(0, 242, 255, 0.6);
}

/* ── Browser mockup ── */
.psc-panel__preview {
  position: relative;
}

.psc-browser {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a1628;
  box-shadow:
    0 0 0 1px rgba(0, 242, 255, 0.06),
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: psc-float 5s ease-in-out infinite;
}

@keyframes psc-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.psc-browser__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0d1c30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.psc-browser__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.psc-browser__dot--r { background: #ff5f57; }
.psc-browser__dot--y { background: #ffbd2e; }
.psc-browser__dot--g { background: #28c840; }

.psc-browser__bar {
  flex: 1;
  margin: 0 8px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(160, 190, 230, 0.55);
  font-size: 0.7rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.psc-browser__lock {
  font-size: 0.65rem;
  margin-right: 4px;
  filter: grayscale(1) brightness(0.6);
}

/* ── Dashboard screen ── */
.psc-screen {
  padding: 0;
  overflow: hidden;
}

.psc-dash {
  padding: clamp(12px, 2vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #080f1d;
  min-height: 340px;
}

.wealth-hero-phone .psc-dash.wealth-hero-phone__dash {
  min-height: 0;
  padding: 4px 5px 5px;
  gap: 3px;
}

.wealth-hero-phone .psc-dash__topbar.wealth-hero-phone__topbar {
  padding-bottom: 4px;
  gap: 4px;
}

.psc-dash__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.psc-dash__topbar-title {
  color: rgba(210, 230, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.psc-dash__topbar-actions {
  display: flex;
  gap: 6px;
}

/* ── Shared micro-components ── */
.psc-chip {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(180, 210, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.psc-chip--cyan {
  border-color: rgba(0, 242, 255, 0.4);
  background: rgba(0, 242, 255, 0.1);
  color: #00f2ff;
}

.psc-chart-title {
  color: rgba(150, 185, 230, 0.65);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.psc-pos { color: #34d399 !important; }
.psc-neg { color: #f87171 !important; }
.psc-muted { color: rgba(150, 180, 220, 0.55) !important; }
.psc-cyan { color: #00f2ff !important; }

/* ── Tab 1: Fund Comparison ── */
.psc-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: start;
}

.psc-compare-vs {
  align-self: center;
  color: rgba(100, 140, 200, 0.45);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.psc-compare-fund__head {
  padding: 8px 10px;
  border-radius: 8px 8px 0 0;
  border-left: 3px solid;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 4px;
}

.psc-compare-fund__name {
  display: block;
  color: #d8eaff;
  font-size: 0.75rem;
  font-weight: 700;
}

.psc-compare-fund__cat {
  display: block;
  color: rgba(140, 180, 230, 0.55);
  font-size: 0.66rem;
  margin-top: 2px;
}

.psc-compare-fund__stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.psc-stat {
  display: flex;
  justify-content: space-between;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.psc-stat__l {
  color: rgba(130, 170, 220, 0.55);
  font-size: 0.65rem;
}

.psc-stat__v {
  color: rgba(210, 230, 255, 0.85);
  font-size: 0.68rem;
  font-weight: 700;
}

.psc-mini-chart-wrap {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 10px;
}

.psc-mini-chart-labels {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 0.65rem;
  font-weight: 600;
}

.psc-line-chart {
  display: block;
  width: 100%;
  height: 72px;
}

/* ── Tab 2: Fund Report ── */
.psc-report-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.psc-rstat {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.psc-rstat__l {
  color: rgba(130, 170, 220, 0.5);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.psc-rstat__v {
  color: #d0e8ff;
  font-size: 0.9rem;
  font-weight: 800;
  margin: 3px 0 2px;
}

.psc-rstat__d {
  color: rgba(130, 170, 220, 0.5);
  font-size: 0.6rem;
}

.psc-report-chart-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.psc-holding-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(190,220,255,0.75);
  font-size: 0.68rem;
}

.psc-holding-row--muted {
  opacity: 0.55;
}

/* ── Tab 3: Fund X-Ray ── */
.psc-xray-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.psc-xray-donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.psc-donut {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.psc-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.psc-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(170,205,255,0.7);
  font-size: 0.65rem;
}

.psc-legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wealth-hero-phone .wealth-hero-phone__alloc-inner {
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.wealth-hero-browser .wealth-hero-legend.psc-donut-legend {
  flex: 1 1 auto;
  min-width: 5.5rem;
  width: auto;
}

.wealth-hero-browser .wealth-hero-legend .psc-legend-item > span:not(.psc-legend-dot) {
  flex: 0 1 auto;
  flex-shrink: 0;
  overflow: visible;
  color: rgba(170, 205, 255, 0.82);
}

.wealth-hero-phone .psc-donut-legend.wealth-hero-phone__legend {
  flex: none;
  width: 100%;
  min-width: 0;
  gap: 3px;
  padding-left: 0;
}

.wealth-hero-phone .wealth-hero-phone__legend .psc-legend-item {
  font-size: 0.48rem;
  line-height: 1.45;
  min-height: 0;
  gap: 4px;
  white-space: nowrap;
}

.wealth-hero-phone .wealth-hero-phone__legend .psc-legend-item > span:not(.psc-legend-dot) {
  flex: 1 1 auto;
  flex-shrink: 0;
  overflow: visible;
  color: rgba(170, 205, 255, 0.82);
}

.wealth-hero-phone .wealth-hero-phone__legend .psc-legend-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
}

.psc-xray-tables {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.psc-bar-row {
  display: grid;
  grid-template-columns: 88px 1fr 30px;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  color: rgba(170,205,255,0.7);
  font-size: 0.65rem;
}

.psc-bar-track {
  height: 5px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.psc-bar-fill {
  height: 100%;
  border-radius: 100px;
  opacity: 0.85;
}

.psc-bar-pct {
  color: rgba(190,220,255,0.65);
  font-weight: 700;
  text-align: right;
}

/* ── Tab 4: Performance Charts ── */
.psc-period-tabs {
  display: flex;
  gap: 4px;
}

.psc-period-tab {
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(150,185,230,0.55);
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
}

.psc-period-tab--active {
  background: rgba(0,242,255,0.12);
  border-color: rgba(0,242,255,0.4);
  color: #00f2ff;
}

.psc-perf-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.psc-pstat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.psc-pstat__l {
  color: rgba(130,170,220,0.5);
  font-size: 0.62rem;
}

.psc-pstat__v {
  color: rgba(210,230,255,0.85);
  font-size: 0.82rem;
  font-weight: 800;
}

.psc-chart-xaxis {
  display: flex;
  justify-content: space-between;
  color: rgba(110,150,210,0.45);
  font-size: 0.6rem;
  padding-top: 4px;
}

/* ── Tab 5: Factsheet ── */
.psc-factsheet__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 12px;
}

.psc-factsheet__logo {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,242,255,0.1);
  border: 1px solid rgba(0,242,255,0.2);
  color: #00f2ff;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.psc-factsheet__fund-name {
  color: #d8eaff;
  font-size: 0.88rem;
  font-weight: 800;
}

.psc-factsheet__as-of {
  color: rgba(140,180,230,0.5);
  font-size: 0.65rem;
  margin-top: 2px;
}

.psc-factsheet__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.psc-factsheet__facts {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.psc-fact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(170,205,255,0.7);
  font-size: 0.65rem;
  gap: 8px;
}

.psc-fact-row span:first-child {
  color: rgba(130,170,220,0.5);
}

.psc-risk-bar {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  color: rgba(170,205,255,0.7);
}

.psc-risk-seg {
  display: inline-block;
  width: 10px;
  height: 6px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.08);
}

.psc-risk-seg.on {
  background: #fb923c;
  border-color: #fb923c;
  box-shadow: 0 0 6px rgba(251,146,60,0.5);
}

.psc-factsheet__annual {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.psc-annual-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.psc-annual-bars::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.psc-annual-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.psc-annual-bar-col span {
  color: rgba(120,160,210,0.5);
  font-size: 0.55rem;
  text-align: center;
  line-height: 1.3;
}

.psc-annual-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  align-self: flex-end;
}

.psc-annual-bar.pos {
  background: linear-gradient(to top, rgba(52,211,153,0.25), rgba(52,211,153,0.55));
  border: 1px solid rgba(52,211,153,0.3);
}

.psc-annual-bar.neg {
  background: linear-gradient(to top, rgba(248,113,113,0.25), rgba(248,113,113,0.55));
  border: 1px solid rgba(248,113,113,0.3);
  align-self: flex-start;
}

/* ── Tab 6: Fund Screener ── */
.psc-screener-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.psc-filter-pill {
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(160,195,240,0.7);
  font-size: 0.66rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.psc-filter-pill--active {
  background: rgba(0,242,255,0.1);
  border-color: rgba(0,242,255,0.35);
  color: #00f2ff;
}

.psc-screener-count {
  margin-left: auto;
  color: rgba(120,160,220,0.45);
  font-size: 0.65rem;
}

.psc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.67rem;
}

.psc-table thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.psc-table th {
  padding: 6px 8px;
  color: rgba(120,160,220,0.5);
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.psc-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 180ms ease;
}

.psc-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.psc-table td {
  padding: 7px 8px;
  color: rgba(190,220,255,0.8);
  white-space: nowrap;
}

.psc-td-muted {
  color: rgba(120,160,220,0.45) !important;
}

.psc-stars {
  color: #facc15;
  letter-spacing: -1px;
}

.psc-risk-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.psc-risk-dot.low  { background: #34d399; box-shadow: 0 0 5px rgba(52,211,153,0.6); }
.psc-risk-dot.med  { background: #facc15; box-shadow: 0 0 5px rgba(250,204,21,0.5); }
.psc-risk-dot.high { background: #f87171; box-shadow: 0 0 5px rgba(248,113,113,0.6); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .psc-panel.is-active {
    grid-template-columns: 1fr;
  }

  .psc-tabs {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    gap: 6px;
    padding-bottom: 0;
  }

  .psc-tab {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .psc-report-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .psc-compare-grid {
    grid-template-columns: 1fr;
  }

  .psc-compare-vs { display: none; }

  .psc-xray-grid {
    grid-template-columns: 1fr;
  }

  .psc-factsheet__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .psc-report-chart-row {
    grid-template-columns: 1fr;
  }

  .psc-report-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .psc-panel__preview {
    width: 100%;
    margin-top: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .psc-panel__preview::-webkit-scrollbar {
    display: none;
  }

  .psc-browser {
    min-width: 0;
    animation: none;
  }

  .psc-dash {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .psc-panel.is-active { animation: none; }
  .psc-browser { animation: none; }
}

@media (max-width: 1100px) {
  .df-fund-platform__hero,
  .df-fund-platform__journey {
    grid-template-columns: 1fr;
  }

  .df-fund-platform__proof-grid,
  .df-fund-platform__bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .df-fund-platform__modules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .df-fund-platform {
    padding-block: 46px 58px;
  }

  .df-fund-capabilities {
    padding-block: 46px 58px;
  }

  .df-fund-platform__title {
    max-width: 14ch;
  }

  .df-fund-platform__proof-grid,
  .df-fund-platform__modules,
  .df-fund-platform__bar {
    grid-template-columns: 1fr;
  }

  .df-fund-platform__steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(88px, 1fr));
    width: 100%;
    max-width: none;
    margin-inline: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    text-align: center;
    padding-bottom: 4px;
  }

  .df-fund-platform__steps::-webkit-scrollbar {
    display: none;
  }

  .df-fund-platform__steps li {
    scroll-snap-align: start;
    min-width: 88px;
    justify-items: center;
  }

  .df-fund-platform__proof,
  .df-fund-platform__proof:first-child {
    padding-left: 14px;
    border-left: 1px solid rgba(148, 204, 255, 0.2);
  }

  .df-fund-platform__bar-item + .df-fund-platform__bar-item {
    border-top: 1px solid rgba(148, 204, 255, 0.18);
    border-left: 0;
  }

  .df-fund-platform__journey {
    text-align: center;
    justify-items: center;
  }

  .df-fund-platform__journey-intro {
    text-align: center;
  }

  .df-fund-platform__journey-intro h4 {
    max-width: none;
    margin-inline: auto;
  }

  .df-fund-platform__steps li:not(:last-child)::after {
    top: 13px;
    left: calc(50% + 18px);
    bottom: auto;
    width: calc(100% - 36px);
    height: auto;
    border-top: 1px dashed rgba(0, 242, 255, 0.45);
    border-left: 0;
  }
}

.digital-finance-partnership {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: center;
}

.digital-finance-partnership__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 45, 98, 0.06);
  color: var(--df-color-eyebrow, var(--blue-600));
  font-size: 0.85rem;
  font-weight: 800;
}

/* digital-finance.html — section 2 (Morningstar partnership) */
#partnership {
  background-color: #f4f7fb;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(240, 245, 252, 0.88)),
    url("../images/bg2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#modules,
#partnership,
#section-5-workflow,
#digital-finance-our-solution,
#digital-finance-uiux,
#digital-finance-wealth-portfolio,
#ims-modules,
#ims-roi,
#wealth-journeys,
#wealth-governance {
  scroll-margin-top: 96px;
}

/* Digital finance — UI/UX section */
.df-uiux {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.df-uiux__shell {
  padding-bottom: clamp(40px, 5vw, 56px);
}

.df-uiux__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.df-uiux__copy {
  min-width: 0;
}

.df-uiux__eyebrow {
  color: var(--df-color-eyebrow, var(--blue-600));
}

.df-uiux__title {
  margin-top: 12px;
  color: var(--df-color-heading, var(--text-heading));
}

.df-uiux__lede {
  margin-top: 14px;
  max-width: 52ch;
  color: var(--df-color-body, var(--text-body));
}

.df-uiux__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(24px, 3vw, 32px) 0 0;
  padding: 0;
  list-style: none;
}

.df-uiux__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.df-uiux__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}

.df-uiux__feature-title {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--df-color-heading, var(--text-heading));
}

.df-uiux__feature-text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--df-color-body, var(--text-body));
}

.df-uiux__visual {
  min-width: 0;
}

.df-uiux__devices {
  display: flex;
  align-items: flex-end;
  gap: clamp(14px, 2vw, 22px);
  font-size: 0.94em;
}

.df-uiux__desktop {
  flex: 1;
  min-width: 0;
}

.df-uiux__mobile {
  flex: 0 0 clamp(148px, 22vw, 172px);
}

.df-uiux-browser {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.df-uiux-browser__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.df-uiux-browser__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.df-uiux-browser__dot--r { background: #f87171; }
.df-uiux-browser__dot--y { background: #fbbf24; }
.df-uiux-browser__dot--g { background: #34d399; }

.df-uiux-browser__bar {
  flex: 1;
  margin-left: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffffff;
  color: #64748b;
  font-size: 0.62rem;
  font-weight: 600;
}

.df-uiux-advisor {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 220px;
}

.df-uiux-advisor__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 6px;
  background: #0f2744;
}

.df-uiux-advisor__nav-item {
  padding: 6px 4px;
  border-radius: 8px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.df-uiux-advisor__nav-item.is-active {
  background: rgba(37, 99, 235, 0.22);
  color: #ffffff;
}

.df-uiux-advisor__main {
  padding: 12px;
  background: #f8fafc;
}

.df-uiux-advisor__greet {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f172a;
}

.df-uiux-advisor__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.df-uiux-advisor__stat {
  padding: 8px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.df-uiux-advisor__stat-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #64748b;
}

.df-uiux-advisor__stat strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.df-uiux-advisor__spark {
  display: block;
  width: 100%;
  height: 24px;
  margin-top: 6px;
}

.df-uiux-advisor__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 28px;
  margin-top: 6px;
}

.df-uiux-advisor__bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
}

.df-uiux-advisor__todo {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.df-uiux-advisor__todo li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 0.58rem;
  color: #475569;
  line-height: 1.4;
}

.df-uiux-advisor__todo em {
  font-style: normal;
  font-weight: 800;
  color: #2563eb;
}

.df-uiux-advisor__stat--donut {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.df-uiux-advisor__donut {
  width: 52px;
  height: 52px;
  margin-top: 2px;
}

.df-uiux-phone {
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 9 / 19;
  padding: 8px 7px 10px;
  border-radius: 22px;
  border: 2px solid rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.df-uiux-phone__notch {
  flex: 0 0 auto;
  width: 38%;
  height: 4px;
  margin: 0 auto 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.12);
}

.df-uiux-phone__screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
  padding: 4px;
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
}

.df-uiux-phone__greet {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 800;
  color: #0f172a;
}

.df-uiux-phone__kpi span {
  display: block;
  font-size: 0.52rem;
  font-weight: 700;
  color: #64748b;
}

.df-uiux-phone__kpi strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #0f172a;
}

.df-uiux-phone__kpi em {
  font-style: normal;
  font-size: 0.52rem;
  font-weight: 700;
}

.df-uiux-phone__kpi em.is-up {
  color: #059669;
}

.df-uiux-phone__chart {
  width: 100%;
  height: 22px;
}

.df-uiux-phone__mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.df-uiux-phone__mini-stat {
  padding: 4px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.df-uiux-phone__mini-stat span {
  display: block;
  font-size: 0.48rem;
  font-weight: 700;
  color: #64748b;
  line-height: 1.2;
}

.df-uiux-phone__mini-stat strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.df-uiux-phone__bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-top: 3px;
}

.df-uiux-phone__bars span {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
}

.df-uiux-phone__mini-stat--donut {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.df-uiux-phone__todo {
  margin: 0;
  padding: 4px;
  list-style: none;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.df-uiux-phone__todo li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  font-size: 0.48rem;
  color: #475569;
  line-height: 1.35;
}

.df-uiux-phone__todo li + li {
  margin-top: 2px;
}

.df-uiux-phone__todo em {
  font-style: normal;
  font-weight: 800;
  color: #2563eb;
}

.df-uiux-phone__activity {
  padding: 4px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.df-uiux-phone__activity-label {
  display: block;
  font-size: 0.48rem;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 2px;
}

.df-uiux-phone__activity p {
  margin: 0;
  font-size: 0.48rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-uiux-phone__donut {
  width: 28px;
  height: 28px;
  margin-top: 1px;
}

.df-uiux-phone__nav {
  display: flex;
  justify-content: space-around;
  gap: 4px;
  margin-top: auto;
  padding-top: 3px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.df-uiux-phone__nav span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(37, 99, 235, 0.15);
}

@media (max-width: 1100px) {
  .df-uiux__grid {
    grid-template-columns: 1fr;
  }

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

  .df-uiux__visual {
    max-width: 640px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .df-uiux__features {
    grid-template-columns: 1fr;
  }

  .df-uiux__devices {
    flex-direction: column;
    align-items: stretch;
  }

  .df-uiux__mobile {
    flex: none;
    width: min(160px, 46%);
    margin-inline: auto;
  }

  .df-uiux-advisor {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 200px;
  }

  .df-uiux-advisor__nav-item {
    font-size: 0.52rem;
  }
}

/* Digital finance — Section 3: HTML/CSS architecture diagram */
.digital-finance-architecture {
  background: #ffffff;
}

.digital-finance-architecture__header {
  max-width: 58rem;
}

.digital-finance-architecture__eyebrow {
  color: var(--df-color-eyebrow, var(--blue-600));
}

.digital-finance-architecture__title {
  margin-top: 12px;
  color: var(--df-color-heading, var(--text-heading));
  font-weight: 800;
}

.digital-finance-architecture__lede {
  margin-top: 14px;
  max-width: 52ch;
  color: var(--df-color-body, var(--text-body));
}

.digital-finance-architecture__canvas {
  margin-top: clamp(24px, 4vw, 36px);
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #eef1f6;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 14px 40px rgba(15, 23, 42, 0.06);
}

/* Robo architecture diagram (horizontal swimlanes + placeholders) */
.df-arch-diagram {
  --df-arch-flow: #14b8a6;
  --df-demo-2xs: 0.44rem;
  --df-demo-xs: 0.48rem;
  --df-demo-sm: 0.54rem;
  --df-demo-base: 0.58rem;
  --df-demo-md: 0.62rem;
  --df-demo-lg: 0.68rem;
  display: grid;
  grid-template-columns: minmax(108px, 120px) minmax(200px, 1fr) 36px minmax(200px, 1fr) 36px minmax(220px, 1.1fr);
  grid-template-rows: auto minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 8px;
  align-items: stretch;
}

.df-arch-diagram__sources {
  display: grid;
  grid-template-rows: subgrid;
  grid-column: 1;
  grid-row: 1 / -1;
  gap: 12px;
  align-items: center;
  justify-items: center;
  padding: 14px 0;
  box-sizing: border-box;
}

.df-arch-diagram__sources-spacer {
  min-height: 0;
}

.df-arch-diagram__actors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.df-arch-diagram__actor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100%;
  text-align: center;
}

.df-arch-diagram__actor--advisor {
  transform: none;
}

.df-arch-diagram__actor-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
}

.df-arch-diagram__actor-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--df-color-body, var(--text-body));
  line-height: 1.2;
}

.df-arch-diagram__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / -1;
  align-self: stretch;
  min-height: 48px;
}

.df-arch-diagram__connector--between:nth-of-type(1) {
  grid-column: 3;
}

.df-arch-diagram__connector--between:nth-of-type(2) {
  grid-column: 5;
}

.df-arch-diagram__lane {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  gap: 12px;
  padding: 14px;
  min-width: 0;
  border-radius: 16px;
}

.df-arch-diagram__lane--fe {
  grid-column: 2;
  background: linear-gradient(165deg, #dbeafe 0%, #e8f3ff 48%, #dceefc 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.df-arch-diagram__lane--mid {
  grid-column: 4;
  background: linear-gradient(165deg, #d1fae5 0%, #e7fcf1 50%, #cff8e5 100%);
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.df-arch-diagram__lane--be {
  grid-column: 6;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 32px rgba(15, 23, 42, 0.07);
}

.df-arch-diagram__zone {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 14px;
  min-width: 0;
}

.df-arch-diagram__zone--fe {
  background: linear-gradient(165deg, #dbeafe 0%, #e8f3ff 48%, #dceefc 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.df-arch-diagram__zone--mid {
  background: linear-gradient(165deg, #d1fae5 0%, #e7fcf1 50%, #cff8e5 100%);
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.df-arch-diagram__zone--be {
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 32px rgba(15, 23, 42, 0.07);
}

.df-arch-diagram__zone--be .df-arch-diagram__card--backend,
.df-arch-diagram__lane--be .df-arch-diagram__card--backend {
  flex: 1;
  min-height: 0;
}

.df-arch-diagram__zone-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85em;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--df-color-body, var(--text-body));
  line-height: 1.35;
}

.df-arch-diagram__cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.df-arch-diagram__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.df-arch-diagram__card--row1,
.df-arch-diagram__card--row2 {
  height: 100%;
}

.df-arch-diagram__lane--be .df-arch-diagram__card--backend {
  flex: 1;
  min-height: 0;
}

.df-arch-diagram__card .df-arch-diagram__media {
  flex: 1;
  min-height: 232px;
  aspect-ratio: auto;
}

.df-arch-diagram__connector svg {
  width: 36px;
  height: auto;
  max-height: 28px;
}

.df-arch-diagram__card--backend {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.df-arch-diagram__card--backend .df-arch-diagram__media {
  flex: 1;
  min-height: 232px;
  aspect-ratio: auto;
}

.df-arch-diagram__card--backend .df-arch-demo-desktop__body {
  justify-content: flex-start;
}

.df-arch-diagram__badge {
  position: absolute;
  left: 12px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 0.68rem;
  font-weight: 900;
  color: #ffffff;
  border-radius: 999px;
  line-height: 1;
}

.df-arch-diagram__badge--fe {
  background: linear-gradient(145deg, #7c3aed, #6d28d9);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.df-arch-diagram__badge--mid {
  background: linear-gradient(145deg, #0d9488, #0f766e);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.df-arch-diagram__badge--be {
  background: linear-gradient(145deg, #fef3c7, #fde68a);
  color: #7c2d12;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.22);
}

.df-arch-diagram__card-title {
  margin: 0 0 8px;
  min-height: 2.75em;
  padding-left: 30px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--df-color-heading, var(--text-heading));
  letter-spacing: -0.02em;
  box-sizing: border-box;
}

.df-arch-diagram__media {
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  place-content: center;
  overflow: hidden;
  margin-top: 2px;
  border-radius: 10px;
  border: none;
  background: #ffffff;
  aspect-ratio: 16 / 10;
  min-height: 112px;
  padding: 0;
  box-sizing: border-box;
  box-shadow: none;
}

.df-arch-diagram__media-img {
  display: block;
  flex-shrink: 1;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
  object-fit: contain;
  object-position: center center;
}

.df-arch-diagram__media--method {
  align-items: center;
  justify-content: center;
  place-content: center;
  place-items: center;
}

.df-arch-diagram__media--method .df-arch-diagram__method-strip {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  box-sizing: border-box;
  text-align: center;
}

.df-arch-diagram__media--method .df-arch-diagram__ms-logo {
  display: block;
  margin-inline: auto;
}

.df-arch-diagram__media--method .df-arch-diagram__method-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 6px;
  row-gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.df-arch-diagram__ms-logo {
  width: 80px;
  height: auto;
  max-height: 22px;
  object-fit: contain;
}

.df-arch-diagram__method-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #0f766e;
}

.df-arch-diagram__method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.22);
}

.df-arch-diagram__flow-arrow {
  font-size: 0.85rem;
  font-weight: 800;
  color: #14b8a6;
  opacity: 0.85;
}

/* Architecture diagram — CSS device / desktop demos */
.df-arch-diagram__media--devices,
.df-arch-diagram__media--desktop,
.df-arch-diagram__media--method {
  aspect-ratio: auto;
  min-height: 232px;
  padding: 8px 6px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.df-arch-diagram__media--overlap {
  min-height: 232px;
  overflow: visible;
  padding: 10px 12px 16px;
}

.df-arch-demo-scene {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 100%;
  height: 100%;
  min-height: 138px;
}

.df-arch-demo-scene--overlap {
  display: block;
  height: 210px;
  min-height: 210px;
}

.df-arch-demo-scene--overlap .df-arch-demo-device {
  position: absolute;
  flex-shrink: unset;
}

.df-arch-demo-scene--overlap .df-arch-demo-device--monitor {
  left: 0;
  top: 0;
  width: 84%;
  z-index: 1;
}

.df-arch-demo-scene--overlap .df-arch-demo-device--laptop {
  left: 14%;
  bottom: 0;
  width: 68%;
  z-index: 2;
  margin-bottom: 0;
}

.df-arch-demo-scene--overlap .df-arch-demo-device--phone {
  right: -2%;
  bottom: 6px;
  width: 32%;
  z-index: 3;
  margin-bottom: 0;
}

.df-arch-demo-scene--overlap .df-arch-demo-device__screen {
  padding: 5px;
  gap: 3px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);
}

.df-arch-demo-scene--overlap .df-arch-demo-device--phone .df-arch-demo-device__screen {
  padding: 4px;
}

.df-arch-demo-device {
  position: relative;
  flex-shrink: 0;
}

.df-arch-demo-device__screen {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  padding: 3px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 3px;
  background: #ffffff;
}

.df-arch-demo-device__screen--advisor {
  flex-direction: row;
  gap: 2px;
  background: #f8fafc;
}

.df-arch-demo-device--monitor {
  width: 42%;
  z-index: 1;
}

.df-arch-demo-device--monitor .df-arch-demo-device__screen {
  aspect-ratio: 16 / 10;
  border-radius: 4px 4px 0 0;
}

.df-arch-demo-device__stand {
  height: 4px;
  margin: 0 auto;
  width: 28%;
  border-radius: 0 0 4px 4px;
  background: #cbd5e1;
}

.df-arch-demo-device--laptop {
  width: 34%;
  z-index: 2;
  margin-bottom: 2px;
}

.df-arch-demo-device__lid .df-arch-demo-device__screen {
  aspect-ratio: 16 / 10;
  border-radius: 3px 3px 0 0;
}

.df-arch-demo-device__base {
  height: 3px;
  margin-top: 1px;
  border-radius: 0 0 6px 6px;
  background: #94a3b8;
}

.df-arch-demo-device--phone {
  width: 16%;
  z-index: 3;
  margin-bottom: 0;
}

.df-arch-demo-device--phone .df-arch-demo-device__screen {
  aspect-ratio: 9 / 16;
  border-radius: 5px;
  padding: 2px;
}

.df-arch-demo-device--phone .df-arch-demo-device__screen--advisor {
  flex-direction: column;
}

/* Demo typography & detail widgets — unified scale inside diagram */
.df-arch-demo-ui__text {
  margin: 0;
  color: #334155;
  line-height: 1.25;
}

.df-arch-demo-ui__text--title {
  font-size: var(--df-demo-md, 0.62rem);
  font-weight: 800;
  color: #0f172a;
}

.df-arch-demo-ui__text--sm {
  font-size: var(--df-demo-sm, 0.54rem);
  font-weight: 700;
  color: #475569;
}

.df-arch-demo-ui__text--xs {
  font-size: var(--df-demo-xs, 0.48rem);
  font-weight: 700;
  color: #64748b;
}

.df-arch-demo-ui__text--label {
  display: block;
  font-size: var(--df-demo-xs, 0.48rem);
  font-weight: 700;
  color: #64748b;
}

.df-arch-demo-ui__text--value {
  display: block;
  font-size: var(--df-demo-lg, 0.68rem);
  font-weight: 800;
  color: #0f172a;
}

.df-arch-demo-ui__text--value-sm {
  display: block;
  font-size: var(--df-demo-base, 0.58rem);
  font-weight: 800;
  color: #0f172a;
}

.df-arch-demo-ui__text--up {
  font-style: normal;
  font-size: var(--df-demo-xs, 0.48rem);
  font-weight: 700;
  color: #059669;
}

.df-arch-demo-ui__text--toolbar {
  font-size: var(--df-demo-sm, 0.54rem);
  font-weight: 800;
  color: #1e40af;
}

.df-arch-demo-ui__text--field {
  display: block;
  font-size: var(--df-demo-sm, 0.54rem);
  font-weight: 700;
  color: #0f172a;
}

.df-arch-demo-ui__kpi {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 4px;
}

.df-arch-demo-ui__kpi .df-arch-demo-ui__text--label {
  width: 100%;
}

.df-arch-demo-ui__progress {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.df-arch-demo-ui__progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.df-arch-demo-ui__stat-row {
  display: flex;
  gap: 6px;
  font-size: var(--df-demo-xs, 0.48rem);
  font-weight: 600;
  color: #475569;
}

.df-arch-demo-ui__stat-row b {
  font-weight: 800;
  color: #64748b;
}

.df-arch-demo-ui__mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: auto;
}

.df-arch-demo-ui__mini-cards span {
  padding: 2px 3px;
  border-radius: 2px;
  background: #eef2ff;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 700;
  color: #475569;
}

.df-arch-demo-ui__mini-cards em {
  font-style: normal;
  font-weight: 800;
  color: #2563eb;
}

.df-arch-demo-ui__list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  padding: 2px 0;
  font-size: var(--df-demo-sm, 0.54rem);
  font-weight: 600;
  color: #334155;
}

.df-arch-demo-ui__list-row em {
  font-style: normal;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 700;
  color: #64748b;
}

.df-arch-demo-ui__list-row .df-arch-demo-ui__chip {
  font-size: var(--df-demo-2xs, 0.44rem);
  padding: 1px 4px;
}

.df-arch-demo-ui__list-row--phone {
  padding: 2px 3px;
  border-radius: 2px;
  background: #ffffff;
}

.df-arch-demo-ui__list-row--phone em {
  color: #2563eb;
  font-weight: 800;
}

.df-arch-demo-ui__nav-dots {
  display: flex;
  justify-content: space-around;
  gap: 2px;
  margin-top: auto;
  padding-top: 2px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.df-arch-demo-ui__nav-dots span {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: rgba(37, 99, 235, 0.25);
}

.df-arch-demo-ui__nav-dots span.is-active {
  background: #2563eb;
}

.df-arch-demo-ui__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.df-arch-demo-ui__tabs {
  display: flex;
  gap: 2px;
}

.df-arch-demo-ui__tabs span {
  padding: 1px 3px;
  border-radius: 2px;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
}

.df-arch-demo-ui__tabs span.is-active {
  color: #ffffff;
  background: #2563eb;
}

.df-arch-demo-ui__step {
  padding: 1px 4px;
  border-radius: 999px;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 700;
  color: #1e40af;
  background: #dbeafe;
}

.df-arch-demo-ui__spark {
  display: block;
  width: 100%;
  height: 16px;
  flex-shrink: 0;
}

.df-arch-demo-ui__spark--sm {
  height: 12px;
}

.df-arch-demo-ui__spark--xs {
  height: 10px;
}

.df-arch-demo-ui__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.df-arch-demo-ui__stats-grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

.df-arch-demo-ui__stat-cell {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 3px;
  border-radius: 3px;
  background: #f8fafc;
  min-width: 0;
}

.df-arch-demo-ui__stat-cell .df-arch-demo-ui__mini-cards {
  margin-top: 0;
}

.df-arch-demo-ui__stat-cell--donut {
  align-items: center;
}

.df-arch-demo-ui__donut {
  display: block;
  width: 28px;
  height: 28px;
}

.df-arch-demo-ui__donut--xs {
  width: 22px;
  height: 22px;
}

.df-arch-demo-ui__bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  margin-top: auto;
}

.df-arch-demo-ui__bars span {
  flex: 1;
  border-radius: 1px 1px 0 0;
  background: #2563eb;
  opacity: 0.75;
}

.df-arch-demo-ui__activity {
  margin: 0;
  padding: 2px 4px;
  border-radius: 2px;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 600;
  color: #475569;
  background: #eef2ff;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-arch-demo-ui__activity--phone {
  margin-top: auto;
  padding: 2px 3px;
}

.df-arch-demo-ui__alloc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 700;
  color: #64748b;
}

.df-arch-demo-ui__alloc-row span {
  padding: 1px 3px;
  border-radius: 2px;
  background: #f1f5f9;
}

.df-arch-demo-ui__phone-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-top: auto;
  padding: 2px 3px;
  border-radius: 2px;
  background: #f8fafc;
}

.df-arch-demo-scene--overlap .df-arch-demo-ui__progress {
  height: 4px;
}

.df-arch-demo-ui__hero {
  display: block;
  height: 5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

.df-arch-demo-scene--b2a .df-arch-demo-ui__hero {
  background: linear-gradient(90deg, #0f2744, #2563eb);
}

.df-arch-demo-ui__line {
  display: block;
  height: 2px;
  width: 55%;
  border-radius: 999px;
  background: #e2e8f0;
}

.df-arch-demo-ui__line--wide {
  width: 78%;
}

.df-arch-demo-ui__chart {
  display: block;
  flex: 1;
  min-height: 14px;
  margin-top: 2px;
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.15), transparent 70%),
    linear-gradient(90deg, transparent 0%, #2563eb 45%, #2563eb 55%, transparent 100%);
  background-size: 100% 100%, 200% 2px;
  background-position: center, center bottom;
  background-repeat: no-repeat;
}

.df-arch-demo-ui__chart--sm {
  min-height: 10px;
}

.df-arch-demo-ui__chart--xs {
  min-height: 8px;
}

.df-arch-demo-ui__dot-row {
  display: block;
  height: 2px;
  width: 40%;
  margin: 0 auto;
  border-radius: 999px;
  background: #cbd5e1;
}

.df-arch-demo-ui__nav {
  display: block;
  height: 3px;
  margin-top: auto;
  border-radius: 2px;
  background: rgba(37, 99, 235, 0.2);
}

.df-arch-demo-ui__sidebar {
  flex: 0 0 22%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 3px 2px;
  border-radius: 2px;
  background: #0f2744;
}

.df-arch-demo-ui__sidebar--thin {
  flex-basis: 14%;
}

.df-arch-demo-ui__sidebar-nav {
  display: block;
  padding: 2px 3px;
  border-radius: 2px;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
}

.df-arch-demo-ui__sidebar-nav.is-active {
  background: rgba(37, 99, 235, 0.35);
  color: #ffffff;
}

.df-arch-demo-ui__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.df-arch-demo-ui__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  flex: 1;
}

.df-arch-demo-ui__grid::before,
.df-arch-demo-ui__grid::after {
  content: "";
  display: block;
  min-height: 10px;
  border-radius: 2px;
  background: #e2e8f0;
}

.df-arch-demo-ui__table-row {
  display: block;
  height: 3px;
  border-radius: 1px;
  background: #e2e8f0;
}

.df-arch-demo-ui__table-row--data:nth-child(odd) {
  background: #f1f5f9;
}

.df-arch-demo-desktop {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 132px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.df-arch-demo-desktop__chrome {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 6px;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.df-arch-demo-desktop__url {
  flex: 1;
  margin-left: 4px;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.df-arch-demo-desktop__chrome span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #cbd5e1;
}

.df-arch-demo-desktop__chrome span:first-child { background: #f87171; }
.df-arch-demo-desktop__chrome span:nth-child(2) { background: #fbbf24; }
.df-arch-demo-desktop__chrome span:nth-child(3) { background: #34d399; }

.df-arch-demo-desktop__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  padding: 5px 6px;
  min-height: 0;
}

.df-arch-demo-desktop--trading .df-arch-demo-desktop__body,
.df-arch-demo-desktop--backoffice .df-arch-demo-desktop__body {
  gap: 4px;
}

.df-arch-demo-desktop--backoffice .df-arch-demo-desktop__body {
  overflow: hidden;
}

.df-arch-demo-desktop .df-arch-demo-ui__list-row {
  padding: 2px 3px;
  border-radius: 2px;
  background: #f8fafc;
}

.df-arch-demo-ui__stats-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.df-arch-demo-ui__section-label {
  margin: 2px 0 0;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 800;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.df-arch-demo-ui__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.df-arch-demo-ui__toolbar {
  display: block;
  height: 5px;
  width: 42%;
  border-radius: 2px;
  background: #dbeafe;
}

.df-arch-demo-ui__data-table {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.df-arch-demo-ui__data-table-head,
.df-arch-demo-ui__data-table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.65fr;
  gap: 3px;
  align-items: center;
  font-size: var(--df-demo-sm, 0.54rem);
  font-weight: 600;
  color: #334155;
}

.df-arch-demo-ui__data-table-head {
  padding: 2px 3px;
  border-radius: 2px;
  background: #0f2744;
  color: #e2e8f0;
  font-weight: 800;
}

.df-arch-demo-ui__data-table-row {
  padding: 2px 3px;
  border-radius: 2px;
  background: #f8fafc;
}

.df-arch-demo-ui__data-table-row:nth-child(even) {
  background: #ffffff;
}

.df-arch-demo-ui__data-table--wide .df-arch-demo-ui__data-table-head,
.df-arch-demo-ui__data-table--wide .df-arch-demo-ui__data-table-row {
  grid-template-columns: 1.05fr 0.42fr 0.48fr 0.48fr 0.72fr;
}

.df-arch-demo-ui__data-table--recon .df-arch-demo-ui__data-table-head,
.df-arch-demo-ui__data-table--recon .df-arch-demo-ui__data-table-row {
  grid-template-columns: 1.1fr 0.55fr 0.55fr 0.65fr;
}

.df-arch-demo-ui__chip {
  display: inline-block;
  padding: 1px 4px;
  border-radius: 999px;
  font-size: var(--df-demo-2xs, 0.44rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.df-arch-demo-ui__chip--pending {
  background: #fef3c7;
  color: #92400e;
}

.df-arch-demo-ui__chip--ok {
  background: #d1fae5;
  color: #065f46;
}

.df-arch-demo-ui__chip--warn {
  background: #dbeafe;
  color: #1e40af;
}

.df-arch-demo-ui__form-field {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 2px 3px;
  border-radius: 3px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.df-arch-demo-ui__table-head {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #0f2744;
  opacity: 0.85;
}

.df-arch-demo-desktop--backoffice .df-arch-demo-ui__form-row {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
}

.df-arch-demo-ui__form-row--short {
  width: 38%;
}

.df-arch-demo-ui__form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}

.df-arch-demo-ui__form-grid .df-arch-demo-ui__form-field {
  min-height: 0;
}

.df-arch-demo-ui__form-grid span {
  min-height: 0;
  border: none;
  background: transparent;
}

@supports not (grid-template-rows: subgrid) {
  .df-arch-diagram {
    grid-template-rows: auto;
  }

  .df-arch-diagram__sources,
  .df-arch-diagram__lane,
  .df-arch-diagram__connector {
    grid-row: auto;
  }

  .df-arch-diagram__lane {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 1100px) {
  .df-arch-diagram {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    --df-demo-2xs: 0.46rem;
    --df-demo-xs: 0.5rem;
    --df-demo-sm: 0.56rem;
    --df-demo-base: 0.6rem;
    --df-demo-md: 0.64rem;
    --df-demo-lg: 0.7rem;
  }

  .df-arch-diagram__sources {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 280px;
    margin: 0 auto;
    padding: 8px 0;
  }

  .df-arch-diagram__sources-spacer {
    display: none;
  }

  .df-arch-diagram__actor {
    height: auto;
  }

  .df-arch-diagram__lane {
    grid-column: 1;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .df-arch-diagram__connector {
    grid-column: 1;
    grid-row: auto;
    transform: rotate(90deg);
    min-height: 28px;
    padding: 4px 0;
  }

  .df-arch-diagram__connector svg {
    transform: scale(1.15);
  }
}

@media (max-width: 520px) {
  .digital-finance-architecture__canvas {
    padding: 14px;
  }

  .df-arch-diagram__media {
    min-height: 96px;
  }

  .df-arch-diagram__media--overlap {
    min-height: 200px;
    padding: 8px 8px 12px;
  }

  .df-arch-demo-scene--overlap {
    height: 182px;
    min-height: 182px;
  }

  .df-arch-demo-scene--overlap .df-arch-demo-device--monitor {
    width: 88%;
  }

  .df-arch-demo-scene--overlap .df-arch-demo-device--laptop {
    left: 10%;
    width: 72%;
  }

  .df-arch-demo-scene--overlap .df-arch-demo-device--phone {
    width: 34%;
    right: -4%;
  }
}

@media (max-width: 768px) {
  .df-arch-diagram__sources {
    display: none;
  }
}

/* Digital finance — Advisory workflow: dark timeline + light outcomes */
.digital-finance-flow {
  --df-flow-accent: #04eefc;
  --df-flow-accent-deep: #00c8d4;
  --df-flow-accent-soft: rgba(4, 238, 252, 0.12);
  --df-flow-accent-glow: rgba(4, 238, 252, 0.28);
  --df-flow-step: #2dc8f3;
  --df-flow-step-deep: #1eb0d9;
  --df-flow-step-glow: rgba(45, 200, 243, 0.35);
  position: relative;
  overflow: clip;
  padding: 0;
  font-family: "Inter", "Noto Sans TC", "Helvetica Neue", Arial, sans-serif;
}

.digital-finance-flow__top {
  position: relative;
  padding: clamp(64px, 9vw, 100px) 0 clamp(56px, 7vw, 80px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(56, 189, 248, 0.12), transparent 55%),
    linear-gradient(180deg, #0a1628 0%, #050d18 48%, #060f1c 100%);
}

.digital-finance-flow__top-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(99, 102, 241, 0.15), transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(34, 197, 94, 0.1), transparent 35%);
}

.digital-finance-flow__container {
  position: relative;
  z-index: 1;
  max-width: min(1320px, 100%);
}

.digital-finance-flow__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
  max-width: min(56rem, 100%);
  margin-inline: auto;
}

.digital-finance-flow__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--df-color-dark-eyebrow, rgba(0, 242, 255, 0.88));
}

.digital-finance-flow__title {
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--df-color-dark-heading, #f1f5f9);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.digital-finance-flow__lede {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--df-color-dark-body, rgba(226, 234, 255, 0.86));
}

.digital-finance-flow__stage {
  position: relative;
  padding-top: 4px;
}

.digital-finance-flow__timeline {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 12px;
  height: 4px;
  pointer-events: none;
  z-index: 0;
}

.digital-finance-flow__track {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--df-flow-accent-glow) 0%,
    var(--df-flow-accent) 50%,
    var(--df-flow-accent-glow) 100%
  );
  opacity: 0.88;
  box-shadow: 0 0 20px rgba(4, 238, 252, 0.22);
}

.digital-finance-flow__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: start;
}

.digital-finance-flow__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px, 1.4vw, 14px);
  padding: 0 4px;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--step-anim-delay, 0s);
}

.digital-finance-flow--steps-visible .digital-finance-flow__node {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.digital-finance-flow--steps-visible .digital-finance-flow__node:hover .digital-finance-flow__icon {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.2),
    0 0 24px var(--df-flow-step-glow),
    0 12px 28px rgba(0, 0, 0, 0.35);
  transform: scale(1.04);
}

.digital-finance-flow__step-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  font-size: 0.8rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #0f172a;
  background: #f1f5f9;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.digital-finance-flow__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 5vw, 62px);
  height: clamp(52px, 5vw, 62px);
  padding: 12px;
  border-radius: 999px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    filter 0.3s ease;
}

.digital-finance-flow__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.digital-finance-flow__icon--p1,
.digital-finance-flow__icon--p2,
.digital-finance-flow__icon--p3,
.digital-finance-flow__icon--p4,
.digital-finance-flow__icon--p5,
.digital-finance-flow__icon--p6,
.digital-finance-flow__icon--p7 {
  background: linear-gradient(145deg, var(--df-flow-step), var(--df-flow-step-deep));
}

.digital-finance-flow__node-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--df-color-dark-heading, #f1f5f9);
  line-height: 1.3;
}

.digital-finance-flow__node-desc {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--df-color-dark-muted, rgba(148, 163, 184, 0.95));
  max-width: 16ch;
  -webkit-font-smoothing: antialiased;
}

/* Card layout — light 7-step journey, linked step numbers on card tops */
.digital-finance-flow--cards {
  --df-flow-step-soft: rgba(45, 200, 243, 0.12);
  --df-flow-step-border: rgba(45, 200, 243, 0.35);
  --df-flow-step-num-size: 36px;
  --df-flow-step-num-lift: 8px;
  --df-flow-step-num-clearance: 20px;
  --df-flow-step-head-height: calc(
    var(--df-flow-step-num-size) / 2 -
    var(--df-flow-step-num-lift) +
    var(--df-flow-step-num-clearance)
  );
  overflow: visible;
}

.digital-finance-flow--cards .digital-finance-flow__top {
  overflow: visible;
  background:
    radial-gradient(circle at 88% 8%, rgba(45, 200, 243, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.digital-finance-flow--cards .digital-finance-flow__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 20px);
  margin: 0 0 12px;
}

.digital-finance-flow--cards .digital-finance-flow__eyebrow-line {
  flex: 0 0 clamp(40px, 10vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 200, 243, 0.45), var(--df-flow-step));
  border-radius: 1px;
}

.digital-finance-flow--cards .digital-finance-flow__eyebrow-line:last-of-type {
  background: linear-gradient(90deg, var(--df-flow-step), rgba(45, 200, 243, 0.45), transparent);
}

.digital-finance-flow--cards .digital-finance-flow__eyebrow {
  margin-bottom: 0;
  color: var(--df-flow-step);
}

.digital-finance-flow--cards .digital-finance-flow__title {
  color: var(--df-color-heading, var(--text-heading));
}

.digital-finance-flow--cards .digital-finance-flow__lede {
  color: var(--df-color-body, var(--text-body));
  max-width: 58ch;
}

.digital-finance-flow--cards .digital-finance-flow__stage {
  padding-top: calc(var(--df-flow-step-num-size) / 2 + var(--df-flow-step-num-lift));
}

.digital-finance-flow--cards .digital-finance-flow__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.digital-finance-flow--cards .digital-finance-flow__cards::before {
  content: "";
  position: absolute;
  top: calc(var(--df-flow-step-num-lift) * -1);
  left: calc(100% / 14);
  right: calc(100% / 14);
  height: 2px;
  background: var(--df-flow-step);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

.digital-finance-flow--cards .digital-finance-flow__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100%;
  padding: 0;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(45, 200, 243, 0.14);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.digital-finance-flow--cards .digital-finance-flow__card-head {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: var(--df-flow-step-head-height);
}

.digital-finance-flow--cards .digital-finance-flow__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(10px, 1.4vw, 14px);
  width: 100%;
  padding: 0 clamp(12px, 1.4vw, 14px) clamp(18px, 2.2vw, 22px);
}

.digital-finance-flow--cards .digital-finance-flow__node {
  padding: 0;
}

.digital-finance-flow--cards .digital-finance-flow__step-num {
  position: absolute;
  top: calc((var(--df-flow-step-num-size) / 2 + var(--df-flow-step-num-lift)) * -1);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--df-flow-step-num-size);
  height: var(--df-flow-step-num-size);
  border-radius: 999px;
  background: var(--df-flow-step);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(45, 200, 243, 0.28);
  pointer-events: none;
}

.digital-finance-flow--cards .digital-finance-flow__icon {
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  padding: 0;
  border-radius: 0;
  color: var(--df-flow-step);
  background: transparent;
  border: none;
  box-shadow: none;
  transition: none;
}

.digital-finance-flow--cards .digital-finance-flow__icon--p1,
.digital-finance-flow--cards .digital-finance-flow__icon--p2,
.digital-finance-flow--cards .digital-finance-flow__icon--p3,
.digital-finance-flow--cards .digital-finance-flow__icon--p4,
.digital-finance-flow--cards .digital-finance-flow__icon--p5,
.digital-finance-flow--cards .digital-finance-flow__icon--p6,
.digital-finance-flow--cards .digital-finance-flow__icon--p7 {
  background: transparent;
}

.digital-finance-flow--cards .digital-finance-flow__node-title {
  color: var(--df-color-heading, var(--text-heading));
  max-width: none;
}

.digital-finance-flow--cards .digital-finance-flow__node-desc {
  color: var(--df-color-body, var(--text-body));
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.6;
}

.digital-finance-flow--cards.digital-finance-flow--steps-visible .digital-finance-flow__node:hover .digital-finance-flow__icon {
  transform: none;
  box-shadow: none;
}

.digital-finance-flow--cards.digital-finance-flow--steps-visible .digital-finance-flow__node:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 200, 243, 0.28);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

/* Outcomes band — dark act */
.digital-finance-flow__bottom {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(4, 238, 252, 0.1), transparent 55%),
    linear-gradient(180deg, #071426 0%, #061426 48%, #040b16 100%);
  padding: clamp(52px, 7vw, 76px) 0 clamp(60px, 8vw, 88px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.digital-finance-flow__outcomes-inner {
  max-width: min(1120px, 100%);
}

.digital-finance-flow__outcomes-title {
  margin: 0 0 clamp(28px, 4vw, 40px);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--df-color-dark-heading, #f1f5f9);
}

.digital-finance-flow__outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.digital-finance-flow__outcome {
  text-align: center;
}

.digital-finance-flow__outcome-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--df-flow-accent-soft);
  color: var(--df-flow-accent);
}

.digital-finance-flow__outcome-icon--a,
.digital-finance-flow__outcome-icon--b,
.digital-finance-flow__outcome-icon--c,
.digital-finance-flow__outcome-icon--d {
  background: var(--df-flow-accent-soft);
  color: var(--df-flow-accent);
}

.digital-finance-flow__outcome-title {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--df-color-dark-heading, #f1f5f9);
  line-height: 1.25;
}

.digital-finance-flow__outcome-text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--df-color-dark-body, rgba(226, 234, 255, 0.86));
}

@media (max-width: 1100px) {
  .digital-finance-flow__node-desc {
    max-width: none;
  }

  .digital-finance-flow__timeline {
    display: none;
  }

  .digital-finance-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 4vw, 28px);
  }

  .digital-finance-flow--cards .digital-finance-flow__cards::before {
    display: none;
  }

  .digital-finance-flow--cards .digital-finance-flow__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 24px);
  }

  .digital-finance-flow--cards .digital-finance-flow__stage {
    padding-top: calc(var(--df-flow-step-num-size) / 2 + var(--df-flow-step-num-lift) + 4px);
  }

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

@media (max-width: 640px) {
  .digital-finance-flow__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 36px;
    position: relative;
    text-align: left;
  }

  .digital-finance-flow__grid::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      #3b82f6 0%,
      #6366f1 28%,
      #a855f7 52%,
      #8b5cf6 68%,
      #22c55e 100%
    );
    opacity: 0.88;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
  }

  .digital-finance-flow__node {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    align-items: start;
    text-align: left;
    padding: 0 0 28px;
    position: relative;
  }

  .digital-finance-flow__node:last-child {
    padding-bottom: 0;
  }

  .digital-finance-flow__step-badge {
    position: absolute;
    left: -36px;
    top: 0;
    margin-bottom: 0;
  }

  .digital-finance-flow__icon {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    width: 48px;
    height: 48px;
    padding: 10px;
  }

  .digital-finance-flow__node-title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: center;
  }

  .digital-finance-flow__node-desc {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    max-width: none;
  }

  .digital-finance-flow--cards .digital-finance-flow__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .digital-finance-flow--cards .digital-finance-flow__cards::before {
    display: none;
  }

  .digital-finance-flow--cards .digital-finance-flow__stage {
    padding-top: 0;
  }

  .digital-finance-flow--cards .digital-finance-flow__card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .digital-finance-flow--cards .digital-finance-flow__card-head {
    display: flex;
    justify-content: center;
    height: auto;
    padding: 16px 0 0;
  }

  .digital-finance-flow--cards .digital-finance-flow__card-body {
    align-items: center;
    text-align: center;
    padding: 12px 16px 16px;
    gap: 8px;
  }

  .digital-finance-flow--cards .digital-finance-flow__step-num {
    position: static;
    transform: none;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .digital-finance-flow--cards .digital-finance-flow__icon {
    width: 44px;
    height: 44px;
  }

  .digital-finance-flow__outcomes-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .digital-finance-flow__node {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .digital-finance-flow--steps-visible .digital-finance-flow__node:hover .digital-finance-flow__icon {
    transform: none;
  }

  .digital-finance-flow--cards.digital-finance-flow--steps-visible .digital-finance-flow__node:hover {
    transform: none;
  }
}

.bullet-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-600);
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.timeline-card {
  display: grid;
  grid-template-columns: minmax(0, 148px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.timeline-card__year {
  color: var(--blue-600);
  font-size: 1.35rem;
  font-weight: 800;
}

/* --- Mission critical support (bento / control center) --- */
.mission-support-section {
  position: relative;
  padding: clamp(64px, 9vw, 112px) 0;
  background: linear-gradient(165deg, #070d18 0%, #0f172a 42%, #0c1524 100%);
  color: rgba(226, 232, 240, 0.88);
  overflow: hidden;
}

#section-6-mission-support {
  scroll-margin-top: 96px;
}

.mission-support-section__grid-pattern {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 92%);
}

.mission-support-section__inner {
  position: relative;
  z-index: 1;
}

.mission-support-section__intro {
  max-width: 52rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.mission-support-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.mission-support-section__title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #f1f5f9;
}

.mission-support-section__lede {
  margin: 14px 0 0;
  max-width: 46ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(148, 163, 184, 0.95);
}

.mission-support-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(14px, 2vw, 18px);
  align-items: stretch;
  min-height: 0;
}

.mission-support-bento__hero {
  min-height: clamp(220px, 26vw, 320px);
}

.mission-support-hero {
  height: 100%;
  min-height: inherit;
}

.mission-support-hero__frame {
  position: relative;
  height: 100%;
  min-height: inherit;
  padding: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  border: 1px solid rgba(0, 242, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(30, 41, 59, 0.65) 0%, rgba(15, 23, 42, 0.92) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(0, 242, 255, 0.03) 12px,
      rgba(0, 242, 255, 0.03) 13px
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.mission-support-hero__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 242, 255, 0.15) 20%,
    rgba(0, 242, 255, 0.85) 50%,
    rgba(0, 242, 255, 0.15) 80%,
    transparent 100%
  );
  box-shadow: 0 0 24px rgba(0, 242, 255, 0.45);
  animation: mission-support-scan 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mission-support-scan {
  0%,
  100% {
    top: 12%;
    opacity: 0.85;
  }
  50% {
    top: calc(100% - 12% - 3px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mission-support-hero__scan {
    animation: none;
    top: 50%;
    opacity: 0.5;
  }
}

.mission-support-hero__label {
  position: relative;
  margin: 0 0 8px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 242, 255, 0.85);
}

.mission-support-hero__digits {
  position: relative;
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw + 0.65rem, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #ecfeff;
  text-shadow: 0 0 32px rgba(0, 242, 255, 0.22);
}

.mission-support-hero__sub {
  position: relative;
  margin: 12px 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(148, 163, 184, 0.88);
  max-width: min(28ch, 100%);
}

.mission-support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.5vw, 24px);
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: linear-gradient(160deg, rgba(30, 41, 59, 0.55) 0%, rgba(15, 23, 42, 0.88) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.mission-support-card:hover,
.mission-support-card:focus-within {
  border-color: rgba(0, 242, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(0, 242, 255, 0.12),
    0 16px 48px rgba(0, 242, 255, 0.12);
  transform: translateY(-2px);
}

.mission-support-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: var(--accent-cyan);
  background: rgba(0, 242, 255, 0.08);
  border: 1px solid rgba(0, 242, 255, 0.22);
}

.mission-support-card__title {
  margin: 0;
  font-size: clamp(0.92rem, 0.35vw + 0.85rem, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ecfeff;
}

.mission-support-card__desc {
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.95);
  flex-grow: 0;
}

.mission-support-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-cyan);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    color 0.2s ease;
}

.mission-support-card:hover .mission-support-card__more,
.mission-support-card:focus-within .mission-support-card__more {
  opacity: 1;
  transform: translateY(0);
}

.mission-support-card__more:hover,
.mission-support-card__more:focus-visible {
  color: #7ef9ff;
}

.mission-support-card__arrow {
  transition: transform 0.25s ease;
}

.mission-support-card__more:hover .mission-support-card__arrow,
.mission-support-card__more:focus-visible .mission-support-card__arrow {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .mission-support-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .mission-support-bento__hero {
    min-height: 240px;
  }

  .mission-support-hero__digits {
    font-size: clamp(1.65rem, 7vw, 2.75rem);
  }
}

.contact-section {
  padding: clamp(64px, 9vw, 104px) 0;
  background: #f6f9fd;
  position: relative;
  z-index: 0;
}

#section-6-contact {
  scroll-margin-top: 96px;
}

.contact-section__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.contact-section__intro {
  min-width: 0;
  padding-top: 4px;
}

.contact-section__intro-title {
  margin: 0;
  color: #010a18;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.contact-section__intro-text {
  margin: 22px 0 0;
  max-width: 46ch;
  color: #475569;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.contact-section__details {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 22px;
}

.contact-section__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-section__detail-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(1, 10, 24, 0.06);
  color: #010a18;
}

.contact-section__detail-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.contact-section__detail-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.contact-section__detail-value {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #334155;
}

.contact-section__detail-link {
  font-size: 0.98rem;
  font-weight: 700;
  color: #010a18;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section__detail-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.contact-section__card {
  min-width: 0;
  padding: 40px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.contact-form {
  margin: 0;
}

.contact-form__stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.contact-form__hp label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-form__field--recaptcha {
  margin-top: 2px;
}

.contact-form__recaptcha {
  min-height: 78px;
}

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

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 0.01em;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text-heading);
  font: inherit;
  line-height: 1.5;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%230d2340' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(81, 98, 115, 0.65);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(13, 35, 64, 0.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #14f1f5;
  box-shadow: 0 0 0 3px rgba(20, 241, 245, 0.28);
}

.contact-form__actions {
  margin-top: 4px;
}

.contact-form__submit {
  display: block;
  width: 100%;
  padding: 16px 28px;
  border: 0;
  border-radius: 8px;
  background: #010a18;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-form__submit:hover {
  background: #001432;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 20, 50, 0.28);
}

.contact-form__submit:active,
.contact-form__submit:hover:active {
  background: #001432;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 20, 50, 0.35);
}

.contact-form__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 241, 245, 0.45);
}

.contact-form__submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  box-shadow: none;
}

.contact-form__success-block {
  padding: 20px 0 4px;
}

.contact-form__success {
  margin: 0 0 14px;
  color: #001433;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

.contact-form__again {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(1, 10, 24, 0.16);
  background: #ffffff;
  color: #010a18;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.contact-form__again:hover {
  background: #f8fafc;
  border-color: rgba(1, 10, 24, 0.28);
}

.contact-form__again:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 241, 245, 0.45);
}

.contact-form__again:active {
  transform: translateY(1px);
}

.contact-form__error {
  margin: 0;
  padding: 12px 0 0;
  color: #b91c1c;
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-thanks-modal.is-open {
  display: flex;
}

.contact-thanks-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact-thanks-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 28px 26px 24px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.contact-thanks-modal__title {
  margin: 0 0 12px;
  color: #010a18;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-thanks-modal__body {
  margin: 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-thanks-modal__button {
  margin-top: 22px;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: #001432;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.contact-thanks-modal__button:hover {
  background: #0a3f7f;
}

.contact-thanks-modal__button:active {
  transform: translateY(1px);
}

.contact-section__secure-note {
  margin: 20px 0 0;
  padding-top: 4px;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .contact-section__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section__intro-text {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .contact-section__card {
    padding: 24px 20px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* Home page — mobile comfort tuning */
@media (max-width: 640px) {
  .hero-home__inner {
    min-height: auto;
    padding: 84px 0 42px;
  }

  .hero-home__title {
    max-width: 100%;
    font-size: clamp(1.82rem, 9vw, 2.35rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
  }

  .hero-home__body {
    margin-top: 18px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .hero-home__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    width: 100%;
  }

  .hero-home__actions .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 18px;
    justify-content: center;
  }

  .hero-home__stats {
    gap: 10px;
    padding-top: 34px;
  }

  .hero-home__stat-card {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .hero-home__stat-card strong {
    font-size: 1.28rem;
    line-height: 1.05;
  }

  .hero-home__stat-card span,
  .hero-home__stat-card span.hero-home__stat-label--long {
    margin-top: 6px;
    font-size: 0.66rem;
    line-height: 1.35;
    letter-spacing: 0.03em;
  }

  .solutions-visual-section {
    padding: 56px 0;
  }

  .solutions-visual-section__eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .solutions-visual-section__heading {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.22;
  }

  .solutions-visual-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .solutions-visual-card {
    padding: 18px;
    border-radius: 18px;
  }

  .solutions-visual-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .solutions-visual-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .solutions-visual-card__title {
    margin-top: 14px;
    font-size: 1rem;
  }

  .solutions-visual-card__body {
    margin-top: 8px;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .solutions-visual-card__link {
    margin-top: 14px;
    font-size: 0.86rem;
  }

  .section--fintech-ecosystem {
    padding: 56px 0;
    overflow: hidden;
  }

  .section--fintech-ecosystem__particles,
  .section--fintech-ecosystem__stardust,
  .section--fintech-ecosystem__grid-floor {
    display: none;
  }

  .section--fintech-ecosystem .fintech-ecosystem__hero .fintech-ecosystem__intro .section__heading--fintech-ecosystem {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.22;
  }

  .fintech-ecosystem__lede {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .fintech-ecosystem__capacity {
    gap: 10px;
  }

  .fintech-ecosystem__cap-item {
    padding: 14px;
    border-radius: 16px;
  }

  .fintech-ecosystem__cap-item__icon {
    width: 38px;
    height: 38px;
  }

  .fintech-ecosystem__cap-item__text strong {
    font-size: 0.88rem;
  }

  .fintech-ecosystem__cap-item__text span {
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .fintech-ecosystem__diagram-col {
    margin-top: 20px;
  }

  .fintech-ecosystem__stage {
    transform: scale(0.88);
    transform-origin: top center;
    margin-bottom: -36px;
  }

  .contact-section {
    padding-block: 56px;
  }

  .contact-section__split {
    gap: 28px;
  }

  .contact-section__intro-title {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    line-height: 1.22;
  }

  .contact-section__intro-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .contact-section__details {
    gap: 12px;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 36px;
  color: var(--white);
  background:
    linear-gradient(rgba(0, 20, 50, 0.8), rgba(0, 10, 30, 0.9)),
    url("../images/Central.jpg") center / cover no-repeat;
  background-attachment: scroll;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(rgba(0, 20, 50, 0.8), rgba(0, 10, 30, 0.9));
  pointer-events: none;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 36px);
  align-items: start;
  justify-content: space-between;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__col--identity {
  padding-right: clamp(0px, 1.5vw, 16px);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.site-footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer .site-brand__logo-container {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-footer__brand img {
  height: 34px;
  width: auto;
}

.site-footer__description {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.8;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.site-footer__social-link svg {
  width: 22px;
  height: 22px;
}

.site-footer__social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.site-footer__heading {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer__nav {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.site-footer__link,
.site-footer__text,
.site-footer__office-copy,
.site-footer__bottom-copy,
.site-footer__bottom-link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.55;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__link:hover,
.site-footer__bottom-link:hover {
  color: #ffffff;
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 242, 255, 0.12);
  color: var(--accent-cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-footer__heading + .site-footer__office {
  margin-top: 16px;
}

.site-footer__office + .site-footer__office {
  margin-top: 22px;
}

.site-footer__office-title {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer__office-copy {
  margin: 10px 0 0;
  font-weight: 400;
  line-height: 1.65;
}

.site-footer__office-hub-link {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__office-hub-link:hover {
  color: #ffffff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
}

.site-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Keep footer Cookie link clear of fixed product-assistant FAB (bottom-right). */
@media (min-width: 1081px) {
  .site-footer__bottom-links {
    margin-right: calc(62px + 24px + 20px);
  }
}

.site-footer__bottom-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  font-weight: 500;
}

.cookie-consent-modal {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1090;
  width: min(520px, calc(100vw - 32px));
}

.cookie-consent-modal__panel {
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  max-height: min(85vh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cookie-consent-modal__view {
  flex: 0 1 auto;
  overflow-y: auto;
  max-height: min(78vh, 640px);
}

.cookie-consent-modal__view.is-hidden {
  display: none;
}

.cookie-consent-modal__view--custom {
  padding-right: 2px;
}

.cookie-consent-modal__title--custom {
  margin-top: 0;
}

.cookie-consent-modal__categories {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cookie-consent-modal__category {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 14px;
}

.cookie-consent-modal__category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cookie-consent-modal__category-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.cookie-consent-modal__cat-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
}

.cookie-consent-modal__badge {
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.cookie-consent-modal__cat-desc {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748b;
}

.cookie-consent-modal__toggle-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.cookie-consent-modal__toggle-line:focus-within {
  outline: none;
}

/* span 預設 inline，唔食 width/height，背景形同無效 → 似一條線；必須改做行內塊／塊級 */
.cookie-consent-modal__switch-wrap {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 52px;
  height: 30px;
  vertical-align: middle;
  box-sizing: border-box;
}

.cookie-consent-modal__switch-input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-consent-modal__switch-track {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  min-width: 52px;
  min-height: 30px;
  border-radius: 999px;
  border: 0;
  box-sizing: border-box;
  /* 關：實色灰棒 */
  background: #94a3b8;
  box-shadow: none;
  transition: background 0.2s ease;
}

.cookie-consent-modal__switch-input:checked + .cookie-consent-modal__switch-track {
  /* 開：實色綠棒 */
  background: #16a34a;
}

.cookie-consent-modal__switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

/* 52 - 3(pad) - 3(pad) - 24(thumb) = 22 */
.cookie-consent-modal__switch-input:checked + .cookie-consent-modal__switch-track::after {
  transform: translateX(22px);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

.cookie-consent-modal__switch-input:focus-visible + .cookie-consent-modal__switch-track {
  outline: 2px solid rgba(37, 99, 235, 0.65);
  outline-offset: 2px;
}

.cookie-consent-modal__actions--custom {
  margin-top: 8px;
}

.cookie-consent-modal__title {
  margin-bottom: 10px;
  color: #111111;
  font-size: 1.15rem;
  font-weight: 700;
}

.cookie-consent-modal__body {
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.65;
}

.cookie-consent-modal__link {
  margin-left: 4px;
  color: #111111;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-consent-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-consent-modal__button {
  flex: 1 1 120px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.cookie-consent-modal__button:hover {
  transform: translateY(-1px);
}

.cookie-consent-modal__button--secondary {
  border: 1px solid rgba(17, 24, 39, 0.24);
  background: #ffffff;
  color: #111111;
}

.cookie-consent-modal__button--secondary:hover {
  border-color: rgba(17, 24, 39, 0.4);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.cookie-consent-modal__button--primary {
  border: 1px solid #001432;
  background: #001432;
  color: #ffffff;
}

.cookie-consent-modal__button--primary:hover {
  background: #0a3f7f;
  border-color: #0a3f7f;
  box-shadow: 0 10px 22px rgba(0, 20, 50, 0.18);
}

.product-assistant {
  position: fixed;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.product-assistant__panel {
  width: min(388px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(0, 45, 98, 0.85);
  box-shadow: 0 24px 60px rgba(0, 31, 63, 0.32);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.product-assistant__panel.is-hidden {
  display: none;
}

.product-assistant__header,
.product-assistant__footer {
  padding: 16px;
}

.product-assistant__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-assistant__title {
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
}

.product-assistant__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.product-assistant__messages {
  display: grid;
  gap: 10px;
  max-height: 320px;
  min-height: 120px;
  padding: 16px;
  overflow: auto;
}

.assistant-message {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.93rem;
  line-height: 1.65;
}

.assistant-message--assistant {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
}

.assistant-message--user {
  justify-self: end;
  background: var(--blue-600);
  color: var(--white);
}

.product-assistant__faq {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.assistant-faq-btn {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
}

.assistant-faq-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.product-assistant__composer {
  display: flex;
  gap: 10px;
  padding: 0 16px 16px;
}

.product-assistant__composer input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.product-assistant__composer input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.product-assistant__composer button,
.product-assistant__footer-link,
.product-assistant__fab {
  border: 0;
  border-radius: 16px;
}

.product-assistant__composer button {
  padding: 0 16px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 700;
}

.product-assistant__footer {
  padding-top: 0;
}

.product-assistant__footer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
}

.product-assistant__fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 45, 98, 0.32);
}

.product-assistant__fab:hover {
  transform: translateY(-1px);
}

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

*:focus-visible {
  outline: 2px solid rgba(31, 111, 208, 0.45);
  outline-offset: 3px;
}

@keyframes chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes chart-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(142, 216, 255, 0));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(142, 216, 255, 0.55));
  }
}

@keyframes chart-area {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
  }
}

@keyframes digital-finance-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes digital-finance-hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

  .hero-chart__line,
  .hero-chart__area,
  .digital-finance-hero__mockup-image {
    animation: none !important;
  }

  .hero-chart__line {
    stroke-dashoffset: 0;
  }

  .hero--digital-finance-lead .df-hero-eyebrow,
  .hero--digital-finance-lead .df-hero-title,
  .hero--digital-finance-lead .df-hero-lede,
  .hero--digital-finance-lead .df-hero-actions,
  .hero--digital-finance-lead .df-hero-feature {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero__grid,
  .page-hero__grid,
  .ims-hero-grid,
  .df-hero-features,
  .section__grid,
  .site-footer__grid,
  .feature-grid,
  .job-grid,
  .detail-grid,
  .card-grid,
  .stat-grid,
  .hero-profile-grid,
  .digital-finance-hero,
  .digital-finance-partnership {
    grid-template-columns: 1fr;
  }

  .hero__title {
    max-width: none;
  }

  .news-card,
  .timeline-card {
    grid-template-columns: 1fr;
  }

  .hero-home__title {
    max-width: 20ch;
    font-size: clamp(2.35rem, 4.2vw, 2.9rem);
  }

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

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

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }

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

  .site-footer__col--identity {
    grid-column: 1 / -1;
    max-width: none;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dropdown__panel {
    left: auto;
    right: 0;
  }

  .digital-finance-hero__media {
    right: 50px;
    width: 360px;
    max-width: 38%;
  }

  .hero-image-wrapper {
    min-height: 390px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page {
    padding-top: calc(64px + env(safe-area-inset-top, 0px));
  }

  .site-header,
  .site-header--hero {
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding-top: env(safe-area-inset-top, 0px);
  }

  .site-header__inner {
    padding: 12px 14px;
    gap: 12px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .site-brand__text,
  .lang-switch {
    display: none;
  }

  .hero--home {
    padding: 74px 0 56px;
  }

  .hero--home-institutional .hero__background {
    background-attachment: scroll;
  }

  .hero--page.hero--page-cinematic .hero__background {
    background-attachment: scroll, scroll;
  }

  .hero--page {
    padding: 58px 0 46px;
  }

  .page--hero-shell .hero--page {
    padding-top: calc(72px + env(safe-area-inset-top, 0px));
  }

  .section,
  .site-footer {
    padding: 64px 0;
  }

  .solutions-visual-section {
    padding: 88px 0;
    background-attachment: scroll;
  }

  .solutions-visual-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 280px;
  }

  .partners-section__heading {
    white-space: normal;
  }

  .site-footer {
    padding: 64px 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom-links {
    gap: 14px;
  }

  .cookie-consent-modal {
    left: 16px;
    bottom: 16px;
    width: min(520px, calc(100vw - 32px));
  }

  .hero-home__inner {
    min-height: auto;
    padding: 136px 0 56px;
  }

  .hero-home__title {
    max-width: none;
    font-size: clamp(2rem, 7vw, 2.35rem);
    line-height: 1.4;
  }

  .hero-home__stats {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-home__stat-card {
    text-align: center;
  }

  .panel,
  .info-card,
  .solution-card,
  .news-card,
  .career-card,
  .timeline-card,
  .footer-card,
  .stat-card {
    padding: 22px;
  }

  .hero__actions,
  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-home__actions {
    align-items: flex-start;
  }

  .digital-finance-hero__content {
    max-width: 100%;
    padding: 0;
  }

  .digital-finance-hero,
  .digital-finance-hero--balanced {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 0 24px;
  }

  .digital-finance-hero__content {
    text-align: center;
  }

  .digital-finance-hero__content::before {
    inset: -16px -16px -16px -16px;
  }

  .digital-finance-hero__media {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 340px);
    max-width: 100%;
    pointer-events: auto;
  }

  .hero-image-wrapper {
    min-height: 320px;
    margin: 0 auto;
  }

  .hero-image-wrapper::before {
    width: min(340px, 100%);
    bottom: 0;
  }

  .hero-image--digital-finance {
    left: 50%;
    right: auto;
    width: min(78%, 300px);
    max-width: 300px;
    transform: translateX(-50%);
  }

  .button {
    width: 100%;
  }

  .cookie-consent-modal {
    left: 10px;
    right: 10px;
    bottom: 86px;
    width: auto;
  }

  .cookie-consent-modal__actions {
    flex-direction: column;
  }

  .product-assistant {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }

  .site-header,
  .site-header--hero {
    width: 100%;
  }

  .site-brand img {
    height: 28px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .page-hero__title,
  .section__heading {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .hero__body,
  .page-hero__body,
  .section__body {
    font-size: 0.98rem;
  }

  .hero-chart {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-chart__metrics {
    grid-template-columns: 1fr;
  }

  .product-assistant__panel {
    width: min(100vw - 16px, 388px);
  }
}

/* Cookie policy standalone page */
.cookie-policy-doc {
  max-width: 720px;
  margin: 0 auto;
}

.cookie-policy-doc__h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
}

.cookie-policy-doc .info-card__text + .info-card__text {
  margin-top: 0.75rem;
}

.cookie-policy-doc ul {
  margin: 0.65rem 0 0 1.25rem;
  padding: 0;
  color: var(--text-body);
}

.cookie-policy-doc li {
  margin-top: 0.35rem;
}

/* --- News page: fintech intelligence hub (featured grid + glass cards) --- */
.news-hub {
  padding: clamp(40px, 6vw, 88px) 0 clamp(56px, 9vw, 100px);
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 86, 179, 0.14), transparent 55%),
    linear-gradient(180deg, #070d18 0%, #0b1526 40%, #080f1c 100%);
}

.news-hub__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 24px;
  margin-bottom: clamp(22px, 3vw, 32px);
}

.news-hub__toolbar-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.news-hub__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.news-hub__filter {
  margin: 0;
  padding: 10px 18px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.news-hub__filter:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
}

.news-hub__filter.is-active {
  border-color: rgba(0, 86, 179, 0.55);
  background: rgba(0, 86, 179, 0.35);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 86, 179, 0.25);
}

.news-hub__filter:focus-visible {
  outline: 2px solid rgba(142, 216, 255, 0.9);
  outline-offset: 2px;
}

.news-hub__clusters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 28px);
  align-items: stretch;
  justify-items: stretch;
}

.news-hub__cluster {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.news-hub__cluster[hidden] {
  display: none !important;
}

.news-hub__cluster-title {
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 3px solid rgba(0, 86, 179, 0.85);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(186, 230, 253, 0.92);
}

.news-hub__cluster .news-card--hub {
  flex: 1 1 auto;
  min-height: 0;
}

.news-card--hub {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.news-card--hub:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 86, 179, 0.35);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 86, 179, 0.2),
    0 12px 40px rgba(0, 86, 179, 0.22);
}

.news-card--hub .news-card__visual {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(0, 86, 179, 0.22), rgba(0, 45, 98, 0.35));
}

.news-card--hub .news-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 12, 28, 0.92) 0%, rgba(2, 12, 28, 0.35) 42%, transparent 72%);
  pointer-events: none;
}

.news-card--hub-video .news-card__visual::after {
  opacity: 0.65;
}

.news-card--hub .news-card__badge {
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8fafc;
  background: rgba(0, 86, 179, 0.85);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.news-card--hub .news-card__photo:not(.news-card__photo--placeholder) {
  position: absolute;
  inset: 0;
}

.news-card--hub .news-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card--hub:hover .news-card__photo img {
  transform: scale(1.06);
}

.news-card--hub .news-card__photo--placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  border: 0;
  background:
    linear-gradient(145deg, rgba(0, 86, 179, 0.12), rgba(0, 45, 98, 0.2)),
    repeating-linear-gradient(-12deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 14px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card--hub:hover .news-card__photo--placeholder {
  transform: scale(1.06);
}

.news-card--hub .news-card__photo--placeholder span {
  position: relative;
  z-index: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.news-card--hub .news-card__main {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
  margin-top: -1px;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.15) 0%, rgba(7, 13, 24, 0.55) 100%);
}

.news-card__meta-hub {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-bottom: 10px;
}

.news-card__cat,
.news-card--hub .news-card__time {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.75);
}

.news-card__meta-sep {
  color: rgba(148, 163, 184, 0.45);
  font-weight: 700;
}

.news-card--hub .news-card__title {
  margin: 0 0 10px;
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #f1f5f9;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.news-card--hub .news-card__body--clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.88);
}

.news-card--hub .news-card__readmore {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.88rem;
  font-weight: 700;
  color: #7dd3fc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card--hub .news-card__readmore:hover {
  color: #bae6fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-card--hub .news-card__visual--video {
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  background: #020617;
}

.news-card--hub .news-card__visual--video .news-page__embed {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
}

.news-card--hub .news-card__visual--video .news-page__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .news-card--hub,
  .news-card--hub .news-card__photo--placeholder,
  .news-card--hub .news-card__photo img {
    transition: none;
  }

  .news-card--hub:hover {
    transform: none;
  }

  .news-card--hub:hover .news-card__photo--placeholder,
  .news-card--hub:hover .news-card__photo img {
    transform: none;
  }
}

@media (max-width: 960px) {
  .news-hub__clusters {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Wealth platform: capabilities grid (section 2) --- */
.wealth-capabilities-section {
  padding: clamp(56px, 8vw, 88px) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(0, 45, 98, 0.06);
}

.wealth-capabilities-section__head {
  max-width: 42rem;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
  text-align: center;
}

.wealth-capabilities-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-heading);
}

.wealth-capabilities-section__lede {
  margin: 12px 0 0;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-body);
}

.wealth-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}

.wealth-capability-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 14px;
  border: 1px solid rgba(0, 45, 98, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 31, 63, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.wealth-capability-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 114, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 31, 63, 0.08);
}

.wealth-capability-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.16), rgba(129, 140, 248, 0.12));
  color: #0284c7;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.wealth-capability-card__title {
  margin: 0;
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.98rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-heading);
}

.wealth-capability-card__text {
  margin: 0;
  font-size: clamp(0.78rem, 0.76rem + 0.1vw, 0.86rem);
  line-height: 1.55;
  color: var(--text-body);
}

@media (max-width: 1200px) {
  .wealth-capabilities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .wealth-capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .wealth-capabilities-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Wealth platform: applicable units (light cards) --- */
.wealth-units-section.wealth-capabilities-section {
  padding-bottom: clamp(32px, 4vw, 48px);
}

.wealth-units-section.wealth-capabilities-section + .wealth-users-section {
  border-top: none;
  padding-top: clamp(24px, 3vw, 36px);
}

.wealth-units-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0284c7;
}

.wealth-units-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}

@media (max-width: 900px) {
  .wealth-units-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .wealth-units-grid {
    max-width: none;
  }
}

/* --- Wealth platform: key users (compact role chips) --- */
.wealth-users-section {
  padding: clamp(36px, 5vw, 56px) 0 clamp(42px, 6vw, 64px);
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid rgba(0, 45, 98, 0.06);
}

.wealth-users-section__head {
  max-width: 44rem;
  margin: 0 auto clamp(22px, 3vw, 32px);
  text-align: center;
}

.wealth-users-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0284c7;
}

.wealth-users-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-heading);
}

.wealth-users-section__lede {
  margin: 12px 0 0;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
  line-height: 1.65;
  color: var(--text-body);
}

.wealth-users-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 14px);
  max-width: 68rem;
  margin-inline: auto;
}

.wealth-users-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: clamp(14px, 1.6vw, 18px);
  border-radius: 18px;
  border: 1px solid rgba(0, 45, 98, 0.08);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 31, 63, 0.05);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

@media (hover: hover) {
  .wealth-users-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 114, 255, 0.18);
    box-shadow: 0 12px 28px rgba(0, 31, 63, 0.08);
  }
}

.wealth-users-card__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.14), rgba(129, 140, 248, 0.1));
  color: #0284c7;
}

.wealth-users-card__icon svg {
  width: 22px;
  height: 22px;
}

.wealth-users-card__title {
  margin: 0;
  font-size: clamp(0.9rem, 0.86rem + 0.16vw, 1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-heading);
}

.wealth-users-card__role {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(100, 116, 139, 0.95);
}

@media (max-width: 640px) {
  .wealth-users-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wealth-users-card {
    align-items: flex-start;
    flex-direction: column;
    min-height: 104px;
  }
}

/* --- Wealth platform: platform layers (dark tabs) --- */
.wealth-layers-section {
  position: relative;
  padding: clamp(56px, 8vw, 88px) 0;
  overflow: hidden;
  background: linear-gradient(165deg, #071222 0%, #0c1f3d 48%, #0a1628 100%);
}

.wealth-layers-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 50% at 10% 0%, rgba(56, 189, 248, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 100%, rgba(99, 102, 241, 0.08), transparent 50%);
}

.wealth-layers-section__inner {
  position: relative;
  z-index: 1;
}

.wealth-layers-section__head {
  max-width: 44rem;
  margin: 0 auto clamp(28px, 4vw, 40px);
  text-align: center;
}

.wealth-layers-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.wealth-layers-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #f8fafc;
}

.wealth-layers-shell {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  align-items: start;
}

.wealth-layers-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wealth-layers-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(226, 234, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.wealth-layers-tab:hover {
  border-color: rgba(56, 189, 248, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #f1f5f9;
}

.wealth-layers-tab.is-active {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(56, 189, 248, 0.1);
  color: #f8fafc;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.12) inset;
}

.wealth-layers-tab__badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
}

.wealth-layers-panels {
  min-height: 220px;
}

.wealth-layers-panel {
  display: none;
  padding: clamp(22px, 2.8vw, 30px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 20, 50, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wealth-layers-panel.is-active {
  display: block;
  animation: wealth-layer-panel-in 0.28s ease;
}

@keyframes wealth-layer-panel-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

.wealth-layers-panel__title {
  margin: 0 0 16px;
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.wealth-layers-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.wealth-layers-panel__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 0.98rem);
  line-height: 1.55;
  color: rgba(203, 213, 245, 0.88);
}

.wealth-layers-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.45);
}

@media (max-width: 768px) {
  .wealth-layers-shell {
    grid-template-columns: 1fr;
  }

  .wealth-layers-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .wealth-layers-tab {
    min-width: 0;
    padding: 12px 14px;
  }
}

/* --- Wealth platform: system highlights --- */
.wealth-highlights-section {
  padding: clamp(56px, 8vw, 88px) 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 45, 98, 0.06);
}

.wealth-highlights-section__head {
  max-width: 44rem;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
  text-align: center;
}

.wealth-highlights-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0284c7;
}

.wealth-highlights-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-heading);
}

.wealth-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.wealth-highlight-card {
  position: relative;
  padding: clamp(22px, 2.6vw, 28px) clamp(22px, 2.6vw, 28px) clamp(22px, 2.6vw, 28px) clamp(56px, 6vw, 72px);
  border-radius: 18px;
  border: 1px solid rgba(0, 45, 98, 0.08);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 24px rgba(0, 31, 63, 0.05);
  overflow: hidden;
}

.wealth-highlight-card--wide {
  grid-column: 1 / -1;
}

.wealth-highlight-card__num {
  position: absolute;
  left: clamp(14px, 1.8vw, 20px);
  top: clamp(14px, 1.8vw, 20px);
  font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(2, 132, 199, 0.14);
}

.wealth-highlight-card__title {
  margin: 0 0 10px;
  font-size: clamp(0.98rem, 0.94rem + 0.15vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text-heading);
}

.wealth-highlight-card__text {
  margin: 0;
  font-size: clamp(0.84rem, 0.82rem + 0.08vw, 0.92rem);
  line-height: 1.65;
  color: var(--text-body);
}

@media (max-width: 768px) {
  .wealth-highlights-grid {
    grid-template-columns: 1fr;
  }

  .wealth-highlight-card--wide {
    grid-column: auto;
  }
}

/* --- Wealth platform: client experience journey --- */
.wealth-experience-section {
  padding: clamp(56px, 8vw, 88px) 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 45, 98, 0.06);
}

.wealth-experience-section__head {
  max-width: 42rem;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}

.wealth-experience-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-heading);
}

.wealth-experience-steps {
  --wealth-exp-icon-size: 68px;
  --wealth-exp-line-y: calc(var(--wealth-exp-icon-size) / 2);
  --wealth-exp-gap: clamp(14px, 1.8vw, 22px);
  --wealth-exp-icon-color: #2dc8f3;
  --wealth-exp-connector: rgba(148, 163, 184, 0.55);

  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--wealth-exp-gap);
  position: relative;
}

.wealth-experience-steps::before {
  content: "";
  position: absolute;
  left: calc(100% / 12);
  right: calc(100% / 12);
  top: var(--wealth-exp-line-y);
  border-top: 2px dotted var(--wealth-exp-connector);
  pointer-events: none;
  z-index: 0;
}

.wealth-experience-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
}

.wealth-experience-step__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--wealth-exp-icon-size);
  height: var(--wealth-exp-icon-size);
  border-radius: 50%;
  border: 1px solid rgba(45, 200, 243, 0.28);
  background: linear-gradient(145deg, rgba(224, 242, 254, 0.95), rgba(237, 233, 254, 0.85));
  color: var(--wealth-exp-icon-color);
  box-shadow: 0 0 0 4px #ffffff;
}

.wealth-experience-step__icon svg {
  display: block;
}

.wealth-experience-step__label {
  margin: 4px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(100, 116, 139, 0.95);
}

.wealth-experience-step__title {
  margin: 0;
  font-size: clamp(0.88rem, 0.85rem + 0.15vw, 0.98rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-heading);
}

.wealth-experience-step__text {
  margin: 0;
  font-size: clamp(0.78rem, 0.76rem + 0.1vw, 0.86rem);
  line-height: 1.55;
  color: var(--text-body);
}

@media (max-width: 1200px) {
  .wealth-experience-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: clamp(28px, 4vw, 40px);
  }

  .wealth-experience-steps::before {
    display: none;
  }

  .wealth-experience-step:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    top: var(--wealth-exp-line-y);
    left: 50%;
    width: calc(100% + var(--wealth-exp-gap));
    border-top: 2px dotted var(--wealth-exp-connector);
    pointer-events: none;
    z-index: 0;
  }
}

@media (max-width: 768px) {
  .wealth-experience-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wealth-experience-step::after,
  .wealth-experience-step:not(:nth-child(2n))::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .wealth-experience-steps {
    grid-template-columns: 1fr;
  }

  .wealth-experience-step::after {
    display: none;
  }
}

/* --- Wealth platform: tools section (section 4) --- */
.wealth-tools-section__head {
  max-width: 44rem;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.wealth-tools-section__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #f8fafc;
}

.wealth-tools-stack {
  display: grid;
  gap: clamp(24px, 3.5vw, 36px);
}

.wealth-tools-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 3.5vw, 40px);
  align-items: center;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wealth-tools-panel__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wealth-tools-panel__title--client {
  color: #38bdf8;
}

.wealth-tools-panel__title--advisor {
  color: #c4b5fd;
}

.wealth-tools-panel__lede {
  margin: 12px 0 0;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.65;
  color: rgba(148, 163, 184, 0.95);
}

.wealth-tools-features {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.wealth-tools-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.92);
}

.wealth-tools-features li::before {
  content: "✓";
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 800;
}

.wealth-tools-features--client li::before {
  color: #38bdf8;
}

.wealth-tools-features--advisor li::before {
  color: #a78bfa;
}

.wealth-tools-panel__visual {
  min-width: 0;
}

.wealth-tools-browser {
  width: 100%;
  max-width: 100%;
}

.wealth-tools-browser .psc-dash {
  min-height: 0;
}

.wealth-tools-ui {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 280px;
  background: #080f1d;
}

.wealth-tools-ui__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.wealth-tools-ui__nav-item {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wealth-tools-ui__nav-item--active {
  background: rgba(0, 242, 255, 0.12);
  border-color: rgba(0, 242, 255, 0.35);
  box-shadow: 0 0 12px rgba(0, 242, 255, 0.12);
}

.wealth-tools-ui__nav--advisor .wealth-tools-ui__nav-item--active {
  background: rgba(167, 139, 250, 0.14);
  border-color: rgba(167, 139, 250, 0.38);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.12);
}

.wealth-tools-ui__main {
  padding: clamp(12px, 1.8vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.wealth-tools-ui__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wealth-tools-ui__page-title {
  color: rgba(210, 230, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
}

.wealth-tools-kpi__label {
  color: rgba(150, 185, 230, 0.65);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wealth-tools-kpi__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.wealth-tools-kpi__value {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.88rem, 0.8rem + 0.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wealth-tools-kpi__change {
  font-size: 0.78rem;
  font-weight: 700;
}

.wealth-tools-ui__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 10px;
  align-items: start;
}

.wealth-tools-chart .psc-line-chart {
  height: 56px;
  width: 100%;
}

.wealth-tools-alloc__inner {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.wealth-tools-donut {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
}

.wealth-tools-legend {
  flex: 1 1 auto;
  min-width: 0;
  gap: 3px;
}

.wealth-tools-legend .psc-legend-item {
  font-size: 0.6rem;
  line-height: 1.4;
}

.wealth-tools-legend .psc-legend-item > span:not(.psc-legend-dot) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wealth-tools-holdings {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wealth-tools-holdings .psc-holding-row {
  font-size: 0.68rem;
}

.wealth-advisor-search {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(150, 180, 220, 0.55);
  font-size: 0.72rem;
}

.wealth-advisor-clients {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.wealth-advisor-client {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.wealth-advisor-client__avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  color: #e2e8f0;
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.25), rgba(129, 140, 248, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wealth-tools-ui--advisor .wealth-advisor-client__avatar {
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.22), rgba(129, 140, 248, 0.18));
}

.wealth-advisor-client__info {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wealth-advisor-client__info strong {
  color: rgba(226, 232, 240, 0.95);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wealth-advisor-client__info span {
  color: rgba(150, 180, 220, 0.65);
  font-size: 0.64rem;
}

.wealth-advisor-client__perf {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .wealth-tools-panel {
    grid-template-columns: 1fr;
  }

  .wealth-tools-ui__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .wealth-tools-section__head {
    margin-bottom: 28px;
  }

  .wealth-tools-panel {
    padding: 20px;
  }

  .wealth-tools-panel__visual {
    display: none;
  }

  .wealth-tools-ui {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .wealth-tools-ui__nav-item {
    width: 24px;
    height: 24px;
  }
}

/* --- Wealth platform: trust pillars (section 5) --- */
.wealth-trust-section {
  padding: clamp(56px, 8vw, 88px) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 45, 98, 0.06);
}

.wealth-trust-section__head {
  max-width: 44rem;
  margin: 0 auto clamp(36px, 5vw, 52px);
  text-align: center;
}

.wealth-trust-section__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-heading);
}

.wealth-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}

.wealth-trust-pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.wealth-trust-pillar__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #0369a1;
}

.wealth-trust-pillar__title {
  margin: 0;
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-heading);
}

.wealth-trust-pillar__text {
  margin: 0;
  font-size: clamp(0.82rem, 0.8rem + 0.1vw, 0.9rem);
  line-height: 1.6;
  color: var(--text-body);
}

@media (max-width: 1100px) {
  .wealth-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .wealth-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .wealth-trust-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Wealth platform: extended marketing sections --- */
#section-4-wealth-pillars,
#section-5-wealth-journey {
  scroll-margin-top: 96px;
}

.wealth-page-section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.wealth-page-section--surface {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wealth-page-section--muted {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-muted) 100%);
}

.wealth-page-section--dark {
  background: linear-gradient(165deg, #0a1628 0%, #0f172a 45%, #0c1524 100%);
  color: rgba(226, 232, 240, 0.9);
}

.wealth-page-section--dark h2,
.wealth-page-section--dark h3 {
  color: #f1f5f9;
}

.wealth-page-section--dark .wealth-page-section__lede {
  color: rgba(148, 163, 184, 0.95);
}

.wealth-page-section__head {
  max-width: 40rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.wealth-page-section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.wealth-page-section--dark .wealth-page-section__eyebrow {
  color: rgba(0, 242, 255, 0.88);
}

.wealth-page-section__title {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.wealth-page-section__lede {
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* Profile split (device showcase + stats panel) */
.wealth-profile-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

.wealth-profile-panel {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(22px, 3.5vw, 32px);
  box-shadow: var(--shadow-md);
}

.wealth-profile-panel__title {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.wealth-profile-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wealth-profile-stats > li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-body);
}

.wealth-profile-stats__dot {
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--blue-600);
  flex-shrink: 0;
}

.wealth-profile-stats__main strong {
  display: block;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.wealth-profile-panel__copy {
  margin: 20px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* Capability pillars */
.wealth-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 24px);
}

.wealth-pillar {
  padding: clamp(20px, 3vw, 26px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.wealth-pillar:hover {
  border-color: rgba(0, 242, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.wealth-pillar__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  color: rgba(0, 242, 255, 0.95);
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.22);
}

.wealth-pillar__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wealth-pillar__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(148, 163, 184, 0.95);
}

/* Journey strip */
.wealth-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  position: relative;
}

.wealth-journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.25), transparent);
  pointer-events: none;
}

.wealth-journey__step {
  position: relative;
  text-align: center;
  padding: 8px 10px 0;
}

.wealth-journey__num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--navy-800));
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow-md);
}

.wealth-journey__title {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-heading);
}

.wealth-journey__text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-body);
}

@media (max-width: 960px) {
  .wealth-profile-split {
    grid-template-columns: 1fr;
  }

  .wealth-pillars {
    grid-template-columns: 1fr;
  }

  .wealth-journey {
    grid-template-columns: 1fr 1fr;
  }

  .wealth-journey::before {
    display: none;
  }
}

@media (max-width: 520px) {
  .wealth-journey {
    grid-template-columns: 1fr;
  }
}

#section-3-api-profile,
#section-4-api-pillars {
  scroll-margin-top: 96px;
}

/* API platform: developer console visual (pairs with wealth-profile-split) */
.api-dev-showcase {
  position: relative;
  min-height: clamp(280px, 46vw, 400px);
  isolation: isolate;
}

.api-dev-showcase__glow {
  position: absolute;
  inset: 8% 8% 14%;
  background: radial-gradient(ellipse at 45% 25%, rgba(31, 111, 208, 0.22), transparent 68%);
  filter: blur(22px);
  z-index: 0;
  pointer-events: none;
}

.api-dev-showcase__window {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 440px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: #0f172a;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.api-dev-showcase__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #020617;
  border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.api-dev-showcase__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #475569;
  flex-shrink: 0;
}

.api-dev-showcase__dot:nth-child(1) {
  background: #f87171;
}

.api-dev-showcase__dot:nth-child(2) {
  background: #fbbf24;
}

.api-dev-showcase__dot:nth-child(3) {
  background: #4ade80;
}

.api-dev-showcase__url {
  flex: 1;
  min-width: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  color: rgba(148, 163, 184, 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.api-dev-showcase__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(30, 41, 59, 0.75);
  border-bottom: 1px solid rgba(51, 65, 85, 0.45);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.64rem;
  color: #94a3b8;
}

.api-dev-showcase__badge {
  padding: 4px 9px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(74, 222, 128, 0.18);
  color: #86efac;
}

.api-dev-showcase__body {
  padding: 14px 14px 18px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  line-height: 1.6;
  color: #e2e8f0;
}

.api-dev-showcase__body > div {
  padding-left: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.api-dev-showcase__k {
  color: #7dd3fc;
}

.api-dev-showcase__n {
  color: #cbd5e1;
}

.api-dev-showcase__s {
  color: #86efac;
}

.api-dev-showcase__float {
  position: absolute;
  right: 0;
  bottom: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: min(100%, 280px);
}

.api-dev-showcase__method {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  color: #ea580c;
  letter-spacing: 0.06em;
}

.api-dev-showcase__path {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  color: var(--text-heading);
  word-break: break-all;
}

@media (max-width: 960px) {
  .api-dev-showcase {
    min-height: 260px;
    max-width: 520px;
    margin: 0 auto;
  }

  .api-dev-showcase__float {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: none;
  }
}

/* Digital finance — unified typography aligned with wealth-platform.html */
.page--digital-finance {
  --df-color-heading: var(--text-heading);
  --df-color-body: var(--text-body);
  --df-color-eyebrow: var(--blue-600);
  --df-color-hero-eyebrow: #7dd3fc;
  --df-color-hero-title: rgba(255, 255, 255, 0.98);
  --df-color-hero-lede: rgba(203, 213, 245, 0.86);
  --df-color-hero-feature-title: rgba(255, 255, 255, 0.96);
  --df-color-hero-feature-text: rgba(203, 213, 245, 0.78);
  --df-color-dark-heading: #f1f5f9;
  --df-color-dark-body: rgba(226, 234, 255, 0.86);
  --df-color-dark-muted: rgba(148, 163, 184, 0.95);
  --df-color-dark-eyebrow: rgba(0, 242, 255, 0.88);
}

@media (min-width: 721px) {
  .page--digital-finance {
    --d-text-caption: 0.82rem;
    --d-text-muted: 0.88rem;
    --d-text-xs: 0.72rem;
    --d-text-sm: 0.92rem;
    --d-text-base: 1.02rem;
    --d-text-lg: 1.05rem;
    --d-h1: clamp(1.85rem, 1rem + 2.8vw, 3rem);
    --d-h2: clamp(1.55rem, 3.2vw, 2.1rem);
    --d-h3: clamp(1.15rem, 2vw, 1.35rem);
  }

  .page--digital-finance .df-hero-eyebrow,
  .page--digital-finance .df-modules-services-eyebrow__text,
  .page--digital-finance .digital-finance-flow__eyebrow,
  .page--digital-finance .df-fund-platform__eyebrow,
  .page--digital-finance .df-fund-capabilities__eyebrow,
  .page--digital-finance .psc-eyebrow,
  .page--digital-finance .section__eyebrow,
  .page--digital-finance .digital-finance-partnership__badge,
  .page--digital-finance .digital-finance-architecture__eyebrow {
    font-size: var(--d-text-xs);
  }

  .page--digital-finance .df-hero-title {
    font-size: var(--d-h1);
  }

  .page--digital-finance .df-modules-services-title,
  .page--digital-finance .df-solution-showcase__title,
  .page--digital-finance .digital-finance-flow__title,
  .page--digital-finance .df-fund-platform__title,
  .page--digital-finance .df-fund-capabilities__title,
  .page--digital-finance .psc-title,
  .page--digital-finance .section__heading,
  .page--digital-finance .digital-finance-architecture__title,
  .page--digital-finance .contact-section__intro-title {
    font-size: var(--d-h2);
    max-width: none;
  }

  .page--digital-finance .df-modules-showcase__card-title,
  .page--digital-finance .digital-finance-flow__outcomes-title,
  .page--digital-finance .psc-panel__heading,
  .page--digital-finance .df-fund-platform__journey-intro h4,
  .page--digital-finance .info-card__title {
    font-size: var(--d-h3);
  }

  .page--digital-finance .df-hero-lede,
  .page--digital-finance .df-modules-services-lede,
  .page--digital-finance .df-solution-showcase__lede,
  .page--digital-finance .df-solution-showcase__bullet-list,
  .page--digital-finance .digital-finance-flow__lede,
  .page--digital-finance .df-fund-platform__lede,
  .page--digital-finance .psc-desc,
  .page--digital-finance .psc-panel__text,
  .page--digital-finance .section__body,
  .page--digital-finance .digital-finance-architecture__lede,
  .page--digital-finance .digital-finance-flow__outcome-title,
  .page--digital-finance .df-fund-platform__module h4,
  .page--digital-finance .contact-section__intro-text,
  .page--digital-finance .info-card__text,
  .page--digital-finance .df-uiux__lede {
    font-size: var(--d-text-base);
    line-height: 1.65;
  }

  .page--digital-finance .df-solution-showcase__quote-text,
  .page--digital-finance .psc-tab,
  .page--digital-finance .psc-benefits li,
  .page--digital-finance .df-fund-platform__module p,
  .page--digital-finance .df-fund-platform__proof span:last-child,
  .page--digital-finance .df-fund-platform__bar-item span,
  .page--digital-finance .df-fund-platform__steps strong,
  .page--digital-finance .bullet-list li,
  .page--digital-finance .digital-finance-hero-panel__label,
  .page--digital-finance .df-uiux__feature-title,
  .page--digital-finance .df-hero-feature__title,
  .page--digital-finance .df-modules-showcase__card-text,
  .page--digital-finance .df-modules-showcase__cta {
    font-size: var(--d-text-sm);
    line-height: 1.6;
  }

  .page--digital-finance .digital-finance-flow__node-title {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .page--digital-finance .digital-finance-flow__node-desc,
  .page--digital-finance .digital-finance-flow__outcome-text,
  .page--digital-finance .df-uiux__feature-text {
    font-size: var(--d-text-muted);
    line-height: 1.55;
  }

  .page--digital-finance .df-hero-feature__text {
    font-size: var(--d-text-caption);
    line-height: 1.5;
  }

  .page--digital-finance .digital-finance-hero-panel__value {
    font-size: var(--d-text-lg);
  }

  .page--digital-finance .df-arch-diagram__zone-title {
    font-size: var(--d-text-xs);
    letter-spacing: 0.12em;
  }

  .page--digital-finance .df-arch-diagram__card-title {
    font-size: var(--d-text-sm);
    line-height: 1.35;
  }

  .page--digital-finance .df-uiux__title {
    font-size: var(--d-h2);
    max-width: none;
  }
}

/* Digital finance — unified mobile typography aligned with wealth-platform.html */
@media (max-width: 720px) {
  .page--digital-finance {
    --m-text-caption: 0.82rem;
    --m-text-muted: 0.88rem;
    --m-text-xs: 0.72rem;
    --m-text-sm: 0.92rem;
    --m-text-base: 1.02rem;
    --m-text-lg: 1.05rem;
    --m-h1: clamp(1.85rem, 1rem + 2.8vw, 3rem);
    --m-h2: clamp(1.55rem, 3.2vw, 2.1rem);
    --m-h3: clamp(1.05rem, 2vw, 1.25rem);
  }

  .page--digital-finance .df-hero-eyebrow,
  .page--digital-finance .df-modules-services-eyebrow__text,
  .page--digital-finance .digital-finance-flow__eyebrow,
  .page--digital-finance .df-fund-platform__eyebrow,
  .page--digital-finance .df-fund-capabilities__eyebrow,
  .page--digital-finance .psc-eyebrow,
  .page--digital-finance .section__eyebrow,
  .page--digital-finance .digital-finance-partnership__badge,
  .page--digital-finance .digital-finance-architecture__eyebrow {
    font-size: var(--m-text-xs);
  }

  .page--digital-finance .df-hero-title {
    font-size: var(--m-h1);
  }

  .page--digital-finance .df-modules-services-title,
  .page--digital-finance .df-solution-showcase__title,
  .page--digital-finance .digital-finance-flow__title,
  .page--digital-finance .df-fund-platform__title,
  .page--digital-finance .df-fund-capabilities__title,
  .page--digital-finance .psc-title,
  .page--digital-finance .section__heading,
  .page--digital-finance .digital-finance-architecture__title,
  .page--digital-finance .contact-section__intro-title {
    font-size: var(--m-h2);
    max-width: none;
  }

  .page--digital-finance .df-modules-showcase__card-title,
  .page--digital-finance .digital-finance-flow__outcomes-title,
  .page--digital-finance .psc-panel__heading,
  .page--digital-finance .df-fund-platform__journey-intro h4,
  .page--digital-finance .info-card__title {
    font-size: var(--m-h3);
  }

  .page--digital-finance .df-hero-lede,
  .page--digital-finance .df-modules-services-lede,
  .page--digital-finance .df-solution-showcase__lede,
  .page--digital-finance .df-solution-showcase__bullet-list,
  .page--digital-finance .digital-finance-flow__lede,
  .page--digital-finance .df-fund-platform__lede,
  .page--digital-finance .psc-desc,
  .page--digital-finance .psc-panel__text,
  .page--digital-finance .section__body,
  .page--digital-finance .digital-finance-architecture__lede,
  .page--digital-finance .digital-finance-flow__outcome-title,
  .page--digital-finance .df-fund-platform__module h4,
  .page--digital-finance .contact-section__intro-text,
  .page--digital-finance .info-card__text,
  .page--digital-finance .df-uiux__lede {
    font-size: var(--m-text-base);
    line-height: 1.65;
  }

  .page--digital-finance .df-solution-showcase__quote-text,
  .page--digital-finance .psc-tab,
  .page--digital-finance .psc-benefits li,
  .page--digital-finance .df-fund-platform__module p,
  .page--digital-finance .df-fund-platform__proof span:last-child,
  .page--digital-finance .df-fund-platform__bar-item span,
  .page--digital-finance .df-fund-platform__steps strong,
  .page--digital-finance .bullet-list li,
  .page--digital-finance .digital-finance-hero-panel__label,
  .page--digital-finance .df-uiux__feature-title,
  .page--digital-finance .df-hero-feature__title,
  .page--digital-finance .df-modules-showcase__card-text,
  .page--digital-finance .df-modules-showcase__cta {
    font-size: var(--m-text-sm);
    line-height: 1.6;
  }

  .page--digital-finance .digital-finance-flow__node-title {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .page--digital-finance .digital-finance-flow__node-desc,
  .page--digital-finance .digital-finance-flow__outcome-text,
  .page--digital-finance .df-uiux__feature-text {
    font-size: var(--m-text-muted);
    line-height: 1.55;
  }

  .page--digital-finance .df-hero-feature__text {
    font-size: var(--m-text-caption);
    line-height: 1.5;
  }

  .page--digital-finance .digital-finance-flow__node-desc {
    max-width: none;
  }

  .page--digital-finance .digital-finance-hero-panel__value {
    font-size: var(--m-text-lg);
  }

  .page--digital-finance .df-arch-diagram__zone-title {
    font-size: var(--m-text-xs);
    letter-spacing: 0.12em;
  }

  .page--digital-finance .df-arch-diagram__card-title {
    font-size: var(--m-text-sm);
    line-height: 1.35;
  }

  .page--digital-finance .df-uiux__title {
    font-size: var(--m-h2);
    max-width: none;
  }
}

/* Digital finance — unified text colors aligned with wealth-platform.html */
.page--digital-finance .section__heading,
.page--digital-finance .section__heading--wide {
  color: var(--df-color-heading);
}

.page--digital-finance .section__eyebrow,
.page--digital-finance .df-uiux__eyebrow {
  color: var(--df-color-eyebrow);
}

.page--digital-finance .section__body,
.page--digital-finance .bullet-list li,
.page--digital-finance .info-card__text,
.page--digital-finance .contact-section__intro-text {
  color: var(--df-color-body);
}

.page--digital-finance .info-card__title,
.page--digital-finance .contact-section__intro-title {
  color: var(--df-color-heading);
}

.page--digital-finance .df-arch-diagram__zone-title {
  color: var(--df-color-body);
}

.page--digital-finance .df-arch-diagram__card-title {
  color: var(--df-color-heading);
}

.page--digital-finance .df-arch-diagram__actor-label {
  color: var(--df-color-body);
}

.page--digital-finance .df-fund-platform__module h4,
.page--digital-finance .psc-panel__heading,
.page--digital-finance .df-fund-platform__journey-intro h4 {
  color: var(--df-color-dark-heading);
}

.page--digital-finance .df-fund-platform__module p,
.page--digital-finance .psc-benefits li,
.page--digital-finance .psc-tab {
  color: var(--df-color-dark-muted);
}

/* Digital Finance — mobile comfort tuning */
@media (max-width: 640px) {
  .page--digital-finance .hero--digital-finance-lead {
    min-height: auto;
    padding-block: 72px 46px;
  }

  .page--digital-finance .df-hero-split {
    gap: 22px;
  }

  .page--digital-finance .df-hero-eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .page--digital-finance .df-hero-title {
    font-size: clamp(1.78rem, 9vw, 2.35rem);
    line-height: 1.12;
  }

  .page--digital-finance .df-hero-lede {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .page--digital-finance .df-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }

  .page--digital-finance .df-hero-cta {
    width: 100%;
    min-height: 46px;
    padding-inline: 18px;
    justify-content: center;
    font-size: 0.9rem;
  }

  .page--digital-finance .df-hero-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page--digital-finance .df-hero-feature {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 4px;
    padding: 16px;
    border-radius: 16px;
  }

  .page--digital-finance .df-hero-feature__icon {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
  }

  .page--digital-finance .df-hero-feature__icon svg {
    width: 21px;
    height: 21px;
  }

  .page--digital-finance .df-hero-feature__title {
    font-size: 0.95rem;
  }

  .page--digital-finance .df-hero-feature__text {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .page--digital-finance .df-modules-section,
  .page--digital-finance .df-solution-showcase,
  .page--digital-finance .df-fund-platform,
  .page--digital-finance .df-fund-capabilities,
  .page--digital-finance .digital-finance-flow__top,
  .page--digital-finance .digital-finance-flow__bottom {
    padding-block: 48px 56px;
  }

  .page--digital-finance .df-modules-services-header,
  .page--digital-finance .digital-finance-flow__header,
  .page--digital-finance .df-fund-capabilities__header {
    margin-bottom: 30px;
  }

  .page--digital-finance .df-modules-services-title,
  .page--digital-finance .digital-finance-flow__title,
  .page--digital-finance .digital-finance-flow__outcomes-title,
  .page--digital-finance .df-solution-showcase__title,
  .page--digital-finance .df-fund-platform__title,
  .page--digital-finance .df-fund-capabilities__title {
    font-size: clamp(1.36rem, 7vw, 1.78rem);
    line-height: 1.24;
  }

  .page--digital-finance .df-modules-services-lede,
  .page--digital-finance .digital-finance-flow__lede,
  .page--digital-finance .df-solution-showcase__lede,
  .page--digital-finance .df-fund-platform__lede {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .page--digital-finance .df-modules-showcase {
    gap: 16px;
    margin-top: 26px;
  }

  .page--digital-finance .df-modules-showcase__card {
    max-width: none;
    padding: 18px;
    border-radius: 18px;
  }

  .page--digital-finance .df-modules-showcase__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .page--digital-finance .df-modules-showcase__card-title,
  .page--digital-finance .digital-finance-flow__node-title,
  .page--digital-finance .digital-finance-flow__outcome-title,
  .page--digital-finance .df-fund-platform__module h4 {
    font-size: 0.98rem;
    line-height: 1.32;
  }

  .page--digital-finance .df-modules-showcase__card-text,
  .page--digital-finance .digital-finance-flow__node-desc,
  .page--digital-finance .digital-finance-flow__outcome-text,
  .page--digital-finance .df-fund-platform__module p,
  .page--digital-finance .df-fund-platform__steps strong,
  .page--digital-finance .df-fund-platform__steps span {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .page--digital-finance .df-modules-showcase__card-rule {
    margin-block: 12px;
  }

  .page--digital-finance .df-modules-showcase__cta {
    margin-top: 16px;
    font-size: 0.86rem;
  }

  .page--digital-finance .df-solution-showcase__grid,
  .page--digital-finance .df-fund-platform__hero,
  .page--digital-finance .df-fund-platform__journey {
    gap: 28px;
  }

  .page--digital-finance .df-solution-showcase__visual {
    display: none;
  }

  .page--digital-finance .df-solution-showcase__quote {
    padding: 16px;
    border-radius: 16px;
  }

  .page--digital-finance .df-solution-showcase__bullet-list {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .page--digital-finance .df-solution-showcase__bullet-list li {
    margin-bottom: 0.5em;
  }

  .page--digital-finance .df-solution-showcase__quote-text {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .page--digital-finance .df-fund-platform__copy {
    gap: 18px;
  }

  .page--digital-finance .df-fund-platform__proof,
  .page--digital-finance .df-fund-platform__module,
  .page--digital-finance .df-fund-platform__bar-item {
    padding: 16px;
    border-radius: 16px;
  }

  .page--digital-finance .df-fund-platform__modules,
  .page--digital-finance .df-fund-platform__proof-grid,
  .page--digital-finance .df-fund-platform__bar {
    gap: 12px;
  }

  .page--digital-finance .df-fund-platform__visual {
    max-width: min(320px, 86vw);
    margin-inline: auto;
  }

  .page--digital-finance .df-fund-platform__steps {
    gap: 10px;
  }

  .page--digital-finance .digital-finance-flow--cards .digital-finance-flow__cards {
    gap: 12px;
  }

  .page--digital-finance .digital-finance-flow--cards .digital-finance-flow__card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .page--digital-finance .digital-finance-flow--cards .digital-finance-flow__card-body {
    align-items: flex-start;
    text-align: left;
    padding: 0;
    gap: 5px;
  }

  .page--digital-finance .digital-finance-flow--cards .digital-finance-flow__card-head {
    display: block;
    height: auto;
    padding: 0;
  }

  .page--digital-finance .digital-finance-flow--cards .digital-finance-flow__step-num {
    position: static;
    transform: none;
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .page--digital-finance .digital-finance-flow--cards .digital-finance-flow__icon {
    display: none;
  }

  .page--digital-finance .digital-finance-flow__outcomes-grid {
    gap: 12px;
  }

  .page--digital-finance .digital-finance-flow__outcome {
    padding: 16px;
    border-radius: 16px;
  }
}

/* Desktop compact hero alignment — follows Fund Information Site scale */
@media (min-width: 769px) {
  .hero--ims-lead,
  .hero--wealth-lead,
  .hero--digital-finance-lead {
    min-height: clamp(480px, 64vh, 680px);
    padding-block: clamp(84px, 9vw, 116px) clamp(48px, 6vw, 72px);
  }

  .ims-hero-title,
  .wealth-hero-title,
  .df-hero-title {
    margin-bottom: clamp(12px, 1.8vw, 18px);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    line-height: 1.15;
  }

  .ims-hero-lede,
  .wealth-hero-lede,
  .df-hero-lede {
    max-width: 58ch;
    margin-bottom: clamp(18px, 2.4vw, 26px);
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .ims-hero-eyebrow,
  .wealth-hero-eyebrow,
  .df-hero-eyebrow {
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }

  .ims-hero-actions,
  .wealth-hero-actions,
  .df-hero-actions {
    gap: 12px;
  }

  .ims-hero-cta,
  .wealth-hero-cta,
  .df-hero-cta {
    min-height: 44px;
    padding-inline: 22px;
    font-size: 0.92rem;
  }

  .df-hero-features,
  .wealth-hero-features {
    gap: 14px;
    padding-top: 18px;
  }

  .wealth-hero-feature,
  .df-hero-feature {
    padding: 16px;
  }
}

/* Global mobile sizing alignment */
@media (max-width: 640px) {
  :root {
    --mobile-section-padding-y: 52px;
    --mobile-card-padding: 16px;
    --mobile-card-radius: 16px;
    --mobile-grid-gap: 12px;
    --mobile-title-size: clamp(1.36rem, 7vw, 1.78rem);
    --mobile-body-size: 0.9rem;
    --mobile-small-size: 0.78rem;
    --mobile-icon-size: 40px;
  }

  .section,
  .contact-section,
  .solutions-visual-section,
  .section--fintech-ecosystem,
  .ims-challenges,
  .ims-modules,
  .ims-roi,
  .wealth-capabilities-section,
  .wealth-users-section,
  .wealth-layers-section,
  .wealth-highlights-section,
  .wealth-experience-section,
  .wealth-page-section,
  .digital-finance-flow__top,
  .digital-finance-flow__bottom,
  .df-modules-section,
  .df-solution-showcase,
  .df-fund-platform,
  .df-fund-capabilities,
  .api-intro__section,
  .news-hub,
  .culture-section {
    padding-block: var(--mobile-section-padding-y);
  }

  .hero--page,
  .hero--home,
  .hero--ims-lead,
  .hero--wealth-lead,
  .hero--digital-finance-lead {
    padding-block: 72px 48px;
  }

  .container {
    padding-inline: 18px;
  }

  .section__heading,
  .section__title,
  .page-hero__title,
  .hero__title,
  .hero-home__title,
  .ims-hero-title,
  .ims-challenges__title,
  .ims-modules__title,
  .ims-roi__title,
  .wealth-hero-title,
  .wealth-capabilities-section__title,
  .wealth-users-section__title,
  .wealth-layers-section__title,
  .wealth-highlights-section__title,
  .wealth-experience-section__title,
  .wealth-tools-section__title,
  .df-hero-title,
  .df-modules-services-title,
  .digital-finance-flow__title,
  .digital-finance-flow__outcomes-title,
  .df-solution-showcase__title,
  .df-fund-platform__title,
  .df-fund-capabilities__title,
  .contact-section__intro-title,
  .news-card__title,
  .api-intro__section-title {
    font-size: var(--mobile-title-size);
    line-height: 1.24;
    letter-spacing: -0.03em;
  }

  .section__body,
  .page-hero__body,
  .hero__body,
  .hero-home__body,
  .ims-hero-lede,
  .ims-challenges__subtitle,
  .ims-modules__subtitle,
  .wealth-hero-lede,
  .wealth-capabilities-section__lede,
  .wealth-users-section__lede,
  .wealth-layers-panel__list li,
  .wealth-highlight-card__text,
  .wealth-experience-step__text,
  .wealth-tools-panel__lede,
  .df-hero-lede,
  .df-modules-services-lede,
  .digital-finance-flow__lede,
  .df-solution-showcase__lede,
  .df-fund-platform__lede,
  .contact-section__intro-text,
  .news-card__body,
  .api-intro__section-copy {
    font-size: var(--mobile-body-size);
    line-height: 1.6;
  }

  .info-card,
  .feature-card,
  .news-card,
  .wealth-capability-card,
  .wealth-users-card,
  .wealth-layers-panel,
  .wealth-highlight-card,
  .wealth-experience-step,
  .wealth-tools-panel,
  .ims-pain-card,
  .ims-audience-segment-card,
  .ims-roi-stat,
  .df-modules-showcase__card,
  .df-fund-platform__proof,
  .df-fund-platform__module,
  .df-fund-platform__bar-item,
  .digital-finance-flow__outcome,
  .contact-section__card,
  .api-intro__feature-card {
    border-radius: var(--mobile-card-radius);
  }

  .info-card,
  .feature-card,
  .news-card,
  .wealth-capability-card,
  .wealth-users-card,
  .wealth-layers-panel,
  .wealth-highlight-card,
  .wealth-tools-panel,
  .ims-pain-card,
  .ims-audience-segment-card,
  .df-modules-showcase__card,
  .df-fund-platform__proof,
  .df-fund-platform__module,
  .df-fund-platform__bar-item,
  .digital-finance-flow__outcome,
  .contact-section__card,
  .api-intro__feature-card {
    padding: var(--mobile-card-padding);
  }

  .card-grid,
  .feature-grid,
  .solutions-visual-grid,
  .wealth-units-grid,
  .wealth-users-bento,
  .wealth-layers-shell,
  .wealth-highlights-grid,
  .ims-challenges__pain-grid,
  .ims-challenges__audience-user-list,
  .ims-audience-segment-grid,
  .ims-roi__grid,
  .df-modules-showcase,
  .df-fund-platform__proof-grid,
  .df-fund-platform__modules,
  .df-fund-platform__bar,
  .digital-finance-flow__outcomes-grid,
  .contact-section__split,
  .news-hub__clusters {
    gap: var(--mobile-grid-gap);
  }

  .button,
  .hero-home__actions .button,
  .ims-hero-cta,
  .wealth-hero-cta,
  .df-hero-cta,
  .df-fund-platform__button {
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .wealth-capability-card__icon,
  .wealth-users-card__icon,
  .ims-pain-card__icon,
  .df-modules-showcase__icon,
  .df-hero-feature__icon,
  .df-fund-platform__module-icon,
  .digital-finance-flow__outcome-icon,
  .contact-section__detail-icon,
  .api-intro__feature-icon {
    width: var(--mobile-icon-size);
    height: var(--mobile-icon-size);
    border-radius: 12px;
  }

  .mobile-menu {
    padding: 12px;
    border-radius: 20px;
    max-height: calc(100dvh - 84px);
  }

  .mobile-menu__nav {
    gap: 4px;
  }

  .partners-section {
    padding-block: 44px;
  }

  .partners-section__inner {
    gap: 18px;
  }

  .partners-section__eyebrow {
    margin-bottom: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .partners-section__heading {
    max-width: 11em;
    font-size: clamp(1.48rem, 6vw, 1.72rem);
    line-height: 1.22;
    white-space: normal;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    max-width: 320px;
  }

  .partners-grid__item {
    min-height: 54px;
  }

  .partners-grid__item:last-child {
    grid-column: 1 / -1;
  }

  .partners-grid__logo {
    max-width: 132px;
    max-height: 34px;
  }

  .hero--home-institutional {
    min-height: auto;
  }

  .hero-home__inner {
    justify-content: flex-start;
    min-height: auto;
    padding: 58px 0 36px;
  }

  .hero-home__content {
    max-width: 100%;
  }

  .hero-home__title {
    max-width: 12em;
    font-size: clamp(1.64rem, 7.2vw, 1.92rem);
    line-height: 1.22;
  }

  .hero-home__body {
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .hero-home__actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-home__actions .button {
    min-height: 44px;
    border-radius: 999px;
  }

  .hero-home__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 0;
    padding-top: 28px;
  }

  .hero-home__stat-card {
    padding: 13px 12px;
    text-align: center;
  }

  .hero-home__stat-card strong {
    font-size: 1.22rem;
  }

  body {
    padding-bottom: max(18px, env(safe-area-inset-bottom, 0px));
  }

  main {
    scroll-padding-bottom: 88px;
  }

  .section__heading,
  .section__title,
  .page-hero__title,
  .hero__title,
  .hero-home__title,
  .ims-hero-title,
  .wealth-hero-title,
  .df-hero-title,
  .solutions-visual-section__heading,
  .partners-section__heading,
  .contact-section__intro-title {
    max-width: min(12.5em, 100%);
    text-wrap: balance;
  }

  .hero-home__actions .button--secondary {
    min-height: 42px;
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 390px) {
  .hero-home__inner {
    padding-top: 46px;
  }

  .hero-home__title {
    font-size: clamp(1.48rem, 7vw, 1.68rem);
    max-width: 11.5em;
  }

  .hero-home__body {
    margin-top: 14px;
    font-size: 0.84rem;
  }

  .hero-home__actions {
    margin-top: 18px;
  }

  .hero-home__actions .button {
    min-height: 40px;
    font-size: 0.84rem;
  }

  .hero-home__stats {
    gap: 8px;
    padding-top: 22px;
  }

  .hero-home__stat-card {
    padding: 10px 8px;
    border-radius: 12px;
  }

  .hero-home__stat-card strong {
    font-size: 1.05rem;
  }

  .hero-home__stat-card span,
  .hero-home__stat-card span.hero-home__stat-label--long {
    margin-top: 4px;
    font-size: 0.58rem;
    line-height: 1.25;
    letter-spacing: 0.02em;
  }

  .partners-grid__logo {
    max-width: 118px;
    max-height: 30px;
  }
}
