:root {
  --navy: #071225;
  --navy-2: #0a1832;
  --navy-3: #0d1d3a;
  --blue: #1d4ed8;
  --blue-strong: #0037b0;
  --blue-light: #b7c4ff;
  --blue-pale: #dce1ff;
  --paper: #faf8ff;
  --surface: #ffffff;
  --surface-low: #f3f2fe;
  --ink: #1a1b23;
  --ink-soft: #434655;
  --slate: #747686;
  --line: #c4c5d7;
  --line-soft: rgba(196, 197, 215, 0.58);
  --white: #ffffff;
  --font-sans: "IBM Plex Sans", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;
  --font-data: Inter, Arial, sans-serif;
  --header-height: 76px;
  --shell: 1280px;
  --radius: 4px;
  --section-space: clamp(88px, 9vw, 144px);
  --ease: cubic-bezier(.22, .72, .24, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--blue);
  transform: translateY(-160%);
  transition: transform .18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid #7197ff;
  outline-offset: 3px;
}

.shell {
  width: min(100% - 80px, var(--shell));
  margin-inline: auto;
}

.section-pad {
  position: relative;
  padding-block: var(--section-space);
}

.section-light {
  position: relative;
  color: var(--ink);
  background: var(--surface);
}

.section-paper {
  position: relative;
  color: var(--ink);
  background: var(--paper);
}

.section-dark {
  position: relative;
  color: var(--white);
  background: var(--navy);
}

.blueprint,
.blueprint-light {
  isolation: isolate;
  overflow: hidden;
}

.blueprint::before,
.blueprint-light::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(183, 196, 255, .07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(183, 196, 255, .055) 1px, transparent 1px);
  background-size: 52px 52px;
}

.blueprint-light::before {
  background-image:
    linear-gradient(to right, rgba(84, 94, 117, .085) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(84, 94, 117, .07) 1px, transparent 1px);
}

.blueprint::after,
.blueprint-light::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(29, 78, 216, .045) 50%, transparent 100%);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.core-mark {
  width: 34px;
  height: 34px;
  color: currentColor;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--blue-light);
}

.eyebrow-outline {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  padding: 7px 10px;
  color: var(--blue-light);
  border: 1px solid rgba(183, 196, 255, .34);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.section-heading-wide {
  max-width: 930px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.solution-heading h2,
.compliance-intro h2,
.ecosystem-intro h2,
.vivo-copy h2,
.roadmap-copy h2 {
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.section-heading-center h2 em,
.vivo-copy h2 em {
  color: var(--blue);
  font-style: normal;
}

.section-subtitle {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.section-subtitle-dark {
  color: rgba(240, 240, 251, .68);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button-primary:hover {
  background: #2a5adf;
  border-color: #2a5adf;
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .015);
  border-color: rgba(196, 197, 215, .34);
}

.button-ghost:hover {
  border-color: rgba(183, 196, 255, .72);
  background: rgba(183, 196, 255, .07);
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button-small {
  min-height: 40px;
  padding: 8px 13px;
  font-size: 11px;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 18, 37, .82), rgba(7, 18, 37, .34));
  border-bottom: 1px solid rgba(196, 197, 215, .09);
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(7, 18, 37, .94);
  border-color: rgba(196, 197, 215, .16);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-name {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.primary-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.primary-navigation a {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 400;
  transition: color .2s ease;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-navigation a:hover,
.primary-navigation a.is-active {
  color: var(--white);
}

.primary-navigation a:hover::after,
.primary-navigation a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .38);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1;
}

.language-switcher button {
  padding: 5px 2px;
  color: rgba(255, 255, 255, .46);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .2s ease;
}

.language-switcher button:hover,
.language-switcher button[aria-pressed="true"] {
  color: var(--white);
}

.mobile-nav-actions {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(196, 197, 215, .28);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-close {
  display: block;
}

/* Hero */
.hero {
  min-height: 850px;
  padding-top: var(--header-height);
  border-bottom: 1px solid rgba(196, 197, 215, .15);
}

.hero-shell {
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
  padding-block: 84px 62px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 590px;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.05em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(240, 240, 251, .77);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 38px;
  color: rgba(240, 240, 251, .52);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof span {
  position: relative;
  padding: 0 18px;
}

.hero-proof span:first-child {
  padding-left: 0;
}

.hero-proof span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(196, 197, 215, .22);
  background: rgba(2, 11, 27, .42);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  content: "";
  pointer-events: none;
}

.hero-visual::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
}

.hero-visual::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.hero-visual-grid {
  position: absolute;
  inset: 0;
  opacity: .44;
  background-image:
    linear-gradient(to right, rgba(183, 196, 255, .08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(183, 196, 255, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}

.hero-rail-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-rail-lines .rail {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero-rail-lines .rail-muted {
  stroke: rgba(116, 141, 204, .22);
  stroke-width: 1;
}

.hero-rail-lines .rail-active {
  stroke: url(#heroRailGradient);
  stroke-width: 1;
  stroke-dasharray: 4 8;
  animation: rail-dash 18s linear infinite;
}

.hero-rail-lines .rail-two {
  animation-duration: 14s;
  animation-direction: reverse;
}

.hero-rail-lines .rail-three {
  animation-duration: 20s;
}

.hero-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: flex;
  width: 210px;
  height: 170px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--blue-light);
  background: radial-gradient(circle at center, rgba(29, 78, 216, .18), rgba(7, 18, 37, .9) 68%);
  border: 1px solid rgba(29, 78, 216, .72);
  transform: translate(-50%, -50%);
}

.hero-core::before,
.hero-core::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(29, 78, 216, .13);
}

.hero-core::after {
  inset: -14px;
  border-color: rgba(183, 196, 255, .07);
}

.hero-core .core-mark,
.hero-core span,
.hero-core small {
  position: relative;
  z-index: 2;
}

.hero-core span {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-core small {
  color: rgba(183, 196, 255, .58);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rail-label {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: rgba(240, 240, 251, .82);
  background: rgba(7, 18, 37, .9);
  border: 1px solid rgba(196, 197, 215, .28);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rail-label .icon {
  width: 13px;
  height: 13px;
  color: var(--blue-light);
}

.label-send { top: 18%; left: 10%; }
.label-receive { bottom: 16%; left: 8%; }
.label-fx { top: 50%; left: 13%; transform: translateY(-50%); }
.label-convert { top: 18%; right: 9%; }
.label-settle { right: 8%; bottom: 16%; }
.label-ramp { top: 50%; right: 12%; transform: translateY(-50%); }

.hero-microcopy {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  color: rgba(183, 196, 255, .4);
  border-top: 1px solid rgba(196, 197, 215, .12);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
}

/* Operations */
.operations {
  overflow-x: hidden;
  overflow-x: clip;
  border-bottom: 1px solid rgba(196, 197, 215, .72);
}

.operations-shell {
  min-height: 900px;
}

.operations-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 500;
}

.operations-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.operations-heading {
  max-width: 980px;
  margin: 22px auto 0;
  text-align: center;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 7px 11px;
  color: var(--ink-soft);
  background: #f7f8fb;
  border: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.live-label > span:first-child {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(29, 78, 216, .08);
  animation: live-pulse 2.2s ease-in-out infinite;
}

.operations-heading .eyebrow {
  margin-bottom: 10px;
  color: var(--slate);
}

.volume-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
}

.volume-line .currency {
  color: var(--blue-strong);
  font-family: var(--font-data);
  font-size: clamp(18px, 2.1vw, 28px);
  font-weight: 500;
}

.volume-line strong {
  color: #24272d;
  font-family: var(--font-data);
  font-size: clamp(54px, 8.8vw, 116px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.055em;
  font-variant-numeric: tabular-nums;
}

.operations-subtitle {
  margin: 20px auto 0;
  font-size: 16px;
}

.operations-flow {
  position: relative;
  width: min(100%, 1040px);
  height: 280px;
  margin: 88px auto 40px;
}

.operations-flow > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-base,
.flow-active {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.flow-base {
  stroke: rgba(116, 118, 134, .27);
  stroke-width: 1;
}

.flow-active {
  stroke: var(--blue);
  stroke-width: 2;
  stroke-dasharray: 10 13;
  animation: rail-dash 18s linear infinite reverse;
}

.flow-packet {
  filter: drop-shadow(0 0 4px rgba(29, 78, 216, .55));
}

.flow-node {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.flow-node i {
  width: 17px;
  height: 17px;
  background: var(--white);
  border: 2px solid var(--slate);
  border-radius: 50%;
}

.node-origin { top: 147px; left: 3.2%; transform: translate(-50%, -50%); }
.node-processing { top: 68px; left: 39%; transform: translate(-50%, -50%); color: var(--blue-strong); }
.node-processing i,
.node-confirmation i { border-color: var(--blue); }
.node-confirmation { top: 211px; left: 73%; transform: translate(-50%, -50%); color: var(--blue-strong); }
.node-destination { top: 137px; right: 3.3%; transform: translate(50%, -50%); }
.node-destination i { background: var(--blue-strong); border-color: var(--blue-strong); }

.metrics-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.metric {
  display: flex;
  min-height: 102px;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.metric span {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metric strong {
  color: var(--ink);
  font-family: var(--font-data);
  font-size: 18px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Problem */
.problem-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  position: relative;
  min-height: 320px;
  padding: 34px 28px 30px;
  background: rgba(250, 248, 255, .72);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color .22s ease, transform .22s ease;
}

.problem-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-4px);
}

.problem-card::before {
  position: absolute;
  top: -5px;
  left: 28px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--paper);
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.problem-card:nth-child(3)::before {
  border-color: var(--ink);
  box-shadow: 0 0 0 8px var(--paper);
}

.card-index,
.step-number {
  margin-bottom: 42px;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
}

.problem-card .feature-icon {
  margin-bottom: 24px;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 500;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* Solution */
.solution {
  min-height: 760px;
}

.solution-heading {
  max-width: 930px;
  margin-bottom: 100px;
}

.solution-heading .eyebrow {
  margin-bottom: 22px;
}

.solution-rail {
  position: relative;
  display: grid;
  max-width: 1080px;
  min-height: 190px;
  margin-inline: auto;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.solution-line {
  position: absolute;
  top: 65px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: rgba(183, 196, 255, .28);
}

.solution-line::before,
.solution-line::after {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue-light);
  border-radius: 50%;
}

.solution-line::before { left: 0; }
.solution-line::after { right: 0; }

.solution-packet {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(183, 196, 255, .9);
  animation: line-packet 5s linear infinite;
}

.solution-node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  color: rgba(240, 240, 251, .74);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.node-circle {
  display: flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  background: var(--navy);
  border: 1px solid rgba(183, 196, 255, .38);
  transition: color .22s ease, border-color .22s ease, background-color .22s ease;
}

.solution-node:hover .node-circle {
  color: var(--white);
  background: var(--navy-2);
  border-color: var(--blue);
}

.system-status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 18px;
  margin: 54px auto 0;
  padding: 10px 14px;
  color: rgba(240, 240, 251, .42);
  border: 1px solid rgba(196, 197, 215, .18);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.system-status strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-light);
  font-weight: 500;
}

.system-status i,
.table-toolbar > span:first-child i,
.service-status i,
.engine-header strong i,
.map-status i {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, .13);
}

/* How it works */
.compliance-envelope {
  position: relative;
  padding: 72px 26px 26px;
  border: 1px solid rgba(29, 78, 216, .58);
  background: linear-gradient(180deg, rgba(220, 225, 255, .17), transparent 45%);
}

.envelope-label {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--blue-strong);
  background: var(--blue-pale);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.envelope-label .icon {
  width: 17px;
  height: 17px;
}

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps-rail {
  position: absolute;
  z-index: 1;
  top: 111px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(29, 78, 216, .24);
}

.step-card {
  position: relative;
  min-height: 260px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
}

.step-card::before {
  position: absolute;
  top: 37px;
  right: -10px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  transform: translateX(50%);
}

.step-card:last-child::before {
  display: none;
}

.step-number {
  margin-bottom: 28px;
  color: var(--blue-strong);
}

.step-card .feature-icon {
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

/* Capabilities */
.capability-architecture {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}

.capability-architecture::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(29, 78, 216, .28);
}

.capability-layer {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 32px;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.capability-layer::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: rgba(116, 118, 134, .22);
}

.layer-label {
  position: absolute;
  z-index: 3;
  top: -13px;
  left: 50%;
  padding: 4px 9px;
  color: var(--slate);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.capability-card,
.capability-core-card {
  position: relative;
  min-height: 190px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line-soft);
  transition: border-color .22s ease, transform .22s ease, background-color .22s ease;
}

.capability-card:hover {
  background: var(--white);
  border-color: rgba(29, 78, 216, .55);
  transform: translateY(-3px);
}

.capability-card::after,
.capability-core-card::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--paper);
  border: 2px solid var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.capability-card:nth-child(4)::after {
  right: auto;
  left: -5px;
}

.capability-layer > article:last-child::after {
  right: auto;
  left: -5px;
}

.capability-card .feature-icon {
  margin-bottom: 28px;
}

.capability-card h3,
.capability-core-card h3 {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 500;
}

.capability-card p,
.capability-core-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.capability-core-card {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
  background: var(--navy);
  border-color: rgba(29, 78, 216, .7);
}

.capability-core-card .core-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  color: var(--blue-light);
}

.capability-core-card p {
  color: rgba(240, 240, 251, .52);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.core-signal {
  display: flex;
  gap: 5px;
  margin-top: 20px;
}

.core-signal span {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  animation: signal 1.8s ease-in-out infinite;
}

.core-signal span:nth-child(2) { animation-delay: .25s; }
.core-signal span:nth-child(3) { animation-delay: .5s; }

/* Compliance */
.compliance-intro {
  display: grid;
  margin-bottom: 62px;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  align-items: end;
  gap: 70px;
}

.compliance-intro h2 {
  margin-bottom: 0;
}

.compliance-intro .section-subtitle {
  max-width: 650px;
}

.regulatory-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
}

.table-toolbar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 18px;
  color: var(--slate);
  background: #f8f8fc;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.table-status .icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.table-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
}

.regulatory-card table {
  width: 100%;
  min-width: 870px;
  border-collapse: collapse;
  font-family: var(--font-data);
  font-size: 13px;
}

.regulatory-card th,
.regulatory-card td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
}

.regulatory-card th {
  color: var(--slate);
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.regulatory-card tbody tr:last-child td {
  border-bottom: 0;
}

.regulatory-card tbody tr {
  transition: background-color .18s ease;
}

.regulatory-card tbody tr:hover {
  background: rgba(220, 225, 255, .18);
}

.regulatory-card td:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.regulatory-card td strong {
  font-weight: 500;
}

.entity-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--blue-pale);
}

.entity-icon .icon {
  width: 14px;
  height: 14px;
}

.license-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.license-badge {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 3px 7px;
  color: var(--ink-soft);
  background: #eff0f5;
  border: 1px solid #d9dae2;
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .06em;
}

.license-badge-blue {
  color: var(--blue-strong);
  background: var(--blue-pale);
  border-color: rgba(29, 78, 216, .25);
}

/* Coverage */
.coverage-layout {
  display: grid;
  grid-template-columns: minmax(350px, .75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 6vw, 86px);
  align-items: stretch;
}

.coverage-copy {
  padding-right: clamp(0px, 2vw, 28px);
}

.coverage-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(37px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.regions-list {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line-soft);
}

.regions-list article {
  display: grid;
  padding: 20px 0;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.regions-list article > span {
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
}

.regions-list h3 {
  margin-bottom: 5px;
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.regions-list article:nth-child(n+3) h3 {
  color: var(--ink-soft);
}

.regions-list p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.coverage-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.coverage-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.coverage-legend i {
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.coverage-legend .legend-partner {
  background: repeating-linear-gradient(90deg, var(--slate) 0 5px, transparent 5px 9px);
}

.coverage-map {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(29, 78, 216, .2);
  background: var(--navy);
  overflow: hidden;
}

.coverage-map > svg {
  width: 100%;
  height: 100%;
  min-height: 620px;
}

.coverage-routes path {
  stroke-dashoffset: 0;
  animation: map-route 18s linear infinite;
}

.coverage-routes path:nth-child(n+3) {
  animation-direction: reverse;
}

.map-nodes circle {
  animation: map-node 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.map-nodes circle:nth-child(2) { animation-delay: .4s; }
.map-nodes circle:nth-child(3) { animation-delay: .8s; }
.map-nodes circle:nth-child(4) { animation-delay: 1.2s; }

.map-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: rgba(240, 240, 251, .72);
  background: rgba(7, 18, 37, .84);
  border: 1px solid rgba(183, 196, 255, .2);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Institutions */
.institutions {
  border-top: 1px solid rgba(196, 197, 215, .1);
}

.pillar-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  display: flex;
  min-height: 530px;
  padding: 28px;
  flex-direction: column;
  background: rgba(10, 24, 50, .76);
  border: 1px solid rgba(196, 197, 215, .2);
  transition: border-color .22s ease, transform .22s ease;
}

.pillar-card:hover {
  border-color: rgba(29, 78, 216, .75);
  transform: translateY(-4px);
}

.pillar-card-featured {
  background: linear-gradient(180deg, rgba(14, 36, 79, .9), rgba(10, 24, 50, .82));
  border-color: rgba(29, 78, 216, .66);
}

.pillar-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  color: rgba(240, 240, 251, .42);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.pillar-topline .feature-icon {
  color: var(--blue-light);
}

.pillar-card h3 {
  max-width: 330px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.pillar-kicker {
  margin-bottom: 30px;
  color: var(--blue-light);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 17px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(240, 240, 251, .7);
  font-size: 13px;
  line-height: 1.6;
}

.check-list .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: #5f85ed;
}

.pillar-card footer {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(240, 240, 251, .38);
  border-top: 1px solid rgba(196, 197, 215, .14);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.pillar-base-rail {
  position: relative;
  display: grid;
  width: calc(100% - 19%);
  height: 50px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(183, 196, 255, .22);
}

.pillar-base-rail span {
  position: relative;
  display: block;
  width: 1px;
  height: 100%;
  margin-inline: auto;
  background: rgba(183, 196, 255, .22);
}

.pillar-base-rail span::after {
  position: absolute;
  bottom: -4px;
  left: -3px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

/* Platform & service */
.service-tone {
  background: #061020;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.service-column-header {
  min-height: 82px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 197, 215, .16);
}

.service-column-header > span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.service-column-header .icon {
  color: var(--blue-light);
}

.service-column-header small {
  color: rgba(183, 196, 255, .52);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 132px;
  padding: 23px;
  grid-template-columns: 30px 1fr;
  gap: 18px;
  background: rgba(10, 24, 50, .72);
  border: 1px solid rgba(196, 197, 215, .16);
  transition: border-color .22s ease, background-color .22s ease;
}

.service-card:hover {
  background: rgba(13, 29, 58, .9);
  border-color: rgba(29, 78, 216, .55);
}

.service-card::after {
  position: absolute;
  top: 50%;
  right: -17px;
  width: 16px;
  height: 1px;
  content: "";
  background: rgba(183, 196, 255, .22);
}

.service-card-human::after {
  right: auto;
  left: -17px;
}

.service-card .feature-icon {
  color: var(--blue-light);
}

.service-card h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(240, 240, 251, .58);
  font-size: 13px;
  line-height: 1.65;
}

.service-core {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.service-core > span {
  width: 1px;
  flex: 1;
  background: linear-gradient(transparent, rgba(29, 78, 216, .6));
}

.service-core > span:last-child {
  background: linear-gradient(rgba(29, 78, 216, .6), transparent);
}

.service-core svg {
  width: 52px;
  height: 52px;
  padding: 11px;
  color: var(--blue-light);
  background: var(--navy);
  border: 1px solid var(--blue);
}

.service-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  padding: 9px 11px;
  color: rgba(240, 240, 251, .44);
  border: 1px solid rgba(196, 197, 215, .16);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Stack */
.stack-diagram {
  max-width: 1160px;
  margin-inline: auto;
  padding: 44px 0;
}

.stack-label {
  margin-bottom: 25px;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.partner-row span {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 15px;
  color: var(--ink-soft);
  background: var(--white);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-data);
  font-size: 13px;
  text-align: center;
}

.partner-row-top span::after,
.partner-row-bottom span::before {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 34px;
  content: "";
  background: var(--line);
}

.partner-row-top span::after { top: 100%; }
.partner-row-bottom span::before { bottom: 100%; }

.stack-core-line {
  display: grid;
  min-height: 170px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stack-core-line > i {
  height: 1px;
  background: var(--blue);
}

.stack-core-node {
  display: flex;
  width: 180px;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--blue-strong);
  background: var(--white);
  border: 1px solid var(--blue);
}

.stack-core-node .core-mark {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}

.stack-core-node strong {
  font-size: 22px;
  font-weight: 500;
}

.stack-core-node span {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.stack-label-bottom {
  margin: 25px 0 0;
}

/* OTC */
.otc-layout {
  display: grid;
  grid-template-columns: minmax(260px, .52fr) minmax(0, 1.48fr);
  gap: 22px;
}

.otc-criteria {
  display: grid;
  gap: 14px;
}

.otc-criteria article {
  display: grid;
  min-height: 130px;
  padding: 24px;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  background: rgba(10, 24, 50, .78);
  border: 1px solid rgba(196, 197, 215, .18);
  transition: border-color .2s ease, transform .2s ease;
}

.otc-criteria article:hover {
  border-color: rgba(29, 78, 216, .7);
  transform: translateX(4px);
}

.otc-criteria .feature-icon {
  color: var(--blue-light);
}

.otc-criteria h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.otc-criteria p {
  margin-bottom: 0;
  color: rgba(240, 240, 251, .58);
  font-size: 13px;
  line-height: 1.65;
}

.routing-engine {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  background: rgba(10, 24, 50, .8);
  border: 1px solid rgba(196, 197, 215, .18);
}

.engine-header,
.engine-footer {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  color: rgba(240, 240, 251, .55);
  background: rgba(7, 18, 37, .88);
  border-bottom: 1px solid rgba(196, 197, 215, .16);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.engine-header strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-light);
  font-weight: 500;
}

.engine-canvas {
  position: relative;
  display: grid;
  min-height: 330px;
  flex: 1;
  padding: 40px;
  grid-template-columns: 58px minmax(60px, 1fr) 130px 92px 86px;
  align-items: center;
  background-image:
    linear-gradient(to right, rgba(183, 196, 255, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(183, 196, 255, .04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.engine-inputs {
  display: grid;
  gap: 22px;
}

.engine-inputs span,
.engine-output {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  background: var(--navy);
  border: 1px solid rgba(183, 196, 255, .32);
}

.engine-inputs .icon {
  width: 17px;
  height: 17px;
}

.engine-lines {
  position: relative;
  height: 190px;
}

.engine-lines i {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(183, 196, 255, .14), rgba(29, 78, 216, .7));
  transform-origin: right;
}

.engine-lines i:nth-child(1) { top: 25px; transform: rotate(18deg); }
.engine-lines i:nth-child(2) { top: 94px; }
.engine-lines i:nth-child(3) { bottom: 25px; transform: rotate(-18deg); }

.engine-eval {
  display: flex;
  min-height: 174px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  color: var(--blue-light);
  background: rgba(7, 18, 37, .9);
  border: 1px solid rgba(29, 78, 216, .72);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.engine-eval > div {
  display: grid;
  width: 72%;
  gap: 9px;
}

.engine-eval i {
  position: relative;
  height: 4px;
  background: rgba(116, 118, 134, .24);
  overflow: hidden;
}

.engine-eval i::after {
  display: block;
  width: 60%;
  height: 100%;
  content: "";
  background: var(--blue);
  animation: eval-line 2.4s ease-in-out infinite;
}

.engine-eval i:nth-child(2)::after { width: 34%; animation-delay: .4s; }
.engine-eval i:nth-child(3)::after { width: 78%; animation-delay: .8s; }

.engine-output-line {
  position: relative;
  height: 1px;
  background: var(--blue);
}

.engine-output-line span {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue-light);
  animation: engine-packet 1.9s linear infinite;
}

.engine-output {
  position: relative;
  width: 64px;
  height: 64px;
  color: var(--white);
  border-color: var(--blue);
}

.engine-output span {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  color: var(--blue-light);
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: .08em;
  transform: translateX(-50%);
}

.engine-footer {
  justify-content: flex-start;
  border-top: 1px solid rgba(196, 197, 215, .16);
  border-bottom: 0;
  text-transform: none;
  letter-spacing: .02em;
}

.engine-footer strong {
  color: var(--blue-light);
  font-weight: 500;
}

/* Roadmap */
.roadmap-tone {
  background: #081326;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  column-gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.roadmap-copy {
  max-width: 660px;
}

.state-map {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(196, 197, 215, .14);
  background:
    linear-gradient(to right, rgba(183, 196, 255, .04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(183, 196, 255, .04) 1px, transparent 1px),
    rgba(5, 14, 31, .45);
  background-size: 32px 32px;
}

.state-map > span {
  position: absolute;
  z-index: 2;
  top: calc(var(--y) * 1%);
  left: calc(var(--x) * 1%);
  width: 9px;
  height: 9px;
  background: rgba(183, 196, 255, .28);
  border: 1px solid rgba(183, 196, 255, .64);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: state-node 4s ease-in-out infinite;
}

.state-map > span:nth-child(3n) {
  background: var(--blue);
  border-color: var(--blue-light);
  animation-delay: .6s;
}

.state-map > span:nth-child(4n) {
  animation-delay: 1.1s;
}

.state-map > svg {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
}

.state-map path {
  fill: none;
  stroke: rgba(183, 196, 255, .12);
  stroke-width: .25;
  vector-effect: non-scaling-stroke;
}

.roadmap-timeline {
  display: grid;
  margin-top: 70px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(183, 196, 255, .25);
}

.roadmap-timeline article {
  position: relative;
  min-height: 170px;
  padding: 28px 28px 20px 0;
}

.roadmap-timeline article::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--navy);
}

.roadmap-timeline article + article {
  padding-left: 28px;
  border-left: 1px solid rgba(183, 196, 255, .12);
}

.roadmap-timeline article + article::before {
  left: 28px;
}

.roadmap-timeline span {
  display: block;
  margin-bottom: 10px;
  color: rgba(240, 240, 251, .4);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.roadmap-timeline strong {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-light);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}

.roadmap-timeline p {
  max-width: 300px;
  margin-bottom: 0;
  color: rgba(240, 240, 251, .54);
  font-size: 13px;
  line-height: 1.6;
}

/* Ecosystem */
.ecosystem-intro {
  max-width: 980px;
  margin-bottom: 70px;
}

.ecosystem-intro h2 {
  margin-bottom: 18px;
}

.ecosystem-diagram {
  max-width: 1180px;
  margin-inline: auto;
}

.ecosystem-verticals {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.ecosystem-verticals span {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .86);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 9px;
  text-align: center;
}

.ecosystem-connectors {
  display: grid;
  height: 50px;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
}

.ecosystem-connectors i {
  width: 1px;
  height: 100%;
  margin-inline: auto;
  background: var(--line);
}

.ecosystem-wirego {
  display: flex;
  width: min(380px, 72%);
  min-height: 120px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 38px auto 0;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--blue);
}

.ecosystem-wirego .core-mark {
  color: var(--blue-light);
}

.ecosystem-wirego strong {
  font-size: 34px;
  font-weight: 500;
}

.ecosystem-downrail {
  width: 1px;
  height: 50px;
  margin-inline: auto;
  background: var(--line);
}

.ecosystem-base {
  display: grid;
  gap: 14px;
}

.ecosystem-base article {
  padding: 20px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid var(--line-soft);
}

.base-label {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .09em;
  text-align: center;
  text-transform: uppercase;
}

.base-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.base-tags span {
  padding: 6px 9px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 8px;
}

/* Vivo Group */
.vivo-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.vivo-copy h2 {
  max-width: 690px;
}

.group-layers {
  display: grid;
  gap: 12px;
}

.group-layer {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line-soft);
}

.group-layer > span {
  display: block;
  margin-bottom: 16px;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.group-portfolio > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.group-portfolio i {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-style: normal;
  font-size: 13px;
}

.group-portfolio i.active {
  color: var(--blue-strong);
  border-color: var(--blue);
}

.group-middleware {
  background: var(--surface-low);
}

.group-foundation {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.group-foundation > span {
  color: rgba(240, 240, 251, .42);
}

.group-layer strong {
  font-size: 17px;
  font-weight: 500;
}

/* Closing */
.closing {
  min-height: 580px;
}

.closing-inner {
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.closing-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 46px;
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

.closing-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.closing h2 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.closing-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  color: rgba(240, 240, 251, .55);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.closing-tags span {
  position: relative;
  padding: 0 18px;
}

.closing-tags span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Footer */
.site-footer {
  color: rgba(240, 240, 251, .48);
  background: #040b17;
  border-top: 1px solid rgba(196, 197, 215, .14);
}

.footer-inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .06em;
}

.footer-locations {
  text-align: center;
}

.footer-locations i {
  padding: 0 8px;
  color: var(--blue);
  font-style: normal;
}

.footer-language {
  justify-self: end;
}

.noscript-message {
  padding: 14px 20px;
  color: var(--navy);
  background: var(--blue-pale);
  font-size: 13px;
  text-align: center;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-delay-1 {
  transition-delay: .12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes rail-dash {
  to { stroke-dashoffset: -180; }
}

@keyframes live-pulse {
  0%, 100% { opacity: .65; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes line-packet {
  0% { left: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: calc(100% - 7px); opacity: 0; }
}

@keyframes signal {
  0%, 100% { opacity: .28; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes map-route {
  to { stroke-dashoffset: -120; }
}

@keyframes map-node {
  0%, 100% { transform: scale(.86); opacity: .65; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes eval-line {
  0%, 100% { transform: translateX(-20%); opacity: .45; }
  50% { transform: translateX(45%); opacity: 1; }
}

@keyframes engine-packet {
  0% { left: 0; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - 7px); opacity: 0; }
}

@keyframes state-node {
  0%, 100% { opacity: .38; transform: translate(-50%, -50%) scale(.85); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

/* Responsive */
@media (max-width: 1180px) {
  .header-inner {
    gap: 20px;
  }

  .primary-navigation {
    gap: 18px;
  }

  .primary-navigation a {
    font-size: 13px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, .85fr) minmax(470px, 1.15fr);
    gap: 42px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-core {
    width: 188px;
    height: 152px;
  }

  .coverage-layout {
    grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
    gap: 42px;
  }

  .coverage-map,
  .coverage-map > svg {
    min-height: 570px;
  }
}

@media (max-width: 1040px) {
  :root {
    --header-height: 70px;
  }

  .shell {
    width: min(100% - 48px, var(--shell));
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .header-actions {
    margin-left: auto;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    padding: 38px 24px 48px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgb(7, 18, 37);
    border-top: 1px solid rgba(196, 197, 215, .14);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s;
  }

  .primary-navigation.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .primary-navigation a {
    padding: 20px 4px;
    color: rgba(255, 255, 255, .86);
    border-bottom: 1px solid rgba(196, 197, 215, .14);
    font-size: 22px;
  }

  .primary-navigation a::after {
    display: none;
  }

  .mobile-nav-actions {
    display: grid;
    margin-top: auto;
    padding-top: 30px;
    gap: 18px;
  }

  .mobile-nav-actions .language-switcher {
    gap: 10px;
    font-size: 13px;
  }

  .mobile-nav-actions .language-switcher button {
    min-width: 36px;
    min-height: 36px;
    font-size: 13px;
  }

  .primary-navigation .mobile-contact {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 12px 18px;
    color: var(--white);
    background: var(--blue);
    border: 1px solid var(--blue);
    font-size: 12px;
  }

  .regulatory-card table {
    min-width: 0;
    table-layout: fixed;
  }

  .regulatory-card th,
  .regulatory-card td {
    padding: 16px 14px;
    overflow-wrap: anywhere;
  }

  .regulatory-card th:nth-child(1) { width: 25%; }
  .regulatory-card th:nth-child(2) { width: 16%; }
  .regulatory-card th:nth-child(3) { width: 16%; }
  .regulatory-card th:nth-child(4) { width: 43%; }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding-block: 92px 70px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .operations-shell {
    min-height: auto;
  }

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

  .problem-card {
    min-height: 290px;
  }

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

  .steps-rail {
    display: none;
  }

  .step-card::before {
    display: none;
  }

  .capability-card,
  .capability-core-card {
    min-height: 210px;
  }

  .compliance-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .coverage-layout {
    grid-template-columns: 1fr;
  }

  .coverage-copy {
    max-width: 780px;
  }

  .coverage-map,
  .coverage-map > svg {
    min-height: 610px;
  }

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

  .pillar-card {
    min-height: auto;
  }

  .pillar-base-rail {
    display: none;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .service-core {
    display: none;
  }

  .service-card::after {
    display: none;
  }

  .otc-layout {
    grid-template-columns: 1fr;
  }

  .otc-criteria {
    grid-template-columns: repeat(3, 1fr);
  }

  .otc-criteria article {
    min-height: 180px;
    grid-template-columns: 1fr;
  }

  .roadmap-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .state-map {
    min-height: 420px;
  }

  .roadmap-timeline {
    margin-top: 10px;
  }

  .vivo-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-actions .button {
    display: none;
  }

  .header-actions {
    margin-right: 4px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-core {
    width: 170px;
    height: 142px;
  }

  .rail-label {
    font-size: 8px;
  }

  .volume-line {
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .operations-flow {
    height: 260px;
    margin-top: 66px;
  }

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

  .capability-layer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 28px;
  }

  .capability-layer::before,
  .capability-architecture::before,
  .capability-card::after,
  .capability-core-card::after {
    display: none;
  }

  .capability-card,
  .capability-core-card {
    min-height: auto;
  }

  .layer-label {
    top: 0;
  }

  .partner-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-row-top span::after,
  .partner-row-bottom span::before {
    display: none;
  }

  .stack-core-line {
    min-height: 140px;
  }

  .engine-canvas {
    padding: 30px 20px;
    grid-template-columns: 52px minmax(35px, 1fr) 112px 60px 72px;
  }

  .ecosystem-verticals {
    grid-template-columns: repeat(3, 1fr);
  }

  .ecosystem-connectors {
    display: none;
  }

  .ecosystem-wirego {
    margin-top: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-locations {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 76px;
  }

  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .section-heading h2,
  .solution-heading h2,
  .compliance-intro h2,
  .ecosystem-intro h2,
  .vivo-copy h2,
  .roadmap-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .hero-shell {
    padding-block: 76px 48px;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 61px);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-proof {
    display: grid;
    gap: 9px;
  }

  .hero-proof span {
    padding: 0;
  }

  .hero-proof span + span::before {
    display: none;
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-core {
    width: 135px;
    height: 118px;
  }

  .hero-core .core-mark {
    width: 28px;
    height: 28px;
  }

  .hero-core span {
    font-size: 9px;
  }

  .hero-core small {
    display: none;
  }

  .rail-label {
    min-height: 25px;
    padding: 4px 6px;
    font-size: 7px;
  }

  .rail-label .icon {
    display: none;
  }

  .label-send { top: 16%; left: 5%; }
  .label-receive { bottom: 13%; left: 4%; }
  .label-fx { left: 8%; }
  .label-convert { top: 16%; right: 4%; }
  .label-settle { right: 3%; bottom: 13%; }
  .label-ramp { right: 7%; }

  .hero-microcopy {
    min-height: 40px;
    font-size: 7px;
  }

  .operations-heading {
    margin-top: 40px;
  }

  .volume-line strong {
    font-size: clamp(48px, 15vw, 70px);
  }

  .operations-flow {
    height: 235px;
    margin: 50px auto 10px;
  }

  .flow-node {
    font-size: 7px;
    letter-spacing: .06em;
  }

  .flow-node i {
    width: 13px;
    height: 13px;
  }

  .node-origin { top: 127px; }
  .node-processing { top: 66px; }
  .node-confirmation { top: 184px; }
  .node-destination { top: 120px; }

  .metrics-grid {
    margin-top: 44px;
    grid-template-columns: 1fr 1fr;
  }

  .metric {
    min-height: 88px;
    padding: 17px;
  }

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

  .problem-card {
    min-height: auto;
  }

  .solution-heading {
    margin-bottom: 60px;
  }

  .solution-rail {
    min-height: 530px;
    grid-template-columns: 1fr;
  }

  .solution-line {
    top: 8%;
    right: auto;
    bottom: 8%;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .solution-line::before {
    top: 0;
    left: -3px;
  }

  .solution-line::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: -3px;
  }

  .solution-packet {
    top: 0;
    left: -3px;
    animation: line-packet-vertical 5s linear infinite;
  }

  .solution-node {
    align-items: center;
    flex-direction: row;
    justify-self: center;
    width: 180px;
    background: var(--navy);
  }

  .node-circle {
    width: 58px;
    height: 58px;
  }

  .system-status {
    margin-top: 24px;
  }

  .compliance-envelope {
    padding: 76px 14px 14px;
  }

  .envelope-label {
    width: 100%;
    min-height: 50px;
    font-size: 8px;
  }

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

  .step-card {
    min-height: auto;
  }

  .table-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .regulatory-card table,
  .regulatory-card thead,
  .regulatory-card tbody,
  .regulatory-card tr,
  .regulatory-card th,
  .regulatory-card td {
    display: block;
  }

  .regulatory-card table {
    min-width: 0;
  }

  .regulatory-card thead {
    display: none;
  }

  .regulatory-card tr {
    padding: 18px;
    border-bottom: 1px solid var(--line-soft);
  }

  .regulatory-card tbody tr:last-child {
    border-bottom: 0;
  }

  .regulatory-card td,
  .regulatory-card td:first-child {
    display: grid;
    min-height: 32px;
    padding: 7px 0;
    grid-template-columns: 112px 1fr;
    align-items: start;
    gap: 10px;
    border-bottom: 0;
  }

  .regulatory-card td::before {
    content: attr(data-label);
    color: var(--slate);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .07em;
    text-transform: uppercase;
  }

  .regulatory-card td:first-child .entity-icon {
    display: none;
  }

  .coverage-copy h2 {
    font-size: clamp(35px, 10vw, 47px);
  }

  .coverage-map,
  .coverage-map > svg {
    min-height: 430px;
  }

  .map-labels {
    display: none;
  }

  .pillar-card {
    padding: 22px;
  }

  .service-card {
    grid-template-columns: 26px 1fr;
    padding: 20px;
  }

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

  .partner-row span {
    min-height: 72px;
    font-size: 11px;
  }

  .stack-core-line {
    min-height: 130px;
  }

  .stack-core-node {
    width: 150px;
    min-height: 96px;
  }

  .otc-criteria {
    grid-template-columns: 1fr;
  }

  .otc-criteria article {
    min-height: auto;
    grid-template-columns: 30px 1fr;
  }

  .routing-engine {
    min-height: auto;
  }

  .engine-canvas {
    min-height: 360px;
    padding: 25px 14px;
    grid-template-columns: 45px 1fr 86px 42px 56px;
  }

  .engine-inputs span {
    width: 40px;
    height: 40px;
  }

  .engine-eval {
    min-height: 150px;
    font-size: 7px;
  }

  .engine-output {
    width: 52px;
    height: 52px;
  }

  .engine-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .state-map {
    min-height: 300px;
  }

  .roadmap-timeline {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .roadmap-timeline article,
  .roadmap-timeline article + article {
    min-height: 0;
    padding: 24px 0 24px 24px;
    border-top: 1px solid rgba(183, 196, 255, .2);
    border-left: 0;
  }

  .roadmap-timeline article::before,
  .roadmap-timeline article + article::before {
    top: 20px;
    left: -4px;
  }

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

  .ecosystem-wirego {
    width: 84%;
  }

  .ecosystem-wirego strong {
    font-size: 28px;
  }

  .group-portfolio > div {
    grid-template-columns: 1fr;
  }

  .closing {
    min-height: 520px;
  }

  .closing-inner {
    min-height: 520px;
  }

  .closing h2 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .closing-tags {
    display: grid;
    gap: 8px;
  }

  .closing-tags span {
    padding: 0;
  }

  .closing-tags span + span::before {
    display: none;
  }

  .closing-actions {
    display: grid;
    width: 100%;
  }

  .closing-actions .button {
    width: 100%;
  }

  .footer-inner {
    min-height: 86px;
    grid-template-columns: 1fr auto;
  }
}

@keyframes line-packet-vertical {
  0% { top: 0; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { top: calc(100% - 7px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ========================================================================
   Approved landing-page refinements · v2
   ======================================================================== */

/* Operations: continuous illustrative motion + selectable stages */
.operations-shell {
  min-height: 920px;
}

.operations-flow {
  margin-bottom: 18px;
}

.flow-progress {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 2 100;
  filter: drop-shadow(0 0 5px rgba(29, 78, 216, .42));
  transition: stroke-dasharray .6s var(--ease);
  vector-effect: non-scaling-stroke;
}

.flow-node {
  min-width: 86px;
  min-height: 52px;
  justify-content: center;
  padding: 8px;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color .22s ease, opacity .22s ease, transform .22s ease;
}

.flow-node:hover,
.flow-node:focus-visible,
.flow-node.is-active {
  color: var(--blue-strong);
}

.flow-node:focus-visible {
  outline: 2px solid rgba(29, 78, 216, .55);
  outline-offset: 3px;
}

.flow-node i {
  position: relative;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.flow-node i::after {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(29, 78, 216, 0);
  border-radius: 50%;
  transform: scale(.72);
  transition: border-color .22s ease, transform .22s ease;
}

.flow-node.is-active i {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(29, 78, 216, .1), 0 0 18px rgba(29, 78, 216, .28);
  transform: scale(1.08);
}

.flow-node.is-active i::after {
  border-color: rgba(29, 78, 216, .28);
  transform: scale(1);
}

.flow-node:not(.is-active) {
  color: var(--slate);
}

.flow-description {
  min-height: 24px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.metric {
  position: relative;
  width: 100%;
  min-height: 122px;
  align-items: flex-start;
  appearance: none;
  color: inherit;
  background: transparent;
  border-top: 0;
  border-left: 0;
  cursor: pointer;
  text-align: left;
  transition: background-color .22s ease, box-shadow .22s ease;
}

.metric::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: left;
  transition: opacity .22s ease, transform .22s ease;
}

.metric:hover,
.metric:focus-visible,
.metric.is-active {
  background: rgba(229, 234, 255, .38);
}

.metric:hover::before,
.metric:focus-visible::before,
.metric.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.metric:focus-visible {
  z-index: 2;
  outline: 2px solid rgba(29, 78, 216, .48);
  outline-offset: -2px;
}

.metric small {
  display: block;
  max-height: 0;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1.45;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-3px);
  transition: max-height .22s ease, opacity .22s ease, transform .22s ease;
}

.metric:hover small,
.metric:focus-visible small,
.metric.is-active small {
  max-height: 32px;
  opacity: 1;
  transform: translateY(0);
}

/* The Problem: open editorial rail, not boxed cards */
.problem-grid {
  position: relative;
  display: grid;
  margin-top: 96px;
  grid-template-columns: repeat(4, 1fr);
  border: 0;
  border-top: 1px solid var(--line);
}

.problem-card {
  position: relative;
  min-height: 255px;
  padding: 54px 32px 12px 0;
  background: transparent;
  border: 0;
  outline: none;
  transition: opacity .22s ease, transform .22s ease;
}

.problem-card + .problem-card {
  padding-left: 28px;
}

.problem-card:hover,
.problem-card:focus-visible,
.problem-card.is-active {
  z-index: 2;
  background: transparent;
  transform: translateY(-3px);
}

.problem-card:focus-visible {
  outline: 2px solid rgba(29, 78, 216, .45);
  outline-offset: 8px;
}

.problem-card::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--paper);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--paper);
  transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.problem-card + .problem-card::before {
  left: 28px;
}

.problem-card:nth-child(3)::before {
  border-color: var(--slate);
  box-shadow: 0 0 0 6px var(--paper);
}

.problem-card:hover::before,
.problem-card:focus-visible::before,
.problem-card.is-active::before {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 10px rgba(29, 78, 216, .08);
  transform: scale(1.08);
}

.problem-card .feature-icon {
  width: 31px;
  height: 31px;
  margin-bottom: 28px;
  color: var(--ink);
  transition: color .22s ease, transform .22s ease;
}

.problem-card:hover .feature-icon,
.problem-card:focus-visible .feature-icon,
.problem-card.is-active .feature-icon {
  color: var(--blue);
  transform: translateY(-2px);
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
}

.problem-card p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

/* How it works: blue system envelope and integrated label */
.compliance-envelope {
  padding: 76px 24px 24px;
  background:
    linear-gradient(to right, rgba(29, 78, 216, .035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(29, 78, 216, .035) 1px, transparent 1px),
    #eef2ff;
  background-size: 40px 40px;
  border-color: rgba(29, 78, 216, .58);
}

.envelope-label {
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue);
}

.envelope-label .icon {
  color: var(--white);
}

.step-card {
  min-height: 245px;
  background: rgba(255, 255, 255, .9);
  border-color: rgba(29, 78, 216, .22);
  box-shadow: 0 10px 28px rgba(7, 18, 37, .025);
}

.step-card::before {
  background: #eef2ff;
}

/* Coverage: geographically accurate vector map */
.coverage-map {
  min-height: 620px;
  background: #071225;
  border-color: rgba(65, 111, 220, .35);
  box-shadow: 0 24px 70px rgba(7, 18, 37, .12);
}

.world-land {
  stroke: rgba(122, 153, 196, .58);
  stroke-width: .8;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.coverage-routes .route-direct {
  stroke: #2b6df2;
  stroke-width: 2.7;
}

.coverage-routes .route-partner {
  stroke: #78a0ee;
  stroke-width: 1.8;
  stroke-dasharray: 6 8;
}

.coverage-routes path {
  stroke-dashoffset: 0;
  animation: map-route 18s linear infinite;
  vector-effect: non-scaling-stroke;
}

.coverage-routes .route-partner:nth-of-type(even) {
  animation-direction: reverse;
}

.coverage-packets circle {
  fill: #8cb0ff;
  filter: drop-shadow(0 0 5px rgba(43, 109, 242, .8));
}

.map-node-rings circle {
  animation: map-ring 2.8s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.map-node-rings circle:nth-child(2) { animation-delay: .4s; }
.map-node-rings circle:nth-child(3) { animation-delay: .8s; }
.map-node-rings circle:nth-child(4) { animation-delay: 1.2s; }

/* Roadmap: recognizable US map with selectable rollout phases */
.state-map {
  min-height: 390px;
  border-color: rgba(111, 142, 195, .26);
  background: #061022;
  overflow: hidden;
}

.us-roadmap-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
}

.roadmap-state {
  fill: rgba(93, 126, 180, .18);
  stroke: rgba(132, 164, 218, .42);
  stroke-width: 1.4;
  opacity: .46;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill .35s ease, stroke .35s ease, opacity .35s ease, transform .35s ease;
  vector-effect: non-scaling-stroke;
}

.roadmap-state.is-active {
  fill: #2b6df2;
  stroke: #9abaff;
  opacity: 1;
  transform: scale(1.12);
}

.roadmap-state.is-current-wave {
  animation: roadmap-state-pulse 2.8s ease-in-out infinite;
}

.roadmap-map-copy {
  fill: rgba(183, 196, 255, .48);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.4px;
}

.roadmap-map-copy text:last-child {
  fill: #b7c4ff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.roadmap-map-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: rgba(240, 240, 251, .7);
  background: rgba(4, 11, 23, .82);
  border: 1px solid rgba(183, 196, 255, .22);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.roadmap-map-status strong {
  color: var(--blue-light);
  font-weight: 500;
}

.roadmap-timeline {
  gap: 0;
}

.roadmap-phase-card {
  position: relative;
  min-height: 170px;
  padding: 28px 28px 20px 0;
  appearance: none;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: background-color .22s ease;
}

.roadmap-phase-card::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: rgba(183, 196, 255, .34);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--navy);
  transition: background-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.roadmap-phase-card + .roadmap-phase-card {
  padding-left: 28px;
  border-left: 1px solid rgba(183, 196, 255, .12);
}

.roadmap-phase-card + .roadmap-phase-card::before {
  left: 28px;
}

.roadmap-phase-card:hover,
.roadmap-phase-card:focus-visible,
.roadmap-phase-card.is-active {
  background: rgba(32, 64, 116, .14);
}

.roadmap-phase-card:hover::before,
.roadmap-phase-card:focus-visible::before,
.roadmap-phase-card.is-active::before {
  background: var(--blue);
  box-shadow: 0 0 0 7px var(--navy), 0 0 18px rgba(43, 109, 242, .55);
  transform: scale(1.08);
}

.roadmap-phase-card:focus-visible {
  outline: 2px solid rgba(183, 196, 255, .48);
  outline-offset: -2px;
}

.roadmap-phase-card span,
.roadmap-phase-card strong,
.roadmap-phase-card p {
  display: block;
}

.roadmap-phase-card span {
  margin-bottom: 10px;
  color: rgba(240, 240, 251, .4);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.roadmap-phase-card strong {
  margin-bottom: 9px;
  color: var(--blue-light);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}

.roadmap-phase-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(240, 240, 251, .54);
  font-size: 13px;
  line-height: 1.6;
}

/* Contact / Open an account */
.contact-section {
  border-top: 1px solid var(--line-soft);
}

.contact-heading {
  max-width: 960px;
  margin-bottom: 46px;
}

.contact-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(44px, 5.5vw, 74px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.contact-heading h2 em {
  color: var(--blue);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.contact-heading .section-subtitle {
  max-width: 720px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
  gap: 22px;
  align-items: start;
}

.contact-form-card,
.onboarding-card-wrap {
  padding: 34px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line-soft);
}

.contact-kicker,
.contact-divider span {
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.whatsapp-button {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 16px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.whatsapp-button:hover {
  background: var(--blue-strong);
  border-color: var(--blue-strong);
  transform: translateY(-1px);
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(29, 78, 216, .25);
  outline-offset: 3px;
}

.whatsapp-button .icon {
  flex: 0 0 auto;
}

.whatsapp-button .whatsapp-arrow {
  margin-left: auto;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 22px;
}

.contact-divider::after {
  height: 1px;
  content: "";
  flex: 1;
  background: var(--line-soft);
}

#contact-form {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f9faff;
  border: 1px solid rgba(84, 111, 170, .32);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.field-group textarea {
  min-height: 118px;
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #8b91a0;
}

.field-group input:focus,
.field-group textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, .09);
}

.field-group input[aria-invalid="true"],
.field-group textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .08);
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.contact-submit {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  margin-top: 4px;
  border-radius: 999px;
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: .72;
}

.contact-form-status {
  min-height: 20px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.contact-form-status.is-success {
  color: #067647;
}

.contact-form-status.is-error {
  color: #b42318;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.onboarding-docs {
  background: #f1f5ff;
  border: 1px solid rgba(84, 111, 170, .24);
  border-radius: 10px;
}

.onboarding-docs summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
}

.onboarding-docs summary::-webkit-details-marker {
  display: none;
}

.onboarding-docs summary i {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.onboarding-docs summary i::before,
.onboarding-docs summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: translate(-50%, -50%);
}

.onboarding-docs summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

.onboarding-docs[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.onboarding-docs-content {
  padding: 5px 18px 20px;
  border-top: 1px solid rgba(84, 111, 170, .18);
}

.onboarding-docs-content section + section {
  margin-top: 22px;
}

.onboarding-docs-content h3 {
  margin: 14px 0 10px;
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.onboarding-docs-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.onboarding-docs-content li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.onboarding-docs-content li::before {
  position: absolute;
  top: .6em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--blue);
}

.onboarding-note {
  margin: 24px 0 0;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: .04em;
}

@keyframes map-ring {
  0% { opacity: .5; transform: scale(.7); }
  70%, 100% { opacity: 0; transform: scale(1.45); }
}

@keyframes roadmap-state-pulse {
  0%, 100% { opacity: .76; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.18); }
}

@media (max-width: 1040px) {
  .problem-grid {
    margin-top: 72px;
    grid-template-columns: repeat(2, 1fr);
    border-top: 0;
  }

  .problem-card,
  .problem-card + .problem-card {
    min-height: 250px;
    padding: 54px 28px 20px 0;
    border-top: 1px solid var(--line);
  }

  .problem-card:nth-child(even) {
    padding-left: 28px;
  }

  .problem-card::before,
  .problem-card + .problem-card::before {
    top: -6px;
    left: 0;
  }

  .problem-card:nth-child(even)::before {
    left: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .onboarding-card-wrap {
    padding: 28px;
  }
}

@media (max-width: 820px) {
  .operations-shell {
    min-height: auto;
  }

  .metric {
    min-height: 120px;
  }

  .roadmap-phase-card {
    min-height: 155px;
  }
}

@media (max-width: 640px) {
  .operations-subtitle {
    max-width: 330px;
  }

  .flow-node {
    min-width: 64px;
    min-height: 44px;
    padding: 5px;
  }

  .node-origin {
    left: 4.6%;
  }

  .node-destination {
    right: 4.6%;
  }

  .flow-description {
    max-width: 300px;
    min-height: 38px;
    font-size: 12px;
  }

  .metrics-grid {
    margin-top: 34px;
  }

  .metric {
    min-height: 116px;
    padding: 16px;
  }

  .metric strong {
    font-size: 17px;
  }

  .problem-grid {
    display: grid;
    margin-top: 58px;
    padding-left: 26px;
    grid-template-columns: 1fr;
    border: 0;
  }

  .problem-grid::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 1px;
    content: "";
    background: var(--line);
  }

  .problem-card,
  .problem-card + .problem-card,
  .problem-card:nth-child(even) {
    min-height: 0;
    padding: 0 0 44px 20px;
    border: 0;
  }

  .problem-card::before,
  .problem-card + .problem-card::before,
  .problem-card:nth-child(even)::before {
    top: 7px;
    left: -26px;
    box-shadow: 0 0 0 6px var(--paper);
  }

  .problem-card .feature-icon {
    margin-bottom: 18px;
  }

  .problem-card p {
    max-width: none;
  }

  .compliance-envelope {
    padding: 74px 12px 12px;
    background-size: 32px 32px;
  }

  .envelope-label {
    min-height: 50px;
    font-size: 8px;
  }

  .coverage-map,
  .coverage-map > svg {
    min-height: 390px;
  }

  .coverage-map .map-labels {
    display: block;
    font-size: 11px;
  }

  .coverage-map .map-labels text:nth-child(2) {
    display: none;
  }

  .map-status {
    right: 10px;
    bottom: 10px;
    font-size: 7px;
  }

  .state-map,
  .us-roadmap-map {
    min-height: 285px;
  }

  .roadmap-map-copy text:first-child {
    display: none;
  }

  .roadmap-map-copy text:last-child {
    x: 35px;
    y: 54px;
    font-size: 14px;
  }

  .roadmap-map-status {
    right: 10px;
    bottom: 10px;
    gap: 8px;
    padding: 8px 9px;
    font-size: 7px;
  }

  .roadmap-timeline {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .roadmap-phase-card,
  .roadmap-phase-card + .roadmap-phase-card {
    min-height: 0;
    padding: 24px 12px 24px 24px;
    border-top: 1px solid rgba(183, 196, 255, .2);
    border-left: 0;
  }

  .roadmap-phase-card::before,
  .roadmap-phase-card + .roadmap-phase-card::before {
    top: 20px;
    left: -4px;
  }

  .contact-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .contact-form-card,
  .onboarding-card-wrap {
    padding: 20px;
  }

  .whatsapp-button {
    justify-content: center;
  }

  .whatsapp-button .whatsapp-arrow {
    display: none;
  }

  .onboarding-docs summary {
    min-height: 56px;
    padding: 14px;
    font-size: 13px;
  }

  .onboarding-docs-content {
    padding: 4px 14px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-state.is-current-wave,
  .map-node-rings circle {
    animation: none !important;
  }
}

/* ==========================================================
   Operations flow — node alignment and label separation
   ========================================================== */

.operations-flow {
  --flow-node-hit-area: 44px;
  --flow-label-gap: 18px;
}

/*
 * La línea permanece en la capa inferior.
 * Los nodos y sus etiquetas quedan encima.
 */
.operations-flow > svg {
  z-index: 0;
  pointer-events: none;
}

.flow-node {
  z-index: 2;

  /*
   * Las coordenadas se asignan individualmente
   * mediante --node-x y --node-y.
   */
  top: var(--node-y);
  right: auto;
  left: var(--node-x);

  /*
   * Área táctil mínima accesible.
   * El texto se posiciona de forma absoluta,
   * por lo que ya no altera el centro del nodo.
   */
  width: var(--flow-node-hit-area);
  height: var(--flow-node-hit-area);
  min-width: var(--flow-node-hit-area);
  min-height: var(--flow-node-hit-area);

  padding: 0;
  gap: 0;

  transform: translate(-50%, -50%);
}

/*
 * El círculo queda centrado exactamente
 * sobre la coordenada de la línea.
 */
.flow-node i {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

/*
 * La etiqueta deja de participar en el layout del botón.
 * De esta manera no empuja el círculo ni queda cruzada
 * por la línea animada.
 */
.flow-node span {
  position: absolute;
  z-index: 3;

  top: calc(50% + var(--flow-label-gap));
  left: 50%;

  padding: 2px 4px;

  background: var(--surface);
  line-height: 1;
  white-space: nowrap;

  transform: translateX(-50%);
}

/*
 * Coordenadas basadas en el viewBox 1000 × 260 del SVG.
 *
 * Origin:       x 40  / 1000 = 4%
 *               y 150 / 260  = 57.69%
 *
 * Processing:   x 390 / 1000 = 39%
 *               y 75  / 260  = 28.85%
 *
 * Confirmation: x 730 / 1000 = 73%
 *               y 205 / 260  = 78.85%
 *
 * Destination:  x 960 / 1000 = 96%
 *               y 140 / 260  = 53.85%
 */
.node-origin {
  --node-x: 4%;
  --node-y: 57.692%;
}

.node-processing {
  --node-x: 39%;
  --node-y: 28.846%;
}

.node-confirmation {
  --node-x: 73%;
  --node-y: 78.846%;
}

.node-destination {
  --node-x: 96%;
  --node-y: 53.846%;
}

/*
 * Processing queda arriba de la curva.
 * Los otros tres labels permanecen debajo.
 */
.node-processing span {
  top: auto;
  bottom: calc(50% + var(--flow-label-gap));
}

/*
 * Asegura que solo el nodo seleccionado
 * permanezca relleno de azul.
 */
.flow-node:not(.is-active) i {
  background: var(--surface);
  border-color: var(--slate);
  box-shadow: none;
}

/*
 * Evita que Origin y Destination se salgan
 * lateralmente en tablet y mobile.
 */
@media (max-width: 820px) {
  .node-origin span {
    transform: none;
  }

  .node-destination span {
    right: 50%;
    left: auto;
    transform: none;
  }
}

@media (max-width: 640px) {
  .operations-flow {
    --flow-node-hit-area: 44px;
    --flow-label-gap: 16px;
  }

  .flow-node span {
    padding-inline: 3px;
  }
}

/* Header login */
.header-actions {
  gap: 10px;
}

.primary-navigation .mobile-login {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 12px;
}

.primary-navigation .mobile-login:hover {
  background: #2a5adf;
  border-color: #2a5adf;
}