@font-face {
  font-family: "Inter Tight";
  src: url("./brand/inter-tight.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #000d2b;
  --navy-900: #001846;
  --navy-800: #001b51;
  --navy-700: #02205c;
  --navy-600: #07347a;
  --blue: #5eb1fe;
  --blue-light: #7ab7ff;
  --sky-50: #f1f8ff;
  --white: #fff;
  --muted: #b9c8dc;
  --line: rgba(255, 255, 255, .13);
  --ink: var(--navy-900);
  --lime: var(--blue);
  --lime-2: var(--blue-light);
  --paper: var(--sky-50);
  --radius: 16px;
  --max: 1180px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--navy-900);
  font-family: "Inter Tight", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 3px;
  pointer-events: none;
  background: var(--blue);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  transition: opacity .18s ease;
}
.scroll-progress.footer-visible { opacity: 0; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: clamp(82px, 8vw, 118px) 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Inter Tight", Arial, sans-serif;
  letter-spacing: -.025em;
  text-wrap: balance;
}
h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(48px, 7vw, 88px); line-height: .99; }
h2 { max-width: 730px; margin-bottom: 20px; font-size: clamp(36px, 4.8vw, 62px); line-height: 1.05; }
h3 { font-size: 21px; line-height: 1.2; }
.lead { max-width: 665px; color: #d7e2f0; font-size: clamp(18px, 2vw, 21px); line-height: 1.65; text-wrap: pretty; }
.accent { color: var(--blue); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease, transform .35s var(--ease), opacity .2s ease;
}
.topbar.scrolled { border-color: var(--line); background: rgba(0, 13, 43, .88); backdrop-filter: blur(14px); }
.topbar.footer-visible { visibility: hidden; pointer-events: none; opacity: 0; transform: translateY(-110%); }
.nav { display: flex; height: 82px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; min-width: 190px; align-items: center; }
.brand img { display: block; width: 190px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #d4dfed; font-size: 14px; }
.nav-links a:not(.button) { padding: 10px 0; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.nav-links a:not(.button):hover { border-color: #fff; color: #fff; }
.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--blue);
  font-weight: 700;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-light); box-shadow: 0 7px 10px rgba(94, 177, 254, .22); }
.button.ghost { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(0,13,43,.15); }
.button.ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); box-shadow: none; }
.button.small { min-height: 44px; padding: 0 19px; font-size: 14px; }
.arrow { transition: transform .25s var(--ease); }
.button:hover .arrow, .card-link:hover .arrow { transform: translateX(4px); }
.press-wave {
  position: absolute;
  z-index: -1;
  width: 16px;
  height: 16px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(255,255,255,.48);
  transform: translate(-50%, -50%) scale(0);
  animation: pressWave .48s var(--ease) forwards;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 172px 0 110px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 13, 43, .99) 0%, rgba(0, 24, 70, .9) 42%, rgba(0, 18, 52, .3) 73%, rgba(0, 14, 40, .08) 100%),
    linear-gradient(0deg, rgba(0, 12, 38, .72) 0%, transparent 43%);
}
.hero-photo {
  position: absolute;
  inset: -8px;
  z-index: -2;
  overflow: hidden;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform .7s var(--ease);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroPush 14s var(--ease) both;
}
.retail-hero .hero-photo img { object-position: 62% center; }
.ib-hero { background: var(--navy-950); }
.ib-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,13,43,.98) 0%, rgba(0,13,43,.92) 38%, rgba(0,18,58,.56) 62%, rgba(0,13,43,.16) 100%),
    linear-gradient(0deg, rgba(0,10,34,.86) 0%, rgba(0,13,43,.12) 42%, rgba(0,13,43,.22) 100%);
}
.ib-hero .hero-photo {
  inset: auto 0 50px;
  z-index: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1800 / 1013;
  border: 0;
  border-radius: 0;
  background: var(--navy-900);
}
.ib-hero .hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,13,43,.2), transparent 22%),
    linear-gradient(0deg, rgba(0,13,43,.5), transparent 34%);
}
.ib-hero .hero-photo img {
  object-position: center;
  filter: saturate(.92) contrast(1.03);
}
.ib-hero .hero-grid { z-index: 3; }
.ib-hero .hero-copy { width: min(54%, 680px); }
.ib-hero h1 { max-width: 680px; font-size: clamp(54px, 5.6vw, 78px); text-shadow: 0 2px 24px rgba(0,8,28,.25); }

.ib-market-layer {
  position: absolute;
  inset: 82px 0 50px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: .72;
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.68) 38%, #000 70%, rgba(0,0,0,.74));
  mask-image: linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.68) 38%, #000 70%, rgba(0,0,0,.74));
}
.ib-market-map { display: block; width: 100%; height: 100%; }
.ib-grid-lines {
  fill: none;
  stroke: rgba(122,183,255,.18);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.ib-chart-area { fill: url(#ib-chart-fill); opacity: .48; }
.ib-chart-line {
  fill: none;
  stroke: rgba(122,183,255,.82);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  vector-effect: non-scaling-stroke;
}
.ib-candles line {
  stroke: rgba(126,225,188,.78);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.ib-candles rect { fill: rgba(126,225,188,.32); stroke: rgba(126,225,188,.8); stroke-width: 1; }
.ib-candles > g {
  opacity: .82;
  transform-box: fill-box;
  transform-origin: center bottom;
}
.ib-chart-nodes circle {
  fill: var(--navy-950);
  stroke: var(--blue-light);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}
.ib-asset-label {
  position: absolute;
  display: grid;
  gap: 3px;
  padding-left: 12px;
  border-left: 1px solid rgba(122,183,255,.52);
  color: rgba(219,233,249,.66);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ib-asset-label b { color: #fff; font-size: 11px; letter-spacing: .05em; }
.ib-asset-one { left: 11%; bottom: 14%; }
.ib-asset-two { left: 47%; bottom: 31%; }
.ib-asset-three { right: 5%; top: 34%; }

.ib-partner-route {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 76px;
  z-index: 3;
  display: grid;
  width: min(56vw, 760px);
  min-height: 72px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  overflow: hidden;
  border: 1px solid rgba(122,183,255,.42);
  border-top: 2px solid var(--blue);
  border-radius: 10px;
  background: rgba(0,13,43,.92);
  box-shadow: 0 14px 34px rgba(0,7,28,.28);
  backdrop-filter: blur(10px);
}
.ib-partner-route > span {
  position: relative;
  display: grid;
  padding: 11px 17px;
  align-content: center;
}
.ib-partner-route > span + span { border-left: 1px solid rgba(255,255,255,.14); }
.ib-partner-route > span:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 24px;
  right: -7px;
  z-index: 2;
  color: var(--blue);
}
.ib-partner-route small { color: var(--blue); font-size: 9px; font-weight: 750; letter-spacing: .08em; }
.ib-partner-route b { margin-top: 2px; color: #fff; font-size: 12px; }
.ib-partner-route em { margin-top: 2px; color: #aebed2; font-size: 10px; font-style: normal; }

.ib-hero.motion-in .ib-chart-line { animation: ibChartDraw 1.25s .2s var(--ease) both; }
.ib-hero.motion-in .ib-chart-area { animation: ibChartArea .8s .5s var(--ease) both; }
.ib-hero.motion-in .ib-candles > g { animation: ibCandleSet .55s var(--ease) both; animation-delay: calc(.3s + var(--i, 0) * 70ms); }
.ib-hero.motion-in .ib-chart-nodes circle { animation: ibPointIn .42s .82s var(--ease) both; }
.ib-hero.motion-in .ib-partner-route > span { animation: ibRouteIn .5s var(--ease) both; }
.ib-hero.motion-in .ib-partner-route > span:nth-child(1) { animation-delay: .5s; }
.ib-hero.motion-in .ib-partner-route > span:nth-child(2) { animation-delay: .62s; }
.ib-hero.motion-in .ib-partner-route > span:nth-child(3) { animation-delay: .74s; }
.hero-grid { position: relative; min-height: 560px; }
.hero-copy { position: relative; z-index: 3; width: min(64%, 760px); padding-top: 45px; }
.hero-copy > * { animation: heroReveal .78s var(--ease) both; }
.hero-copy h1 { animation-delay: .08s; }
.hero-copy .lead { animation-delay: .16s; }
.hero-copy .hero-actions { animation-delay: .24s; }
.hero-copy .scroll-cue { animation-delay: .32s; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.scroll-cue { display: flex; align-items: center; gap: 10px; margin-top: 64px; color: #aec0d5; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 34px; height: 1px; background: currentColor; }
.market-stage { position: absolute; inset: 0; min-height: 560px; pointer-events: none; }
.ticker-card, .profit-card {
  position: absolute;
  z-index: 3;
  padding: 17px 19px;
  border: 1px solid rgba(120, 184, 255, .32);
  border-radius: 12px;
  background: rgba(1, 24, 70, .8);
  box-shadow: 0 8px 12px rgba(0, 8, 36, .3);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out 2 reverse;
}
.ticker-card { top: 44px; right: 0; }
.profit-card { right: 20px; bottom: 66px; animation-delay: -2s; }
.metric-label { display: block; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.metric-value { display: block; margin-top: 6px; font-size: 25px; font-weight: 700; }
.positive { color: var(--blue); }
.market-terminal {
  position: absolute;
  right: 8px;
  bottom: 142px;
  width: 390px;
  padding: 18px;
  border: 1px solid rgba(120, 184, 255, .34);
  border-radius: 14px;
  background: rgba(1, 24, 70, .82);
  box-shadow: 0 8px 12px rgba(0, 8, 36, .3);
  backdrop-filter: blur(12px);
  animation: terminalIn 1s .35s var(--ease) both;
}
.terminal-top, .terminal-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.terminal-top { padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.12); color: #aabbd1; font-size: 12px; }
.terminal-top strong { color: #fff; font-size: 14px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); animation: pulse 2s ease-out 3; }
.terminal-row { padding: 12px 2px 0; font-size: 13px; }
.terminal-row span:first-child { color: #d8e4f4; font-weight: 650; }
.terminal-row span:last-child { color: #7ee1bc; }
.market-tape {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(0, 18, 58, .88);
  backdrop-filter: blur(10px);
}
.market-tape-track { display: flex; width: max-content; min-height: 50px; align-items: center; animation: tape 34s linear infinite; }
.hero:not(.is-in-view) .market-tape-track, .tab-hidden .market-tape-track { animation-play-state: paused; }
.market-tape:hover .market-tape-track { animation-play-state: paused; }
.market-tape-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.12);
  color: #dce9fa;
  font-size: 13px;
  white-space: nowrap;
}
.market-tape-track b { color: #fff; font-weight: 650; }
.market-tape-track em { color: #7ee1bc; font-style: normal; }

.trust-strip {
  border-block: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(115deg, var(--navy-600) 0%, var(--navy-700) 100%);
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 28px 22px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-number { margin-bottom: 8px; color: var(--blue); font-size: 13px; font-weight: 700; }
.trust-item strong { display: block; margin-bottom: 7px; font-size: 15px; font-weight: 700; }
.trust-item p { margin: 0; color: #aebed2; font-size: 13px; line-height: 1.5; }
.section-head { display: flex; margin-bottom: 52px; align-items: end; justify-content: space-between; gap: 50px; }
.section-head p { max-width: 460px; margin-bottom: 6px; color: #b2c2d3; line-height: 1.7; }

.light { color: var(--navy-900); background: var(--paper); }
.light .eyebrow { color: #0558a5; }
.light .lead, .light .section-head p { color: #52667f; }
#why { background: var(--navy-950); }
.market-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.market-card {
  position: relative;
  grid-column: span 2;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #d5e3f0;
  border-radius: var(--radius);
  background: #fff;
  transform-style: preserve-3d;
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.market-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(94,177,254,.2), transparent 38%);
  transition: opacity .2s ease;
}
.market-card:nth-child(4) { grid-column: 2 / span 2; }
.market-card:hover, .market-card:focus-within { transform: translateY(-7px); border-color: var(--blue); box-shadow: 0 8px 10px rgba(2,32,92,.08); }
.market-card.is-tilting { transform: perspective(850px) rotateX(var(--tilt-x, 0)) rotateY(var(--tilt-y, 0)) translateY(-5px); }
.market-card.is-tilting::before { opacity: 1; }
.market-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 12px;
  color: var(--navy-700);
  background: #d9edff;
  font-size: 18px;
  font-weight: 800;
}
.market-card .market-icon { transition: transform .32s var(--ease), background .25s ease, color .25s ease; }
.market-card:hover .market-icon { transform: translateY(-4px); }
.market-symbol {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  transition: transform .32s var(--ease);
}
.market-card:hover .market-symbol { transform: scale(1.06); }
.market-icon-forex { color: #075ca8; background: #d9edff; }
.market-icon-indices { color: #5544bd; background: #eceaff; }
.market-icon-metals { color: #805b08; background: #fff0c4; }
.market-icon-energy { color: #08725e; background: #dcf5ee; }
.market-icon-equities { color: #074f89; background: #deefff; }
.market-icon-forex .market-symbol::before,
.market-icon-forex .market-symbol::after {
  content: "";
  position: absolute;
  left: 1px;
  width: 24px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 40%, 69% 40%, 69% 0, 100% 50%, 69% 100%, 69% 60%, 0 60%);
}
.market-icon-forex .market-symbol::before { top: 2px; }
.market-icon-forex .market-symbol::after { bottom: 2px; transform: rotate(180deg); }
.market-icon-indices .market-symbol::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 2px;
  width: 4px;
  height: 7px;
  border-radius: 2px 2px 0 0;
  background: currentColor;
  box-shadow: 7px -5px 0 currentColor, 14px -10px 0 currentColor, 21px -16px 0 currentColor;
}
.market-icon-indices .market-symbol::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 1px;
  width: 25px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(-31deg);
  transform-origin: left center;
}
.market-icon-metals .market-symbol::before,
.market-icon-metals .market-symbol::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 9px;
  background: currentColor;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}
.market-icon-metals .market-symbol::before { bottom: 3px; left: 1px; }
.market-icon-metals .market-symbol::after { top: 3px; right: 1px; }
.market-icon-energy .market-symbol::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 17px;
  height: 21px;
  border-radius: 70% 45% 68% 45%;
  background: currentColor;
  transform: rotate(45deg);
}
.market-icon-energy .market-symbol::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 11px;
  width: 5px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.58);
  transform: rotate(28deg);
}
.market-icon-equities .market-symbol {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.market-icon-equities .market-symbol::before {
  content: "";
  position: absolute;
  inset: 2px 6px;
  border-right: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  border-radius: 50%;
}
.market-icon-equities .market-symbol::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 1px;
  left: 1px;
  height: 5px;
  border-block: 1.5px solid currentColor;
}
.market-card p { color: #52667f; line-height: 1.65; }
.card-link { position: absolute; left: 28px; bottom: 28px; display: flex; gap: 10px; color: #0558a5; font-weight: 700; }
.note { margin: 28px 0 0; color: #60718a; font-size: 12px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.benefit-card {
  position: relative;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
  transition: background .3s ease, transform .3s var(--ease);
}
.benefit-card::before, .partner-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(220px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(94,177,254,.18), transparent 68%);
  transition: opacity .25s ease;
}
.benefit-card:hover::before, .benefit-card:focus-within::before, .partner-item:hover::before, .partner-item:focus-within::before { opacity: 1; }
.benefit-card:hover, .benefit-card:focus-within { transform: translateY(-5px); background: rgba(255,255,255,.055); }
.benefit-card .num { display: block; margin-bottom: 46px; color: var(--blue); font-size: 13px; font-weight: 700; }
.benefit-card p { margin: 0; color: #aebed2; line-height: 1.65; }
.center-action { margin-top: 40px; text-align: center; }

.steps { background: var(--navy-800); }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); }
.steps-grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: var(--blue);
  transform: scaleX(var(--steps-progress, 0));
  transform-origin: left center;
}
.step { position: relative; padding: 40px 40px 10px 0; border-top: 1px solid #31527c; }
.step + .step { padding-left: 38px; border-left: 1px solid #31527c; }
.step-num { display: block; margin-bottom: 70px; color: var(--blue); font-size: 44px; font-weight: 700; }
.step p { color: #aec0d5; line-height: 1.65; }
.retail-hero ~ .steps { color: var(--navy-900); background: #e3f1ff; }
.retail-hero ~ .steps .eyebrow,
.retail-hero ~ .steps .step-num { color: #0558a5; }
.retail-hero ~ .steps .step,
.retail-hero ~ .steps .step + .step { border-color: #b8d3ec; }
.retail-hero ~ .steps .step p { color: #52667f; }
.retail-hero ~ .steps .steps-grid::after { background: #1799ce; }
.retail-hero ~ .steps .note { color: #60718a; }
.ib-hero ~ .steps { background: var(--navy-900); }

.steps.ib-journey {
  --journey-progress: 0;
  --journey-signal: 0px;
  overflow: clip;
  color: var(--navy-900);
  background:
    radial-gradient(circle at 8% 18%, rgba(94,177,254,.12), transparent 24%),
    radial-gradient(circle at 92% 78%, rgba(7,92,168,.08), transparent 27%),
    #f4f1e9;
  isolation: isolate;
  scroll-margin-top: 78px;
}
.steps.ib-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .3;
  background-image:
    linear-gradient(rgba(0,24,70,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,24,70,.055) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, #000 28%, #000 76%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 2%, #000 28%, #000 76%, transparent 100%);
}
.journey-intro {
  position: relative;
  max-width: 850px;
  margin: 0 auto clamp(50px,6vw,78px);
  text-align: center;
}
.journey-intro .eyebrow { justify-content: center; color: #075ca8; }
.journey-intro h2 {
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.journey-intro > p {
  max-width: 690px;
  margin: 0 auto;
  color: #53667b;
  font-size: 17px;
  line-height: 1.65;
}
.journey-path {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
}
.journey-route-meta {
  display: flex;
  min-height: 42px;
  padding: 0 2px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(0,24,70,.14);
  color: #48627e;
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.journey-route-meta span { display: inline-flex; align-items: center; gap: 8px; }
.journey-route-meta i,
.journey-status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: #1799ce;
  box-shadow: 0 0 0 4px rgba(23,153,206,.12);
}
.journey-timeline {
  position: relative;
  margin-top: clamp(30px,4vw,46px);
}
.journey-track {
  position: absolute;
  z-index: 0;
  top: var(--journey-track-top, 38px);
  left: var(--journey-track-left, 16.667%);
  width: var(--journey-track-length, 66.666%);
  height: 3px;
  border-radius: 999px;
  background: rgba(0,24,70,.16);
}
.journey-track-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #075ca8, #5eb1fe);
  box-shadow: 0 0 16px rgba(94,177,254,.52);
  transform: scaleX(var(--journey-progress));
  transform-origin: left center;
  will-change: transform;
}
.journey-signal {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border: 2px solid #f4f1e9;
  border-radius: 50%;
  opacity: 0;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(94,177,254,.2), 0 0 18px rgba(7,92,168,.52);
  transform: translate3d(var(--journey-signal),-50%,0);
  transition: opacity .16s ease;
  will-change: transform;
}
.journey-path[data-enhanced="true"] .journey-signal { opacity: var(--journey-signal-opacity, 0); }
.journey-list {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(22px,3vw,46px);
  list-style: none;
}
.journey-step {
  display: flex;
  min-width: 0;
  padding-inline: clamp(3px,1vw,14px);
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.journey-node {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  padding: 0;
  flex: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy-900);
  background: #fbfaf7;
  box-shadow:
    inset 0 0 0 2px rgba(0,24,70,.16),
    0 12px 28px -17px rgba(0,24,70,.55);
  font: inherit;
  cursor: pointer;
  transition: color .4s var(--ease), background .4s var(--ease), box-shadow .4s ease, transform .4s var(--ease);
}
.journey-node:hover { transform: translateY(-3px) scale(1.035); }
.journey-node:focus-visible {
  outline-color: #075ca8;
  outline-offset: 6px;
}
.journey-ring {
  position: absolute;
  inset: -7px;
  border: 2px solid #5eb1fe;
  border-radius: 50%;
  opacity: 0;
  transform: scale(.82);
  transition: opacity .35s var(--ease), transform .4s var(--ease);
}
.journey-number,
.journey-icon {
  grid-area: 1 / 1;
  transition: opacity .3s var(--ease), transform .38s var(--ease);
}
.journey-number {
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}
.journey-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(.55) rotate(-9deg);
}
.journey-step.is-active .journey-node {
  color: #fff;
  background: linear-gradient(145deg, #075ca8 0%, #5eb1fe 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,.28),
    0 17px 35px -15px rgba(7,92,168,.76);
  transform: translateY(-2px);
}
.journey-step.is-active .journey-number { opacity: 0; transform: scale(.5); }
.journey-step.is-active .journey-icon { opacity: 1; transform: scale(1) rotate(0); }
.journey-step.is-active .journey-ring { opacity: 1; transform: scale(1); }
.journey-step.is-current .journey-ring { animation: journeyNodePulse .82s var(--ease) both; }
.journey-copy {
  max-width: 34ch;
  margin-top: clamp(20px,2.3vw,28px);
  opacity: 1;
  transform: none;
  transition: opacity .46s var(--ease), transform .46s var(--ease);
}
.journey-path[data-enhanced="true"] .journey-copy {
  opacity: .42;
  transform: translateY(13px);
}
.journey-path[data-enhanced="true"] .journey-step.is-active .journey-copy {
  opacity: 1;
  transform: translateY(0);
}
.journey-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: #075ca8;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.journey-copy h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: clamp(19px,1.8vw,23px);
}
.journey-copy p {
  margin-bottom: 0;
  color: #52667f;
  font-size: 15px;
  line-height: 1.65;
  text-wrap: pretty;
}
.journey-assist {
  display: flex;
  min-height: 78px;
  margin-top: clamp(40px,5vw,64px);
  padding: 17px 2px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(0,24,70,.14);
}
.journey-assist > p {
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 11px;
  color: #53667b;
  font-size: 12px;
}
.journey-assist strong { font-weight: 700; }
.journey-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.journey-replay {
  display: inline-flex;
  min-height: 44px;
  padding: 0 4px;
  align-items: center;
  gap: 8px;
  border: 0;
  color: #075ca8;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: color .22s ease, transform .22s var(--ease);
}
.journey-replay:hover { color: var(--navy-900); transform: translateY(-1px); }
.journey-replay:focus-visible,
.journey-apply:focus-visible { outline-color: #075ca8; }
.journey-apply { flex: none; }
[data-motion="steps"].motion-in .journey-intro { animation: stepHeading .58s var(--ease) both; }
[data-motion="steps"].motion-in .journey-path { animation: journeyPathIn .72s .08s var(--ease) both; }

@keyframes journeyNodePulse {
  0% { box-shadow: 0 0 0 0 rgba(94,177,254,.58); }
  74% { box-shadow: 0 0 0 15px rgba(94,177,254,0); }
  100% { box-shadow: 0 0 0 0 rgba(94,177,254,0); }
}
@keyframes journeyPathIn {
  from { opacity: .46; transform: translateY(24px); }
}

.contact-section {
  position: relative;
  padding: clamp(76px,7.5vw,104px) 0;
  overflow: hidden;
  color: var(--navy-900);
  background: #fff;
  isolation: isolate;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(38%, 520px);
  height: 3px;
  background: var(--blue);
}
.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(480px,1.22fr);
  align-items: end;
  gap: clamp(45px,7vw,96px);
}
.contact-label {
  display: block;
  margin-bottom: 15px;
  color: #075ca8;
  font-size: 14px;
  font-weight: 750;
}
.contact-intro h2 {
  max-width: 560px;
  margin-bottom: 17px;
  font-size: clamp(36px,4.2vw,54px);
  scroll-margin-top: 100px;
}
.contact-intro h2:focus-visible { outline: 3px solid #075ca8; outline-offset: 6px; }
.contact-intro p {
  max-width: 560px;
  margin: 0;
  color: #52667f;
  font-size: 17px;
  line-height: 1.65;
  text-wrap: pretty;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  border-block: 1px solid #bfd8ed;
}
.contact-method {
  position: relative;
  display: grid;
  min-height: 204px;
  padding: 28px;
  grid-template-rows: auto 1fr auto;
  color: var(--navy-900);
  transition: color .24s ease, background .28s ease;
}
.contact-method + .contact-method { border-left: 1px solid #bfd8ed; }
.contact-method > span {
  color: #075ca8;
  font-size: 12px;
  font-weight: 750;
}
.contact-method strong {
  display: block;
  margin: 19px 0 22px;
  align-self: start;
  font-size: clamp(18px,1.7vw,22px);
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.contact-method em {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #52667f;
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
}
.contact-method b {
  color: #075ca8;
  font-size: 16px;
  transition: transform .25s var(--ease);
}
.contact-method::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: 0;
  left: 28px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .32s var(--ease);
}
.contact-method:hover,
.contact-method:focus-visible { color: #001337; background: #f1f8ff; }
.contact-method:focus-visible { outline-color: #075ca8; }
.contact-method:hover::after,
.contact-method:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.contact-method:hover b,
.contact-method:focus-visible b { transform: translateX(4px); }
.contact-method-static { cursor: default; }
.contact-method-static:hover {
  color: var(--navy-900);
  background: transparent;
}
.contact-method-static:hover::after { transform: scaleX(0); }
[data-motion="contact"].motion-in .contact-intro { animation: headingFocus .62s var(--ease) both; }
[data-motion="contact"].motion-in .contact-methods { animation: contactMethodsIn .7s .08s var(--ease) both; }

.cta-band {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  color: var(--navy-900);
  background: linear-gradient(120deg, #1799ce 0%, var(--blue) 100%);
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  aspect-ratio: 1;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.42), transparent 66%);
  transform: translate(-55%, -50%);
  opacity: 0;
}
.cta-band.motion-in::before { animation: ctaGlow 1.25s var(--ease) both; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 700px; margin: 0; }
.cta-band p { max-width: 520px; margin: 16px 0 0; color: #0b376d; }
.cta-band .button { color: #fff; border-color: var(--navy-900); background: var(--navy-900); white-space: nowrap; }
.cta-band .button:hover { border-color: var(--navy-700); background: var(--navy-700); }
.cta-band .button.magnetic { transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0); }
.cta-band .button.magnetic:hover { transform: translate3d(var(--mag-x, 0), var(--mag-y, 0), 0) scale(1.025); }

footer { position: relative; z-index: 31; padding: 42px 0 22px; background: var(--navy-900); isolation: isolate; }
footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
}
footer.motion-in::before { animation: footerRule .85s var(--ease) both; }
footer.motion-in .footer-directory > * { animation: footerColumnIn .6s var(--ease) both; }
footer.motion-in .footer-directory > :nth-child(2) { animation-delay: .08s; }
footer.motion-in .footer-directory > :nth-child(3) { animation-delay: .16s; }
footer .container { width: min(calc(100% - 40px), 1240px); }
.footer-top { display: flex; padding-bottom: 20px; align-items: center; justify-content: space-between; gap: 32px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-top .brand { min-width: 0; }
.footer-top .brand img { width: 146px; }
.footer-directory {
  display: grid;
  padding: 5px 0 30px;
  grid-template-columns: minmax(320px,1.2fr) repeat(2,minmax(190px,.65fr));
  align-items: start;
  gap: clamp(44px,7vw,100px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-company .brand { min-width: 0; }
.footer-company .brand img { width: 158px; }
.footer-address {
  display: grid;
  max-width: 410px;
  margin: 22px 0 0;
  gap: 6px;
  color: rgba(255,255,255,.76);
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.65;
}
.footer-address strong { color: #fff; font-size: 14px; font-weight: 650; }
.footer-address span { text-wrap: pretty; }
.footer-address .footer-email {
  display: inline-flex;
  width: fit-content;
  margin-top: 2px;
  color: rgba(255,255,255,.84);
  overflow-wrap: anywhere;
}
.footer-address a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  margin-top: 2px;
  align-items: center;
  color: rgba(255,255,255,.84);
}
.footer-address a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.32);
  transition: background .25s ease, transform .25s var(--ease);
  transform-origin: left center;
}
.footer-address a:hover::after,
.footer-address a:focus-visible::after { background: var(--blue); transform: scaleX(.72); }
.footer-menu { display: grid; align-content: start; }
.footer-menu h2 {
  max-width: none;
  margin: 0 0 17px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer-menu a {
  position: relative;
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  color: rgba(255,255,255,.8);
  font-size: 13.5px;
  line-height: 1.35;
  transition: color .2s ease, transform .25s var(--ease);
}
.footer-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .28s var(--ease);
}
.footer-menu a:hover,
.footer-menu a:focus-visible { color: #fff; transform: translateX(3px); }
.footer-menu a:hover::after,
.footer-menu a:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.footer-utility {
  display: flex;
  min-height: 65px;
  padding: 9px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-utility-label {
  color: rgba(255,255,255,.5);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 6px 22px; }
.footer-links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 0;
  align-items: center;
  color: rgba(255,255,255,.82);
  font-size: 11.5px;
  font-weight: 550;
  letter-spacing: .005em;
}
.footer-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .28s var(--ease);
}
.footer-links a:hover::after, .footer-links a:focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.legal-grid { display: block; padding: 18px 0 4px; }
.legal-block,
.legal-block-wide { display: block; margin: 0 0 13px; padding: 0; border: 0; }
.legal-block h3 {
  display: inline;
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.58;
  letter-spacing: 0;
}
.legal-block h3::after,
.legal-block p + p::before { content: " "; }
.legal-block p {
  display: inline;
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.58;
  letter-spacing: .002em;
  text-wrap: wrap;
}
.footer-bottom {
  display: flex;
  padding-top: 17px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.42);
  font-size: 10.5px;
  text-align: center;
}

.partner-panel { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 65px; }
.partner-sticky { position: sticky; top: 120px; }
.partner-list { display: grid; gap: 12px; }
.partner-item { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 25px; overflow: hidden; border: 1px solid #d5e3f0; border-radius: var(--radius); background: #fff; }
.partner-item .market-icon { margin: 0; }
.partner-item .market-icon { transition: transform .3s var(--ease), background .3s ease; }
.partner-item:hover .market-icon { background: var(--blue); transform: rotate(-6deg) scale(1.08); }
.partner-item { transition: transform .3s var(--ease), border-color .3s ease, background .3s ease; }
.partner-item.is-current { border-color: var(--blue); background: #f8fbff; transform: translateX(-7px); }
.partner-item.is-current .market-icon { color: var(--navy-900); background: var(--blue); transform: rotate(-4deg); }
.partner-item p { margin: 6px 0 0; color: #52667f; line-height: 1.6; }
.revenue-card {
  position: absolute;
  z-index: 4;
  top: auto;
  right: 0;
  bottom: 76px;
  width: 330px;
  padding: 25px;
  border: 1px solid rgba(120,184,255,.32);
  border-radius: 14px;
  background: rgba(1,24,70,.84);
  box-shadow: 0 8px 12px rgba(0,8,36,.3);
  backdrop-filter: blur(12px);
  transform: rotate(2deg);
  animation: partnerCardIn .8s .28s var(--ease) both;
}
.revenue-card h3 { margin: 0 0 28px; font-size: 15px; letter-spacing: 0; }
.revenue-row { display: flex; height: 170px; padding-top: 20px; align-items: end; gap: 12px; border-bottom: 1px solid var(--line); }
.revenue-row span { flex: 1; border-radius: 5px 5px 0 0; background: linear-gradient(var(--blue), #185faa); animation: barSettle .7s var(--ease) both; transform-origin: bottom; }
.revenue-row span:nth-child(1){height:62%}.revenue-row span:nth-child(2){height:38%;animation-delay:.3s}.revenue-row span:nth-child(3){height:76%;animation-delay:.6s}.revenue-row span:nth-child(4){height:54%;animation-delay:.9s}.revenue-row span:nth-child(5){height:88%;animation-delay:1.2s}
.revenue-foot { display:flex; padding-top:18px; justify-content:space-between; color:#b6c7db; font-size:12px; }
.ib-hero .revenue-card { right: 10px; bottom: 76px; width: 280px; padding: 18px; transform: rotate(1deg); }
.ib-hero .revenue-card h3 { margin-bottom: 12px; font-size: 14px; }
.ib-hero .revenue-row { height: 76px; padding-top: 8px; gap: 8px; }
.ib-hero .revenue-foot { padding-top: 12px; gap: 12px; font-size: 10.5px; }
.reveal, .reveal.visible { opacity: 1; transform: none; filter: none; }

[data-motion="trust"].motion-in .trust-item { animation: trustReveal .62s var(--ease) both; animation-delay: calc(var(--i, 0) * 70ms); }
[data-motion="markets"].motion-in .section-head { animation: headingWipe .62s var(--ease) both; }
[data-motion="markets"].motion-in .market-card { animation: marketReveal .72s var(--ease) both; animation-delay: calc(var(--i, 0) * 65ms); }
[data-motion="benefits"].motion-in .section-head, [data-motion="benefits"].motion-in .partner-sticky { animation: headingFocus .62s var(--ease) both; }
[data-motion="benefits"].motion-in .benefit-card { animation: benefitReveal .66s var(--ease) both; animation-delay: calc(var(--i, 0) * 55ms); }
[data-motion="benefits"].motion-in .partner-item { animation: partnerReveal .62s var(--ease) both; animation-delay: calc(var(--i, 0) * 65ms); }
[data-motion="steps"].motion-in .section-head { animation: stepHeading .58s var(--ease) both; }
[data-motion="steps"].motion-in .step { animation: stepReveal .64s var(--ease) both; animation-delay: calc(var(--i, 0) * 95ms); }
[data-motion="steps"].motion-in .step-num { animation: numberDial .7s var(--ease) both; animation-delay: calc(120ms + var(--i, 0) * 95ms); }
[data-motion="cta"].motion-in .cta-row { animation: ctaReveal .72s var(--ease) both; }

@keyframes heroPush { from{transform:scale(1.06)} to{transform:scale(1)} }
@keyframes heroReveal { from{opacity:0;transform:translateY(20px);filter:blur(5px)} to{opacity:1;transform:none;filter:none} }
@keyframes terminalIn { from{opacity:0;transform:translateY(22px) scale(.96)} to{opacity:1;transform:none} }
@keyframes tape { to{transform:translateX(-50%)} }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(94,177,254,.45)} 70%,100%{box-shadow:0 0 0 9px rgba(94,177,254,0)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes bars { 0%,100%{transform:scaleY(.92);opacity:.75} 50%{transform:scaleY(1.04);opacity:1} }
@keyframes partnerCardIn { from { opacity: .2; transform: translateY(20px) rotate(4deg) scale(.96); } to { opacity: 1; transform: translateY(0) rotate(2deg) scale(1); } }
@keyframes barSettle { from { transform: scaleY(.1); opacity: .35; } to { transform: scaleY(1); opacity: 1; } }
@keyframes pressWave { to { opacity: 0; transform: translate(-50%, -50%) scale(18); } }
@keyframes trustReveal { from { opacity: .45; transform: translateY(18px) rotateX(-8deg); filter: blur(3px); } }
@keyframes headingWipe { from { opacity: .55; clip-path: inset(0 28% 0 0); transform: translateX(-18px); } }
@keyframes headingFocus { from { opacity: .45; filter: blur(6px); transform: scale(.985); } }
@keyframes stepHeading { from { opacity: .5; transform: translateY(18px); letter-spacing: .01em; } }
@keyframes marketReveal { from { opacity: .48; transform: translateY(30px) scale(.97); clip-path: inset(0 0 18% 0 round 16px); } }
@keyframes benefitReveal { from { opacity: .5; transform: translateX(-22px) rotateY(-9deg); transform-origin: left center; } }
@keyframes partnerReveal { from { opacity: .45; transform: translateX(30px); clip-path: inset(0 0 0 16% round 16px); } }
@keyframes stepReveal { from { opacity: .44; transform: translateX(-24px); } }
@keyframes numberDial { from { opacity: .3; transform: rotate(-18deg) scale(.82); } }
@keyframes ctaReveal { from { opacity: .5; transform: scale(.97); clip-path: inset(0 14% round 18px); } }
@keyframes ctaGlow { from { opacity: 0; transform: translate(-55%, -50%) scale(.85); } 20% { opacity: 1; } to { opacity: .55; transform: translate(220%, -50%) scale(1.28); } }
@keyframes footerRule { to { transform: scaleX(1); } }
@keyframes footerColumnIn { from { opacity: .35; transform: translateY(14px); clip-path: inset(0 0 18% 0); } }
@keyframes ibChartDraw { from { opacity: .18; stroke-dashoffset: 1; } }
@keyframes ibChartArea { from { opacity: 0; } }
@keyframes ibCandleSet { from { opacity: 0; transform: scaleY(.08); } }
@keyframes ibPointIn { from { opacity: 0; transform: scale(.5); } }
@keyframes ibRouteIn { from { opacity: 0; transform: translateY(12px); } }
@keyframes contactMethodsIn { from { opacity: .42; transform: translateX(24px); clip-path: inset(0 0 0 12%); } }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation: none!important; scroll-behavior: auto!important; transition-duration: .01ms!important; }
  .reveal,[data-motion],.market-card,.benefit-card,.partner-item,.step,.cta-row { opacity: 1!important; transform: none!important; filter: none!important; clip-path: none!important; }
  .scroll-progress,.steps-grid::after { display: none; }
  footer::before { transform: scaleX(1); }
}
@media (max-width: 900px) {
  .nav-links a:not(.button) { display: none; }
  .hero { min-height: 780px; padding-top: 135px; }
  .hero-grid { min-height: 535px; }
  .hero-copy { width: min(68%, 650px); }
  .market-stage { min-height: 535px; }
  .ticker-card { display: none; }
  .market-terminal { right: 0; bottom: 55px; width: 320px; }
  .ib-hero { min-height: 920px; }
  .ib-hero .hero-copy { width: min(82%, 650px); }
  .ib-hero .hero-photo { inset: auto 0 50px; width: 100%; height: auto; aspect-ratio: 1800 / 1013; border-radius: 0; }
  .ib-hero .hero-photo img { object-position: center; }
  .ib-hero::before {
    background:
      linear-gradient(180deg, rgba(0,13,43,.98) 0%, rgba(0,13,43,.95) 38%, rgba(0,13,43,.78) 53%, rgba(0,13,43,.2) 79%, rgba(0,13,43,.62) 100%),
      linear-gradient(90deg, rgba(0,13,43,.66), rgba(0,13,43,.08));
  }
  .ib-market-layer { inset: 70px 0 50px; opacity: .55; }
  .ib-market-map { width: 155%; max-width: none; transform: translateX(-28%); }
  .ib-asset-label { display: none; }
  .ib-partner-route { right: 20px; bottom: 68px; left: 20px; width: auto; min-height: 58px; }
  .ib-partner-route > span { padding: 9px 12px; }
  .ib-partner-route em { display: none; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .market-grid { grid-template-columns: repeat(2,1fr); }
  .market-card,.market-card:nth-child(4) { grid-column: auto; }
  .market-card:last-child { grid-column: 1/-1; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step,.step + .step { padding: 30px 0; border-top: 1px solid #31527c; border-left: 0; }
  .step-num { margin-bottom: 20px; }
  .partner-panel { grid-template-columns: 1fr; }
  .partner-sticky { position: static; }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; align-items: start; gap: 34px; }
  .contact-intro p { max-width: 650px; }
  .contact-methods { width: min(100%, 760px); }
  .footer-directory { grid-template-columns: 1fr 1fr; gap: 28px 60px; }
  .footer-company {
    display: grid;
    padding-bottom: 24px;
    grid-column: 1 / -1;
    grid-template-columns: 190px minmax(0,1fr);
    align-items: start;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .footer-address { margin-top: 0; }
}
@media (max-width: 760px) {
  .journey-intro {
    margin-bottom: 42px;
    text-align: left;
  }
  .journey-intro .eyebrow { justify-content: flex-start; }
  .journey-intro > p { font-size: 16px; }
  .journey-route-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .journey-timeline { margin-top: 30px; }
  .journey-track {
    top: var(--journey-track-top, 28px);
    left: var(--journey-track-left, 28px);
    width: 3px;
    height: var(--journey-track-length, calc(100% - 56px));
  }
  .journey-track-fill {
    background: linear-gradient(180deg, #075ca8, #5eb1fe);
    transform: scaleY(var(--journey-progress));
    transform-origin: top center;
  }
  .journey-signal {
    top: 0;
    left: 50%;
    margin-top: -6px;
    margin-left: 0;
    transform: translate3d(-50%,var(--journey-signal),0);
  }
  .journey-list {
    grid-template-columns: 1fr;
    gap: clamp(34px,8vw,50px);
  }
  .journey-step {
    display: grid;
    padding: 0;
    grid-template-columns: 56px minmax(0,1fr);
    align-items: start;
    gap: 19px;
    text-align: left;
  }
  .journey-node { width: 56px; height: 56px; }
  .journey-number { font-size: 13px; }
  .journey-icon { width: 24px; height: 24px; }
  .journey-copy { max-width: 520px; margin-top: 5px; }
  .journey-copy h3 { font-size: 20px; }
  .journey-path[data-enhanced="true"] .journey-copy { opacity: .48; transform: translateX(9px); }
  .journey-path[data-enhanced="true"] .journey-step.is-active .journey-copy { transform: translateX(0); }
  .journey-assist {
    margin-top: 42px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .journey-actions { width: 100%; justify-content: space-between; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  footer { padding: 32px 0 20px; }
  footer .container { width: min(calc(100% - 28px), 1240px); }
  .section { padding: 80px 0; }
  .journey-actions { flex-wrap: wrap; justify-content: flex-start; gap: 8px 16px; }
  .journey-apply { width: 100%; }
  .nav { height: 70px; }
  .brand { min-width: 142px; }
  .brand img { width: 142px; }
  .nav { gap: 8px; }
  .nav-links { gap: 0; }
  .nav .button { min-height: 44px; padding: 0 13px; font-size: 0; }
  .nav .button::before { content: attr(data-short-label); font-size: 12px; }
  .nav .button .arrow { display: none; }
  h1 { font-size: 44px; }
  .lead { font-size: 17px; }
  .hero { min-height: 700px; padding: 118px 0 80px; }
  .hero::before { background: linear-gradient(90deg,rgba(0,13,43,.99) 0%,rgba(0,19,58,.91) 68%,rgba(0,16,49,.58) 100%),linear-gradient(0deg,rgba(0,12,38,.8),transparent 45%); }
  .ib-hero {
    min-height: 820px;
    min-height: max(820px, 100svh);
    padding: 108px 0 80px;
  }
  .ib-hero::before {
    background:
      linear-gradient(180deg, rgba(0,13,43,.99) 0%, rgba(0,13,43,.98) 45%, rgba(0,13,43,.9) 56%, rgba(0,13,43,.62) 66%, rgba(0,13,43,.22) 78%, rgba(0,13,43,.12) 88%, rgba(0,13,43,.64) 100%),
      linear-gradient(90deg, rgba(0,13,43,.3), rgba(0,13,43,.04));
  }
  .ib-hero .hero-photo {
    inset: auto 0 50px;
    width: 100%;
    height: clamp(320px, 92vw, 390px);
    aspect-ratio: auto;
  }
  .ib-hero .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(0,13,43,.5), transparent 25%),
      linear-gradient(0deg, rgba(0,13,43,.58), transparent 34%);
  }
  .ib-hero .hero-grid { min-height: 0; }
  .ib-hero .hero-copy { width: 100%; padding-top: 0; }
  .ib-hero .eyebrow { margin-bottom: 16px; font-size: 11px; letter-spacing: .13em; }
  .ib-hero h1 {
    max-width: 17ch;
    margin-bottom: 20px;
    font-size: clamp(38px, 10.5vw, 46px);
    line-height: 1;
    letter-spacing: -.03em;
  }
  .ib-hero .lead { max-width: 38ch; font-size: 16px; line-height: 1.55; }
  .ib-hero .hero-actions { margin-top: 24px; }
  .ib-hero .hero-actions .button { width: 100%; max-width: 330px; min-height: 54px; }
  .hero-photo { left: 24%; }
  .retail-hero .hero-photo img { object-position: 69% center; }
  .ib-hero .hero-photo img { object-position: 52% center; }
  .ib-market-layer {
    inset: 52% 0 50px;
    opacity: .5;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
  }
  .ib-market-map { width: 180%; transform: translateX(-38%); }
  .ib-candles { display: none; }
  .ib-partner-route {
    right: 14px;
    bottom: 60px;
    left: 14px;
    min-height: 64px;
    border-radius: 8px;
    box-shadow: none;
  }
  .ib-partner-route > span { padding: 8px 6px; }
  .ib-partner-route > span:not(:last-child)::after { display: none; }
  .ib-partner-route small { font-size: 8px; }
  .ib-partner-route b { font-size: 10px; line-height: 1.2; }
  .hero-grid { min-height: 500px; }
  .hero-copy { width: 100%; padding-top: 18px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .button { width: min(100%, 280px); }
  .market-stage,.scroll-cue { display: none; }
  .market-tape-track span { padding: 0 18px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 22px 15px; }
  .section-head { display: block; margin-bottom: 35px; }
  .market-grid,.benefit-grid { grid-template-columns: 1fr; }
  .market-card,.market-card:nth-child(4),.market-card:last-child { grid-column: auto; min-height: 290px; }
  .partner-item { grid-template-columns: 48px 1fr; padding: 20px; }
  .partner-item .market-icon { width: 44px; height: 44px; }
  .revenue-card { top: auto; right: 0; bottom: 26px; width: 285px; }
  .contact-section { padding: 72px 0; }
  .contact-intro h2 { font-size: clamp(34px,10vw,44px); }
  .contact-intro p { font-size: 16px; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-method { min-height: 158px; padding: 24px; }
  .contact-method + .contact-method { border-top: 1px solid #bfd8ed; border-left: 0; }
  .contact-method::after { right: 24px; left: 24px; }
  .footer-top { padding-bottom: 16px; align-items: flex-start; flex-direction: column; gap: 10px; }
  .footer-top .brand img { width: 134px; }
  .footer-directory { padding: 2px 0 24px; gap: 26px 18px; }
  .footer-company { display: block; padding-bottom: 22px; }
  .footer-company .brand img { width: 144px; }
  .footer-address { margin-top: 18px; font-size: 13px; }
  .footer-address strong { font-size: 13.5px; }
  .footer-menu h2 { margin-bottom: 11px; font-size: 10.5px; }
  .footer-menu a { min-height: 44px; font-size: 13px; }
  .footer-utility { min-height: 0; padding: 12px 0; align-items: flex-start; flex-direction: column; gap: 3px; }
  .footer-links { display: grid; width: 100%; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 16px; justify-content: stretch; }
  .footer-links a { min-height: 44px; }
  .legal-grid { padding-top: 17px; }
  .legal-block,.legal-block-wide { margin-bottom: 12px; }
  .legal-block h3,.legal-block p { font-size: 10.5px; line-height: 1.5; }
  .footer-bottom { padding-top: 15px; flex-direction: row; justify-content: center; }
}
@media (max-width: 340px) {
  .ib-hero .hero-actions .button {
    padding-inline: 16px;
    gap: 8px;
    font-size: 15px;
    white-space: nowrap;
  }
}
