:root {
  --ink: #05070d;
  --ink-soft: #080c15;
  --navy: #0b1325;
  --navy-2: #121b36;
  --blue: #557cf3;
  --violet: #7066f5;
  --cyan: #70bdd3;
  --ice: #dbeaf0;
  --paper: #eef3f5;
  --paper-2: #e5ecef;
  --text: #f5f8fa;
  --muted: #9aaab5;
  --muted-dark: #556772;
  --line: rgba(171, 207, 222, .17);
  --line-dark: #c8d4d9;
  --success: #67d9bd;
  --danger: #ec7f77;
  --mono: "IBM Plex Mono", "Cascadia Mono", Consolas, monospace;
  --sans: Manrope, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --spring: cubic-bezier(.22, 1.2, .36, 1);
  --pad: clamp(24px, 5.4vw, 88px);
  --content: 1520px;
}

html[lang="zh-CN"] {
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Microsoft YaHei UI", "PingFang SC", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--cyan); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cyan);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: 2px;
  background: rgba(255,255,255,.035);
  pointer-events: none;
}
.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: min-height .35s var(--ease), background .35s ease, border-color .35s ease;
}
.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(5, 7, 13, .94);
  border-color: var(--line);
}
@supports (backdrop-filter: blur(12px)) {
  .site-header.is-scrolled { background: rgba(5, 7, 13, .82); backdrop-filter: blur(14px); }
}

.brand { display: inline-flex; align-items: center; gap: 13px; width: max-content; font-size: 24px; font-weight: 700; letter-spacing: .14em; }
.brand-mark { position: relative; display: inline-flex; width: 30px; height: 28px; }
.brand-mark i { position: absolute; width: 13px; height: 24px; border: 2px solid var(--cyan); transform: skewY(26deg); }
.brand-mark i:nth-child(1) { left: 0; top: 0; border-right: 0; }
.brand-mark i:nth-child(2) { left: 9px; top: 4px; border-color: var(--blue); }
.brand-mark i:nth-child(3) { right: 0; top: 0; border-left: 0; border-color: var(--ice); }

.site-nav { justify-self: center; display: flex; align-items: center; gap: clamp(22px, 2.5vw, 42px); }
.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: #b8c5cd;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .22s ease, transform .22s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transform: translateX(-50%) scaleX(0);
  transform-origin: 50% 50%;
  transition: transform .22s var(--ease);
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active, .site-nav a[aria-current="page"] { color: white; transform: translateY(-1px); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.is-active::after, .site-nav a[aria-current="page"]::after { transform: translateX(-50%) scaleX(1); }
.header-tools { justify-self: end; display: flex; align-items: center; gap: 18px; }
.header-docs { position: relative; padding: 10px 0; color: #b8c5cd; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.header-docs::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 4px; height: 1px; background: var(--cyan); transition: right .3s var(--ease); }
.header-docs:hover, .header-docs:focus-visible, .header-docs.is-active, .header-docs[aria-current="page"] { color: white; }
.header-docs:hover::after, .header-docs:focus-visible::after, .header-docs.is-active::after, .header-docs[aria-current="page"]::after { right: 0; }
.language { justify-self: end; border: 0; border-left: 1px solid rgba(171,207,222,.18); padding: 10px 0 10px 18px; color: #c5d1d7; background: transparent; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; cursor: pointer; }
.language span { display: none; }
.menu-toggle { display: none; }

.section-dark { position: relative; background: var(--ink); }
.section-light { position: relative; color: #132029; background: var(--paper); }
.section-pad { padding: clamp(110px, 10vw, 180px) var(--pad); }
.section-pad > * { width: min(100%, var(--content)); margin-inline: auto; }
.eyebrow { margin: 0 0 26px; color: var(--cyan); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .18em; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(270px, 420px); column-gap: clamp(48px, 7vw, 140px); align-items: end; margin-bottom: 72px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .about-copy h2, .contact h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 86px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-heading h2 em, .about-copy h2 em, .contact h2 em { color: var(--cyan); font-style: normal; font-weight: 400; }
.section-heading > p:last-child { max-width: 540px; margin: 0 0 7px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-heading-dark .eyebrow { color: #41778a; }
.section-heading-dark > p:last-child { color: var(--muted-dark); }

.hero {
  min-height: max(760px, 100svh);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, .9fr);
  align-items: center;
  gap: clamp(40px, 6vw, 110px);
  padding: 130px var(--pad) 104px;
  isolation: isolate;
}
#network-canvas { position: absolute; inset: 0; z-index: -5; width: 100%; height: 100%; opacity: .8; }
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: linear-gradient(rgba(112,189,211,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(112,189,211,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, rgba(0,0,0,.65) 70%, transparent);
}
.hero-halo { position: absolute; z-index: -3; width: 920px; height: 920px; right: -330px; top: -280px; border: 1px solid rgba(112,189,211,.12); border-radius: 50%; box-shadow: 0 0 0 130px rgba(82,111,237,.025), 0 0 0 270px rgba(112,102,245,.018); }
.hero-copy { max-width: 760px; }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(62px, 6.35vw, 118px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: -.065em;
}
.hero-copy h1 em { display: inline-block; color: transparent; background: linear-gradient(90deg, #dbeaf0, #70bdd3 48%, #7b73ff); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-lede { max-width: 670px; margin: 34px 0 0; color: #adbbc4; font-size: clamp(16px, 1.15vw, 20px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 32px; min-width: 226px; padding: 15px 18px 15px 20px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; letter-spacing: .02em; overflow: hidden; transition: color .3s ease, border-color .3s ease, transform .28s var(--spring); }
.button span, .button i { position: relative; z-index: 1; }
.button i { display: grid; place-items: center; width: 24px; height: 24px; font-style: normal; }
.button::before { content: ""; position: absolute; inset: 0; background: var(--cyan); transform: translateX(-103%); transition: transform .45s var(--ease); }
.button:hover::before, .button:focus-visible::before { transform: translateX(0); }
.button-primary { color: var(--ink); border-color: var(--cyan); background: var(--cyan); }
.button-primary::before { background: white; }
.button-quiet { color: #d7e0e5; }
.button-quiet:hover, .button-quiet:focus-visible { color: var(--ink); border-color: var(--cyan); }
.button-dark { color: white; border-color: #172c38; background: #172c38; }
.button-dark::before { background: var(--blue); }

.hero-system {
  position: relative;
  width: min(100%, 670px);
  justify-self: end;
  border: 1px solid rgba(112,189,211,.28);
  background: linear-gradient(150deg, rgba(16,27,54,.88), rgba(5,7,13,.96) 62%);
  box-shadow: 0 36px 100px rgba(0,0,0,.44), inset 0 1px rgba(255,255,255,.04);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .35s var(--spring), border-color .35s ease;
}
.hero-system:hover { border-color: rgba(112,189,211,.48); }
.system-topline, .system-metrics { display: flex; align-items: center; justify-content: space-between; min-height: 44px; padding: 0 17px; border-bottom: 1px solid var(--line); color: #8396a1; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; }
.live-status { color: var(--success); }
.live-status i { display: inline-block; width: 6px; height: 6px; margin-right: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px var(--success); animation: status-pulse 2.4s ease-in-out infinite; }
.system-stage { position: relative; aspect-ratio: 1.35 / 1; min-height: 440px; overflow: hidden; }
.system-stage::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(112,189,211,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(112,189,211,.035) 1px, transparent 1px); background-size: 36px 36px; }
.system-links { position: absolute; inset: 6% 4%; width: 92%; height: 88%; overflow: visible; }
.system-links path { fill: none; stroke: url(#linkGradient); stroke-width: 1.1; vector-effect: non-scaling-stroke; }
.system-links .signal-path { stroke: var(--cyan); stroke-width: 1.5; stroke-dasharray: 3 54; stroke-linecap: round; animation: signal-run 3.9s linear infinite; }
.system-links .signal-delay { stroke: var(--violet); animation-delay: -1.95s; }
.system-node { position: absolute; width: 145px; padding: 10px 12px 11px; border-left: 2px solid var(--cyan); background: rgba(8,12,21,.82); box-shadow: inset 0 0 0 1px rgba(112,189,211,.12); }
.system-node small { display: block; margin-bottom: 5px; color: #6d818d; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.system-node b { display: block; color: #e7eff3; font-size: 12px; font-weight: 600; }
.system-node span { display: block; margin-top: 3px; color: #83939d; font-size: 9px; }
.node-order { left: 5%; top: 10%; }
.node-compliance { left: 5%; bottom: 12%; border-left-color: var(--violet); }
.node-bank { right: 5%; top: 9%; }
.node-result { right: 5%; bottom: 11%; border-left-color: var(--violet); }
.system-core { position: absolute; left: 50%; top: 50%; width: 142px; height: 142px; display: grid; place-content: center; text-align: center; transform: translate(-50%,-50%); }
.system-core::before { content: ""; position: absolute; inset: 15px; border: 1px solid rgba(112,189,211,.58); transform: rotate(45deg); background: rgba(11,19,37,.9); box-shadow: 0 0 34px rgba(85,124,243,.16); }
.system-core small, .system-core b, .system-core i { position: relative; z-index: 2; }
.system-core small { color: var(--cyan); font-family: var(--mono); font-size: 9px; letter-spacing: .18em; }
.system-core b { margin-top: 4px; color: white; font-size: 15px; line-height: 1.05; }
.system-core i { margin-top: 8px; color: #788b96; font-family: var(--mono); font-size: 7px; font-style: normal; letter-spacing: .12em; }
.core-rings, .core-rings::before, .core-rings::after { position: absolute; inset: 2px; border: 1px solid rgba(112,189,211,.13); border-radius: 50%; animation: core-orbit 12s linear infinite; }
.core-rings::before, .core-rings::after { content: ""; inset: -11px; border-style: dashed; }
.core-rings::after { inset: -22px; border-color: rgba(112,102,245,.1); animation-direction: reverse; }
.system-event { position: absolute; left: 32%; display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 7px; min-width: 240px; padding: 7px 9px; color: #8ea0aa; background: rgba(5,7,13,.86); border: 1px solid rgba(112,189,211,.12); font-family: var(--mono); font-size: 7px; animation: event-cycle 5.6s ease-in-out infinite; }
.system-event i { width: 5px; height: 5px; border-radius: 50%; background: var(--success); box-shadow: 0 0 8px rgba(103,217,189,.7); }
.system-event b { color: #d6e1e6; font-weight: 500; }
.system-event time { color: #5f737f; }
.event-one { top: 15px; }
.event-two { bottom: 15px; animation-delay: -2.8s; }
.system-metrics { border-top: 1px solid var(--line); border-bottom: 0; min-height: 52px; }
.system-metrics > div { flex: 1; padding-left: 14px; border-left: 1px solid var(--line); }
.system-metrics > div:first-child { padding-left: 0; border-left: 0; }
.system-metrics small { display: block; margin-bottom: 3px; color: #5e737f; font-size: 7px; }
.system-metrics b { color: #b9c7cf; font-size: 8px; font-weight: 500; }
.system-metrics .metric-live { color: var(--success); }
.hero-rail { position: absolute; left: var(--pad); right: var(--pad); bottom: 34px; display: flex; align-items: center; gap: 14px; max-width: 1000px; color: rgba(173,187,196,.44); font-family: var(--mono); font-size: 7px; letter-spacing: .13em; }
.hero-rail i { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(112,189,211,.45), rgba(112,189,211,.04)); overflow: hidden; }
.hero-rail i::after { content: ""; display: block; width: 34%; height: 1px; background: var(--cyan); animation: rail-scan 4s linear infinite; }
.scroll-cue { position: absolute; right: var(--pad); bottom: 28px; display: inline-flex; align-items: center; gap: 13px; color: #6f838f; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.scroll-cue i { width: 28px; height: 28px; border: 1px solid rgba(112,189,211,.2); border-radius: 50%; }
.scroll-cue i::after { content: ""; display: block; width: 3px; height: 3px; margin: 7px auto; border-radius: 50%; background: var(--cyan); animation: scroll-dot 1.8s ease-in-out infinite; }

.capabilities { overflow: hidden; }
.capability-console { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; min-height: 540px; border: 1px solid var(--line); }
.capability-list { display: grid; grid-template-rows: repeat(4, 1fr); }
.capability-row { position: relative; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 24px; width: 100%; padding: 26px 30px; border: 0; border-bottom: 1px solid var(--line); color: #899aa4; background: rgba(255,255,255,.012); text-align: left; cursor: pointer; overflow: hidden; transition: color .3s ease, background .3s ease, padding-left .35s var(--ease); }
.capability-row:last-child { border-bottom: 0; }
.capability-row::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--cyan); transform: scaleY(0); transition: transform .35s var(--ease); }
.capability-row::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(112,189,211,.10), transparent 68%); transform: translateX(-102%); transition: transform .55s var(--ease); }
.capability-row:hover, .capability-row:focus-visible, .capability-row.is-active { color: white; padding-left: 38px; }
.capability-row.is-active::before { transform: scaleY(1); }
.capability-row.is-active::after { transform: translateX(0); }
.capability-row span, .capability-row i { font-family: var(--mono); font-size: 9px; font-style: normal; letter-spacing: .12em; }
.capability-row span { color: var(--cyan); }
.capability-row b { max-width: 620px; font-size: clamp(15px, 1.2vw, 20px); font-weight: 500; line-height: 1.45; }
.capability-row i { color: #647985; }
.capability-detail { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 76px); border-left: 1px solid var(--line); background: linear-gradient(145deg, rgba(18,27,54,.72), rgba(5,7,13,.38)); overflow: hidden; }
.detail-index { display: flex; align-items: center; gap: 15px; margin-bottom: 36px; color: var(--cyan); font-family: var(--mono); font-size: 11px; }
.detail-index i { width: 90px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
.detail-label { margin: 0 0 16px; color: #6f848f; font-family: var(--mono); font-size: 9px; letter-spacing: .16em; }
.capability-detail h3 { max-width: 600px; margin: 0; font-size: clamp(31px, 3vw, 52px); font-weight: 500; line-height: 1.1; letter-spacing: -.035em; }
.capability-detail > p:not(.detail-label) { max-width: 560px; margin: 26px 0 0; color: #9cacb5; font-size: 15px; line-height: 1.75; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 32px; }
.detail-tags span { padding: 7px 9px; color: #98aab4; border: 1px solid var(--line); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.detail-signal { position: absolute; right: 22px; bottom: 22px; display: flex; align-items: end; gap: 5px; height: 48px; opacity: .38; }
.detail-signal i { width: 2px; height: 20%; background: var(--cyan); animation: signal-bars 1.6s ease-in-out infinite; }
.detail-signal i:nth-child(2) { animation-delay: -.25s; }.detail-signal i:nth-child(3) { animation-delay: -.5s;}.detail-signal i:nth-child(4) { animation-delay: -.75s;}.detail-signal i:nth-child(5) { animation-delay: -1s;}
.capability-detail.is-updating h3, .capability-detail.is-updating p, .capability-detail.is-updating .detail-tags { animation: detail-update .45s var(--ease); }

.products::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(48,77,91,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(48,77,91,.045) 1px, transparent 1px); background-size: 70px 70px; }
.product-workbench, .product-detail, .bank-answer, .solution-questions, .future-projects { scroll-margin-top: 96px; }
.product-workbench { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr); min-height: 680px; color: #17242c; background: rgba(255,255,255,.58); border: 1px solid #cad6db; box-shadow: 0 30px 80px rgba(26,54,65,.12); }
.product-map { position: relative; min-height: 680px; background: linear-gradient(145deg, #0a111e, #111a35); overflow: hidden; }
.product-map::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(85,124,243,.16), transparent 36%), linear-gradient(rgba(112,189,211,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(112,189,211,.035) 1px, transparent 1px); background-size: auto, 42px 42px, 42px 42px; }
.product-lines { position: absolute; inset: 6% 7%; width: 86%; height: 88%; }
.product-lines path { fill: none; stroke: rgba(112,189,211,.2); stroke-width: 1; stroke-dasharray: 4 8; vector-effect: non-scaling-stroke; animation: dash-run 12s linear infinite; }
.product-core { position: absolute; left: 50%; top: 50%; width: 190px; height: 190px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(112,189,211,.48); background: rgba(8,12,21,.9); box-shadow: 0 0 0 12px rgba(112,189,211,.025), 0 0 0 42px rgba(85,124,243,.025), 0 22px 64px rgba(0,0,0,.32); transform: translate(-50%,-50%) rotate(45deg); }
.product-core > * { transform: rotate(-45deg); }
.product-core small { color: var(--cyan); font-family: var(--mono); font-size: 10px; letter-spacing: .18em; }
.product-core b { margin-top: 8px; color: white; font-size: 18px; line-height: 1.08; }
.product-core span { margin-top: 11px; color: #71848f; font-family: var(--mono); font-size: 7px; }
.product-node { position: absolute; width: 186px; min-height: 80px; display: grid; grid-template-columns: 30px 1fr 12px; align-items: center; gap: 10px; padding: 14px; color: #91a3ad; border: 1px solid rgba(112,189,211,.18); background: rgba(5,7,13,.82); text-align: left; cursor: pointer; transition: color .3s ease, border-color .3s ease, background .3s ease, transform .3s var(--spring), box-shadow .3s ease; }
.product-node:hover, .product-node:focus-visible { color: white; border-color: rgba(112,189,211,.55); transform: translateY(-3px); }
.product-node.is-active { color: white; border-color: var(--cyan); background: rgba(20,44,58,.92); box-shadow: 0 0 28px rgba(112,189,211,.12); }
.product-node span { align-self: start; color: var(--cyan); font-family: var(--mono); font-size: 8px; }
.product-node b { font-size: 12px; font-weight: 600; line-height: 1.3; }
.product-node i { width: 7px; height: 7px; border-radius: 50%; background: #4d5e68; }
.product-node.is-active i { background: var(--success); box-shadow: 0 0 10px rgba(103,217,189,.8); animation: status-pulse 2s ease-in-out infinite; }
.node-collection { left: 6%; top: 8%; }.node-payout { right: 6%; top: 8%; }.node-risk { right: 3%; bottom: 18%; }.node-report { left: 50%; bottom: 3%; transform: translateX(-50%); }.node-report:hover, .node-report:focus-visible { transform: translateX(-50%) translateY(-3px); }.node-assistant { left: 3%; bottom: 18%; }
.product-detail { display: flex; flex-direction: column; padding: clamp(38px, 5vw, 72px); background: rgba(255,255,255,.72); }
.product-detail-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid #ccd7dc; color: #4a6c7b; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.product-detail-head i { color: #288e79; font-style: normal; }
.product-detail h3 { margin: 44px 0 0; color: #111f27; font-size: clamp(34px, 3.2vw, 58px); font-weight: 500; line-height: 1.03; letter-spacing: -.04em; }
.product-detail > p { margin: 26px 0 0; color: #536671; font-size: 15px; line-height: 1.75; }
.product-detail dl { display: grid; gap: 0; margin: 40px 0 0; border-top: 1px solid #ccd7dc; }
.product-detail dl div { display: grid; grid-template-columns: 100px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid #ccd7dc; }
.product-detail dt { color: #41778a; font-family: var(--mono); font-size: 8px; letter-spacing: .11em; }
.product-detail dd { margin: 0; color: #344852; font-size: 12px; line-height: 1.55; }
.delivery-modes { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }
.delivery-modes span { padding: 8px 10px; color: #46616d; border: 1px solid #c7d4da; font-family: var(--mono); font-size: 8px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; width: max-content; margin-top: auto; padding-top: 40px; color: #122630; font-size: 12px; font-weight: 700; }
.text-link i { color: #41778a; font-style: normal; transition: transform .25s var(--spring); }
.text-link:hover i, .text-link:focus-visible i { transform: translate(3px,-3px); }
.product-detail.is-updating > *:not(.product-detail-head) { animation: detail-update .45s var(--ease); }

.philippines { overflow: hidden; }
.philippines::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 88% 8%, rgba(85,124,243,.12), transparent 30%), radial-gradient(circle at 10% 88%, rgba(112,102,245,.08), transparent 30%); }
.philippines-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .75fr); gap: 80px; align-items: center; }
.philippines-grid .section-heading { display: block; margin-bottom: 0; }
.philippines-grid .section-heading h2 { margin-bottom: 28px; }
.market-radar { position: relative; width: min(100%, 550px); aspect-ratio: 1; justify-self: end; }
.market-radar::before, .radar-orbit { position: absolute; inset: 14%; border: 1px solid rgba(112,189,211,.11); border-radius: 50%; }
.market-radar::before { content: ""; background: radial-gradient(circle, rgba(112,189,211,.08) 0 1px, transparent 2px); background-size: 24px 24px; }
.radar-orbit.orbit-two { inset: 27%; }.radar-orbit.orbit-three { inset: 39%; }
.market-radar::after { content: ""; position: absolute; left: 50%; top: 50%; width: 34%; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); transform-origin: 0 50%; animation: radar-sweep 9s linear infinite; }
.market-radar > b { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; place-items: center; width: 82px; height: 82px; color: var(--cyan); border: 1px solid rgba(112,189,211,.45); background: var(--ink); font-family: var(--mono); font-size: 16px; letter-spacing: .12em; transform: translate(-50%,-50%) rotate(45deg); }
.market-radar > b::first-line { transform: rotate(-45deg); }
.market-dot { position: absolute; display: flex; align-items: center; gap: 8px; color: #90a2ad; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.market-dot i { width: 8px; height: 8px; border: 1px solid var(--cyan); border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 5px rgba(112,189,211,.06); }
.dot-us { left: 6%; top: 24%; }.dot-hk { right: 7%; top: 23%; }.dot-ph { right: 2%; bottom: 26%; color: white; }.dot-ph i { background: var(--cyan); box-shadow: 0 0 18px rgba(112,189,211,.8); }.dot-sea { left: 5%; bottom: 21%; }
.journey-console { margin-top: 100px; border: 1px solid rgba(112,189,211,.22); background: rgba(8,12,21,.74); }
.journey-header { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.journey-header > div:first-child span { display: block; margin-bottom: 6px; color: var(--cyan); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; }
.journey-header > div:first-child b { font-size: 18px; font-weight: 500; }
.journey-toggle { display: flex; border: 1px solid var(--line); }
.journey-toggle button { min-width: 150px; padding: 11px 15px; border: 0; border-right: 1px solid var(--line); color: #7f929d; background: transparent; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; cursor: pointer; transition: color .25s ease, background .25s ease; }
.journey-toggle button:last-child { border-right: 0; }
.journey-toggle button:hover, .journey-toggle button:focus-visible, .journey-toggle button.is-active { color: var(--ink); background: var(--cyan); }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.journey-line { position: absolute; left: 7%; right: 7%; top: 62px; height: 1px; background: rgba(112,189,211,.2); }
.journey-line i { display: block; width: 24%; height: 2px; margin-top: -1px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); animation: journey-run 4.5s var(--ease) infinite; }
.journey-step { position: relative; min-height: 270px; padding: 86px 25px 28px; border-right: 1px solid var(--line); }
.journey-step:last-child { border-right: 0; }
.journey-step > span { position: absolute; left: 25px; top: 45px; z-index: 2; display: grid; place-items: center; width: 32px; height: 32px; color: #7d909b; border: 1px solid rgba(112,189,211,.25); border-radius: 50%; background: var(--ink); font-family: var(--mono); font-size: 8px; transition: color .3s ease, border-color .3s ease, box-shadow .3s ease; }
.journey-step.is-live > span { color: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 20px rgba(112,189,211,.22); }
.journey-step small { color: #617682; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.journey-step b { display: block; margin-top: 13px; font-size: 17px; font-weight: 500; }
.journey-step p { margin: 14px 0 0; color: #899ba5; font-size: 12px; line-height: 1.65; }
.journey-console-compact .journey-step { min-height: 210px; }
.journey-result { display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 24px; padding: 22px 26px; border-top: 1px solid var(--line); }
.journey-result span { color: var(--cyan); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.journey-result p { margin: 0; color: #9aabb5; font-size: 11px; line-height: 1.5; }
.journey-result a { display: inline-flex; align-items: center; gap: 12px; color: white; font-size: 11px; font-weight: 600; }
.journey-result a i { color: var(--cyan); font-style: normal; transition: transform .3s var(--spring); }
.journey-result a:hover i, .journey-result a:focus-visible i { transform: translateX(5px); }
.journey-console.is-updating .journey-step b, .journey-console.is-updating .journey-step p, .journey-console.is-updating .journey-result p { animation: detail-update .45s var(--ease); }

.access::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 49.96%, rgba(48,77,91,.06) 50%, transparent 50.04%); }
.access-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #c8d5da; }
.access-grid article { position: relative; min-height: 360px; padding: 34px; border-right: 1px solid #c8d5da; background: rgba(255,255,255,.42); transition: color .35s ease, background .35s ease, transform .35s var(--spring); }
.access-grid article:last-child { border-right: 0; }
.access-grid article:hover { z-index: 2; color: white; background: #101a31; transform: translateY(-8px); }
.access-grid article > span { color: #41778a; font-family: var(--mono); font-size: 9px; }
.access-grid svg { position: absolute; right: 32px; top: 31px; width: 46px; fill: none; stroke: #41778a; stroke-width: 1.2; }
.access-grid h3 { max-width: 280px; margin: 146px 0 0; font-size: 24px; font-weight: 500; letter-spacing: -.025em; }
.access-grid p { max-width: 340px; margin: 18px 0 0; color: #5b6e78; font-size: 13px; line-height: 1.7; transition: color .35s ease; }
.access-grid article:hover p { color: #aab8c0; }
.access.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(85,124,243,.09), transparent 28%),
    var(--ink);
}
.access.section-dark::before {
  background:
    linear-gradient(90deg, transparent 49.96%, rgba(112,189,211,.075) 50%, transparent 50.04%),
    linear-gradient(rgba(112,189,211,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112,189,211,.035) 1px, transparent 1px);
  background-size: auto, 78px 78px, 78px 78px;
}
.access.section-dark .section-heading h2 { color: #eef4f6; }
.access.section-dark .section-heading > p:last-child { color: #8fa1ac; }
.access.section-dark .access-grid { border-color: var(--line); }
.access.section-dark .access-grid article {
  color: #e4ecef;
  border-color: var(--line);
  background: rgba(255,255,255,.018);
}
.access.section-dark .access-grid article:hover {
  border-color: rgba(112,189,211,.38);
  background: #101a31;
}
.access.section-dark .access-grid article > span { color: var(--cyan); }
.access.section-dark .access-grid svg { stroke: var(--cyan); opacity: .82; }
.access.section-dark .access-grid p { color: #8fa1ac; }
.docs-note { display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 36px; margin-top: 24px; padding: 28px 30px; border: 1px solid #c8d5da; background: rgba(255,255,255,.56); }
.docs-note > span { color: #41778a; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; line-height: 1.6; }
.docs-note > p { margin: 0; color: #52656f; font-size: 13px; line-height: 1.6; }

.about { display: grid; grid-template-columns: minmax(0, .85fr) minmax(500px, 1.15fr); gap: clamp(60px, 10vw, 180px); align-items: start; overflow: hidden; }
.about::before { content: ""; position: absolute; width: 800px; height: 800px; right: -340px; bottom: -520px; border: 1px solid rgba(112,189,211,.12); transform: rotate(45deg); box-shadow: 0 0 0 140px rgba(85,124,243,.025), 0 0 0 300px rgba(112,102,245,.015); }
.about-copy { width: auto; margin: 0; }
.about-copy h2 { font-size: clamp(46px, 4.3vw, 76px); }
.about-copy > p:last-child { max-width: 620px; margin: 32px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.direction-panel { width: auto; margin: 0; border: 1px solid var(--line); background: rgba(255,255,255,.015); }
.direction-title { padding: 28px 30px 34px; border-bottom: 1px solid var(--line); }
.direction-title span { color: var(--cyan); font-family: var(--mono); font-size: 9px; letter-spacing: .14em; }
.direction-title b { display: block; margin-top: 19px; color: #dce5e9; font-size: 24px; font-weight: 500; line-height: 1.35; }
.direction-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 26px 30px; border-bottom: 1px solid var(--line); }
.direction-list > div:last-child { border-bottom: 0; }
.direction-list span { color: var(--cyan); font-family: var(--mono); font-size: 9px; }
.direction-list p { margin: 0; color: #94a5af; font-size: 13px; line-height: 1.65; }

.contact { min-height: 780px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 140px var(--pad); text-align: center; overflow: hidden; }
.contact::before, .contact::after { content: ""; position: absolute; width: min(78vw, 1200px); height: min(78vw, 1200px); border: 1px solid rgba(112,189,211,.09); border-radius: 50%; }
.contact::after { width: min(52vw, 800px); height: min(52vw, 800px); border-color: rgba(112,102,245,.12); }
.contact-glow { position: absolute; width: 700px; height: 300px; background: radial-gradient(ellipse, rgba(85,124,243,.14), transparent 70%); filter: blur(10px); }
.contact > *:not(.contact-glow) { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(54px, 6.2vw, 110px); }
.contact > p:not(.eyebrow) { max-width: 650px; margin: 30px auto 0; color: #9cacb5; font-size: 16px; line-height: 1.75; }
.contact .button { margin-top: 42px; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; padding: 34px var(--pad); border-top: 1px solid var(--line); color: #71838e; background: var(--ink); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.site-footer .brand { color: white; font-family: var(--sans); font-size: 17px; }
.site-footer p { margin: 0; }
.site-footer > span { justify-self: end; }

.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .reveal:nth-child(2) { transition-delay: .08s; }.hero .reveal:nth-child(3) { transition-delay: .16s; }.hero .reveal:nth-child(4) { transition-delay: .24s; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

@keyframes status-pulse { 0%,100% { opacity: .65; transform: scale(.86); } 50% { opacity: 1; transform: scale(1.16); } }
@keyframes signal-run { to { stroke-dashoffset: -114; } }
@keyframes core-orbit { to { transform: rotate(360deg); } }
@keyframes event-cycle { 0%,100% { opacity: .42; transform: translateY(4px); } 18%,65% { opacity: 1; transform: translateY(0); } }
@keyframes rail-scan { from { transform: translateX(-120%); } to { transform: translateX(420%); } }
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 0; } 32% { opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes signal-bars { 0%,100% { height: 16%; } 50% { height: 100%; } }
@keyframes detail-update { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dash-run { to { stroke-dashoffset: -96; } }
@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes journey-run { 0% { transform: translateX(-100%); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateX(420%); opacity: 0; } }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 150px 1fr auto; }
  .site-nav { gap: 20px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 150px; }
  .hero-copy { max-width: 900px; }
  .hero-system { width: min(100%, 760px); justify-self: center; margin-top: 20px; }
  .hero-rail { display: none; }
  .scroll-cue { position: relative; right: auto; bottom: auto; align-self: end; justify-self: end; margin-top: 10px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 28px; }
  .product-workbench { grid-template-columns: 1fr; }
  .product-detail { min-height: 570px; }
  .philippines-grid { grid-template-columns: 1fr; }
  .market-radar { justify-self: center; }
  .about { grid-template-columns: 1fr; }
}

@media (min-width: 1181px) and (max-height: 880px) {
  .hero { min-height: 100svh; padding-top: 102px; padding-bottom: 70px; }
  .hero-copy h1 { font-size: clamp(58px, 5.25vw, 96px); }
  .hero-lede { margin-top: 24px; font-size: 16px; line-height: 1.65; }
  .hero-actions { margin-top: 25px; }
  .system-stage { min-height: 390px; }
  .system-node { padding-block: 8px 9px; }
  .hero-rail { bottom: 22px; }
  .scroll-cue { bottom: 16px; }
}

@media (max-width: 820px) {
  :root { --pad: 22px; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 10px; min-height: 66px; }
  .language { display: inline-flex; align-items: center; padding: 9px 0 9px 10px; font-size: 10px; letter-spacing: .06em; }
  .header-tools { gap: 0; }
  .header-docs { padding: 10px 8px; }
  .menu-toggle { position: relative; z-index: 3; display: grid; gap: 4px; width: 46px; height: 42px; place-content: center; border: 1px solid var(--line); background: rgba(5,7,13,.88); cursor: pointer; }
  .menu-toggle span { width: 18px; height: 1px; background: white; transition: transform .3s ease, opacity .3s ease; }
  .menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: 90px var(--pad); background: rgba(5,7,13,.98); opacity: 0; visibility: hidden; transform: translateY(-18px); transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease); }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 23px; }
  .site-nav a::after { bottom: 12px; }
  .hero { padding-top: 120px; padding-bottom: 78px; }
  .hero-copy h1 { font-size: clamp(54px, 15vw, 82px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .button { width: min(100%, 330px); }
  .hero-system { margin-top: 28px; }
  .system-stage { min-height: 400px; }
  .system-node { width: 124px; }
  .system-event { display: none; }
  .system-core { width: 116px; height: 116px; }
  .section-pad { padding-top: 100px; padding-bottom: 100px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2, .about-copy h2, .contact h2 { font-size: clamp(44px, 12vw, 70px); }
  .capability-console { grid-template-columns: 1fr; }
  .capability-row { grid-template-columns: 34px 1fr; padding: 22px 18px; }
  .capability-row i { display: none; }
  .capability-detail { min-height: 430px; border-top: 1px solid var(--line); border-left: 0; }
  .product-map { min-height: 660px; }
  .product-node { width: 150px; padding: 10px; grid-template-columns: 22px 1fr 8px; }
  .product-detail { min-height: 620px; padding: 36px 24px; }
  .journey-header { align-items: flex-start; flex-direction: column; }
  .journey-toggle { width: 100%; }
  .journey-toggle button { flex: 1; min-width: 0; }
  .journey-track { grid-template-columns: 1fr; }
  .journey-line { left: 41px; right: auto; top: 45px; bottom: 45px; width: 1px; height: auto; }
  .journey-line i { width: 2px; height: 24%; margin-left: -1px; background: linear-gradient(180deg, transparent, var(--cyan), transparent); animation: journey-run-mobile 4.5s var(--ease) infinite; }
  .journey-step { min-height: 0; padding: 34px 24px 34px 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .journey-step > span { left: 25px; top: 34px; }
  .journey-result { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .access-grid article { min-height: 290px; border-right: 0; border-bottom: 1px solid #c8d5da; }
  .access-grid h3 { margin-top: 110px; }
  .docs-note { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand, .site-footer > span { justify-self: center; }
  @keyframes journey-run-mobile { 0% { transform: translateY(-100%); opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { transform: translateY(420%); opacity: 0; } }
}

@media (max-width: 540px) {
  .hero-system { margin-inline: -10px; width: calc(100% + 20px); }
  .system-stage { min-height: 360px; }
  .system-node { width: 112px; padding: 8px; }
  .system-node span { display: none; }
  .system-core { width: 96px; height: 96px; }
  .system-core b { font-size: 12px; }
  .system-metrics > div:nth-child(2) { display: none; }
  .capability-detail h3 { font-size: 32px; }
  .product-map { min-height: 680px; }
  .product-node { width: 132px; }
  .node-collection { left: 3%; }.node-payout { right: 3%; }.node-risk { right: 1%; bottom: 20%; }.node-assistant { left: 1%; bottom: 20%; }
  .product-core { width: 144px; height: 144px; }
  .product-core b { font-size: 14px; }
  .product-detail h3 { font-size: 36px; }
  .market-radar { width: 112%; margin-inline: -6%; }
  .market-dot { font-size: 7px; }
  .direction-title b { font-size: 20px; }
}

@media (hover: none), (pointer: coarse) {
  .hero-system { transform: none !important; }
  .access-grid article:hover { color: #132029; background: rgba(255,255,255,.42); transform: none; }
  .access-grid article:hover p { color: #5b6e78; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .button, .capability-row, .product-node, .journey-toggle button { border: 1px solid ButtonText; }
}

/* Multi-page brand system */
.site-header.site-header-light {
  top: 18px;
  left: var(--pad);
  right: var(--pad);
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  min-height: 72px;
  padding: 0 22px;
  color: #15232b;
  border: 1px solid rgba(117, 139, 151, .24);
  border-radius: 6px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 60px rgba(0,0,0,.22), 0 1px 0 rgba(255,255,255,.7) inset;
}
.site-header.site-header-light.is-scrolled {
  top: 10px;
  min-height: 60px;
  color: #15232b;
  border-color: rgba(117, 139, 151, .3);
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 46px rgba(0,0,0,.2);
}
@supports (backdrop-filter: blur(12px)) {
  .site-header.site-header-light,
  .site-header.site-header-light.is-scrolled { backdrop-filter: blur(16px); }
}
.brand-image { height: 48px; overflow: hidden; }
.brand-image img, .footer-brand img { display: block; width: 186px; height: 42px; object-fit: contain; }
.site-header-light .site-nav a { color: #596b75; padding-block: 22px 19px; }
.site-header-light .site-nav a::after { bottom: 13px; background: linear-gradient(90deg, #54839a, #70bdd3); }
.site-header-light .site-nav a:hover,
.site-header-light .site-nav a:focus-visible,
.site-header-light .site-nav a.is-active,
.site-header-light .site-nav a[aria-current="page"] { color: #101d24; }
.site-header-light .header-docs { color: #596b75; }
.site-header-light .header-docs::after { background: linear-gradient(90deg, #54839a, #70bdd3); }
.site-header-light .header-docs:hover,
.site-header-light .header-docs:focus-visible,
.site-header-light .header-docs.is-active,
.site-header-light .header-docs[aria-current="page"] { color: #101d24; }
.site-header-light .language { color: #334852; }
.site-header-light .language { border-left-color: #d5dfe3; }
.site-header-light .language span { color: #54839a; }

.compact-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 40px; }
.home-hero .hero-copy h1 { font-size: clamp(56px, 4.5vw, 92px); }
.compact-heading .eyebrow { grid-column: 1 / -1; color: #41778a; }
.compact-heading h2 { margin: 0; color: #132029; font-size: clamp(44px, 4.4vw, 74px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.compact-heading h2 em { color: #4a8299; font-style: normal; font-weight: 400; }
.compact-heading .text-link { margin: 0 0 12px; padding: 0; }

.home-capabilities { padding-bottom: clamp(90px, 9vw, 150px); color: #132029; background: #fff; overflow: hidden; }
.home-capabilities::before {
  content: none;
}
.home-capabilities .compact-heading { position: relative; }
.home-capabilities .compact-heading .eyebrow { color: #37788f; }
.home-capabilities .compact-heading h2 { color: #132029; }
.home-capabilities .compact-heading h2 em { color: #4a8299; }
.home-capabilities .compact-heading .text-link { color: #223943; }
.home-capabilities .compact-heading .capability-context { grid-column: 1 / -1; max-width: 920px; margin: 18px 0 0; color: #5b717b; font-size: 15px; line-height: 1.8; }
.capability-preview { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 72px; border: 1px solid #c8d5da; background: rgba(255,255,255,.42); }
.capability-preview a { position: relative; min-height: 290px; display: flex; flex-direction: column; padding: 30px; border-right: 1px solid #c8d5da; overflow: hidden; transition: color .35s ease, background .35s ease, transform .35s var(--spring); }
.capability-preview a:last-child { border-right: 0; }
.capability-preview a::before { content: ""; position: absolute; inset: auto -30% -65% 15%; aspect-ratio: 1; border: 1px solid rgba(112,189,211,.22); transform: rotate(45deg); transition: transform .7s var(--ease), border-color .35s ease; }
.capability-preview a:hover, .capability-preview a:focus-visible { z-index: 2; color: white; background: #0b1325; transform: translateY(-8px); }
.capability-preview a:hover::before { border-color: rgba(112,189,211,.58); transform: rotate(135deg) scale(1.08); }
.capability-preview span { color: #4c8297; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.capability-preview b { margin-top: auto; max-width: 280px; font-size: 20px; font-weight: 500; line-height: 1.35; }
.capability-preview i { position: absolute; right: 28px; top: 27px; color: #4c8297; font-style: normal; }

.home-capabilities .capability-preview { position: relative; border-color: #c8d5da; background: #fff; }
.home-capabilities .capability-preview a { color: #132029; border-color: #c8d5da; background: #fff; }
.home-capabilities .capability-preview a::before { content: none; }
.home-capabilities .capability-preview a:hover,
.home-capabilities .capability-preview a:focus-visible { color: white; background: #101a31; }
.home-capabilities .capability-preview span,
.home-capabilities .capability-preview i { color: #4c8297; }

/* Six products share the existing light card system and responsive type scale. */
.home-capabilities .ecosystem-preview { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-capabilities .ecosystem-preview a { min-height: 260px; border: 0; border-right: 1px solid #c8d5da; border-bottom: 1px solid #c8d5da; }
.home-capabilities .ecosystem-preview a:nth-child(3n) { border-right: 0; }
.home-capabilities .ecosystem-preview a:nth-last-child(-n+3) { border-bottom: 0; }
.home-capabilities .ecosystem-preview b { max-width: 100%; overflow-wrap: anywhere; }
.home-capabilities .ecosystem-preview p { margin: 12px 0 0; color: inherit; opacity: .72; font-size: 14px; line-height: 1.65; }
#product-portfolio { scroll-margin-top: 100px; }
@media (max-width: 1100px) {
  .home-capabilities .ecosystem-preview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-capabilities .ecosystem-preview a:nth-child(n) { border-right: 1px solid #c8d5da; border-bottom: 1px solid #c8d5da; }
  .home-capabilities .ecosystem-preview a:nth-child(2n) { border-right: 0; }
  .home-capabilities .ecosystem-preview a:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .home-capabilities .ecosystem-preview { grid-template-columns: 1fr; }
  .home-capabilities .ecosystem-preview a:nth-child(n) { min-height: 220px; border-right: 0; border-bottom: 1px solid #c8d5da; }
  .home-capabilities .ecosystem-preview a:last-child { border-bottom: 0; }
}

.home-gateways { display: grid; grid-template-columns: repeat(2, minmax(0, 470px)); justify-content: center; gap: clamp(18px, 2vw, 32px); padding: clamp(84px, 7vw, 118px) var(--pad) clamp(96px, 8vw, 136px); background: #05070d; }
.home-gateways::before,
.home-gateways::after { content: ""; position: absolute; z-index: 0; width: 66%; height: 96%; border-radius: 48%; opacity: .62; filter: blur(46px); mix-blend-mode: screen; pointer-events: none; will-change: transform, opacity; }
.home-gateways::before { left: -22%; top: -30%; background: radial-gradient(ellipse, rgba(42,159,192,.64), rgba(28,103,132,.22) 48%, transparent 72%); animation: home-dark-breathe-one 8.5s ease-in-out infinite; }
.home-gateways::after { right: -20%; bottom: -34%; background: radial-gradient(ellipse, rgba(78,103,238,.66), rgba(103,77,225,.2) 50%, transparent 73%); animation: home-dark-breathe-two 10.5s ease-in-out infinite; }
.home-gateways > .soft-aurora { opacity: .32; }
.gateway { --card-x: 50%; --card-y: 50%; position: relative; min-height: 292px; display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(171,207,222,.28); overflow: hidden; isolation: isolate; transition: transform .5s var(--ease), border-color .4s ease, box-shadow .4s ease; }
.gateway > * { position: relative; z-index: 2; }
.gateway > span:not(.gateway-frame) { color: var(--cyan); font-family: var(--mono); font-size: 10px; letter-spacing: .16em; }
.gateway-title-wrap { --reveal-width: 0%; position: relative; max-width: 690px; margin: 28px 0 0; overflow: hidden; }
.gateway h2,
.gateway-reveal-layer h3 { margin: 0; font-size: clamp(36px, 2.6vw, 48px); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.gateway h2 { color: rgb(244,248,250); }
.gateway h2 span,
.gateway-reveal-layer h3 span { display: block; white-space: nowrap; }
.gateway-reveal-layer { position: absolute !important; inset: 0; z-index: 3 !important; opacity: 0; clip-path: inset(0 calc(100% - var(--reveal-width)) 0 0); pointer-events: none; transition: clip-path .4s ease, opacity .3s ease; will-change: clip-path; }
.gateway-reveal-layer h3 { color: transparent; background: linear-gradient(180deg, #fff 4%, #bfefff 58%, #8da2ff); background-clip: text; -webkit-background-clip: text; text-shadow: 4px 4px 15px rgba(0,0,0,.45); }
.gateway-card.is-revealing .gateway-reveal-layer,
.gateway-card:focus-within .gateway-reveal-layer { opacity: 1; }
.gateway-card.is-revealing .gateway-reveal-layer { transition-duration: 0s; }
.gateway-scanline { position: absolute !important; left: var(--reveal-width); top: -18%; z-index: 4 !important; width: 6px; height: 136%; margin-left: -3px; background: linear-gradient(to bottom, transparent, rgba(169,234,255,.76) 28%, rgba(70,103,190,.7) 70%, transparent); opacity: 0; pointer-events: none; transition: left .4s ease, opacity .3s ease; will-change: left; }
.gateway-card.is-revealing .gateway-scanline,
.gateway-card:focus-within .gateway-scanline { opacity: 1; transition-duration: 0s; }
.gateway p { max-width: 550px; margin: 14px 0 0; font-size: 14px; line-height: 1.6; }
.gateway-card:hover,
.gateway-card:focus-within { border-color: rgba(151,224,245,.68); box-shadow: 0 30px 90px rgba(31,92,127,.24), inset 0 0 72px rgba(85,124,243,.07); transform: translateY(-4px); }
.gateway-products { color: #f4f8fa; background: rgba(8,16,26,.86); }
.gateway-solutions { color: #f4f8fa; background: rgba(11,19,37,.8); }
.gateway-products p,
.gateway-solutions p { color: #9cabb4; }
.gateway-link { position: relative; display: inline-flex; align-items: center; gap: 16px; width: max-content; margin-top: auto; padding: 12px 0 8px; color: #dce7eb; font-size: 13px; font-weight: 700; }
.gateway-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, var(--cyan), var(--blue)); transform: scaleX(.28); transform-origin: left; transition: transform .4s var(--ease); }
.gateway-link i { color: var(--cyan); font-style: normal; transition: transform .35s var(--spring); }
.gateway-link:hover::after,
.gateway-link:focus-visible::after { transform: scaleX(1); }
.gateway-link:hover i,
.gateway-link:focus-visible i { transform: translate(5px,-5px); }

@keyframes home-dark-breathe-one {
  0%, 100% { opacity: .56; transform: translate3d(-12%,-10%,0) rotate(-8deg) scale(.78); }
  48% { opacity: .96; transform: translate3d(46%,22%,0) rotate(14deg) scale(1.22); }
  72% { opacity: .7; transform: translate3d(24%,10%,0) rotate(7deg) scale(.98); }
}
@keyframes home-dark-breathe-two {
  0%, 100% { opacity: .58; transform: translate3d(10%,18%,0) rotate(10deg) scale(.84); }
  45% { opacity: .98; transform: translate3d(-48%,-26%,0) rotate(-16deg) scale(1.2); }
  76% { opacity: .68; transform: translate3d(-20%,-8%,0) rotate(-6deg) scale(.96); }
}

.home-closing, .page-closing { position: relative; min-height: 680px; display: flex; flex-direction: column; justify-content: center; padding: 120px var(--pad); overflow: hidden; }
.home-closing > *, .page-closing > * { width: min(100%, var(--content)); margin-inline: auto; }
.home-closing h2 { margin-block: 0; font-size: clamp(20px, 4.4vw, 74px); font-weight: 500; line-height: .98; letter-spacing: -.045em; white-space: nowrap; }
.page-closing h2 { margin-block: 0; font-size: clamp(56px, 7vw, 118px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.home-closing-actions { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 50px; margin-top: 48px; }
.home-closing-actions p { max-width: 630px; margin: 0; color: #9cabb4; font-size: 16px; line-height: 1.75; }
.home-closing.section-light { color: #132029; background: #fff; }
.home-closing.section-light .eyebrow { color: #37788f; }
.home-closing.section-light h2 { color: #132029; }
.home-closing.section-light .home-closing-actions p { color: #5b717b; }

.home-capabilities .compact-heading h2,
.home-closing.section-light h2,
.home-capabilities .compact-heading .eyebrow,
.home-closing.section-light .eyebrow,
.home-capabilities .capability-context,
.home-closing.section-light .home-closing-actions p,
.home-capabilities .capability-preview b { transition: color .35s ease, transform .4s var(--spring), letter-spacing .4s var(--ease), text-shadow .35s ease; }

@media (hover: hover) and (pointer: fine) {
  .home-capabilities .compact-heading h2:hover,
  .js .home-closing.section-light h2.reveal.is-visible.is-pointer-hovered { color: transparent; background: linear-gradient(90deg, #163542, #4d9bb5 42%, #557cf3 72%, #163542); background-size: 220% 100%; background-clip: text; -webkit-background-clip: text; transform: translateY(-4px); animation: mjz-gradient-text 1.8s ease-in-out infinite alternate; }
  .home-capabilities .compact-heading .eyebrow:hover,
  .home-closing.section-light .eyebrow:hover { color: #285f75; text-shadow: 0 8px 26px rgba(65,119,138,.2); transform: translateY(-2px); }
  .home-capabilities .capability-context:hover,
  .home-closing.section-light .home-closing-actions p:hover { color: #2d4b58; text-shadow: 0 10px 28px rgba(65,119,138,.13); transform: translateX(6px); }
  .home-capabilities .capability-preview a:hover b,
  .home-capabilities .capability-preview a:focus-visible b { transform: translateX(6px); }
}
.page-closing { min-height: 620px; text-align: center; align-items: center; }
.page-closing .button { margin-top: 42px; }

.page-hero { position: relative; min-height: 780px; display: grid; grid-template-columns: minmax(0,1fr) minmax(430px,.85fr); align-items: center; gap: clamp(50px, 7vw, 120px); padding: 160px var(--pad) 90px; overflow: hidden; isolation: isolate; }
.page-hero > *:not(canvas):not(.hero-grid) { position: relative; z-index: 1; }
.page-hero-copy { max-width: 870px; }
.page-hero-copy h1 { margin: 0; font-size: clamp(68px, 7vw, 126px); font-weight: 500; line-height: .93; letter-spacing: -.065em; }
.page-hero-copy-long { max-width: 920px; }
.page-hero-copy-long h1 { font-size: clamp(48px, 4.4vw, 78px); line-height: 1; letter-spacing: -.045em; }
.product-hero-copy h1 { font-size: clamp(44px, 3.9vw, 68px); }
.mobile-only { display: none; }
.page-hero-copy h1 em { color: transparent; background: linear-gradient(90deg, #dbeaf0, #70bdd3 48%, #7b73ff); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.page-hero-copy > p:last-child { max-width: 690px; margin: 34px 0 0; color: #a8b7c0; font-size: 18px; line-height: 1.75; }

.product-constellation { position: relative; width: min(100%, 560px); aspect-ratio: 1; justify-self: end; }
.product-constellation::before, .product-constellation::after { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(112,189,211,.15); border-radius: 50%; animation: core-orbit 25s linear infinite; }
.product-constellation::after { inset: 28%; border-style: dashed; animation-direction: reverse; }
.constellation-core { position: absolute; left: 50%; top: 50%; z-index: 2; display: grid; place-items: center; width: 150px; height: 150px; color: white; text-align: center; background: #0d1830; border: 1px solid rgba(112,189,211,.48); transform: translate(-50%,-50%) rotate(45deg); box-shadow: 0 0 80px rgba(85,124,243,.18); }
.constellation-core small, .constellation-core b { transform: rotate(-45deg); }.constellation-core small { color: var(--cyan); font-family: var(--mono); font-size: 9px; }.constellation-core b { font-size: 14px; line-height: 1.1; }
.product-constellation > i { position: absolute; z-index: 3; padding: 9px 12px; color: #8fa2ae; border: 1px solid rgba(112,189,211,.24); background: #070b14; font-family: var(--mono); font-size: 8px; font-style: normal; letter-spacing: .1em; animation: event-cycle 4.6s ease-in-out infinite; }
.product-constellation .c-one { left: 5%; top: 20%; }.product-constellation .c-two { right: 4%; top: 18%; animation-delay: -.8s; }.product-constellation .c-three { right: 0; bottom: 22%; animation-delay: -1.6s; }.product-constellation .c-four { left: 38%; bottom: 3%; animation-delay: -2.4s; }.product-constellation .c-five { left: 0; bottom: 22%; animation-delay: -3.2s; }
.product-constellation .c-six { left: 40%; top: 0; animation-delay: -4s; }
.product-name-index { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 24px; border: 1px solid #c8d5da; }
.product-name-index span { padding: 18px; border-right: 1px solid #c8d5da; color: #526670; font-family: var(--mono); font-size: 9px; line-height: 1.55; }.product-name-index span:last-child { border-right: 0; }

.solution-page-hero { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(48px, 5vw, 92px); }
.solution-world-map { display: grid; width: min(100%, 540px); aspect-ratio: 1; margin: 0 clamp(14px, 1.6vw, 24px) 0 0; place-items: center; justify-self: end; }
.aceternity-world-map { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(65,119,138,.24); border-radius: 50%; background: radial-gradient(circle at 35% 27%, rgba(255,255,255,.92) 0 8%, rgba(233,246,250,.48) 37%, rgba(219,236,242,.24) 64%, rgba(197,220,229,.14) 100%); box-shadow: inset -38px -30px 76px rgba(45,91,108,.08), inset 20px 16px 52px rgba(255,255,255,.72), 0 28px 80px rgba(49,96,113,.11); cursor: crosshair; isolation: isolate; transform-origin: 50% 50%; transition: box-shadow .45s ease; }
.aceternity-world-map::before,
.aceternity-world-map::after { display: none; }
.aceternity-world-map img { display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.aceternity-world-map svg { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; pointer-events: none; user-select: none; }
.world-globe-ocean { filter: drop-shadow(0 18px 24px rgba(44,91,108,.08)); }
.world-map-land { opacity: .9; transition: opacity .45s ease; }
.world-map-lens { opacity: 0; transition: opacity .18s ease; }
.world-map-lens.is-visible { opacity: 1; }
.world-map-lens-surface { fill: rgba(247,252,253,.94); }
.world-map-lens-land { opacity: 1; }
.world-map-lens-route { opacity: .92; }
.world-map-lens-point { filter: drop-shadow(0 0 4px rgba(14,165,233,.5)); }
.world-map-lens-ring { fill: none; stroke: rgba(68,135,160,.58); stroke-width: 1.25; opacity: 0; filter: drop-shadow(0 9px 16px rgba(42,91,109,.2)); transition: opacity .18s ease; }
.world-map-lens-ring.is-visible { opacity: 1; }
.aceternity-world-map.has-active-lens { box-shadow: inset -38px -30px 76px rgba(45,91,108,.08), inset 20px 16px 52px rgba(255,255,255,.72), 0 32px 86px rgba(49,96,113,.14); }
@media (hover: hover) and (pointer: fine) {
  .solution-world-map:hover .world-map-land { opacity: 1; }
}
.solution-intro { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,480px); gap: 90px; align-items: end; }
.solution-intro h2 { max-width: 900px; margin: 0; font-size: clamp(54px, 5.8vw, 98px); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
.solution-intro > p { margin: 0 0 8px; color: #99aab4; font-size: 16px; line-height: 1.8; }
.philippines-detail .journey-console { width: min(100%, var(--content)); margin-inline: auto; }
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid #c8d5da; }
.value-grid article { position: relative; min-height: 330px; padding: 38px; border-right: 1px solid #c8d5da; border-bottom: 1px solid #c8d5da; background: rgba(255,255,255,.42); transition: background .35s ease, transform .35s var(--spring); }
.value-grid article:nth-child(2n) { border-right: 0; }.value-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.value-grid article:hover { z-index: 2; background: white; transform: translateY(-6px); }
.value-grid span { color: #41778a; font-family: var(--mono); font-size: 10px; }.value-grid h3 { margin: 112px 0 0; font-size: 28px; font-weight: 500; }.value-grid p { max-width: 560px; color: #5a6c76; font-size: 14px; line-height: 1.75; }
.bank-answer { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -1px; border: 1px solid #c8d5da; background: rgba(255,255,255,.48); }
.case-study-only .bank-answer { margin-top: 0; }
.bank-question { padding: clamp(38px,5vw,74px); border-right: 1px solid #c8d5da; background: rgba(255,255,255,.42); }
.bank-question h3 { max-width: 900px; margin: 0; font-size: clamp(38px,4vw,68px); font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.bank-question > p:last-child { max-width: 860px; margin: 34px 0 0; color: #526771; font-size: 15px; line-height: 1.85; }
.bank-question .case-copy { max-width: 900px; margin-top: 34px; }
.bank-question .case-copy p { margin: 0 0 16px; color: #526771; font-size: 14px; line-height: 1.8; }
.bank-question .case-copy p:last-child { margin-bottom: 0; }
.bank-compare { display: grid; }
.bank-question,
.bank-compare {
  position: relative;
  transition: background .35s ease, transform .35s var(--spring), box-shadow .35s ease;
}
.bank-question:hover,
.bank-compare:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(36, 73, 88, .11);
}
.bank-question:hover { background: white; }
.bank-compare article { display: flex; min-height: 260px; flex-direction: column; padding: 36px; border-bottom: 1px solid #c8d5da; }
.bank-compare article:last-child { border-bottom: 0; background: #142a35; }
.bank-compare span { color: #41778a; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.bank-compare b { display: block; margin-top: auto; color: #172a33; font-size: 22px; font-weight: 500; }
.bank-compare p { margin: 16px 0 0; color: #5a6d76; font-size: 13px; line-height: 1.7; }
.bank-compare article:last-child span { color: var(--cyan); }
.bank-compare article:last-child b { color: white; }
.bank-compare article:last-child p { color: #9cadb6; }
.solution-output .compact-heading .eyebrow, .solution-output .compact-heading h2 { color: white; }.solution-output .compact-heading h2 em { color: var(--cyan); }
.output-console { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr; align-items: stretch; margin-top: 80px; }
.output-console > div { min-height: 300px; padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.015); transition: border-color .3s ease, background .3s ease, transform .3s var(--spring); }
.output-console > div:hover { border-color: rgba(112,189,211,.55); background: #0c1528; transform: translateY(-7px); }
.output-console > i { align-self: center; height: 1px; background: linear-gradient(90deg, var(--line), var(--cyan), var(--line)); }
.output-console small { color: var(--cyan); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }.output-console b { display: block; margin-top: 120px; font-size: 19px; font-weight: 500; }.output-console p { color: #8fa1ac; font-size: 12px; line-height: 1.7; }
.solution-questions { background: linear-gradient(135deg, var(--paper), #f6fafb); }
.solution-questions[data-faq-section] {
  --faq-section-x: 72%;
  --faq-section-y: 34%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(620px circle at var(--faq-section-x) var(--faq-section-y), rgba(112,189,211,.13), transparent 68%),
    linear-gradient(135deg, var(--paper), #f6fafb);
}
.solution-questions[data-faq-section] > *:not(.faq-atmosphere) { position: relative; z-index: 2; }
.faq-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.faq-atmosphere::before {
  content: '';
  position: absolute;
  width: clamp(360px, 44vw, 760px);
  aspect-ratio: 1;
  left: var(--faq-section-x);
  top: var(--faq-section-y);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95,187,211,.14), rgba(103,119,255,.055) 34%, transparent 68%);
  opacity: .4;
  transform: translate(-50%, -50%) scale(.88);
  transition: opacity .35s ease, transform .55s var(--spring);
}
.solution-questions.has-faq-pointer .faq-atmosphere::before {
  opacity: .85;
  transform: translate(-50%, -50%) scale(1);
}
.faq-atmosphere span,
.faq-atmosphere i {
  position: absolute;
  display: block;
  border: 1px solid rgba(87,145,166,.13);
  border-radius: 50%;
  opacity: 0;
}
.faq-atmosphere span {
  width: clamp(430px, 48vw, 820px);
  aspect-ratio: 1;
  right: clamp(-310px, -13vw, -120px);
  top: 6%;
}
.faq-atmosphere i:nth-of-type(1) {
  width: clamp(280px, 31vw, 530px);
  aspect-ratio: 1;
  right: clamp(-130px, -4vw, -40px);
  top: 17%;
  border-color: rgba(112,189,211,.16);
}
.faq-atmosphere i:nth-of-type(2) {
  width: clamp(180px, 20vw, 340px);
  aspect-ratio: 1;
  right: 7%;
  top: 29%;
  border-color: rgba(103,119,255,.11);
}
.solution-questions.is-faq-visible .faq-atmosphere span {
  opacity: 1;
  animation: faq-orbit-breathe 10s ease-in-out infinite;
}
.solution-questions.is-faq-visible .faq-atmosphere i:nth-of-type(1) {
  opacity: 1;
  animation: faq-orbit-breathe 8s 1.1s ease-in-out infinite reverse;
}
.solution-questions.is-faq-visible .faq-atmosphere i:nth-of-type(2) {
  opacity: 1;
  animation: faq-orbit-breathe 7s .45s ease-in-out infinite;
}
.solution-questions[data-faq-section] .section-heading { position: relative; }
.solution-questions[data-faq-section] .section-heading::after {
  content: '';
  display: block;
  width: min(100%, 1180px);
  height: 1px;
  margin-top: clamp(30px, 4vw, 58px);
  background: linear-gradient(90deg, rgba(64,117,136,.45), rgba(112,189,211,.85) 38%, rgba(103,119,255,.5) 65%, transparent 92%);
  opacity: 0;
  transform: scaleX(.08);
  transform-origin: left center;
}
.solution-questions[data-faq-section] .section-heading.is-visible::after {
  animation: faq-heading-scan 1.05s .18s var(--spring) both;
}
.solution-questions[data-faq-section] .question-list.is-visible .faq-item {
  animation: faq-item-enter .7s var(--spring) both;
}
.solution-questions[data-faq-section] .question-list.is-visible .faq-item:nth-child(2) { animation-delay: .08s; }
.solution-questions[data-faq-section] .question-list.is-visible .faq-item:nth-child(3) { animation-delay: .16s; }
.solution-questions[data-faq-section] .question-list.is-visible .faq-item:nth-child(4) { animation-delay: .24s; }
@keyframes faq-orbit-breathe {
  0%, 100% { transform: scale(.92); opacity: .35; }
  50% { transform: scale(1.04); opacity: .9; }
}
@keyframes faq-heading-scan {
  0% { opacity: 0; transform: scaleX(.08); }
  100% { opacity: 1; transform: scaleX(1); }
}
@keyframes faq-item-enter {
  0% { opacity: 0; transform: translateY(22px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.question-list { display: grid; border-top: 1px solid #c8d5da; }
.question-list article { display: grid; grid-template-columns: 100px minmax(0,1fr); gap: 30px; padding: 42px 0; border-bottom: 1px solid #c8d5da; }
.question-list article > span { color: #41778a; font-family: var(--mono); font-size: 10px; }
.question-list h3 { margin: 0; color: #172a33; font-size: clamp(28px,3vw,46px); font-weight: 500; line-height: 1.18; letter-spacing: -.025em; }
.question-list p { max-width: 980px; margin: 20px 0 0; color: #536772; font-size: 14px; line-height: 1.8; }

/* Interactive FAQ — restrained motion, strong reading hierarchy */
.question-list[data-faq] {
  --faq-x: 50%;
  --faq-y: 50%;
  width: min(100%, var(--content));
  margin-inline: auto;
  gap: 12px;
  border-top: 0;
}
.question-list[data-faq] .faq-item {
  --faq-x: 50%;
  --faq-y: 50%;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(112, 143, 156, .32);
  background:
    radial-gradient(420px circle at var(--faq-x) var(--faq-y), rgba(112, 189, 211, .15), transparent 55%),
    rgba(255, 255, 255, .62);
  box-shadow: 0 14px 48px rgba(40, 77, 91, .035);
  transition: transform .42s var(--spring), border-color .35s ease, background-color .35s ease, box-shadow .35s ease;
}
.question-list[data-faq] .faq-item::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, #67bdd5 48%, #6777ff, transparent);
  opacity: 0;
  transform: scaleY(.35);
  transition: opacity .35s ease, transform .55s var(--spring);
}
.question-list[data-faq] .faq-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -35%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 189, 211, .95), rgba(103, 119, 255, .8), transparent);
  opacity: 0;
}
.question-list[data-faq] .faq-item:hover,
.question-list[data-faq] .faq-item:focus-within {
  transform: translateX(8px);
  border-color: rgba(68, 135, 160, .55);
  box-shadow: 0 22px 56px rgba(40, 77, 91, .09);
}
.question-list[data-faq] .faq-item.is-open {
  border-color: rgba(68, 135, 160, .55);
  background-color: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 64px rgba(40, 77, 91, .08);
}
.question-list[data-faq] .faq-item.is-open::before { opacity: 1; transform: scaleY(1); }
.question-list[data-faq] .faq-item.is-open::after { opacity: 1; animation: faq-signal 3.8s ease-in-out infinite; }
.faq-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 52px;
  gap: 28px;
  align-items: center;
  width: 100%;
  padding: 34px 36px;
  border: 0;
  color: #172a33;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.faq-trigger:focus-visible { outline: 2px solid #4a9fba; outline-offset: -5px; }
.faq-index {
  color: #41778a;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  transition: color .3s ease, transform .4s var(--spring);
}
.faq-question {
  font-size: clamp(18px, 1.75vw, 29px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.025em;
  transition: transform .4s var(--spring), color .3s ease;
}
.faq-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid rgba(82, 116, 130, .34);
  border-radius: 50%;
  transition: transform .55s var(--spring), border-color .3s ease, background .3s ease;
}
.faq-toggle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: #355d6d;
  transform: translate(-50%, -50%);
  transition: transform .45s var(--spring), background .3s ease;
}
.faq-toggle i:last-child { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item:hover .faq-index { transform: translateX(4px); color: #245f74; }
.faq-item:hover .faq-question { transform: translateX(4px); }
.faq-item.is-open .faq-toggle { transform: rotate(180deg); border-color: #4f9eb8; background: rgba(112, 189, 211, .12); }
.faq-item.is-open .faq-toggle i:last-child { transform: translate(-50%, -50%) rotate(0deg); }
.faq-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .55s var(--spring), opacity .3s ease;
}
.faq-panel-inner { min-height: 0; overflow: hidden; }
.question-list[data-faq] .faq-panel p {
  max-width: 1080px;
  margin: 0;
  padding: 0 128px 38px 136px;
  color: #536772;
  font-size: 14px;
  line-height: 1.85;
  transform: translateY(-10px);
  transition: transform .5s var(--spring);
}
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; opacity: 1; }
.faq-item.is-open .faq-panel p { transform: translateY(0); }
@keyframes faq-signal {
  0%, 14% { left: -35%; }
  72%, 100% { left: 108%; }
}

@media (max-width: 820px) {
  .faq-atmosphere { opacity: .56; }
  .faq-atmosphere span { right: -300px; }
  .faq-atmosphere i:nth-of-type(1) { right: -160px; }
  .question-list[data-faq] { gap: 8px; }
  .question-list[data-faq] .faq-item:hover,
  .question-list[data-faq] .faq-item:focus-within { transform: none; }
  .faq-trigger {
    grid-template-columns: 38px minmax(0, 1fr) 40px;
    gap: 12px;
    padding: 24px 18px;
  }
  .faq-question { font-size: clamp(17px, 4.8vw, 24px); }
  .faq-toggle { width: 38px; height: 38px; }
  .question-list[data-faq] .faq-panel p {
    padding: 0 58px 28px 68px;
    font-size: 13px;
    line-height: 1.75;
  }
}

@media (max-width: 540px) {
  .faq-trigger {
    grid-template-columns: 28px minmax(0, 1fr) 34px;
    gap: 10px;
    padding: 20px 14px;
  }
  .faq-toggle { width: 34px; height: 34px; }
  .question-list[data-faq] .faq-panel p { padding: 0 16px 24px 52px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-atmosphere::before { transition: none; }
  .solution-questions.is-faq-visible .faq-atmosphere span,
  .solution-questions.is-faq-visible .faq-atmosphere i,
  .solution-questions[data-faq-section] .section-heading.is-visible::after,
  .solution-questions[data-faq-section] .question-list.is-visible .faq-item { animation: none; }
  .solution-questions.is-faq-visible .faq-atmosphere span,
  .solution-questions.is-faq-visible .faq-atmosphere i { opacity: .45; }
  .solution-questions[data-faq-section] .section-heading.is-visible::after { opacity: 1; transform: scaleX(1); }
  .question-list[data-faq] .faq-item,
  .faq-index,
  .faq-question,
  .faq-toggle,
  .faq-toggle i,
  .faq-panel,
  .question-list[data-faq] .faq-panel p { transition: none; }
  .question-list[data-faq] .faq-item.is-open::after { animation: none; }
  .question-list[data-faq] .faq-item:hover,
  .question-list[data-faq] .faq-item:focus-within,
  .faq-item:hover .faq-index,
  .faq-item:hover .faq-question { transform: none; }
}

.docs-terminal { width: min(100%, 560px); justify-self: end; border: 1px solid rgba(112,189,211,.3); background: rgba(8,12,21,.9); box-shadow: 0 36px 100px rgba(0,0,0,.42); }
.docs-terminal > div { display: flex; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); color: #8396a1; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }.docs-terminal > div i { color: var(--success); font-style: normal; }
.docs-terminal p { margin: 0; padding: 24px 26px; border-bottom: 1px solid var(--line); color: #ced9df; font-family: var(--mono); font-size: 14px; }.docs-terminal p b { margin-right: 24px; color: var(--cyan); font-size: 9px; }.docs-terminal small { display: block; padding: 25px 26px; color: #758893; line-height: 1.6; }
.doc-request-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(400px,.8fr); gap: clamp(60px,10vw,170px); align-items: start; }
.doc-request-grid h2 { max-width: 850px; margin: 0; font-size: clamp(54px,5.8vw,96px); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
.doc-package-list { display: grid; border-top: 1px solid var(--line); }.doc-package-list > span { padding: 24px 4px; border-bottom: 1px solid var(--line); color: #a1b0b9; font-size: 14px; }.doc-package-list > span b { margin-right: 24px; color: var(--cyan); font-family: var(--mono); font-size: 9px; }.doc-package-list .button { margin-top: 34px; }
.doc-request.section-light {
  background:
    radial-gradient(circle at 13% 86%, rgba(112,189,211,.11), transparent 26%),
    var(--paper);
}
.doc-request.section-light .eyebrow { color: #41778a; }
.doc-request.section-light .doc-request-grid h2 { color: #132029; }
.doc-request.section-light .doc-package-list { border-color: #c8d5da; }
.doc-request.section-light .doc-package-list > span { color: #536772; border-color: #c8d5da; }
.doc-request.section-light .doc-package-list > span b { color: #41778a; }
.doc-request-lede { max-width: 780px; margin: 34px 0 0; color: #536772; font-size: 15px; line-height: 1.8; }
.request-context { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.request-context span { padding: 9px 11px; color: #46616d; border: 1px solid #c7d4da; background: rgba(255,255,255,.45); font-family: var(--mono); font-size: 8px; letter-spacing: .07em; }

.about-sculpture { position: relative; width: min(100%, 560px); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; }
.about-sculpture > span { color: transparent; font-size: 360px; font-weight: 700; line-height: 1; -webkit-text-stroke: 1px rgba(112,189,211,.25); text-shadow: 0 0 90px rgba(85,124,243,.12); }
.about-sculpture > i { position: absolute; width: 62%; height: 1px; background: linear-gradient(90deg,transparent,var(--cyan),transparent); animation: core-orbit 16s linear infinite; }.about-sculpture > i:nth-of-type(2) { transform: rotate(60deg); animation-direction: reverse; }.about-sculpture > i:nth-of-type(3) { transform: rotate(-60deg); }.about-sculpture > b { position: absolute; color: white; font-size: 15px; line-height: 1.15; letter-spacing: .08em; text-align: center; }
.company-story { display: grid; grid-template-columns: minmax(260px,.5fr) minmax(0,1.25fr); gap: clamp(70px,10vw,180px); }
.story-index { display: flex; flex-direction: column; gap: 18px; }.story-index > span { padding-top: 18px; border-top: 1px solid #c8d5da; color: #5b6d76; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.story-copy h2 { margin: 0; font-size: clamp(50px,5.5vw,96px); font-weight: 500; line-height: 1; letter-spacing: -.05em; }.story-copy p { max-width: 900px; margin: 36px 0 0; color: #536772; font-size: 16px; line-height: 1.85; }
.direction-heading h2 { margin: 0; font-size: clamp(54px,6vw,104px); font-weight: 500; line-height: .98; letter-spacing: -.05em; }.direction-heading h2 em { color: var(--cyan); font-style: normal; }
.direction-roadmap { display: grid; margin-top: 90px; border-top: 1px solid var(--line); }.direction-roadmap article { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 42px 0; border-bottom: 1px solid var(--line); }.direction-roadmap article > span { color: var(--cyan); font-family: var(--mono); font-size: 11px; }.direction-roadmap details { min-width: 0; }.direction-roadmap summary { display: grid; grid-template-columns: minmax(0, 1fr) 44px; align-items: center; gap: 24px; min-height: 44px; cursor: pointer; list-style: none; }.direction-roadmap summary::-webkit-details-marker { display: none; }.direction-roadmap summary:focus-visible { outline: 2px solid #5fa9c2; outline-offset: 8px; }.direction-roadmap small { color: #6f8490; font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }.direction-roadmap summary small { color: #2d4b58; font-family: var(--sans); font-size: clamp(16px,1.25vw,20px); font-weight: 500; letter-spacing: .02em; }.direction-toggle { position: relative; display: block; width: 44px; height: 44px; border: 1px solid #c8d5da; border-radius: 50%; transition: border-color .25s ease, background .25s ease, transform .35s var(--spring); }.direction-toggle::before, .direction-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1px; background: #41778a; transform: translate(-50%, -50%); transition: transform .3s var(--spring); }.direction-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }.direction-roadmap summary:hover .direction-toggle { border-color: #8bb4c2; background: rgba(255,255,255,.7); }.direction-roadmap details[open] .direction-toggle { transform: rotate(180deg); }.direction-roadmap details[open] .direction-toggle::after { transform: translate(-50%, -50%) rotate(0deg); }.direction-panel { padding: 10px 68px 0 0; }.direction-roadmap h3 { max-width: 980px; margin: 18px 0 0; font-size: clamp(27px,3vw,46px); font-weight: 500; line-height: 1.2; }.direction-roadmap p { max-width: 720px; color: #8fa1ac; font-size: 14px; line-height: 1.75; }
.company-story.section-dark {
  background:
    linear-gradient(120deg, transparent 52%, rgba(85,124,243,.055)),
    var(--ink);
}
.company-story.section-dark .story-index > span { color: #8396a1; border-color: var(--line); }
.company-story.section-dark .story-copy h2 { color: #eef4f6; }
.company-story.section-dark .story-copy p { color: #94a5af; }
.direction.section-light {
  background:
    radial-gradient(circle at 88% 16%, rgba(112,189,211,.12), transparent 27%),
    var(--paper);
}
.direction.section-light .eyebrow { color: #41778a; }
.direction.section-light .direction-heading h2 { color: #132029; }
.direction.section-light .direction-heading h2 em { color: #417f96; }
.direction.section-light .direction-roadmap { border-color: #c8d5da; }
.direction.section-light .direction-roadmap article { border-color: #c8d5da; }
.direction.section-light .direction-roadmap article > span { color: #41778a; }
.direction.section-light .direction-roadmap small { color: #6b7f88; }
.direction.section-light .direction-roadmap h3 { color: #172a33; }
.direction.section-light .direction-roadmap p { color: #536772; }
.future-projects { overflow: hidden; background: radial-gradient(circle at 86% 18%, rgba(85,124,243,.1), transparent 28%), var(--ink); }
.future-projects::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(112,189,211,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(112,189,211,.035) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(90deg, transparent, black 42%, transparent); }
.future-heading { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.62fr); gap: clamp(60px,9vw,150px); align-items: end; }
.future-heading h2 { max-width: 960px; margin: 0; font-size: clamp(54px,6vw,104px); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
.future-heading h2 em { color: var(--cyan); font-style: normal; }
.future-heading > p { margin: 0 0 8px; color: #91a4ae; font-size: 15px; line-height: 1.8; }
.future-grid { position: relative; display: grid; grid-template-columns: repeat(2,1fr); margin-top: 90px; border: 1px solid var(--line); }
.future-grid article { min-height: 520px; display: flex; flex-direction: column; padding: clamp(34px,4vw,64px); border-right: 1px solid var(--line); background: rgba(255,255,255,.015); transition: transform .35s var(--spring), background .35s ease, border-color .35s ease; }
.future-grid article:last-child { border-right: 0; }
.future-grid article:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(112,189,211,.45); background: #0d172b; }
.future-grid span { color: var(--cyan); font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.future-grid b { display: block; max-width: 560px; margin-top: 30px; color: white; font-size: clamp(30px,3vw,48px); font-weight: 500; line-height: 1.12; }
.future-grid article > p { margin: auto 0 0; color: #9aabb4; font-size: 14px; line-height: 1.8; }
.future-grid small { display: block; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); color: #6f8490; font-size: 11px; line-height: 1.75; }
.page-closing.section-light { color: #132029; background: radial-gradient(circle at 50% 50%, rgba(112,189,211,.14), transparent 32%), var(--paper); }
.page-closing.section-light::before, .page-closing.section-light::after { border-color: rgba(65,119,138,.12); }
.page-closing.section-light .eyebrow { color: #41778a; }
.page-closing.section-light h2 { color: #132029; }

.contact-page { position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(0,.85fr) minmax(560px,1fr); align-items: center; gap: clamp(60px,8vw,140px); padding: 160px var(--pad) 100px; overflow: hidden; isolation: isolate; }
.contact-page > *:not(canvas):not(.hero-grid) { position: relative; z-index: 1; }
.contact-intro h1 { margin: 0; font-size: clamp(68px,6.5vw,116px); font-weight: 500; line-height: .94; letter-spacing: -.06em; }.contact-intro h1 em { color: transparent; background: linear-gradient(90deg,#dbeaf0,#70bdd3,#7b73ff); background-clip: text; -webkit-background-clip: text; font-style: normal; }.contact-intro > p:not(.eyebrow) { max-width: 650px; margin: 34px 0 0; color: #a5b4bd; font-size: 17px; line-height: 1.8; }.contact-topics { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }.contact-topics span { padding: 9px 11px; border: 1px solid var(--line); color: #8ea2ae; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.contact-intro-long h1 { font-size: clamp(48px, 4.1vw, 74px); line-height: 1; letter-spacing: -.045em; }
.contact-form-card { border: 1px solid rgba(112,189,211,.28); background: rgba(10,16,29,.92); box-shadow: 0 38px 110px rgba(0,0,0,.42); }
.form-card-head { display: flex; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); color: #8599a5; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }.form-card-head i { color: var(--success); font-style: normal; }
.contact-form-card form { padding: clamp(28px,3vw,46px); }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 20px; }.contact-form-card label { display: grid; gap: 10px; }.contact-form-card label > span { color: #8fa2ae; font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }.contact-form-card input, .contact-form-card select, .contact-form-card textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(112,189,211,.23); border-radius: 0; padding: 10px 0 13px; color: white; background: transparent; font-family: var(--sans); font-size: 14px; outline: none; transition: border-color .25s ease, background .25s ease; }.contact-form-card select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--cyan) 50%),linear-gradient(135deg,var(--cyan) 50%,transparent 50%); background-position: calc(100% - 10px) 17px,calc(100% - 5px) 17px; background-size: 5px 5px; background-repeat: no-repeat; }.contact-form-card option { color: #111f27; background: white; }.contact-form-card textarea { resize: vertical; min-height: 120px; }.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus { border-color: var(--cyan); background: rgba(112,189,211,.025); }.message-field { margin-top: 26px; }.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 30px; }.form-submit p { max-width: 360px; margin: 0; color: #718590; font-size: 11px; line-height: 1.6; }.contact-form-card form.is-submitted { box-shadow: inset 0 0 0 1px rgba(103,217,189,.55); }.contact-form-card form.is-error { box-shadow: inset 0 0 0 1px rgba(238,111,82,.48); }
.contact-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; pointer-events: none; }
.contact-form-card button:disabled { cursor: wait; opacity: .62; transform: none; }
.contact-form-card form.is-error [data-form-status] { color: #c85948; }
.contact-form-card form.is-submitted [data-form-status] { color: #2f8a74; }

.contact-email { display: inline-flex; align-items: center; gap: 14px; margin-top: 28px; padding-bottom: 8px; color: #274755; border-bottom: 1px solid #9ebbc7; font-family: var(--mono); font-size: 11px; letter-spacing: .05em; }
.contact-email i { color: #417f96; font-style: normal; transition: transform .3s var(--spring); }
.contact-email:hover i, .contact-email:focus-visible i { transform: translate(4px,-4px); }

/* Continuous light first-screen system */
.top-surface-light {
  position: relative;
  color: #102029;
  background:
    radial-gradient(circle at 78% 24%, rgba(112,189,211,.11), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f9fbfc 68%, #eef3f5 100%);
}
.top-surface-light::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86,119,133,.28) 14%, rgba(86,119,133,.28) 86%, transparent);
}
.top-surface-light #network-canvas { opacity: .48; }
.top-surface-light .hero-grid {
  background-image: linear-gradient(rgba(46,83,99,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(46,83,99,.055) 1px, transparent 1px);
  mask-image: linear-gradient(90deg, black, rgba(0,0,0,.58) 72%, transparent);
}
.top-surface-light .hero-halo {
  border-color: rgba(70,126,150,.13);
  box-shadow: 0 0 0 130px rgba(112,189,211,.035), 0 0 0 270px rgba(85,124,243,.02);
}
.top-surface-light .eyebrow { color: #37788f; }
.top-surface-light .hero-copy h1,
.top-surface-light .page-hero-copy h1,
.top-surface-light .contact-intro h1 { color: #102029; }
.top-surface-light .hero-copy h1 em,
.top-surface-light .page-hero-copy h1 em,
.top-surface-light .contact-intro h1 em {
  background: linear-gradient(90deg, #365967, #4c9fba 50%, #526ee3);
  background-clip: text;
  -webkit-background-clip: text;
}
.top-surface-light .hero-lede,
.top-surface-light .page-hero-copy > p:last-child,
.top-surface-light .contact-intro > p:not(.eyebrow) { color: #566b76; }
.top-surface-light .button-quiet { color: #223943; border-color: #bfcfd6; background: rgba(255,255,255,.52); }
.top-surface-light .button-quiet:hover,
.top-surface-light .button-quiet:focus-visible { color: #102029; border-color: #70bdd3; }
.top-surface-light .hero-rail { color: rgba(54,84,97,.58); }
.top-surface-light .hero-rail i { background: linear-gradient(90deg, rgba(65,119,138,.36), rgba(65,119,138,.06)); }
.top-surface-light .scroll-cue { color: #607681; }
.top-surface-light .scroll-cue i { border-color: rgba(65,119,138,.26); background: rgba(255,255,255,.58); }

.site-header.site-header-light {
  top: 0;
  left: 0;
  right: 0;
  min-height: 84px;
  padding: 0 var(--pad);
  border: 0;
  border-bottom: 1px solid rgba(81,109,121,.11);
  border-radius: 0;
  background: rgba(255,255,255,.94);
  box-shadow: none;
}
.site-header.site-header-light.is-scrolled {
  top: 0;
  min-height: 68px;
  border-color: rgba(81,109,121,.18);
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 40px rgba(36,63,75,.08);
}

.top-surface-light .hero-system {
  border-color: #bed0d8;
  background: #fff;
  box-shadow: 0 34px 90px rgba(43,78,94,.16), inset 0 1px rgba(255,255,255,.9);
}
.top-surface-light .hero-system:hover { border-color: #7eaec1; }
.top-surface-light .system-topline,
.top-surface-light .system-metrics { color: #607680; border-color: #cfdae0; background: rgba(247,250,251,.92); }
.top-surface-light .system-stage { background: linear-gradient(145deg, #f8fbfc, #edf4f7); }
.top-surface-light .system-stage::before {
  background-image: linear-gradient(rgba(57,103,123,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(57,103,123,.07) 1px, transparent 1px);
}
.top-surface-light .system-node {
  border-left-color: #55a9c4;
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 0 0 1px rgba(71,113,130,.18), 0 12px 28px rgba(43,78,94,.08);
}
.top-surface-light .system-node small { color: #68808b; }
.top-surface-light .system-node b { color: #172a33; }
.top-surface-light .system-node span { color: #667b85; }
.top-surface-light .node-compliance,
.top-surface-light .node-result { border-left-color: #7066f5; }
.top-surface-light .system-core::before {
  border-color: rgba(71,137,160,.64);
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 42px rgba(70,114,133,.13);
}
.top-surface-light .system-core b { color: #172a33; }
.top-surface-light .system-core i { color: #6c818b; }
.top-surface-light .system-event {
  color: #5c717c;
  border-color: #cfdae0;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 24px rgba(43,78,94,.08);
}
.top-surface-light .system-event b { color: #223943; }
.top-surface-light .system-event time { color: #78909a; }
.top-surface-light .system-metrics small { color: #6d818b; }
.top-surface-light .system-metrics b { color: #2f4650; }

.top-surface-light .product-constellation::before,
.top-surface-light .product-constellation::after,
.top-surface-light .market-radar::before,
.top-surface-light .radar-orbit { border-color: rgba(65,119,138,.2); }
.top-surface-light .constellation-core {
  color: #152831;
  border-color: #8bb9ca;
  background: #fff;
  box-shadow: 0 28px 70px rgba(43,78,94,.16), 0 0 0 24px rgba(112,189,211,.045);
}
.top-surface-light .constellation-core small { color: #37788f; }
.top-surface-light .product-constellation > i {
  color: #506872;
  border-color: #c6d5db;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(43,78,94,.08);
}
.top-surface-light .market-radar::before { background: radial-gradient(circle, rgba(55,120,143,.13) 0 1px, transparent 2px); background-size: 24px 24px; }
.top-surface-light .market-radar > b { color: #37788f; border-color: #8bb9ca; background: #fff; box-shadow: 0 18px 50px rgba(43,78,94,.14); }
.top-surface-light .market-dot { color: #506872; }
.top-surface-light .market-dot i { background: #fff; }
.top-surface-light .dot-ph { color: #102029; }
.top-surface-light .dot-ph i { background: #5eacc5; }

.top-surface-light .docs-terminal,
.top-surface-light .contact-form-card {
  border-color: #bed0d8;
  background: rgba(255,255,255,.96);
  box-shadow: 0 34px 90px rgba(43,78,94,.15);
}
.top-surface-light .docs-terminal > div,
.top-surface-light .docs-terminal p,
.top-surface-light .form-card-head { border-color: #d3dee3; color: #5b717b; }
.top-surface-light .docs-terminal p { color: #223943; }
.top-surface-light .docs-terminal small { color: #6e828c; }
.top-surface-light .about-sculpture > span { -webkit-text-stroke-color: rgba(55,120,143,.27); text-shadow: 0 28px 90px rgba(43,78,94,.11); }
.top-surface-light .about-sculpture > b { color: #19303a; }
.top-surface-light .contact-topics span { color: #526a75; border-color: #c5d4da; background: rgba(255,255,255,.55); }
.top-surface-light .contact-form-card label > span { color: #5c727c; }
.top-surface-light .contact-form-card input,
.top-surface-light .contact-form-card select,
.top-surface-light .contact-form-card textarea { color: #152831; border-color: #c5d4da; }
.top-surface-light .contact-form-card input::placeholder,
.top-surface-light .contact-form-card textarea::placeholder { color: #8a9ba3; }
.top-surface-light .form-submit p { color: #687e88; }

.footer-brand { height: 38px; overflow: hidden; }
.footer-brand img { width: 160px; height: 36px; }
.site-footer .footer-brand { background: transparent; }
.site-footer .footer-brand img { filter: grayscale(1) brightness(0) invert(1); opacity: .9; }

@media (max-width: 1180px) {
  .site-header.site-header-light { grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr); }
  .brand-image img { width: 166px; }
  .capability-preview { grid-template-columns: repeat(2,1fr); }
  .capability-preview a:nth-child(2) { border-right: 0; }.capability-preview a:nth-child(-n+2) { border-bottom: 1px solid #c8d5da; }
  .page-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 170px; }
  .product-constellation, .docs-terminal, .about-sculpture { width: min(100%,650px); justify-self: center; }
  .solution-world-map { width: min(100%, 476px); margin-inline: auto; justify-self: center; }
  .solution-intro, .doc-request-grid, .bank-answer, .future-heading { grid-template-columns: 1fr; }
  .bank-question { border-right: 0; border-bottom: 1px solid #c8d5da; }
  .output-console { grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); }.output-console > i { display: none; }
  .contact-page { grid-template-columns: 1fr; padding-top: 180px; }
}

@media (max-width: 820px) {
  .site-header.site-header-light, .site-header.site-header-light.is-scrolled { top: 0; left: 0; right: 0; grid-template-columns: 1fr auto auto; min-height: 72px; padding: 0 18px; }
  .site-header.site-header-light, .site-header.site-header-light.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .brand-image { height: 42px; }.brand-image img { width: 154px; height: 38px; }
  .site-header-light .menu-toggle { border-color: #cbd7dc; background: white; }
  .site-header-light .menu-toggle span { background: #15232b; }
  .site-header-light .site-nav { top: 72px; bottom: auto; left: 0; right: auto; width: 100vw; height: calc(100vh - 72px); max-width: none; justify-self: initial; padding-top: 56px; background: rgba(5,7,13,.985); }
  .site-header-light .site-nav a { color: #bac7ce; transform: none; }
  .site-header-light .site-nav a::after { left: 0; bottom: 10px; width: 32px; transform: scaleX(0); transform-origin: 0 50%; }
  .site-header-light .site-nav a:hover::after,
  .site-header-light .site-nav a:focus-visible::after,
  .site-header-light .site-nav a.is-active::after,
  .site-header-light .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .site-header-light .site-nav a:hover, .site-header-light .site-nav a:focus-visible, .site-header-light .site-nav a.is-active, .site-header-light .site-nav a[aria-current="page"] { color: white; }
  .compact-heading, .home-closing-actions, .solution-intro { grid-template-columns: 1fr; }
  html[lang="zh-CN"] .home-hero .hero-copy h1 { font-size: clamp(39px, 11vw, 54px); letter-spacing: -.045em; }
  .compact-heading .text-link { margin-top: 16px; }
  .capability-preview { grid-template-columns: 1fr; }.capability-preview a { min-height: 220px; border-right: 0; border-bottom: 1px solid #c8d5da; }.capability-preview a:last-child { border-bottom: 0; }
  .home-gateways { grid-template-columns: 1fr; padding-inline: 24px; }.gateway { min-height: 360px; }
  .home-closing, .page-closing { min-height: 600px; padding-block: 100px; }
  .page-hero { padding-top: 145px; padding-bottom: 90px; }.page-hero-copy h1 { font-size: clamp(56px,14vw,84px); }.page-hero-copy-long h1 { font-size: clamp(44px, 10vw, 66px); }.page-hero-copy > p:last-child { font-size: 16px; }
  .product-constellation { width: 112%; margin-inline: -6%; }.constellation-core { width: 120px; height: 120px; }
  .product-name-index { grid-template-columns: 1fr; }.product-name-index span { border-right: 0; border-bottom: 1px solid #c8d5da; }.product-name-index span:last-child { border-bottom: 0; }
  .value-grid { grid-template-columns: 1fr; }.value-grid article { border-right: 0; border-bottom: 1px solid #c8d5da !important; }.value-grid article:last-child { border-bottom: 0 !important; }
  .journey-console-compact .journey-step { min-height: 0; }
  .output-console { grid-template-columns: 1fr; }.output-console > div { min-height: 250px; }.output-console b { margin-top: 90px; }
  .company-story { grid-template-columns: 1fr; }.direction-roadmap article, .question-list article { grid-template-columns: 48px 1fr; }
  .direction-roadmap summary { grid-template-columns: minmax(0, 1fr) 40px; gap: 16px; }
  .direction-toggle { width: 40px; height: 40px; }
  .direction-panel { padding-right: 0; }
  .future-grid { grid-template-columns: 1fr; }.future-grid article { min-height: 470px; border-right: 0; border-bottom: 1px solid var(--line); }.future-grid article:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; }.form-submit { align-items: flex-start; flex-direction: column; }.form-submit .button { width: 100%; }
}

@media (max-width: 540px) {
  .brand-image img { width: 132px; }
  .header-docs { padding-inline: 4px; font-size: 10px; }
  .language { padding-left: 7px; font-size: 9px; }
  .language span { display: none; }
  .home-hero { padding-top: 126px; }
  .gateway { min-height: 350px; padding: 30px 24px; }.gateway h2, .gateway-reveal-layer h3 { font-size: clamp(28px, 8vw, 34px); }
  .page-hero-copy h1, .contact-intro h1 { font-size: clamp(50px,14.4vw,72px); }
  .page-hero-copy-long h1, .contact-intro-long h1 { font-size: clamp(40px,10.5vw,54px); }
  .product-hero-copy h1 { font-size: clamp(35px,9.2vw,46px); }
  .mobile-only { display: block; }
  .solution-world-map { width: 100%; margin-inline: 0; }
  .contact-page { padding: 140px 18px 80px; }.contact-form-card form { padding: 26px 20px; }
  .site-footer { padding-inline: 20px; }
}

/* Motion system — Jitter-inspired card choreography and MJZ light fields */
.splash-cursor {
  position: fixed;
  inset: 0;
  z-index: 60;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .55;
  filter: saturate(1.12);
}
.splash-cursor canvas { width: 100% !important; height: 100% !important; }

/* Backgrounds stay atmospheric; no graph-paper grids. */
.hero-grid,
.system-stage::before,
.products::before,
.future-projects::before,
.vault-mesh {
  display: none !important;
  background-image: none !important;
}

.animated-gradient-text {
  display: inline-block;
  color: transparent !important;
  background-image: linear-gradient(94deg, #245b71 0%, #2fb4ce 20%, #397bf4 45%, #765dff 66%, #bb63dc 82%, #245b71 100%) !important;
  background-size: 360% 100% !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  animation: mjz-gradient-text 3.4s linear infinite !important;
  will-change: background-position;
}

.home-hero-vault-only {
  position: relative;
  min-height: max(760px, 100svh);
  padding-top: 88px;
  overflow: hidden;
  background: #f4f5f5;
  isolation: isolate;
}

.hero-vault {
  position: relative;
  width: min(100%, 760px);
  justify-self: end;
  color: #101820;
  background: #f4f5f5;
  box-shadow: 0 34px 100px rgba(17,32,43,.09);
  overflow: hidden;
  isolation: isolate;
  --vault-parallax-x: 0px;
  --vault-parallax-y: 0px;
  --vault-tilt-x: 0deg;
  --vault-tilt-y: 0deg;
}
.home-hero-vault-only .hero-vault {
  width: 100%;
  height: calc(100svh - 88px);
  min-height: 672px;
  margin: 0;
  justify-self: stretch;
  box-shadow: none;
}
.hero-vault::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.98) 0, rgba(255,255,255,.74) 28%, rgba(243,245,246,.46) 54%, transparent 76%),
    linear-gradient(145deg, #f8f9f9 0%, #f1f3f4 48%, #f7f8f8 100%);
  animation: vault-light-breathe 9s ease-in-out infinite alternate;
}
.vault-stage {
  position: relative;
  z-index: 1;
  min-height: 590px;
  overflow: hidden;
  perspective: 1400px;
  transform-style: preserve-3d;
}
.home-hero-vault-only .vault-stage {
  height: 100%;
  min-height: 100%;
}
.vault-atmosphere,
.vault-watermark,
.vault-operating-core { position: absolute; left: 50%; top: 50%; pointer-events: none; }
.vault-atmosphere { inset: 0; left: 0; top: 0; z-index: 0; overflow: hidden; }
.vault-atmosphere i { position: absolute; width: 48%; height: 44%; border-radius: 50%; opacity: .34; filter: blur(72px); will-change: transform; }
.vault-atmosphere i:first-child { left: 9%; top: 12%; background: rgba(148,183,196,.24); animation: vault-pearl-drift-one 11s ease-in-out infinite alternate; }
.vault-atmosphere i:last-child { right: 7%; bottom: 10%; background: rgba(88,106,191,.14); animation: vault-pearl-drift-two 13s ease-in-out infinite alternate; }
.vault-watermark {
  z-index: 0;
  color: rgba(59,78,88,.025);
  font-family: var(--sans);
  font-size: clamp(240px, 28vw, 540px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.1em;
  transform: translate(calc(-50% - var(--vault-parallax-x)), calc(-50% - var(--vault-parallax-y)));
  transition: transform .65s var(--ease);
  user-select: none;
}
.vault-operating-core {
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(92px, 7vw, 134px);
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.78);
  transform-origin: 50% 50%;
  will-change: opacity, transform;
}
.vault-operating-core::before,
.vault-operating-core::after,
.vault-core-rings { content: ""; position: absolute; inset: 0; border: 1px solid rgba(68,119,137,.24); border-radius: 50%; }
.vault-operating-core::before { inset: -24%; border-color: rgba(68,119,137,.12); }
.vault-operating-core::after { inset: -48%; border-color: rgba(82,103,188,.08); }
.vault-core-rings { animation: vault-core-breathe 2.2s ease-in-out infinite alternate; }
.vault-operating-core img { position: relative; z-index: 2; width: 42%; border-radius: 10px; box-shadow: 0 10px 34px rgba(29,58,72,.13); }
.vault-operating-core small { position: absolute; top: calc(100% + 15px); color: rgba(45,72,84,.7); font-family: var(--mono); font-size: 7px; letter-spacing: .19em; white-space: nowrap; }
.vault-core-spokes { position: absolute; inset: 50%; }
.vault-core-spokes i { position: absolute; left: 0; top: 0; width: clamp(105px, 9vw, 172px); height: 1px; background: linear-gradient(90deg, rgba(67,117,136,.42), transparent); transform-origin: 0 50%; }
.vault-core-spokes i:nth-child(1) { transform: rotate(0deg); }
.vault-core-spokes i:nth-child(2) { transform: rotate(90deg); }
.vault-core-spokes i:nth-child(3) { transform: rotate(180deg); }
.vault-core-spokes i:nth-child(4) { transform: rotate(270deg); }
.vault-card-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(var(--vault-parallax-x), var(--vault-parallax-y), 0) rotateX(var(--vault-tilt-x)) rotateY(var(--vault-tilt-y));
  transform-style: preserve-3d;
  transition: transform .45s var(--ease);
  will-change: transform;
}
.vault-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(190px, 18vw, 346px);
  aspect-ratio: 1.55;
  padding: clamp(15px, 1.18vw, 23px) clamp(17px, 1.45vw, 28px);
  overflow: hidden;
  color: #101820;
  border: 1px solid rgba(16,24,32,.08);
  border-radius: clamp(12px, .82vw, 16px);
  background: #ebebeb;
  box-shadow: 0 18px 46px rgba(16,31,40,.11), 0 2px 7px rgba(16,31,40,.06);
  opacity: 0;
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}
.vault-card::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(118deg, rgba(255,255,255,.24), transparent 32%, transparent 72%, rgba(255,255,255,.08));
  pointer-events: none;
}
.vault-card::after {
  display: none;
}
.vault-card > * { position: relative; z-index: 1; }
.vault-card > span {
  position: absolute;
  top: clamp(12px, 1.1vw, 21px);
  right: clamp(14px, 1.3vw, 25px);
  font-family: var(--mono);
  font-size: clamp(6px, .34vw, 7px);
  font-weight: 600;
  letter-spacing: .1em;
}
.vault-card small {
  display: block;
  color: currentColor;
  opacity: .58;
  font-family: var(--mono);
  font-size: clamp(6px, .31vw, 7px);
  letter-spacing: .13em;
}
.vault-card h2 {
  max-width: 88%;
  margin: 16% 0 0;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.vault-card p {
  position: absolute;
  left: clamp(14px, 1.3vw, 25px);
  right: clamp(14px, 1.3vw, 25px);
  bottom: clamp(12px, 1.13vw, 22px);
  margin: 0;
  padding-top: clamp(6px, .43vw, 8px);
  border-top: 1px solid currentColor;
  opacity: .68;
  font-size: clamp(6px, .36vw, 7px);
  line-height: 1.45;
  white-space: nowrap;
}
.vault-card-silver { color: white; background: #aeb6bb; }
.vault-card-blue { color: white; background: #161bc7; }
.vault-card-white { color: #050505; border-color: #d7dee1; background: #fbfbfa; }
.vault-card-black { color: white; background: #07090b; }

.vault-message {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: grid;
  align-content: center;
  justify-items: center;
  width: clamp(300px, 29.17vw, 560px);
  padding: 32px;
  color: #101820;
  text-align: center;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  transform: translate(-50%, -50%) scale(.5);
  will-change: opacity, transform, filter;
  pointer-events: none;
}
.vault-message::before { content: ""; width: 72px; height: 1px; margin-bottom: 26px; background: linear-gradient(90deg, transparent, #47798c 50%, transparent); transform: scaleX(var(--message-reveal, 0)); opacity: calc(var(--message-reveal, 0) * .75); }
.vault-message h2 {
  margin: 0;
  font-size: clamp(40px, 3.2vw, 60px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.055em;
}
.vault-message img { width: clamp(132px, 8.75vw, 168px); margin-top: 34px; }
.home-hero-vault-only .vault-message h2 {
  font-size: clamp(40px, 3.2vw, 60px);
}

@keyframes vault-light-breathe {
  from { filter: brightness(.99) saturate(.96); transform: scale(1); }
  to { filter: brightness(1.02) saturate(1.04); transform: scale(1.025); }
}
@keyframes vault-pearl-drift-one {
  from { transform: translate3d(-8%,-6%,0) scale(.92); }
  to { transform: translate3d(42%,22%,0) scale(1.16); }
}
@keyframes vault-pearl-drift-two {
  from { transform: translate3d(10%,14%,0) scale(1.08); }
  to { transform: translate3d(-36%,-24%,0) scale(.9); }
}
@keyframes vault-core-breathe {
  from { opacity: .42; transform: scale(.92); }
  to { opacity: .9; transform: scale(1.08); }
}

/* Every dark module receives a low-opacity but clearly moving light field. */
.section-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section-dark > *:not(.soft-aurora):not(.contact-glow) { position: relative; z-index: 1; }
.soft-aurora {
  position: absolute !important;
  inset: -24% -14% !important;
  z-index: 0 !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  overflow: hidden;
  opacity: .82;
  pointer-events: none;
  filter: saturate(1.18);
  mix-blend-mode: screen;
}
.soft-aurora i {
  position: absolute;
  display: block;
  width: 62%;
  height: 68%;
  border-radius: 48%;
  opacity: .46;
  filter: blur(68px);
  will-change: transform, opacity;
}
.soft-aurora i:nth-child(1) {
  left: -14%;
  top: 6%;
  background: radial-gradient(ellipse,rgba(55,159,188,.48),rgba(55,159,188,.11) 52%,transparent 72%);
  animation: aurora-drift-one 9s ease-in-out infinite;
}
.soft-aurora i:nth-child(2) {
  right: -12%;
  top: -16%;
  background: radial-gradient(ellipse,rgba(74,104,235,.42),rgba(74,104,235,.09) 54%,transparent 74%);
  animation: aurora-drift-two 11s ease-in-out infinite;
}
.soft-aurora i:nth-child(3) {
  left: 24%;
  bottom: -28%;
  background: radial-gradient(ellipse,rgba(119,87,241,.36),rgba(112,189,211,.08) 52%,transparent 74%);
  animation: aurora-drift-three 10s ease-in-out infinite;
}
.home-closing > .soft-aurora { width: auto; margin: 0; }

@keyframes mjz-gradient-text {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}
@keyframes aurora-drift-one {
  0%, 100% { opacity: .3; transform: translate3d(-12%,-8%,0) rotate(-12deg) scale(.82); }
  50% { opacity: .9; transform: translate3d(48%,18%,0) rotate(18deg) scale(1.28); }
}
@keyframes aurora-drift-two {
  0%, 100% { opacity: .34; transform: translate3d(12%,-10%,0) rotate(12deg) scale(.86); }
  46% { opacity: .86; transform: translate3d(-52%,28%,0) rotate(-20deg) scale(1.24); }
}
@keyframes aurora-drift-three {
  0%, 100% { opacity: .26; transform: translate3d(-24%,18%,0) rotate(-8deg) scale(.8); }
  54% { opacity: .78; transform: translate3d(32%,-30%,0) rotate(16deg) scale(1.22); }
}

@media (min-width: 1181px) and (max-height: 880px) {
  .vault-stage { min-height: 500px; }
}
@media (max-width: 1180px) {
  .hero-vault { width: min(100%, 820px); justify-self: center; margin-top: 22px; }
}
@media (max-width: 820px) {
  .vault-stage { min-height: 520px; }
  .soft-aurora { inset: -12% -42% !important; }
  .soft-aurora i { width: 86%; height: 66%; filter: blur(56px); }
}
@media (max-width: 540px) {
  .hero-vault { width: calc(100% + 12px); margin-inline: -6px; }
  .vault-stage { min-height: 430px; }
  .vault-card { width: 190px; padding: 12px 14px; border-radius: 12px; }
  .vault-card h2 { max-width: 94%; margin-top: 15%; font-size: 17px; }
  .vault-card p { left: 14px; right: 14px; bottom: 12px; font-size: 6px; }
  .vault-card > span { top: 12px; right: 14px; font-size: 6px; }
  .vault-card small { font-size: 6px; }
  .vault-message { width: 320px; padding: 26px; }
  .vault-message h2 { font-size: 38px; }
  .vault-message img { width: 140px; }
  .home-hero-vault-only { min-height: max(650px, 100svh); padding-top: 66px; }
  .home-hero-vault-only .hero-vault { height: calc(100svh - 66px); min-height: 584px; }
  .home-hero-vault-only .vault-message h2 { font-size: clamp(36px, 9.6vw, 46px); }
  .home-hero-vault-only .vault-message img { width: 132px; margin-top: 24px; }
}
@media (hover: none), (pointer: coarse) {
  .splash-cursor { display: none; }
  .gateway h2 { color: #f4f8fa; }
  .gateway-reveal-layer { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .splash-cursor { display: none; }
  .animated-gradient-text { animation: none !important; background-position: 50% 50% !important; }
  .soft-aurora i { animation: none !important; }
  .home-gateways::before,
  .home-gateways::after { animation: none !important; opacity: .62; }
  .hero-vault::before,
  .vault-atmosphere i,
  .vault-core-rings { animation: none !important; }
  .hero-vault.is-reduced .vault-card {
    opacity: 0 !important;
  }
  .hero-vault.is-reduced .vault-message { opacity: 1 !important; filter: none !important; }
}

/* Homepage opening: Aceternity Hero Parallax geometry with a direct card-stage exit. */
.home-hero-parallax {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: auto;
  height: 135vh;
  padding: 160px 0;
  overflow: hidden;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  perspective: 1000px;
  perspective-origin: 50% 150vh;
  transform-style: preserve-3d;
  isolation: isolate;
}
.hero-parallax-header {
  position: relative;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  min-height: 580px;
  margin: 0 auto;
  padding: 160px 16px;
  color: #0d1720;
  pointer-events: none;
}
.hero-copy-cluster {
  position: absolute;
  left: 16px;
  top: clamp(254px, calc(50svh - 118px), 420px);
  width: min(672px, calc(100% - 32px));
  text-align: left;
  transform: translateY(-50%);
}
.hero-title-lens,
.hero-subtitle-lens {
  --hero-lens-x: 50%;
  --hero-lens-y: 50%;
  --hero-lens-copy-x: 0px;
  --hero-lens-copy-y: 0px;
  --hero-lens-width: 760px;
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  pointer-events: auto;
  cursor: zoom-in;
  isolation: isolate;
}
.hero-title-lens { margin-inline: 0; }
.hero-title-lens::before,
.hero-subtitle-lens::before {
  content: none;
}
.hero-subtitle-lens {
  width: 100%;
  max-width: 672px;
  margin: 32px 0 0;
}
.hero-parallax-header h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.055em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 1),
    0 0 18px rgba(255, 255, 255, .96),
    0 0 38px rgba(255, 255, 255, .82);
}
.hero-parallax-header h1 > span,
.hero-title-lens-copy > span { display: block; white-space: nowrap; }

/* English copy uses the same hero and lens, with a matching compact mobile scale. */
@media (max-width: 820px) {
  .home-hero-parallax[data-locale="en"] .hero-parallax-header h1,
  .home-hero-parallax[data-locale="en"] .hero-title-lens-copy { font-size: clamp(24px, 6.8vw, 44px); }
  .home-hero-parallax[data-locale="en"] .hero-subtitle-lens-copy { white-space: normal; }
}
.hero-title-lens-window,
.hero-subtitle-lens-window {
  position: absolute;
  left: var(--hero-lens-x);
  top: var(--hero-lens-y);
  z-index: 2;
  border: 1px solid rgba(67, 117, 137, .24);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(23, 56, 71, .1);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.82);
  transition: opacity .2s ease, transform .34s var(--spring);
  will-change: left, top, opacity, transform;
}
.hero-title-lens-window { width: 156px; height: 156px; }
.hero-subtitle-lens-window { width: 116px; height: 116px; }
.hero-title-lens-copy,
.hero-subtitle-lens-copy {
  position: absolute;
  left: var(--hero-lens-copy-x);
  top: var(--hero-lens-copy-y);
  width: var(--hero-lens-width);
  transform-origin: 0 0;
}
.hero-title-lens-copy {
  color: #0d1720;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.055em;
  transform: scale(1.18);
}
.hero-subtitle-lens-copy {
  color: #52636d;
  font-size: 20px;
  line-height: 1.55;
  white-space: nowrap;
  transform: scale(1.24);
}
.hero-title-lens.is-lens-visible .hero-title-lens-window,
.hero-subtitle-lens.is-lens-visible .hero-subtitle-lens-window {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.hero-subtitle-lens > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #52636d;
  font-size: 20px;
  line-height: 1.55;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 1),
    0 0 15px rgba(255, 255, 255, .96),
    0 0 28px rgba(255, 255, 255, .82);
}
.hero-parallax-stage {
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
.hero-parallax-plane {
  transform-style: preserve-3d;
}
.hero-parallax-row {
  display: flex;
  flex-direction: row;
  gap: 80px;
  margin-bottom: 80px;
  animation: hero-row-drift-left 26s linear infinite alternate;
  will-change: transform;
}
.hero-parallax-row:last-child { margin-bottom: 0; }
.hero-parallax-row-reverse {
  flex-direction: row-reverse;
  animation: hero-row-drift-right 26s linear infinite alternate;
}
@keyframes hero-row-drift-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-280px, 0, 0); }
}
@keyframes hero-row-drift-right {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(280px, 0, 0); }
}
.hero-product-card {
  position: relative;
  flex: 0 0 auto;
  width: 480px;
  height: 384px;
  overflow: hidden;
  background: #fff;
  cursor: default;
  will-change: transform, opacity;
  transition: box-shadow .24s ease;
}
.hero-product-card.is-module {
  border: 1px solid rgba(21, 31, 38, .4);
  background: #fbfbfa;
  box-shadow: 0 16px 34px rgba(15, 24, 30, .08);
}
.hero-product-card.is-copy-adjacent {
  margin-left: -110px;
  margin-top: 92px;
}
.hero-product-card > a {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  cursor: pointer;
  outline: none;
}
.hero-product-card.is-screen img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.hero-module-surface {
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 100%;
  padding: 40px;
  color: #111b22;
  background: #fbfbfa;
}
.hero-module-surface > span,
.hero-module-surface > small {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-module-surface > span { opacity: .58; }
.hero-module-surface > strong {
  align-self: center;
  max-width: 82%;
  font-size: 44px;
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero-product-card.is-single-line .hero-module-surface > strong {
  max-width: 100%;
  font-size: 40px;
  white-space: nowrap;
}
.hero-module-surface > small {
  padding-top: 12px;
  border-top: 1px solid currentColor;
  opacity: .62;
}
.hero-product-card.tone-blue .hero-module-surface,
.hero-product-card.tone-black .hero-module-surface,
.hero-product-card.tone-silver .hero-module-surface,
.hero-product-card.tone-white .hero-module-surface {
  color: #111b22;
  background: #fbfbfa;
}
.hero-product-card > h2 {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.hero-product-card:hover,
.hero-product-card:focus-within {
  z-index: 4;
  box-shadow: 0 30px 72px rgba(7, 14, 22, .2);
}
.hero-product-card.is-module:hover,
.hero-product-card.is-module:focus-within {
  box-shadow: 0 22px 48px rgba(15, 24, 30, .14);
}
.hero-product-card:focus-within { outline: 3px solid rgba(92, 99, 104, .74); outline-offset: 6px; }

@media (max-width: 767px) {
  .home-hero-parallax { height: 145vh; padding: 140px 0; }
  .hero-parallax-header { padding: 80px 16px; }
  .hero-copy-cluster {
    position: static;
    width: 100%;
    transform: none;
  }
  .hero-parallax-header h1 { font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
  .hero-title-lens-copy { font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
  .hero-title-lens-window,
  .hero-subtitle-lens-window { display: none; }
  .hero-subtitle-lens { width: 100%; margin-top: 32px; }
  .hero-subtitle-lens > p,
  .hero-subtitle-lens-copy { font-size: 16px; }
  .hero-parallax-stage { left: -12vw; top: 76px; }
  .hero-product-card.is-copy-adjacent { margin-left: 0; margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-parallax-stage { opacity: 1 !important; transform: none !important; }
  .hero-parallax-row { animation: none !important; }
  .hero-product-card { transform: none !important; }
  .hero-title-lens-window,
  .hero-subtitle-lens-window { display: none; }
}

@media (hover: none), (pointer: coarse) {
  .hero-title-lens,
  .hero-subtitle-lens { cursor: default; }
  .hero-title-lens-window,
  .hero-subtitle-lens-window { display: none; }
}

/* Shared display-title system — matches the homepage four-capabilities heading. */
.site-display-title {
  --site-title-gradient: linear-gradient(90deg, #163542, #4d9bb5 42%, #557cf3 72%, #163542);
  margin: 0;
  color: inherit;
  background: none;
  font-size: clamp(44px, 4.4vw, 74px) !important;
  font-weight: 500 !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
  -webkit-text-fill-color: currentColor;
  transition: color .35s ease, transform .4s var(--spring), letter-spacing .4s var(--ease), text-shadow .35s ease;
  will-change: transform, background-position;
}
.site-display-title em {
  color: inherit !important;
  background: none !important;
  font-style: normal;
  font-weight: inherit !important;
  -webkit-text-fill-color: currentColor;
}
.section-dark .site-display-title {
  --site-title-gradient: linear-gradient(90deg, #eef4f6, #70bdd3 42%, #7b73ff 72%, #eef4f6);
  color: #eef4f6;
}
.section-light .site-display-title,
.top-surface-light .site-display-title {
  color: #132029;
}

@media (hover: hover) and (pointer: fine) {
  .js .site-display-title.is-pointer-hovered {
    color: transparent !important;
    background-image: var(--site-title-gradient) !important;
    background-size: 220% 100% !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 12px 32px rgba(65, 119, 138, .14);
    transform: translateY(-4px);
    animation: mjz-gradient-text 1.8s ease-in-out infinite alternate;
  }
  .js .site-display-title.is-pointer-hovered em {
    color: transparent !important;
    -webkit-text-fill-color: transparent;
  }
}

@media (max-width: 820px) {
  .site-display-title { font-size: clamp(42px, 10.5vw, 64px) !important; }
}

@media (max-width: 540px) {
  .site-display-title { font-size: clamp(38px, 10.8vw, 52px) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .site-display-title,
  .site-display-title.is-pointer-hovered {
    animation: none !important;
    transform: none !important;
  }
}

.site-heading-subtitle {
  transition: color .35s ease, transform .4s var(--spring), letter-spacing .4s var(--ease), text-shadow .35s ease;
  will-change: color, transform;
}
@media (hover: hover) and (pointer: fine) {
  .js .site-heading-subtitle.is-pointer-hovered {
    color: #2d4b58 !important;
    text-shadow: 0 10px 28px rgba(65, 119, 138, .13);
    transform: translateX(6px);
  }
  .js .section-dark .site-heading-subtitle.is-pointer-hovered,
  .js .page-hero.section-dark .site-heading-subtitle.is-pointer-hovered {
    color: #c4e7f2 !important;
    text-shadow: 0 12px 34px rgba(89, 191, 222, .18);
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-heading-subtitle,
  .site-heading-subtitle.is-pointer-hovered {
    transform: none !important;
    transition: none !important;
  }
}

/* Products — white capability card swap and animated five-product tabs. */
.product-beam-wrap {
  position: relative;
  top: clamp(-72px, -4vw, -48px);
  left: clamp(56px, 5.5vw, 88px);
  width: min(50vw, 800px);
  justify-self: end;
  overflow: hidden;
}
.product-beam-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1.56 / 1;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
  outline: none;
  cursor: pointer;
}
.product-beam-shell::before {
  content: none;
}
.product-card-swap-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
  perspective: 900px;
  transform-style: preserve-3d;
  overflow: hidden;
}
.product-swap-card {
  position: absolute;
  top: 86%;
  left: 41%;
  width: 76%;
  height: 88%;
  display: block;
  padding: 0;
  color: #161a1c;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
  box-shadow: 0 22px 42px rgba(34, 39, 43, .13);
  text-align: left;
  overflow: hidden;
  pointer-events: none;
  transform:
    translate(-50%, -50%)
    translate3d(var(--card-x), var(--card-y), var(--card-z))
    skewY(6deg);
  transform-origin: center center;
  transform-style: preserve-3d;
  transition:
    transform .72s cubic-bezier(.16, .82, .23, 1.08),
    box-shadow .46s ease,
    opacity .28s ease;
  backface-visibility: hidden;
  will-change: transform;
}
.product-swap-card[data-card-slot="3"],
.product-swap-card[data-card-slot="4"],
.product-swap-card[data-card-slot="5"] {
  opacity: 0;
}
.product-swap-card::after {
  content: "";
  position: absolute;
  inset: 54px 0 auto;
  height: 1px;
  background: rgba(25, 28, 30, .72);
  pointer-events: none;
}
.product-swap-card-title {
  position: relative;
  z-index: 1;
  height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-inline: 19px;
  background: linear-gradient(180deg, #fff, #f8f8f8);
}
.product-swap-card-title strong {
  color: #202427;
  font-size: clamp(16px, 1.45vw, 23px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
}
.product-swap-card-title em {
  margin-inline-start: 2px;
  padding: 4px 7px 3px;
  color: #68757b;
  border: 1px solid rgba(70, 84, 90, .24);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: clamp(7px, .58vw, 9px);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .12em;
}
.product-swap-window-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-inline-start: auto;
}
.product-swap-window-controls i {
  width: clamp(8px, .7vw, 11px);
  aspect-ratio: 1;
  border: 1px solid rgba(22, 28, 31, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2);
}
.product-swap-window-controls .is-close { background: #ff5f57; }
.product-swap-window-controls .is-minimize { background: #febc2e; }
.product-swap-window-controls .is-expand { background: #28c840; }
.product-swap-card-code {
  position: absolute;
  inset: 86px auto auto 24px;
  z-index: 1;
  margin: 0;
  color: #7a858a;
  font-family: var(--mono);
  font-size: clamp(10px, .84vw, 13px);
  line-height: 1.72;
  letter-spacing: .015em;
  white-space: pre;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .42s cubic-bezier(.16, .82, .23, 1);
}
.product-swap-card-code code,
.product-swap-card-code code > .product-code-line {
  display: block;
}
.product-swap-card-code code > .product-code-line {
  width: max-content;
  max-width: 100%;
  white-space: pre;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  font-variant-ligatures: none;
  will-change: clip-path;
}
.product-swap-card-code code > .product-code-line.is-empty {
  width: 1ch;
  clip-path: none;
}
.product-swap-card-code .token-namespace { color: #7063bd; }
.product-swap-card-code .token-function { color: #2774bd; }
.product-swap-card-code .token-key { color: #9b5b91; }
.product-swap-card-code .token-string { color: #2c8768; }
.product-swap-card-code .token-value { color: #b87535; }
.product-swap-card-code .token-comment {
  color: #5f9bb1;
  font-style: italic;
}
.product-swap-card[data-card-slot="0"]:not(.is-leaving) .product-swap-card-code,
.product-swap-card[data-card-slot="0"]:not(.is-leaving) .product-swap-card-code code > .product-code-line {
  opacity: 1;
  transform: translateY(0);
}
.product-swap-card[data-card-slot="0"]:not(.is-leaving) .product-swap-card-code code > .product-code-line:not(.is-empty) {
  animation: product-code-type .62s steps(var(--char-count), end) both;
  animation-delay: calc(var(--line-index) * 180ms + 140ms);
}
@keyframes product-code-type {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
.product-swap-card.is-leaving {
  z-index: 20 !important;
  opacity: 1;
  transform:
    translate(-50%, -50%)
    translate3d(var(--card-x), calc(var(--card-y) + 520px), 80px)
    skewY(6deg);
  box-shadow: 0 34px 70px rgba(34, 39, 43, .08);
}
.product-card-swap:hover .product-swap-card[data-card-slot="0"] {
  box-shadow: 0 30px 62px rgba(34, 39, 43, .18);
}

.product-tabs-shell {
  position: relative;
  width: min(100%, var(--content));
  margin-inline: auto;
  overflow: visible;
}
.product-tab-list {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 0 0 26px;
}
.product-tab {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 20px;
  color: #5d727d;
  border: 1px solid rgba(91, 129, 143, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 9px 24px rgba(30, 65, 79, .065);
  backdrop-filter: blur(12px);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: color .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s var(--spring);
}
.product-tab:hover { color: #152831; border-color: rgba(75, 152, 178, .42); box-shadow: 0 13px 30px rgba(30, 65, 79, .1); transform: translateY(-3px); }
.product-tab:focus-visible { color: #152831; outline: 2px solid #4b98b2; outline-offset: 3px; }
.product-tab.is-active { color: #fff; }
.product-tab-active {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #102731, #15234b 66%, #28397d);
  box-shadow: inset 0 0 0 1px rgba(112, 189, 211, .34), 0 15px 34px rgba(17, 37, 64, .23);
}
.product-tab > span:not(.product-tab-active),
.product-tab > b { position: relative; z-index: 1; }
.product-tab > span:not(.product-tab-active) { font-family: var(--mono); font-size: 8px; letter-spacing: .14em; opacity: .66; }
.product-tab > b { font-size: 13px; font-weight: 600; line-height: 1.35; }
.product-tab-stage {
  position: relative;
  perspective: 1500px;
  isolation: isolate;
}
.product-tab-stage::before,
.product-tab-stage::after {
  content: "";
  position: absolute;
  inset: 20px 34px -10px;
  z-index: -2;
  border: 1px solid rgba(92, 128, 141, .15);
  border-radius: 24px;
  background: rgba(230, 240, 244, .72);
  box-shadow: 0 24px 60px rgba(26, 54, 65, .08);
  transform: translateY(18px) rotate(-1.15deg) scale(.975);
  transform-origin: 50% 0;
}
.product-tab-stage::after {
  inset: 28px 50px -18px;
  z-index: -3;
  background: rgba(218, 230, 236, .56);
  transform: translateY(30px) rotate(1.05deg) scale(.95);
}
.product-tab-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  min-height: 560px;
  color: #17242c;
  border: 1px solid rgba(91, 129, 143, .24);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 34px 90px rgba(26, 54, 65, .13);
  overflow: hidden;
  transform-origin: 50% 0;
}
.product-tab-intro { position: relative; display: flex; flex-direction: column; padding: clamp(42px, 5vw, 78px); border-right: 1px solid #ccd7dc; overflow: hidden; }
.product-tab-intro::after {
  content: attr(data-index);
  position: absolute;
  right: -18px;
  bottom: -70px;
  color: rgba(66, 119, 139, .035);
  font-family: var(--mono);
  font-size: 250px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.product-tab-status { display: flex; align-items: center; justify-content: flex-start; padding-bottom: 18px; border-bottom: 1px solid #ccd7dc; color: #4a6c7b; font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.product-tab-intro h3 { max-width: 650px; margin: 48px 0 0; color: #111f27; font-size: clamp(38px, 4vw, 68px); font-weight: 500; line-height: 1.02; letter-spacing: -.045em; }
.product-tab-intro > p { max-width: 650px; margin: 28px 0 0; color: #536671; font-size: 15px; line-height: 1.8; }
.product-tab-modes { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 34px; }
.product-tab-modes span { padding: 8px 10px; color: #46616d; border: 1px solid #c7d4da; font-family: var(--mono); font-size: 8px; }
.product-tab-details { display: grid; align-content: center; margin: 0; padding: clamp(36px, 4.5vw, 70px); background: linear-gradient(145deg, rgba(239, 247, 250, .78), rgba(255, 255, 255, .95)); }
.product-tab-details div { display: grid; grid-template-columns: 110px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid #ccd7dc; }
.product-tab-details div:first-child { border-top: 1px solid #ccd7dc; }
.product-tab-details dt { color: #41778a; font-family: var(--mono); font-size: 8px; letter-spacing: .11em; }
.product-tab-details dd { margin: 0; color: #344852; font-size: 13px; line-height: 1.7; }
@keyframes product-card-sheen {
  0%, 62% { transform: translateX(-110%); }
  82%, 100% { transform: translateX(110%); }
}

@media (max-width: 1180px) {
  .product-beam-wrap { top: 0; left: 0; width: min(100%, 780px); justify-self: center; transform: none; }
  .product-tab-panel { grid-template-columns: 1fr; }
  .product-tab-intro { border-right: 0; border-bottom: 1px solid #ccd7dc; }
}

@media (max-width: 820px) {
  .product-beam-wrap { width: min(100%, 720px); margin-inline: auto; overflow: visible; }
  .product-beam-shell { transform: none; }
  .product-tab-list {
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    margin-inline: -20px;
    padding: 0 20px 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .product-tab-list::-webkit-scrollbar { display: none; }
  .product-tab { min-height: 54px; flex: 0 0 auto; padding: 12px 17px; }
  .product-tab-panel { min-height: 0; }
  .product-tab-intro,
  .product-tab-details { padding: 34px 24px; }
  .product-tab-details div { grid-template-columns: 90px 1fr; gap: 18px; }
  .product-tab-stage::before { inset: 14px 18px -8px; }
  .product-tab-stage::after { inset: 20px 30px -14px; }
}

@media (max-width: 540px) {
  .product-hero-copy h1 { font-size: clamp(31px, 8vw, 38px) !important; }
  .product-beam-wrap { width: 100%; margin-inline: 0; overflow: visible; }
  .product-beam-shell { width: 100%; min-width: 0; aspect-ratio: 1.12 / 1; transform: none; }
  .product-swap-card { top: 62%; left: 39%; width: 78%; height: 60%; border-radius: 13px; }
  .product-swap-card-title { height: 46px; gap: 10px; padding-inline: 14px; }
  .product-swap-card::after { inset-block-start: 46px; }
  .product-swap-card-title strong { font-size: 17px; }
  .product-tab-intro h3 { font-size: 36px; }
  .product-tab-details div { grid-template-columns: 1fr; gap: 10px; }
  .product-tab-panel { border-radius: 18px; }
  .product-tab-stage::before,
  .product-tab-stage::after { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .product-swap-card,
  .product-tab { transition: none; }
}

/* About MJZ — The Stack: Partnership inspired image reveal */
.about-page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(500px, .82fr);
  gap: clamp(38px, 4.4vw, 78px);
}
.about-partnership-stack {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 4 / 5;
  justify-self: end;
  margin: 0;
  perspective: 1400px;
}
.about-stack-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  padding: clamp(18px, 2.3vw, 30px);
  color: #1c2e37;
  background:
    radial-gradient(circle at 54% 42%, rgba(112, 189, 211, .13), transparent 36%),
    #f0f1f2;
  box-shadow: 0 34px 90px rgba(31, 64, 78, .14);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .55s var(--spring), box-shadow .55s ease;
}
.about-partnership-stack:hover .about-stack-canvas {
  transform: translateY(-5px) rotateX(.7deg) rotateY(-.7deg);
  box-shadow: 0 42px 110px rgba(31, 64, 78, .19);
}
.about-stack-header,
.about-stack-canvas figcaption {
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.about-stack-header { color: #57707b; }
.about-stack-header span:last-child { color: #84949b; text-align: right; }
.about-stack-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  align-self: center;
  background: #e3e5e7;
  box-shadow: 0 18px 46px rgba(28, 58, 71, .12);
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s var(--spring);
}
.about-partnership-stack:hover .about-stack-stage { transform: scale(1.012); }
.about-stack-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 53% 50%;
  opacity: 0;
  filter: saturate(.82) contrast(1.02) brightness(.9);
  clip-path: circle(0% at 50% 50%);
  transform: scale(1.14);
  animation: about-stack-image 7.46s cubic-bezier(.65, 0, .35, 1) infinite;
  will-change: clip-path, opacity, transform;
}
.about-stack-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 16, 23, .38));
  opacity: 0;
  animation: about-stack-shade 7.46s ease-in-out infinite;
  pointer-events: none;
}
.about-stack-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: block;
  aspect-ratio: 1;
  border: clamp(13px, 1.8vw, 23px) solid rgba(250, 250, 250, .97);
  box-sizing: border-box;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.08);
  animation: about-stack-frame 7.46s cubic-bezier(.76, 0, .24, 1) infinite;
  will-change: opacity, transform;
  pointer-events: none;
}
.about-stack-frame-circle { border-radius: 50%; }
.about-stack-frame-square { border-radius: 0; }
.about-stack-frame-one { width: 106%; --stack-frame-scale: 1.05; --stack-frame-over: 1.09; --stack-frame-exit: 1.2; }
.about-stack-frame-two { width: 79%; --stack-frame-scale: 1; --stack-frame-over: 1.04; --stack-frame-exit: 1.15; animation-delay: 90ms; }
.about-stack-frame-three { width: 54%; --stack-frame-scale: .96; --stack-frame-over: 1; --stack-frame-exit: 1.1; animation-delay: 180ms; }
.about-stack-frame-four { width: 31%; --stack-frame-scale: .91; --stack-frame-over: .95; --stack-frame-exit: 1.05; animation-delay: 270ms; }
.about-stack-lockup {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #1d313b;
  transform: translate(-50%, -50%);
  animation: about-stack-lockup 7.46s ease-in-out infinite;
  pointer-events: none;
}
.about-stack-lockup img { width: clamp(34px, 5vw, 58px); height: auto; }
.about-stack-lockup span { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.about-stack-image-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 7;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
  opacity: 0;
  transform: translateY(8px);
  animation: about-stack-caption 7.46s ease-in-out infinite;
  pointer-events: none;
}
.about-stack-canvas figcaption { color: #526a75; }
.about-stack-canvas figcaption i {
  height: 1px;
  flex: 1;
  background: rgba(82, 106, 117, .24);
}
.about-stack-canvas figcaption b { color: #20343d; font-size: 9px; font-weight: 600; }

@keyframes about-stack-image {
  0%, 10% { opacity: 0; clip-path: circle(0% at 50% 50%); transform: scale(1.14); }
  16% { opacity: 1; clip-path: circle(7% at 50% 50%); }
  42% { opacity: 1; clip-path: circle(86% at 50% 50%); transform: scale(1); }
  72% { opacity: 1; clip-path: circle(86% at 50% 50%); transform: scale(1.015); }
  88% { opacity: 1; clip-path: circle(8% at 50% 50%); transform: scale(1.1); }
  94%, 100% { opacity: 0; clip-path: circle(0% at 50% 50%); transform: scale(1.14); }
}
@keyframes about-stack-frame {
  0%, 9% { opacity: 0; transform: translate(-50%, -50%) scale(.08) rotate(-7deg); }
  14% { opacity: 1; }
  39% { opacity: 1; transform: translate(-50%, -50%) scale(var(--stack-frame-scale)) rotate(0deg); }
  58% { opacity: .96; transform: translate(-50%, -50%) scale(var(--stack-frame-over)) rotate(0deg); }
  71% { opacity: 0; transform: translate(-50%, -50%) scale(var(--stack-frame-exit)) rotate(2deg); }
  80% { opacity: 0; transform: translate(-50%, -50%) scale(var(--stack-frame-exit)) rotate(2deg); }
  88% { opacity: 1; }
  96%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(.08) rotate(-7deg); }
}
@keyframes about-stack-lockup {
  0%, 11% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  22%, 78% { opacity: 0; transform: translate(-50%, -50%) scale(.72); }
  90%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes about-stack-caption {
  0%, 43% { opacity: 0; transform: translateY(8px); }
  52%, 76% { opacity: 1; transform: translateY(0); }
  86%, 100% { opacity: 0; transform: translateY(8px); }
}
@keyframes about-stack-shade {
  0%, 38% { opacity: 0; }
  52%, 76% { opacity: 1; }
  88%, 100% { opacity: 0; }
}

@media (max-width: 1180px) {
  .about-page-hero { grid-template-columns: 1fr; }
  .about-partnership-stack { width: min(100%, 520px); justify-self: center; }
}

@media (max-width: 540px) {
  .about-partnership-stack { width: 100%; }
  .about-stack-canvas { padding: 16px; }
  .about-stack-header span:last-child { display: none; }
  .about-stack-frame { border-width: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-stack-canvas,
  .about-stack-stage { transition: none; }
  .about-stack-image {
    opacity: 1;
    clip-path: circle(86% at 50% 50%);
    transform: none;
    animation: none !important;
  }
  .about-stack-frame,
  .about-stack-lockup { display: none; animation: none !important; }
  .about-stack-stage::after { opacity: 1; animation: none !important; }
  .about-stack-image-copy { opacity: 1; transform: none; animation: none !important; }
}

/* About MJZ — full-section three-act motion sequence */
.about-motion-hero {
  --about-motion-cycle: 7.46s;
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  place-items: center;
  padding: 124px 0 48px;
  background: #efedef;
  overflow: hidden;
  isolation: isolate;
}
.about-motion-stage {
  position: relative;
  width: min(76vw, calc((100svh - 172px) * 1.6), 1600px);
  min-width: 720px;
  aspect-ratio: 8 / 5;
  background: #e7e5e7;
  overflow: hidden;
  isolation: isolate;
}
.about-motion-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 53% 50%;
  filter: saturate(.84) contrast(1.02) brightness(.92);
  transform: scale(1.018);
  animation: about-motion-image-cycle var(--about-motion-cycle) cubic-bezier(.65, 0, .35, 1) infinite;
  will-change: opacity, transform;
}
.about-motion-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5, 14, 20, .08), rgba(5, 14, 20, .34));
  animation: about-motion-photo-shade var(--about-motion-cycle) ease-in-out infinite;
  pointer-events: none;
}
.about-motion-title {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 4;
  width: min(86%, 980px);
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 3vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-align: center;
  text-shadow: 0 3px 24px rgba(0, 0, 0, .38);
  transform: translate(-50%, -50%);
  animation: about-motion-title-cycle var(--about-motion-cycle) ease-in-out infinite;
  will-change: opacity, transform;
}
.about-motion-title span,
.about-motion-title strong { display: block; }
.about-motion-title strong { margin-top: .08em; font-weight: 650; }
.about-motion-photo-logo {
  position: absolute;
  left: 50%;
  bottom: 6%;
  z-index: 4;
  width: clamp(118px, 11vw, 188px);
  height: auto;
  filter: grayscale(1) brightness(0) invert(1);
  transform: translateX(-50%);
  animation: about-motion-photo-logo-cycle var(--about-motion-cycle) ease-in-out infinite;
  will-change: opacity, transform;
}
.about-motion-frames {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.about-motion-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  aspect-ratio: 1;
  border: clamp(24px, 4.1vw, 68px) solid rgba(249, 249, 249, .98);
  box-sizing: border-box;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.06) rotate(-5deg);
  animation: about-motion-frame-cycle var(--about-motion-cycle) cubic-bezier(.76, 0, .24, 1) infinite;
  will-change: opacity, transform;
}
.about-motion-frame-circle { border-radius: 50%; }
.about-motion-frame-square { border-radius: 0; }
.about-motion-frame-one { width: 112%; --about-frame-scale: 1.03; --about-frame-exit: 1.16; }
.about-motion-frame-two { width: 82%; --about-frame-scale: 1; --about-frame-exit: 1.13; animation-delay: 80ms; }
.about-motion-frame-three { width: 57%; --about-frame-scale: .96; --about-frame-exit: 1.08; animation-delay: 160ms; }
.about-motion-frame-four { width: 34%; --about-frame-scale: .92; --about-frame-exit: 1.03; animation-delay: 240ms; }
.about-motion-final {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 0;
  transform: scale(.94);
  animation: about-motion-final-cycle var(--about-motion-cycle) cubic-bezier(.65, 0, .35, 1) infinite;
  will-change: opacity, transform;
}
.about-motion-final-pattern {
  position: relative;
  width: min(52%, 610px);
  aspect-ratio: 1;
  background: #e9e7e8;
  overflow: hidden;
  animation: about-motion-final-pattern-cycle var(--about-motion-cycle) cubic-bezier(.65, 0, .35, 1) infinite;
}
.about-motion-final-pattern > span {
  position: absolute;
  display: block;
}
.about-motion-final-circle { border-radius: 50%; }
.about-motion-final-shape-one { inset: 0; background: #fff; }
.about-motion-final-shape-two { inset: 13%; background: #e9e7e8; }
.about-motion-final-shape-three { inset: 26%; background: #fff; }
.about-motion-final-shape-four { inset: 39%; background: #e9e7e8; }
.about-motion-final-shape-five { inset: 47%; background: #fff; }
.about-motion-final-pattern > img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 43%;
  height: auto;
  padding: 12px 16px;
  background: rgba(255, 255, 255, .94);
  transform: translate(-50%, -50%);
  animation: about-motion-final-logo-cycle var(--about-motion-cycle) ease-in-out infinite;
}

@keyframes about-motion-image-cycle {
  0%, 24% { opacity: 1; transform: scale(1.018); }
  52% { opacity: 1; transform: scale(1); }
  65% { opacity: 1; transform: scale(1.012); }
  70%, 96% { opacity: 0; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1.018); }
}
@keyframes about-motion-photo-shade {
  0%, 22% { opacity: 1; }
  29%, 96% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes about-motion-title-cycle {
  0%, 20% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  27%, 96% { opacity: 0; transform: translate(-50%, -50%) scale(.96); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes about-motion-photo-logo-cycle {
  0%, 19% { opacity: .94; transform: translateX(-50%) translateY(0); }
  26%, 96% { opacity: 0; transform: translateX(-50%) translateY(8px); }
  100% { opacity: .94; transform: translateX(-50%) translateY(0); }
}
@keyframes about-motion-frame-cycle {
  0%, 24% { opacity: 0; transform: translate(-50%, -50%) scale(.06) rotate(-5deg); }
  29% { opacity: 1; }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(var(--about-frame-scale)) rotate(0deg); }
  62% { opacity: 1; transform: translate(-50%, -50%) scale(var(--about-frame-scale)) rotate(0deg); }
  69%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(var(--about-frame-exit)) rotate(1.5deg); }
}
@keyframes about-motion-final-cycle {
  0%, 63% { opacity: 0; transform: scale(.94); }
  70%, 94% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.98); }
}
@keyframes about-motion-final-pattern-cycle {
  0%, 63% { transform: scale(.82) rotate(-2deg); }
  75%, 94% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(.9) rotate(1deg); }
}
@keyframes about-motion-final-logo-cycle {
  0%, 68% { opacity: 0; transform: translate(-50%, -50%) scale(.82); }
  76%, 94% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(.9); }
}

@media (max-width: 820px) {
  .about-motion-hero { min-height: 720px; padding: 112px 20px 48px; }
  .about-motion-stage { width: 100%; min-width: 0; }
  .about-motion-title { font-size: clamp(25px, 5.8vw, 40px); }
  .about-motion-frame { border-width: clamp(16px, 4vw, 34px); }
}

@media (max-width: 540px) {
  .about-motion-hero { min-height: 760px; padding: 106px 16px 42px; }
  .about-motion-stage { aspect-ratio: 4 / 5; }
  .about-motion-image { object-position: 61% 50%; }
  .about-motion-title { width: 88%; font-size: clamp(25px, 8vw, 34px); line-height: 1.12; }
  .about-motion-photo-logo { bottom: 7%; width: 118px; }
  .about-motion-frame { border-width: 18px; }
  .about-motion-final-pattern { width: 72%; }
  .about-motion-final-pattern > img { width: 54%; padding: 9px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-motion-image,
  .about-motion-photo-shade,
  .about-motion-title,
  .about-motion-photo-logo {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .about-motion-title { transform: translate(-50%, -50%); }
  .about-motion-photo-logo { transform: translateX(-50%); }
  .about-motion-frames,
  .about-motion-final { display: none; }
}

/* About MJZ — split hero with a borderless computing-center slice scan */
.about-compute-visual {
  width: min(100%, 620px);
  aspect-ratio: 19 / 20;
  justify-self: end;
  margin: 0;
  overflow: visible;
}
.about-compute-frame {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-compute-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}
.about-compute-image {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 117%;
  display: block;
  object-fit: cover;
  object-position: 74% 0;
  transform-origin: 74% 0;
}
.about-compute-image-base {
  opacity: 0;
  transform: scale(1.018);
}
.about-compute-slice {
  -webkit-clip-path: inset(-1px calc(var(--slice-right) - 1px) -1px calc(var(--slice-left) - 1px));
  clip-path: inset(-1px calc(var(--slice-right) - 1px) -1px calc(var(--slice-left) - 1px));
  opacity: 0;
  filter: none;
  transform: translate3d(0, var(--slice-enter), 0) scale(1.045);
  animation: about-compute-slice-scan 7.4s cubic-bezier(.22, 1, .36, 1) infinite;
  animation-delay: calc(var(--slice-index) * 110ms);
  backface-visibility: hidden;
}
@keyframes about-compute-slice-scan {
  0%, 10% {
    opacity: 0;
    transform: translate3d(0, var(--slice-enter), 0) scale(1.045);
  }
  29%, 74% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.018);
  }
  92%, 100% {
    opacity: 0;
    transform: translate3d(0, var(--slice-exit), 0) scale(1.035);
  }
}
@media (max-width: 1180px) {
  .about-compute-visual { width: min(100%, 620px); justify-self: center; aspect-ratio: 19 / 20; }
}
@media (max-width: 540px) {
  .about-compute-visual { aspect-ratio: 19 / 20; }
}
@media (prefers-reduced-motion: reduce) {
  .about-compute-image-base { opacity: 1; filter: none; transform: scale(1.018); }
  .about-compute-slice { display: none; }
}

/* Documentation — restrained code typing and indexed package motion */
@media (min-width: 1181px) {
  .docs-page-hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(450px, .75fr);
    gap: clamp(32px, 3vw, 50px);
  }
}
.docs-page-hero .page-hero-copy { min-width: 0; container-type: inline-size; }
.docs-hero-title span,
.docs-hero-title em { display: block; }
.docs-hero-title em { margin-top: .18em; }
html[lang="zh-CN"] .docs-page-hero .page-hero-copy-long h1 {
  max-width: 100%;
  font-size: clamp(24px, 7.8cqi, 78px) !important;
  line-height: 1 !important;
  letter-spacing: -.045em !important;
  white-space: nowrap;
  overflow-wrap: normal;
}
@media (max-width: 820px) {
  html[lang="zh-CN"] .docs-page-hero .page-hero-copy-long h1 {
    font-size: clamp(31px, 8.2vw, 46px) !important;
    white-space: normal;
  }
}
.docs-terminal code {
  position: relative;
  color: inherit;
  font: inherit;
  white-space: pre;
}
.docs-terminal code.is-typing::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.15em;
  margin-left: 3px;
  background: #37788f;
  vertical-align: -.15em;
  animation: docs-caret .72s steps(1, end) infinite;
}
.code-token-keyword { color: #7b65d8; }
.code-token-function { color: #317dcc; }
.code-token-property { color: #aa5c97; }
.code-token-string { color: #25846b; }
.code-token-comment { color: #4e9ab3; font-style: italic; }

.doc-package-list[data-doc-index] { position: relative; overflow: hidden; }
.doc-package-list[data-doc-index]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 2px;
  height: calc(100% - 78px);
  background: linear-gradient(180deg, transparent, #4c9ab4 12%, #557cf3 52%, #4c9ab4 88%, transparent);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.doc-package-list[data-doc-index] > span {
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  transition: color .3s ease, background .3s ease, padding-left .36s var(--spring);
}
.doc-package-list[data-doc-index] > span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, #4b8fa8, #557cf3, transparent 72%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.doc-package-list[data-doc-index].is-index-active::before { animation: docs-index-scan 1.45s var(--ease) both; }
.doc-package-list[data-doc-index].is-index-active > span {
  animation: docs-index-row .62s var(--spring) both;
  animation-delay: calc(var(--doc-row) * 95ms + 120ms);
}
@media (hover: hover) and (pointer: fine) {
  .doc-package-list[data-doc-index] > span:hover {
    color: #173541;
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(112, 189, 211, .09), transparent 62%);
  }
  .doc-package-list[data-doc-index] > span:hover::after { transform: scaleX(1); }
  .doc-package-list[data-doc-index] > span:hover b { color: #557cf3; }
}

@keyframes docs-caret { 0%, 52% { opacity: 1; } 53%, 100% { opacity: 0; } }
@keyframes docs-index-scan {
  0% { opacity: 0; transform: translateY(-100%); }
  14%, 84% { opacity: .8; }
  100% { opacity: 0; transform: translateY(100%); }
}
@keyframes docs-index-row {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Privacy — editorial policy page, aligned to the existing MJZ system */
.privacy-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .55fr);
  align-items: end;
  gap: clamp(56px, 8vw, 146px);
  padding: 190px var(--pad) 104px;
  color: #132029;
  background:
    radial-gradient(circle at 78% 26%, rgba(112, 189, 211, .14), transparent 28%),
    var(--paper);
  overflow: hidden;
}
.privacy-hero > *:not(canvas) { position: relative; z-index: 1; }
.privacy-hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(68px, 8vw, 132px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.06em;
}
.privacy-hero-copy > p:last-child {
  max-width: 720px;
  margin: 38px 0 0;
  color: #58707b;
  font-size: 17px;
  line-height: 1.8;
}
.privacy-meta { margin: 0; border-top: 1px solid #bdced5; }
.privacy-meta div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #bdced5;
}
.privacy-meta dt {
  color: #4b8296;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}
.privacy-meta dd { margin: 0; color: #344b55; font-size: 13px; line-height: 1.55; }
.privacy-meta a { color: inherit; text-decoration: underline; text-underline-offset: 4px; }
.privacy-layout {
  display: grid;
  grid-template-columns: minmax(220px, .35fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 180px);
  padding: clamp(90px, 9vw, 150px) var(--pad) clamp(120px, 11vw, 190px);
  background: #fff;
}
.privacy-index {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  border-top: 1px solid #c7d4da;
}
.privacy-index > p { padding: 20px 0; border-bottom: 1px solid #c7d4da; }
.privacy-index a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 16px 0;
  color: #627781;
  border-bottom: 1px solid #d8e0e4;
  font-size: 12px;
  line-height: 1.5;
  transition: color .3s ease, padding-left .3s var(--spring);
}
.privacy-index a b { color: #4b8296; font-family: var(--mono); font-size: 8px; font-weight: 500; }
.privacy-index a:hover,
.privacy-index a:focus-visible { color: #152831; padding-left: 7px; }
.privacy-content { border-top: 1px solid #c7d4da; }
.privacy-content > section {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 34px;
  padding: clamp(44px, 5vw, 76px) 0;
  border-bottom: 1px solid #c7d4da;
  scroll-margin-top: 120px;
}
.privacy-content > section > span {
  color: #4c8297;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
}
.privacy-content h2 {
  margin: 0;
  color: #152831;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.privacy-content p {
  max-width: 900px;
  margin: 24px 0 0;
  color: #586d77;
  font-size: 15px;
  line-height: 1.9;
}
.privacy-content a { color: #2e728b; text-decoration: underline; text-underline-offset: 4px; }
.footer-policy {
  justify-self: center;
  color: #8ea0aa;
  transition: color .25s ease;
}
.footer-policy:hover,
.footer-policy:focus-visible,
.footer-policy.is-active { color: #fff; }
.form-submit [data-form-status] a { color: #88d6ec; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1180px) {
  .privacy-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 170px; }
  .privacy-meta { max-width: 700px; }
}
@media (max-width: 820px) {
  .privacy-layout { grid-template-columns: 1fr; gap: 64px; }
  .privacy-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .privacy-index > p { grid-column: 1 / -1; }
  .privacy-index a:nth-child(even) { border-right: 1px solid #d8e0e4; padding-right: 16px; }
  .privacy-index a:nth-child(odd) { padding-left: 16px; }
}
@media (max-width: 540px) {
  .privacy-hero { padding: 136px 20px 76px; }
  .privacy-hero-copy h1 { font-size: clamp(58px, 18vw, 84px); }
  .privacy-hero-copy > p:last-child { font-size: 15px; }
  .privacy-meta div { grid-template-columns: 78px minmax(0, 1fr); }
  .privacy-layout { padding: 76px 20px 110px; }
  .privacy-index { grid-template-columns: 1fr; }
  .privacy-index a:nth-child(even),
  .privacy-index a:nth-child(odd) { padding-inline: 0; border-right: 0; }
  .privacy-content > section { grid-template-columns: 1fr; gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .docs-terminal code.is-typing::after,
  .doc-package-list[data-doc-index]::before { animation: none !important; }
  .doc-package-list[data-doc-index] > span { opacity: 1; transform: none; animation: none !important; }
}

/* Unified light surfaces — one calm visual system across every public page. */
html,
body,
main { background: #f7fafb; }

.section-dark,
.section-light {
  color: #132029;
  background: #f7fafb;
}

.section-dark .site-display-title,
.section-light .site-display-title { color: #132029; }

.section-dark .section-heading > p:last-child,
.section-dark .site-heading-subtitle { color: #566b76; }

.capabilities.section-light {
  background:
    radial-gradient(circle at 82% 12%, rgba(112, 189, 211, .11), transparent 28%),
    #f7fafb;
}
.capabilities.section-light .capability-console {
  color: #172a33;
  border-color: #c8d5da;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 26px 68px rgba(43, 78, 94, .1);
}
.capabilities.section-light .capability-row {
  color: #49606b;
  border-color: #d1dce1;
  background: rgba(255, 255, 255, .7);
}
.capabilities.section-light .capability-row::after {
  background: linear-gradient(90deg, rgba(112, 189, 211, .16), rgba(238, 247, 250, .42) 70%);
}
.capabilities.section-light .capability-row:hover,
.capabilities.section-light .capability-row:focus-visible,
.capabilities.section-light .capability-row.is-active { color: #132029; }
.capabilities.section-light .capability-row span { color: #37788f; }
.capabilities.section-light .capability-detail {
  color: #172a33;
  border-color: #c8d5da;
  background: linear-gradient(145deg, rgba(238, 247, 250, .9), rgba(255, 255, 255, .98));
}
.capabilities.section-light .detail-index { color: #37788f; }
.capabilities.section-light .detail-label { color: #607681; }
.capabilities.section-light .capability-detail > p:not(.detail-label) { color: #536872; }
.capabilities.section-light .detail-tags span { color: #526a75; border-color: #c5d4da; background: rgba(255, 255, 255, .62); }

.philippines-detail.section-light {
  background:
    radial-gradient(circle at 18% 18%, rgba(112, 189, 211, .1), transparent 30%),
    #f7fafb;
}
.philippines-detail.section-light .solution-intro > p { color: #566b76; }
.philippines-detail.section-light .journey-console {
  overflow: hidden;
  color: #172a33;
  border-color: #c3d2d9;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 28px 72px rgba(43, 78, 94, .1);
}
.philippines-detail.section-light .journey-header,
.philippines-detail.section-light .journey-step,
.philippines-detail.section-light .journey-result { border-color: #d0dce1; }
.philippines-detail.section-light .journey-toggle { border-color: #c5d4da; }
.philippines-detail.section-light .journey-toggle button { color: #58707b; border-color: #c5d4da; }
.philippines-detail.section-light .journey-toggle button:hover,
.philippines-detail.section-light .journey-toggle button:focus-visible,
.philippines-detail.section-light .journey-toggle button.is-active { color: #102029; background: #bfe6f0; }
.philippines-detail.section-light .journey-line { background: #c8d8df; }
.philippines-detail.section-light .journey-step > span { color: #607681; border-color: #a9c2cd; background: #fff; }
.philippines-detail.section-light .journey-step.is-live > span { color: #287d99; border-color: #5fa9c2; }
.philippines-detail.section-light .journey-step small { color: #607681; }
.philippines-detail.section-light .journey-step p,
.philippines-detail.section-light .journey-result p { color: #536872; }
.philippines-detail.section-light .journey-result a { color: #17303b; }

.bank-compare article:last-child { background: #edf5f8; }
.bank-compare article:last-child span { color: #37788f; }
.bank-compare article:last-child b { color: #172a33; }
.bank-compare article:last-child p { color: #536872; }

.product-map {
  background: linear-gradient(145deg, #edf5f8, #f9fbfc);
}
.product-map::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(85, 124, 243, .09), transparent 36%),
    linear-gradient(rgba(57, 103, 123, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 103, 123, .065) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}
.product-lines path { stroke: rgba(65, 119, 138, .27); }
.product-core {
  border-color: #80afc0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 0 0 12px rgba(112, 189, 211, .05), 0 0 0 42px rgba(85, 124, 243, .035), 0 22px 64px rgba(43, 78, 94, .16);
}
.product-core b { color: #172a33; }
.product-node {
  color: #49606b;
  border-color: #bfd0d7;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 26px rgba(43, 78, 94, .07);
}
.product-node:hover,
.product-node:focus-visible,
.product-node.is-active { color: #172a33; }
.product-node.is-active { border-color: #5fa9c2; background: #e7f4f8; box-shadow: 0 14px 30px rgba(62, 112, 132, .14); }

.future-projects.section-light {
  color: #132029;
  background:
    radial-gradient(circle at 86% 18%, rgba(85, 124, 243, .08), transparent 30%),
    #f7fafb;
}
.future-projects.section-light::before {
  background-image:
    linear-gradient(rgba(57, 103, 123, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 103, 123, .05) 1px, transparent 1px);
}
.future-projects.section-light .future-heading > p { color: #566b76; }
.future-projects.section-light .future-grid { border-color: #c8d5da; }
.future-projects.section-light .future-grid article { border-color: #c8d5da; background: rgba(255, 255, 255, .72); }
.future-projects.section-light .future-grid article:hover { border-color: #9bbbc7; background: #fff; }
.future-projects.section-light .future-grid span { color: #37788f; }
.future-projects.section-light .future-grid b { color: #172a33; }
.future-projects.section-light .future-grid article > p { color: #536872; }
.future-projects.section-light .future-grid small { color: #687e88; border-color: #d0dce1; }

.site-footer {
  color: #627781;
  border-color: #d1dce1;
  background: #f7fafb;
}
.site-footer .footer-brand img { filter: none; opacity: .86; }
.footer-policy { color: #627781; }
.footer-policy:hover,
.footer-policy:focus-visible,
.footer-policy.is-active { color: #132029; }

/* One continuous cool-light canvas, separated only by quiet module rules. */
:root {
  --site-surface: #f3f7f9;
  --site-section-rule: rgba(57, 103, 123, .2);
}

html,
body,
main,
main > section,
.home-hero-parallax,
.site-footer {
  background-color: var(--site-surface) !important;
}

main > section,
.home-hero-parallax {
  background-image: none !important;
}

main > section + section,
main > astro-island + section,
.site-footer {
  border-top: 1px solid var(--site-section-rule);
}

.site-footer {
  background-image: none !important;
}

@media (max-width: 820px) {
  .site-header-light .site-nav {
    border-top: 1px solid #d1dce1;
    color: #132029;
    background: rgba(255, 255, 255, .985);
  }
  .site-header-light .site-nav a { color: #536872; }
  .site-header-light .site-nav a:hover,
  .site-header-light .site-nav a:focus-visible,
  .site-header-light .site-nav a.is-active,
  .site-header-light .site-nav a[aria-current="page"] { color: #132029; }
}

/* Secondary-module display headings: two type-scale steps below the originals.
   The sibling scope also handles the Chinese homepage's Astro-island hero. */
:root {
  --section-title-scale: .8;
  --section-display-size: clamp(44px, 4.4vw, 74px);
}

:where(main > section ~ section, main > astro-island ~ section) :is(
  h2.site-display-title,
  .compact-heading h2,
  .home-closing h2,
  .capability-detail h3,
  .product-detail h3,
  .product-tab-intro h3,
  .bank-question h3,
  .direction-roadmap h3,
  .future-grid b,
  .question-list h3,
  .privacy-content h2
) {
  font-size: calc(var(--section-heading-base, var(--section-display-size)) * var(--section-title-scale)) !important;
}

.compact-heading h2 { --section-heading-base: clamp(44px, 4.4vw, 74px); }
.home-closing h2 { --section-heading-base: clamp(20px, 4.4vw, 74px); }
.capability-detail h3 { --section-heading-base: clamp(31px, 3vw, 52px); }
.product-detail h3 { --section-heading-base: clamp(34px, 3.2vw, 58px); }
.product-tab-intro h3,
.bank-question h3 { --section-heading-base: clamp(38px, 4vw, 68px); }
.direction-roadmap h3 { --section-heading-base: clamp(27px, 3vw, 46px); }
.future-grid b { --section-heading-base: clamp(30px, 3vw, 48px); }
.question-list h3 { --section-heading-base: clamp(28px, 3vw, 46px); }
.privacy-content h2 { --section-heading-base: clamp(31px, 3vw, 48px); }

@media (max-width: 820px) {
  :root { --section-display-size: clamp(42px, 10.5vw, 64px); }
}

@media (max-width: 540px) {
  :root { --section-display-size: clamp(38px, 10.8vw, 52px); }
  .capability-detail h3 { --section-heading-base: 32px; }
  .product-detail h3,
  .product-tab-intro h3 { --section-heading-base: 36px; }
}
