/* ============================================================
   bu.css — MOMO page custom styles
   ============================================================ */

/* ----- constellation keyframes (from standalone) ----- */
@keyframes cnSoftGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 0.85;
  }
}
@keyframes cnRingOut {
  0% {
    transform: translate(-50%, -50%) scale(0.45);
    opacity: 0;
  }
  15% {
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.45);
    opacity: 0;
  }
}
@keyframes cnSpinSlow {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ----- responsive scaler wrapper ----- */
#momo {
  overflow: hidden;
  background: radial-gradient(
    ellipse 90% 80% at 50% 42%,
    #ffffff 0%,
    #eef4ff 22%,
    #dce8f8 48%,
    #c8d8f0 72%,
    #b8cceb 100%
  ) !important;
}

#constellation {
  position: relative;
  width: 100%;
  margin: 16px auto 0;
  border-radius: 16px;
}

#momo.page-hero {
  padding-bottom: 0;
}

.cn-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform-origin: top left;
  font-family: "Inter", system-ui, sans-serif;
}

/* concentric orbit rings — sized to hug the diagram, centered on image */
.cn-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: cnSoftGlow 5.5s ease-in-out infinite;
  pointer-events: none;
}
.cn-ring-lg {
  width: 980px;
  height: 980px;
  border: 2px solid rgba(255, 255, 255, 0.22);
}
.cn-ring-md {
  width: 820px;
  height: 820px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  animation-delay: -1.8s;
}
.cn-ring-sm {
  width: 660px;
  height: 660px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  animation-delay: -3.6s;
}

/* slow rotating accent arc */
.cn-arc-spin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.15);
  animation: cnSpinSlow 40s linear infinite;
  pointer-events: none;
}

/* expanding energy pulses */
.cn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  animation: cnRingOut 5s ease-out infinite;
  pointer-events: none;
}
.cn-pulse-a {
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.cn-pulse-b {
  border: 2px solid rgba(255, 255, 255, 0.22);
  animation-delay: 2.5s;
}

/* soft core glow */
.cn-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 620px;
  height: 540px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(255, 255, 255, 0) 72%
  );
  animation: cnSoftGlow 5.5s ease-in-out infinite;
  filter: blur(6px);
  pointer-events: none;
}

/* JS-driven orbiting particles on the rings */
.cn-orbiter {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #ffffff,
    rgba(255, 255, 255, 0.75) 55%,
    rgba(255, 255, 255, 0) 78%
  );
  box-shadow:
    0 0 12px 3px rgba(255, 255, 255, 0.65),
    0 0 28px 8px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  will-change: transform;
}
.cn-orbiter-sm {
  width: 6px;
  height: 6px;
  box-shadow:
    0 0 8px 2px rgba(255, 255, 255, 0.55),
    0 0 18px 5px rgba(255, 255, 255, 0.2);
}

/* floating diagram */
@keyframes cnImgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.cn-diagram-wrap {
  display: flex;
  z-index: 1;
  position: relative;
  justify-content: center;
  padding: 16px 0;
}
.cn-diagram-img {
  width: 100%;
  max-width: 720px;
  animation: cnImgFloat 7s ease-in-out infinite;
}
@media (max-width: 992px) {
  .cn-ring-lg {
    width: 740px;
    height: 740px;
  }
  .cn-ring-md {
    width: 620px;
    height: 620px;
  }
  .cn-ring-sm {
    width: 500px;
    height: 500px;
  }
  .cn-arc-spin {
    width: 680px;
    height: 680px;
  }
  .cn-pulse {
    width: 420px;
    height: 420px;
  }
  .cn-core {
    width: 460px;
    height: 400px;
  }
  .cn-diagram-img {
    max-width: 560px;
  }
}
@media (max-width: 576px) {
  .cn-ring-lg {
    width: 480px;
    height: 480px;
    border-width: 1.5px;
  }
  .cn-ring-md {
    width: 400px;
    height: 400px;
    border-width: 1.5px;
  }
  .cn-ring-sm {
    width: 320px;
    height: 320px;
    border-width: 1.5px;
  }
  .cn-arc-spin {
    width: 440px;
    height: 440px;
  }
  .cn-pulse {
    width: 280px;
    height: 280px;
  }
  .cn-core {
    width: 300px;
    height: 260px;
  }
  .cn-diagram-img {
    max-width: 100%;
  }
}

/* ============================================================
   #agents section — redesign matching reference
   ============================================================ */

/* section header */
#agents .sec-head-ruled {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 52px;
  text-align: center;
}
#agents .eyebrow-ruled {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  gap: 14px;
  color: var(--sky);
  font-weight: 500;
  font-size: 0.72rem;
  font-family: var(--mono);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
#agents .eyebrow-ruled::before {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky));
  content: "";
}
#agents .eyebrow-ruled::after {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--sky), transparent);
  content: "";
}

/* agent cards */
#agents .card.agent {
  display: flex;
  align-items: flex-start;
  padding: 28px 26px;
  gap: 22px;
  border: 1px solid rgba(60, 110, 240, 0.18);
  background: rgba(10, 16, 36, 0.85);
  box-shadow:
    0 0 0 0 transparent,
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
#agents .card.agent:hover {
  border-color: rgba(30, 161, 255, 0.38);
  box-shadow: 0 0 28px -8px rgba(30, 161, 255, 0.22);
}

/* icon container */
#agents .agent-ico {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(60, 120, 255, 0.28);
  border-radius: 18px; /* default — Signal (2), Storm (5) */
  background: radial-gradient(ellipse at 40% 35%, rgba(20, 50, 120, 0.9), rgba(6, 12, 30, 0.95));
  box-shadow:
    0 0 22px -6px rgba(30, 100, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
#agents .agent-ico img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(30, 161, 255, 0.7)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* box 1 (Flow), 3 (Insight), 4 (Macro), 6 (Grid) → circle */
#agents .grid .card.agent:nth-child(1) .agent-ico,
#agents .grid .card.agent:nth-child(3) .agent-ico,
#agents .grid .card.agent:nth-child(4) .agent-ico,
#agents .grid .card.agent:nth-child(6) .agent-ico {
  border-radius: 50%;
}

/* text body */
#agents .agent-body {
  flex: 1;
}
#agents .agent-name {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
  font-family: var(--display);
}
#agents .agent-sub {
  margin-bottom: 12px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
#agents .agent-body p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============================================================
   MOMO — key drivers (white cards + dark CTA card)
   ============================================================ */
.kd-card {
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  background: #ffffff !important;
  box-shadow: 0 16px 40px -18px rgba(0, 20, 60, 0.5) !important;
  color: #101e38 !important;
}
.kd-card h3 {
  margin: 18px 0 12px;
  color: #101e38 !important;
  font-weight: 800;
  font-size: 1.26rem;
  line-height: 1.28;
}
.kd-card p {
  margin: 0;
  color: #62758e !important;
  font-size: 0.92rem;
  line-height: 1.65;
}
.kd-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
}
.kd-ico img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1.2);
}
/* dark CTA card */
.kd-cta {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(60, 140, 255, 0.5) !important;
  background:
    radial-gradient(ellipse 120% 90% at 20% -20%, rgba(30, 90, 220, 0.35) 0%, transparent 55%),
    linear-gradient(150deg, #0a1e3f 0%, #071731 45%, #04101f 100%) !important;
  box-shadow:
    0 0 32px -8px rgba(30, 120, 255, 0.45),
    inset 0 1px 0 rgba(120, 170, 255, 0.18) !important;
  color: #f4f8ff !important;
}
.kd-cta h3 {
  z-index: 1;
  position: relative;
  margin: 16px 0 12px;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
}
.kd-cta p {
  z-index: 1;
  position: relative;
  margin: 0 0 22px;
  color: #a9b8d4 !important;
  font-size: 0.92rem;
  line-height: 1.65;
}
.kd-cta .btn {
  z-index: 1;
  position: relative;
  padding: 15px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b82ff, #1554e8) !important;
  box-shadow:
    0 0 0 5px rgba(120, 170, 255, 0.12),
    0 10px 28px -6px rgba(30, 100, 255, 0.65) !important;
  font-size: 1rem;
}
.kd-cta-ico {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.kd-cta-ico img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
/* blue dotted ripple waves, right side */
.kd-cta-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  background: radial-gradient(rgba(70, 150, 255, 0.75) 1.2px, transparent 1.4px) 0 0 / 9px 9px;
  -webkit-mask:
    repeating-radial-gradient(
      circle at 118% 65%,
      transparent 0 26px,
      rgba(0, 0, 0, 0.95) 40px 74px,
      transparent 88px 114px
    ),
    linear-gradient(100deg, transparent 0%, rgba(0, 0, 0, 0.4) 35%, #000 70%);
  -webkit-mask-composite: source-in;
  mask:
    repeating-radial-gradient(
      circle at 118% 65%,
      transparent 0 26px,
      rgba(0, 0, 0, 0.95) 40px 74px,
      transparent 88px 114px
    ),
    linear-gradient(100deg, transparent 0%, rgba(0, 0, 0, 0.4) 35%, #000 70%);
  mask-composite: intersect;
  pointer-events: none;
}

/* ----- SVG constellation dot animations (nth-child, no inline styles) ----- */

/* cyan accents */

/* delays — tr circles */
/* delays — tr lines */

/* delays — bl circles */
/* delays — bl lines */

/* ----- Meta card (full-width gold) ----- */
.agent-meta-card {
  display: flex;
  position: relative;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px 32px;
  overflow: hidden;
  gap: 28px;
  border: 1px solid transparent;
  background: rgba(10, 16, 36, 0.9);
  background-clip: padding-box;
  box-shadow: 0 0 36px -10px rgba(233, 184, 74, 0.18);
}
.agent-meta-card::before {
  z-index: 0;
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(30, 80, 220, 0.25) 0%,
    rgba(180, 130, 50, 0.55) 45%,
    rgba(233, 184, 74, 0.9) 100%
  );
  content: "";
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.agent-meta-card .meta-wave {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  opacity: 0.55;
  pointer-events: none;
}
/* meta wave — flowing energy along the lines */
@keyframes metaWaveFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -240;
  }
}
@keyframes metaDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
}
@keyframes metaLinkFlicker {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.5;
  }
}
.meta-wave path {
  stroke-dasharray: 150 90;
  stroke-linecap: round;
  animation: metaWaveFlow 7s linear infinite;
}
.meta-wave path:nth-of-type(2) {
  animation-duration: 9s;
  animation-delay: -3s;
}
.meta-wave path:nth-of-type(3) {
  animation-duration: 11s;
  animation-delay: -6s;
}
.meta-wave circle {
  transform-box: fill-box;
  transform-origin: center;
  animation: metaDotPulse 3.2s ease-in-out infinite;
}
.meta-wave circle:nth-of-type(1) {
  animation-delay: 0s;
}
.meta-wave circle:nth-of-type(2) {
  animation-delay: 0.6s;
}
.meta-wave circle:nth-of-type(3) {
  animation-delay: 1.2s;
}
.meta-wave circle:nth-of-type(4) {
  animation-delay: 1.8s;
}
.meta-wave circle:nth-of-type(5) {
  animation-delay: 2.4s;
}
.meta-wave line {
  animation: metaLinkFlicker 4s ease-in-out infinite;
}
.meta-wave line:nth-of-type(2) {
  animation-delay: 1.3s;
}
.meta-wave line:nth-of-type(3) {
  animation-delay: 2.6s;
}
.agent-meta-body {
  z-index: 1;
  position: relative;
  flex: 1;
  min-width: 240px;
}
.agent-name-meta {
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.15;
  font-family: var(--display);
}
.agent-name-meta em {
  color: var(--gold);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
}
.agent-meta-body p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
}

/* ----- "One decision" card ----- */
.decision-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
  padding: 28px 32px;
  gap: 26px;
  border: 1px solid rgba(60, 110, 240, 0.16);
  background: transparent;
}
.decision-ico {
  flex: none;
  width: 100px;
  height: 100px;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.decision-card .decision-ico img {
  width: 88px;
  max-width: unset;
  height: 88px;
  max-height: unset;
  object-fit: contain;
}
.decision-body {
  flex: 1;
  min-width: 240px;
}
.decision-heading {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.3;
}
.decision-body p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 0.92rem;
}

/* ============================================================
   Terminal modules — themed cards (Chat / Signal / Radar)
   ============================================================ */
/* section eyebrow — "— TERMINAL MODULES" style with leading dash */
#features .sec-head .eyebrow,
.eyebrow.eyebrow-dash {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.72rem;
  font-family: var(--mono);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
#features .sec-head .eyebrow::before,
.eyebrow.eyebrow-dash::before {
  width: 34px;
  height: 2px;
  background: var(--sky);
  content: "";
}

/* ============================================================
   FX Markets — hero (two-column, light)
   ============================================================ */
#fx {
  overflow: hidden;
  background: radial-gradient(
    ellipse 90% 80% at 50% 42%,
    #ffffff 0%,
    #eef4ff 22%,
    #dce8f8 48%,
    #c8d8f0 72%,
    #b8cceb 100%
  ) !important;
}
#fx .h-page {
  color: #0a1a3c;
}
#fx .lead {
  max-width: 100%;
  color: rgba(10, 26, 60, 0.62);
}
#fx .breadcrumb,
#fx .breadcrumb a {
  color: rgba(10, 26, 60, 0.55);
}
#fx .eyebrow-dash {
  color: var(--em);
}
#fx .eyebrow-dash::before {
  background: var(--em);
}
.fx-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 28px 0 40px;
  gap: 48px;
}
/* feature strip card */
.fx-feat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  padding: 22px 10px;
  border: none;
  border-radius: 18px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 16px 40px -20px rgba(10, 40, 120, 0.35);
}
.fx-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
  text-align: center;
}
.fx-feat + .fx-feat {
  border-left: 1px solid rgba(10, 40, 120, 0.1);
}
.fx-feat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fx-feat-ico svg {
  width: 50px;
  height: 50px;
}
.fx-feat-label {
  color: #101e38;
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.35;
}
/* visual with floating pair chips */
.fx-hero-visual {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .fx-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .fx-hero-grid {
    padding: 20px 0 28px;
  }
  .fx-feat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }
  .fx-feat:nth-child(3) {
    border-left: none;
  }
}

/* ── FX Hero Scene (transparent design) ── */
@keyframes fxHeroGlow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.9;
  }
}
@keyframes fxFloatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fxFloatDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.fx-hero-scene {
  position: relative;
  aspect-ratio: 768 / 600;
  width: 100%;
  border-radius: 24px;
}
.fx-glow-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(42% 38% at 38% 40%, rgba(120, 170, 255, 0.28), transparent 70%),
    radial-gradient(40% 36% at 64% 42%, rgba(255, 205, 110, 0.25), transparent 70%),
    radial-gradient(60% 30% at 50% 92%, rgba(160, 190, 240, 0.3), transparent 75%);
}
.fx-center-glow {
  position: absolute;
  top: 12%;
  left: 25%;
  width: 50%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.9),
    rgba(190, 215, 255, 0.35),
    transparent
  );
  animation: fxHeroGlow 6s ease-in-out infinite;
}
.fx-map-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(90, 130, 200, 0.45) 1.1px, transparent 1.3px);
  background-size: 11px 11px;
  -webkit-mask-image:
    radial-gradient(18% 20% at 84% 36%, #000 40%, transparent 75%),
    radial-gradient(14% 18% at 9% 60%, #000 40%, transparent 75%),
    radial-gradient(12% 13% at 89% 79%, #000 35%, transparent 75%);
  mask-image:
    radial-gradient(18% 20% at 84% 36%, #000 40%, transparent 75%),
    radial-gradient(14% 18% at 9% 60%, #000 40%, transparent 75%),
    radial-gradient(12% 13% at 89% 79%, #000 35%, transparent 75%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0.5;
}
.fx-pedestal {
  position: absolute;
  bottom: 3%;
  left: 50%;
  aspect-ratio: 5 / 1;
  width: 58%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.95),
    rgba(205, 220, 245, 0.55) 60%,
    transparent
  );
  box-shadow: 0 0 60px rgba(150, 180, 235, 0.5);
}
.fx-pedestal-ring {
  position: absolute;
  bottom: 4.5%;
  left: 50%;
  aspect-ratio: 6 / 1;
  width: 44%;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(170, 200, 250, 0.45);
}
.fx-logo-wrap {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 74%;
  transform: translate(-50%, -50%);
}
.fx-logo-wrap img {
  display: block;
  width: 100%;
  animation: fxFloatUp 7s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(90, 120, 190, 0.3));
}
.fx-pill {
  display: flex;
  position: absolute;
  align-items: center;
  padding: 8px 16px 8px 9px;
  gap: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 8px 22px rgba(110, 140, 200, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  color: #24334d;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.fx-pill-ico {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
}
.fx-pill-ico-blue {
  background: linear-gradient(135deg, #4d8dff, #1f5fd6);
}
.fx-pill-ico-gold {
  background: linear-gradient(135deg, #f4c150, #d99a1e);
}
.fx-pill-txt-gold {
  color: #a4761d;
}
.fx-pill-1 {
  top: 6%;
  left: 73%;
  animation: fxFloatUp 5s ease-in-out infinite;
}
.fx-pill-2 {
  top: 29%;
  left: 9%;
  animation: fxFloatDown 6s ease-in-out infinite;
}
.fx-pill-3 {
  top: 51%;
  left: 6%;
  animation: fxFloatUp 5s ease-in-out infinite;
}
.fx-pill-4 {
  top: 52%;
  left: 80%;
  box-shadow:
    0 8px 22px rgba(200, 160, 80, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  animation: fxFloatDown 6s ease-in-out infinite;
}
.fx-pill-5 {
  top: 69%;
  left: 79%;
  animation: fxFloatUp 5s ease-in-out infinite;
}
@media (max-width: 992px) {
  .fx-pill-1 {
    left: 62%;
  }
  .fx-pill-4 {
    left: 68%;
  }
  .fx-pill-5 {
    left: 66%;
  }
}
@media (max-width: 576px) {
  .fx-hero-scene {
    aspect-ratio: 4 / 3;
  }
  .fx-pill {
    padding: 5px 10px 5px 6px;
    gap: 5px;
    font-size: 0.7rem;
  }
  .fx-pill-ico {
    width: 20px;
    height: 20px;
    font-size: 0.58rem;
  }
  .fx-pill-1 {
    top: 4%;
    left: 56%;
  }
  .fx-pill-4 {
    left: 60%;
  }
  .fx-pill-5 {
    left: 58%;
  }
}

/* ============================================================
   TradeLink — hero (two-column, light)
   ============================================================ */
#tradelink {
  overflow: hidden;
  background: radial-gradient(
    ellipse 90% 80% at 50% 42%,
    #ffffff 0%,
    #eef4ff 22%,
    #dce8f8 48%,
    #c8d8f0 72%,
    #b8cceb 100%
  ) !important;
}
#tradelink .h-page {
  color: #0a1a3c;
}
#tradelink .lead {
  max-width: 100%;
  color: rgba(10, 26, 60, 0.62);
}
#tradelink .breadcrumb,
#tradelink .breadcrumb a {
  color: rgba(10, 26, 60, 0.55);
}
#tradelink .eyebrow-dash {
  color: var(--em);
}
#tradelink .eyebrow-dash::before {
  background: var(--em);
}
.tl-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  padding: 28px 0 40px;
  gap: 48px;
}
.tl-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
  gap: 24px;
}
.tl-feat {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.tl-feat-badge {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    0 6px 18px -4px rgba(30, 80, 200, 0.28),
    0 0 0 1px rgba(30, 80, 200, 0.08);
}
.tl-feat-badge svg {
  width: 34px;
  height: 34px;
}
.tl-feat-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tl-feat-txt strong {
  color: #0a1024;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
}
.tl-feat-txt small {
  color: rgba(10, 16, 36, 0.55);
  font-size: 0.76rem;
  line-height: 1.55;
}
.tl-hero-img {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.tl-hero-img img {
  width: 100%;
  transform: scale(1.2);
  filter: drop-shadow(0 24px 56px rgba(0, 50, 180, 0.18));
}
@media (max-width: 992px) {
  .tl-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tl-hero-img {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .tl-hero-grid {
    padding: 20px 0 28px;
  }
  .tl-feats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tl-hero-img img {
    max-width: 100%;
  }
}

/* ============================================================
   TradeLink — execution flow timeline
   ============================================================ */
#flow {
  background:
    radial-gradient(ellipse 70% 55% at 88% 92%, rgba(20, 70, 160, 0.28), transparent 62%),
    radial-gradient(ellipse 50% 40% at 5% 8%, rgba(20, 60, 140, 0.2), transparent 60%),
    linear-gradient(180deg, #04101f 0%, #061527 100%) !important;
}
.exec-flow {
  display: flex;
  position: relative;
  flex-direction: column;
  margin-top: 30px;
  padding-left: 28px;
  gap: 20px;
}
/* vertical rail */
.exec-flow::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(30, 161, 255, 0.55),
    rgba(30, 161, 255, 0.25) 80%,
    rgba(46, 224, 138, 0.5)
  );
  content: "";
}
.ef-row {
  display: flex;
  position: relative;
  align-items: center;
  padding: 24px 30px;
  gap: 26px;
  border: 1px solid rgba(60, 130, 255, 0.3);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(16, 26, 54, 0.92), rgba(9, 15, 34, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 26px -14px rgba(0, 40, 120, 0.55);
}
/* glowing dot on the rail */
.ef-row::before {
  position: absolute;
  top: 50%;
  left: -28px;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #1ea1ff;
  box-shadow: 0 0 12px 2px rgba(30, 161, 255, 0.75);
  content: "";
}
/* light streak, top-right */
.ef-row::after {
  position: absolute;
  top: 0;
  right: 20px;
  width: 90px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(120, 190, 255, 0.85));
  content: "";
}
.ef-num {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(70, 150, 255, 0.6);
  border-radius: 12px;
  background: linear-gradient(160deg, #0e2a5e, #081530);
  box-shadow:
    0 0 18px -4px rgba(30, 120, 255, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #4da8ff;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--mono);
}
.ef-title {
  flex: none;
  width: 210px;
  padding-left: 26px;
  border-left: 1px solid rgba(120, 160, 255, 0.25);
  color: #f4f8ff;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.25;
  font-family: var(--display);
}
.ef-desc {
  flex: 1;
  margin: 0;
  color: #a9b8d4;
  font-size: 0.95rem;
  line-height: 1.6;
}
.ef-ico {
  flex: none;
  width: 34px;
  height: 34px;
  color: rgba(150, 175, 220, 0.75);
}
/* final green step */
.ef-done {
  border-color: rgba(46, 224, 138, 0.6);
  background: linear-gradient(160deg, rgba(12, 38, 28, 0.92), rgba(8, 18, 16, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 26px -14px rgba(0, 120, 60, 0.55);
}
.ef-done::before {
  background: #2ee08a;
  box-shadow: 0 0 12px 2px rgba(46, 224, 138, 0.75);
}
.ef-done::after {
  background: linear-gradient(90deg, transparent, rgba(80, 230, 150, 0.85));
}
.ef-done .ef-num {
  border-color: rgba(46, 224, 138, 0.65);
  background: linear-gradient(160deg, #0c3a22, #08160f);
  box-shadow:
    0 0 18px -4px rgba(46, 224, 138, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #2ee08a;
}
.ef-done .ef-ico {
  color: #2ee08a;
}

@media (max-width: 992px) {
  .ef-row {
    display: grid;
    grid-template-columns: 56px 1fr 34px;
    align-items: center;
    padding: 20px 22px;
    gap: 14px 20px;
  }
  .ef-title {
    width: auto;
    padding-left: 0;
    border-left: none;
  }
  .ef-desc {
    grid-column: 2 / 4;
  }
}
@media (max-width: 576px) {
  .exec-flow {
    padding-left: 20px;
    gap: 14px;
  }
  .ef-row::before {
    left: -20px;
  }
  .ef-row {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }
  .ef-num {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }
  .ef-ico {
    display: none;
  }
  .ef-desc {
    grid-column: 1 / 3;
  }
}

/* ============================================================
   TradeLink — plans (white cards with corner ribbons)
   ============================================================ */
.plans-grid {
  margin-bottom: 26px;
}
.plan-card {
  position: relative;
  padding: 34px 36px;
  overflow: hidden;
  border: 1px solid rgba(140, 185, 255, 0.55) !important;
  background: #ffffff !important;
  color: #1e2b45 !important;
}
.plan-std {
  box-shadow:
    0 0 30px -6px rgba(30, 140, 255, 0.5),
    0 16px 40px -18px rgba(10, 40, 120, 0.4) !important;
}
.plan-pro {
  box-shadow: 0 16px 40px -18px rgba(10, 40, 120, 0.35) !important;
}
.plan-card p {
  margin: 14px 0 22px;
  color: #62758e !important;
  font-size: 0.95rem;
  line-height: 1.65;
}
.plan-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1.5px solid #bfdffa;
  border-radius: 50%;
  background: #eaf4ff;
}
.plan-badge svg {
  width: 26px;
  height: 26px;
}
.plan-badge-gold {
  border-color: #f0d58e;
  background: #fff6e2;
}
.plan-title {
  margin: 0;
  color: #101e38 !important;
  font-weight: 800;
  font-size: 1.5rem;
}
.plan-title em {
  color: #d99a16;
  font-style: normal;
}
.plan-link {
  color: #2563eb !important;
  font-weight: 700;
}
/* folded corner ribbon */
.plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #2fb4ff, #0b6fd8);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.plan-ribbon svg {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 22px;
  height: 22px;
}
.plan-ribbon-gold {
  background: linear-gradient(135deg, #f4c64d, #c8901a);
}
.plan-ribbon-gold span {
  position: absolute;
  top: 14px;
  right: 8px;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

/* ============================================================
   TradeLink — user control panel
   ============================================================ */
.uc-panel {
  position: relative;
  margin-top: 44px;
  padding: 54px 40px 38px;
  overflow: visible;
  border: 1px solid rgba(60, 130, 255, 0.4) !important;
  background: linear-gradient(180deg, rgba(10, 25, 55, 0.95), rgba(6, 16, 38, 0.95)) !important;
  text-align: center;
}
.ucp-shield {
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(60, 140, 255, 0.6);
  border-radius: 50%;
  background: #071a33;
  box-shadow: 0 0 24px rgba(30, 120, 255, 0.55);
  color: #4da8ff;
}
.ucp-shield svg {
  width: 30px;
  height: 30px;
}
.ucp-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 16px;
  gap: 20px;
}
.ucp-line {
  flex: none;
  width: 170px;
  height: 2px;
  border-radius: 2px;
}
.ucp-line-l {
  background: linear-gradient(90deg, transparent, #e9b84a);
}
.ucp-line-r {
  background: linear-gradient(90deg, #e9b84a, transparent);
}
.ucp-title {
  color: #e9b84a;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--mono);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ucp-text {
  max-width: 720px;
  margin: 0 auto;
  color: #dde8f5;
  font-size: 1rem;
  line-height: 1.75;
}
@media (max-width: 992px) {
  .ucp-line {
    width: 90px;
  }
}
@media (max-width: 576px) {
  .plan-card {
    padding: 28px 24px;
  }
  .uc-panel {
    padding: 48px 22px 30px;
  }
  .ucp-line {
    width: 44px;
  }
  .ucp-title {
    letter-spacing: 0.22em;
  }
}

.mod-card {
  position: relative;
  padding: 30px 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(14, 22, 46, 0.95), rgba(8, 13, 30, 0.95)) !important;
}
.mod-card h3 {
  margin-top: 20px;
  margin-bottom: 12px;
  color: #f4f8ff !important;
  font-size: 1.32rem;
}
.mod-card p {
  margin-bottom: 18px;
  color: #a9b8d4 !important;
  font-size: 0.93rem;
  line-height: 1.7;
}
.mod-card .mod-link {
  font-weight: 700;
  font-size: 0.95rem;
}

/* icon tile */
.mod-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
}
.mod-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* chat — purple/magenta */
.mod-chat {
  border-color: rgba(200, 60, 255, 0.38) !important;
}
.mod-chat .mod-ico {
  background: linear-gradient(135deg, #b537f2, #e040fb);
  box-shadow: 0 0 26px -5px rgba(200, 60, 255, 0.6);
}
.mod-chat .mod-link {
  color: #e060ff !important;
}
.mod-chat:hover {
  border-color: rgba(200, 60, 255, 0.6) !important;
}

/* signal — blue */
.mod-signal {
  border-color: rgba(60, 130, 255, 0.38) !important;
}
.mod-signal .mod-ico {
  background: linear-gradient(135deg, #1256e0, #1ea1ff);
  box-shadow: 0 0 26px -5px rgba(30, 120, 255, 0.6);
}
.mod-signal .mod-link {
  color: #4da8ff !important;
}
.mod-signal:hover {
  border-color: rgba(60, 130, 255, 0.6) !important;
}

/* radar — green */
.mod-radar {
  border-color: rgba(46, 224, 138, 0.42) !important;
}
.mod-radar .mod-ico {
  background: linear-gradient(135deg, #0da860, #2ee08a);
  box-shadow: 0 0 26px -5px rgba(20, 200, 120, 0.6);
}
.mod-radar .mod-link {
  color: #35e290 !important;
}
.mod-radar:hover {
  border-color: rgba(46, 224, 138, 0.65) !important;
}

/* decorative corner art per module */
.mod-card .mod-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 58%;
  pointer-events: none;
}
.mod-card .mod-ico,
.mod-card h3,
.mod-card p,
.mod-card .mod-link {
  z-index: 1;
  position: relative;
}
.mod-chat .mod-art {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 140' fill='none'%3E%3Cpath d='M40 110 C90 60 120 130 160 80 S220 30 250 60' stroke='%23E060FF' stroke-opacity='.45' stroke-width='1.6'/%3E%3Cpath d='M30 95 C85 45 115 115 158 66 S218 18 250 45' stroke='%23C84DFF' stroke-opacity='.32' stroke-width='1.3'/%3E%3Cpath d='M50 125 C95 78 128 142 168 96 S224 46 250 76' stroke='%23B537F2' stroke-opacity='.26' stroke-width='1.2'/%3E%3Cpath d='M20 82 C80 30 112 100 155 54 S215 8 250 32' stroke='%23E060FF' stroke-opacity='.18' stroke-width='1'/%3E%3C/svg%3E")
      right top / cover no-repeat,
    radial-gradient(ellipse 130% 55% at 110% -12%, rgba(200, 60, 255, 0.18), transparent 62%);
}
.mod-signal .mod-art {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 140' fill='none'%3E%3Cline x1='120' y1='18' x2='120' y2='92' stroke='%234DA8FF' stroke-opacity='.35' stroke-width='1'/%3E%3Crect x='115' y='34' width='10' height='34' rx='1.5' fill='%234DA8FF' fill-opacity='.4'/%3E%3Cline x1='144' y1='10' x2='144' y2='80' stroke='%234DA8FF' stroke-opacity='.3' stroke-width='1'/%3E%3Crect x='139' y='22' width='10' height='30' rx='1.5' fill='%232EE08A' fill-opacity='.35'/%3E%3Cline x1='168' y1='24' x2='168' y2='96' stroke='%234DA8FF' stroke-opacity='.3' stroke-width='1'/%3E%3Crect x='163' y='40' width='10' height='36' rx='1.5' fill='%234DA8FF' fill-opacity='.32'/%3E%3Cline x1='192' y1='8' x2='192' y2='72' stroke='%234DA8FF' stroke-opacity='.28' stroke-width='1'/%3E%3Crect x='187' y='18' width='10' height='28' rx='1.5' fill='%232EE08A' fill-opacity='.3'/%3E%3Cline x1='216' y1='20' x2='216' y2='88' stroke='%234DA8FF' stroke-opacity='.26' stroke-width='1'/%3E%3Crect x='211' y='34' width='10' height='32' rx='1.5' fill='%234DA8FF' fill-opacity='.28'/%3E%3C/svg%3E")
      right top / cover no-repeat,
    radial-gradient(ellipse 120% 60% at 105% -10%, rgba(60, 130, 255, 0.14), transparent 65%);
}
.mod-radar .mod-art {
  background:
    conic-gradient(
      from 200deg at 100% 0%,
      rgba(46, 224, 138, 0.42) 0deg,
      rgba(46, 224, 138, 0.06) 48deg,
      transparent 55deg
    ),
    radial-gradient(
      circle at 100% 0%,
      transparent 54px,
      rgba(46, 224, 138, 0.16) 55px,
      transparent 57px
    ),
    radial-gradient(
      circle at 100% 0%,
      transparent 94px,
      rgba(46, 224, 138, 0.13) 95px,
      transparent 97px
    ),
    radial-gradient(
      circle at 100% 0%,
      transparent 134px,
      rgba(46, 224, 138, 0.1) 135px,
      transparent 137px
    );
}

/* ============================================================
   Light info cards — Value Proposition / Use Cases
   ============================================================ */
.light-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  background: linear-gradient(135deg, #ffffff 0%, #eef4fc 55%, #d9e6f7 100%) !important;
  box-shadow: 0 18px 44px -18px rgba(10, 30, 80, 0.35) !important;
  color: #1e2b45 !important;
}
.light-card:hover {
  border-color: rgba(255, 255, 255, 0.9) !important;
}
.light-card.p-34 {
  padding: 38px 40px;
}
.vp-card .lc-text {
  max-width: 64%;
}
@media (max-width: 992px) {
  .vp-card .lc-text {
    max-width: 100%;
  }
  .vp-card .vp-art {
    opacity: 0.28;
  }
}
.lc-head {
  display: flex;
  z-index: 1;
  position: relative;
  align-items: center;
  margin-bottom: 20px;
  gap: 14px;
}
.lc-badge {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 6px 18px -4px rgba(30, 80, 200, 0.25),
    0 0 0 1px rgba(30, 80, 200, 0.08);
}
.lc-badge svg {
  width: 24px;
  height: 24px;
}
.lc-eyebrow {
  padding-bottom: 5px;
  border-bottom: 1.5px solid rgba(37, 99, 235, 0.35);
  color: #2563eb;
  font-weight: 600;
  font-size: 0.72rem;
  font-family: var(--mono);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.lc-text {
  z-index: 1;
  position: relative;
  max-width: 100%;
  margin: 0;
  color: #1e2b45 !important;
  font-size: 1rem;
  line-height: 1.75;
}

/* value-prop bar-chart art */
.vp-card .vp-art {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 200px;
  height: 150px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 150' fill='none'%3E%3Cpath d='M20 108 L150 30' stroke='%237FA8E8' stroke-width='7' stroke-linecap='round'/%3E%3Cpath d='M126 24 L154 27 L146 54' stroke='%237FA8E8' stroke-width='7' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
      no-repeat 0 0 / 100% 100%,
    linear-gradient(180deg, rgba(140, 180, 240, 0.9), rgba(140, 180, 240, 0.25)) no-repeat 8px
      100% / 28px 46px,
    linear-gradient(180deg, rgba(140, 180, 240, 0.9), rgba(140, 180, 240, 0.25)) no-repeat 52px
      100% / 28px 70px,
    linear-gradient(180deg, rgba(140, 180, 240, 0.9), rgba(140, 180, 240, 0.25)) no-repeat 96px
      100% / 28px 94px,
    linear-gradient(180deg, rgba(140, 180, 240, 0.9), rgba(140, 180, 240, 0.25)) no-repeat 140px
      100% / 28px 122px;
  opacity: 0.6;
  pointer-events: none;
}

/* use-cases check list */
.uc-list {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 13px;
  list-style: none;
}
.uc-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #1e2b45;
  font-size: 0.95rem;
  line-height: 1.55;
}
.uc-list li::before {
  flex: none;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%232563EB'/%3E%3Cpath d='M7 12.5l3.2 3.2L17 9' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  content: "";
}
/* dot pattern, top-right of use-cases */
.uc-card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 130px;
  height: 96px;
  background: radial-gradient(rgba(40, 90, 200, 0.28) 1.5px, transparent 1.6px) 0 0 / 15px 15px;
  content: "";
  pointer-events: none;
}

/* ============================================================
   Light CTA panel
   ============================================================ */
.cta-light {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  background: linear-gradient(105deg, #ffffff 0%, #eaf1fb 50%, #d7e5f8 100%) !important;
  box-shadow: 0 20px 50px -20px rgba(10, 30, 80, 0.4) !important;
}
.cta-light-title {
  z-index: 1;
  position: relative;
  color: #101e38 !important;
}
.cta-light .cta-row {
  z-index: 1;
  position: relative;
}
/* 3D M scene, fills the panel's left side */
.cta-light .cta-m {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  pointer-events: none;
}
.cta-panel.cta-light {
  padding: 48px 60px 48px 300px;
  text-align: center;
}
/* soft flowing waves, right side */
.cta-light .cta-wave {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34%;
  background:
    radial-gradient(ellipse 130% 90% at 115% 30%, rgba(120, 165, 235, 0.35), transparent 62%),
    radial-gradient(ellipse 100% 60% at 105% 85%, rgba(160, 195, 245, 0.4), transparent 66%),
    radial-gradient(ellipse 70% 45% at 92% 55%, rgba(255, 255, 255, 0.65), transparent 70%);
  pointer-events: none;
}
@media (max-width: 992px) {
  .cta-panel.cta-light {
    padding: 42px 42px 42px 180px;
  }
}
@media (max-width: 576px) {
  .cta-panel.cta-light {
    padding: 40px 24px;
  }
  .cta-light .cta-m {
    opacity: 0.3;
  }
  .cta-light .cta-wave {
    width: 50%;
    opacity: 0.6;
  }
}
.btn-light-ghost {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  gap: 8px;
  border: 1px solid #c9d6ea;
  border-radius: 40px;
  background: #ffffff;
  color: #101e38;
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.btn-light-ghost:hover {
  border-color: #2563eb;
  box-shadow: 0 6px 18px -6px rgba(37, 99, 235, 0.35);
}

/* ============================================================
   #terminal hero — two-column layout
   ============================================================ */
/* all sub-page heroes */
.page-hero {
  padding-top: 110px;
}

#terminal {
  overflow: hidden;
  background: radial-gradient(
    ellipse 90% 80% at 50% 42%,
    #ffffff 0%,
    #eef4ff 22%,
    #dce8f8 48%,
    #c8d8f0 72%,
    #b8cceb 100%
  );
}
#terminal .h-page {
  color: #0a1a3c;
}
#terminal .h-page .accent {
  color: var(--em);
}
#terminal .lead {
  max-width: 100%;
  color: rgba(10, 26, 60, 0.62);
}
#terminal .breadcrumb,
#terminal .breadcrumb a {
  color: rgba(10, 26, 60, 0.55);
}
#terminal .btn-ghost {
  border-color: rgba(0, 70, 255, 0.35);
  color: var(--em);
}
#terminal .btn-ghost:hover {
  border-color: var(--em);
  background: rgba(0, 70, 255, 0.06);
}
.term-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 0 48px;
  gap: 48px;
}
.term-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  padding: 7px 18px;
  border: 1px solid rgba(0, 70, 255, 0.18);
  border-radius: 40px;
  background: rgba(0, 70, 255, 0.08);
  color: var(--em);
  font-weight: 600;
  font-size: 0.64rem;
  font-family: var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.term-lockup {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}
.term-lockup-ico {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.term-lockup-name {
  color: #0a1024;
  font-weight: 800;
  font-size: 1.05rem;
  font-family: var(--display);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.term-lockup-name em {
  color: var(--em);
  font-style: normal;
  font-weight: 400;
}
.term-ctas {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  margin-bottom: 36px;
  gap: 14px;
}
.term-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 26px;
  gap: 18px;
  border-top: 1px solid rgba(0, 70, 255, 0.12);
}
.term-feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.term-feat-svg {
  flex: none;
  width: 38px;
  height: 38px;
}
.term-feat-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.term-feat-txt strong {
  color: #0a1024;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.25;
}
.term-feat-txt small {
  max-width: 150px;
  color: rgba(10, 16, 36, 0.55);
  font-size: 0.74rem;
  line-height: 1.5;
}
.term-hero-device {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: scale(1.2);
}
.term-hero-device.reveal.active,
.term-hero-device.reveal.in {
  transform: scale(1.2) translateY(0);
}
.term-device-img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 24px 56px rgba(0, 50, 180, 0.2));
  -webkit-box-reflect: below -103px linear-gradient(transparent 62%, rgba(0, 0, 0, 0.28) 100%);
}
@media (max-width: 992px) {
  .term-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .term-hero-device {
    justify-content: center;
  }
  .term-device-img {
    max-width: 560px;
  }
}
@media (max-width: 576px) {
  .term-hero-grid {
    padding: 24px 0 32px;
  }
  .term-feats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .term-device-img {
    max-width: 100%;
  }
}

.grey-underline {
  width: 45px;
  height: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
  background: #e8ce92;
}

/* ── Broker CTA card — dark navy with surface blue + left dot art ── */
/* dot pattern — left side */
/* dot ripple waves — right side */

/* ── FX "Why AI Matters" dark cards ── */
.fx-ai-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  padding: 24px 22px !important;
  gap: 20px;
  border: 1px solid rgba(60, 110, 240, 0.2) !important;
  background: rgba(10, 16, 36, 0.88) !important;
  box-shadow:
    0 4px 24px -8px rgba(0, 20, 80, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.fx-ai-card:hover {
  border-color: rgba(30, 161, 255, 0.35) !important;
  box-shadow: 0 0 24px -8px rgba(30, 161, 255, 0.2) !important;
}
.fx-ai-ico {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(60, 120, 255, 0.28);
  border-radius: 14px;
  background: radial-gradient(ellipse at 40% 35%, rgba(20, 50, 120, 0.9), rgba(6, 12, 30, 0.95));
  box-shadow:
    0 0 18px -6px rgba(30, 100, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.fx-ai-ico img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(30, 161, 255, 0.65));
}
.fx-ai-body {
  flex: 1;
}
.fx-ai-body h3 {
  margin: 0 0 10px;
  color: var(--sky) !important;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
}
.fx-ai-body p {
  margin: 0;
  color: rgba(160, 185, 220, 0.82);
  font-size: 0.88rem;
  line-height: 1.62;
}
/* FX section CTA — dark navy + surface blue */
.fx-ai-cta {
  position: relative;
  padding: 46px !important;
  overflow: hidden;
  border: 1px solid rgba(60, 140, 255, 0.45) !important;
  background:
    radial-gradient(ellipse 100% 160% at 50% -10%, rgba(30, 90, 220, 0.38) 0%, transparent 60%),
    linear-gradient(180deg, #0c1e3e 0%, #061528 40%, #04101f 100%) !important;
  box-shadow:
    0 0 40px -10px rgba(30, 120, 255, 0.4),
    inset 0 1px 0 rgba(100, 160, 255, 0.18) !important;
}
.fx-ai-cta h2 {
  z-index: 1;
  position: relative;
  color: #ffffff !important;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}
.fx-ai-cta p {
  z-index: 1;
  position: relative;
  color: #a9b8d4 !important;
}
.fx-ai-cta .cta-row {
  z-index: 1;
  position: relative;
}
.fx-ai-cta::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 55%;
  background: radial-gradient(
    ellipse 85% 100% at 50% 0%,
    rgba(40, 110, 255, 0.18) 0%,
    rgba(20, 70, 200, 0.06) 50%,
    transparent 80%
  );
  content: "";
  pointer-events: none;
}
@media (max-width: 576px) {
  .fx-ai-card {
    padding: 18px 16px !important;
    gap: 14px;
  }
  .fx-ai-ico {
    width: 52px;
    height: 52px;
    border-radius: 10px;
  }
  .fx-ai-ico img {
    width: 26px;
    height: 26px;
  }
  .fx-ai-cta {
    padding: 32px 24px !important;
  }

  .lead {
    max-width: 100%;
  }

  .cn-diagram-wrap {
    padding-bottom: 100px;
  }

  .cn-diagram-img {
    max-width: 100%;
    transform: scale(1.2) !important;
  }

  #agents .card.agent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (min-width: 992px) {
  #constellation {
    margin-top: -300px;
    margin-bottom: -150px;
  }
}

.sec-head.center {
  z-index: 1;
  position: relative;
}

@media (min-width: 992px) {
  .compliance-h1,
  .compliance-text {
    max-width: 40vw;
    width: 100%;
  }

  .risk-warning .badge {
    margin-top: 6px;
  }

  .risk-warning {
    gap: 50px;
  }
}

.complience-ico.ico img {
  transform: scale(0.7)!important;
}

.trust-banner-bottom .single .icon {
  padding: 9px;
}

.ico.complience-ico {
  border: 0px;
}

.trust-card.compliance-card {
  border: 1px solid rgba(217, 119, 6, 0.35)!important;
  background: #15233c!important;
}
