@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/instrument-serif-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/instrument-serif-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./assets/fonts/plus-jakarta-sans-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/plus-jakarta-sans-italic.woff2") format("woff2");
}

:root {
  --navy: #031b31;
  --navy-mid: #0a2740;
  --ink: #071b2e;
  --gold: #c5a059;
  --gold-deep: #a07f3a;
  --paper: #f4f0e7;
  --snow: #fffdf8;
  --mist: #eaf0f3;
  --panel: #f8fafb;
  --graphite: #5c6b76;
  --electric: #2575ff;
  --teal: #22c7a9;
  --amber: #e0ad4f;
  --hero-ink: #061a27;
  --hero-ocean: #0b3a55;
  --line: rgba(7, 27, 46, .14);
  --line-light: rgba(255, 253, 248, .14);
  --max: 1360px;
  --gutter: clamp(20px, 5vw, 72px);
  --header: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --editorial: "Instrument Serif", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 17px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  content: "";
}
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
button, a { cursor: pointer; -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.wrap { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.kicker {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.dark .kicker,
.hero .kicker { color: var(--gold); }
.display, .headline {
  margin: 0;
  font-weight: 600;
  letter-spacing: -.065em;
  line-height: .9;
  text-wrap: balance;
}
.display { font-size: clamp(48px, 8.8vw, 112px); }
.headline { max-width: 18ch; font-size: clamp(40px, 6.3vw, 84px); }
.lede {
  max-width: 42rem;
  margin: 22px 0 0;
  color: var(--graphite);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}
.dark .lede { color: rgba(255, 253, 248, .72); }

.skip {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 80;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--snow);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip:focus { transform: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  min-width: 44px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: #d4b36e; }
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--ghost:hover { background: rgba(255, 253, 248, .08); }
.btn--text {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 700;
}
.btn--text:hover { color: var(--gold); }

.site-header {
  height: var(--header);
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
  color: var(--snow);
  background: transparent;
  transition: height 220ms ease, background 220ms ease, color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(3, 27, 49, .78);
  backdrop-filter: blur(16px);
}
.site-header.is-light {
  color: var(--ink);
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(16px);
}
.site-header.is-light .logo-dark { display: block; }
.site-header.is-light .logo-light { display: none; }
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.logo { width: 118px; height: auto; }
.logo-dark { display: none; }
.nav-main {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
}
.nav-main a {
  font-size: .88rem;
  font-weight: 600;
}
.nav-main a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang {
  display: flex;
  gap: 2px;
  padding: 4px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .72;
}
.lang button {
  min-width: 36px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: .72rem;
  font-weight: 800;
}
.lang button[aria-pressed="true"] {
  background: var(--gold);
  color: var(--ink);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}
.menu-toggle span { position: relative; margin: auto; }
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }
.mobile-panel { display: none; }

.hero {
  min-height: 100dvh;
  margin-top: calc(var(--header) * -1);
  padding: calc(var(--header) + 48px) 0 72px;
  color: var(--snow);
  background:
    radial-gradient(circle at 76% 48%, rgba(197, 160, 89, .07), transparent 28%),
    #041525;
}
.hero-stage {
  min-height: calc(100dvh - var(--header) - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-title {
  width: 100%;
  margin-top: clamp(24px, 4vh, 52px);
  font-size: clamp(68px, 10.8vw, 154px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
}
.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(310px, .8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-top: clamp(28px, 5vh, 58px);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, .18);
}
.hero-lower > * { min-width: 0; }
.hero-lower .lede { max-width: 38rem; margin: 0; }
.hero-lower .hero-actions { margin: 0; }
.hero-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.hero-principles span {
  min-width: 0;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 253, 248, .16);
}
.hero-principles i {
  display: block;
  color: var(--gold);
  font: italic 1rem/1 var(--editorial);
}
.hero-principles b {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, .58);
  font-size: .62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise .8s var(--ease) forwards;
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.section {
  padding-block: clamp(88px, 9vw, 124px);
  position: relative;
  overflow: clip;
}
.section--paper { background: var(--paper); }
.section--snow { background: var(--panel); }
.section--navy {
  color: var(--snow);
  background: var(--navy);
}

.perspective-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 64px;
  align-items: center;
}
.goals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.goal {
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-weight: 700;
}
.goal[aria-pressed="true"],
.goal:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--snow);
}
.goal-card {
  min-height: 320px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  color: var(--snow);
  background:
    radial-gradient(circle at 90% 10%, rgba(197, 160, 89, .2), transparent 32%),
    var(--navy);
  box-shadow: 0 28px 70px rgba(3, 27, 49, .17);
}
.goal-card dt {
  margin: 22px 0 6px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.goal-card dt:first-child { margin-top: 0; }
.goal-card dd { margin: 0; font-size: 1.35rem; font-weight: 600; letter-spacing: -.03em; }
.goal-card .note { color: rgba(255, 253, 248, .56); }
.note {
  margin-top: 28px;
  color: var(--graphite);
  font-size: .88rem;
}

#smartinvest {
  background:
    radial-gradient(circle at 82% 18%, rgba(197, 160, 89, .12), transparent 24%),
    var(--mist);
}
#smartinvest > .wrap:first-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
#smartinvest > .wrap:first-child .lede { margin: 0; }
.si-track {
  height: auto !important;
  margin-top: clamp(48px, 7vw, 84px);
  position: relative;
}
.si-sticky {
  min-height: 640px;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
  gap: 12px;
  position: static;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  color: var(--snow);
  background: var(--navy);
  box-shadow: 0 34px 90px rgba(3, 27, 49, .2);
}
.si-sticky > div:first-child {
  padding: clamp(22px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
.si-steps { display: grid; gap: 8px; margin: 0; }
.si-step {
  width: 100%;
  min-height: 84px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 253, 248, .56);
  background: transparent;
  text-align: left;
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease);
}
.si-step:hover { color: var(--snow); background: rgba(255, 255, 255, .06); }
.si-step.is-active {
  color: var(--ink);
  background: var(--snow);
  transform: translateX(6px);
}
.si-step span {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.si-step strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.03em;
}
.si-step.is-active span { color: var(--gold-deep); }
.si-sticky .btn--text { margin-top: auto !important; color: var(--snow); }
.si-visual {
  overflow: hidden;
  min-height: 616px;
  border: 0;
  border-radius: 21px;
  color: var(--ink);
  background: var(--panel);
}
.si-visual figure { display: none; margin: 0; }
.si-visual figure.is-active {
  min-height: 616px;
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  animation: visual-in 500ms var(--ease) both;
}
.si-visual figcaption {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.si-visual figcaption span {
  color: var(--gold-deep);
  font: italic 2rem/1 var(--editorial);
}
.si-visual figcaption small {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.visual-caption {
  max-width: 34rem;
  margin: auto 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--graphite);
  font-size: .92rem;
}
.goal-composition {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: auto 0;
}
.goal-composition span {
  min-height: 118px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(7, 27, 46, .1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 27, 46, .06);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 650;
  letter-spacing: -.03em;
}
.goal-composition .is-selected {
  color: var(--snow);
  border-color: var(--navy);
  background:
    radial-gradient(circle at 86% 18%, rgba(197, 160, 89, .28), transparent 32%),
    var(--navy);
}
.horizon-composition {
  margin: auto 0;
  padding: 40px 0;
}
.horizon-years {
  display: flex;
  justify-content: space-between;
  color: var(--graphite);
  font-size: .72rem;
  font-weight: 700;
}
.horizon-track {
  height: 2px;
  position: relative;
  margin: 20px 0 28px;
  background: rgba(7, 27, 46, .18);
}
.horizon-track::before,
.horizon-track::after {
  width: 10px;
  height: 10px;
  position: absolute;
  top: -4px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--paper);
  content: "";
}
.horizon-track::before { left: 0; }
.horizon-track::after { right: 0; }
.horizon-track i {
  width: 68%;
  height: 4px;
  position: absolute;
  top: -1px;
  left: 0;
  background: var(--gold);
}
.horizon-track i::after {
  width: 18px;
  height: 18px;
  position: absolute;
  top: -7px;
  right: -9px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--navy);
  content: "";
}
.horizon-composition strong {
  font: 400 clamp(3rem, 6vw, 5.4rem)/.9 var(--editorial);
  letter-spacing: -.04em;
}
.risk-composition {
  margin: auto 0;
}
.risk-statement small {
  color: var(--gold-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.risk-statement strong {
  max-width: 12ch;
  display: block;
  margin-top: 12px;
  font: 400 clamp(2.6rem, 5vw, 4.8rem)/.92 var(--editorial);
  letter-spacing: -.04em;
}
.risk-scale {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  border-bottom: 2px solid rgba(7, 27, 46, .16);
}
.risk-scale span {
  padding-bottom: 14px;
  color: var(--graphite);
  font-size: .72rem;
}
.risk-scale span:nth-child(2) { text-align: center; }
.risk-scale span:nth-child(3) { text-align: right; }
.risk-scale i {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 27%;
  bottom: -7px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--gold-deep);
}
.strategy-composition {
  margin: auto 0;
  display: grid;
  grid-template-columns: minmax(180px, .75fr) 1.25fr;
  gap: 44px;
  align-items: center;
}
.strategy-ring {
  width: min(100%, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 34px solid var(--navy);
  border-right-color: var(--gold);
  border-bottom-color: #84939e;
  border-radius: 50%;
  transform: rotate(-24deg);
}
.strategy-ring span {
  font: italic 4rem/1 var(--editorial);
  transform: rotate(24deg);
}
.strategy-legend { border-top: 1px solid var(--line); }
.strategy-legend div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.strategy-legend i { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); }
.strategy-legend div:nth-child(2) i { background: var(--gold); }
.strategy-legend div:nth-child(3) i { background: #84939e; }
.strategy-legend span { font-size: .86rem; }
.strategy-legend strong { font: italic 1.25rem/1 var(--editorial); }
.monitor-composition {
  margin: auto 0;
  position: relative;
}
.monitor-composition svg { width: 100%; overflow: visible; }
.monitor-grid {
  fill: none;
  stroke: rgba(7, 27, 46, .1);
  stroke-width: 1;
}
.monitor-path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 3;
}
.monitor-composition circle { fill: var(--gold); }
.monitor-note {
  width: 190px;
  padding: 16px;
  position: absolute;
  top: 34%;
  right: 12%;
  color: var(--snow);
  background: var(--navy);
}
.monitor-note small { display: block; color: var(--gold); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.monitor-note strong { display: block; margin-top: 6px; font-size: 1rem; }
@keyframes visual-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.coach-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}
.coach-panel {
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background: var(--navy);
  box-shadow: 0 30px 80px rgba(3, 27, 49, .18);
}
.coach-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: var(--snow);
}
.coach-bar small {
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.coach-qs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 14px;
}
.chip {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 253, 248, .72);
  font-size: .86rem;
  font-weight: 650;
}
.chip[aria-pressed="true"],
.chip:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.coach-thread {
  min-height: 300px;
  padding: 18px 22px 28px;
  border-radius: 20px;
  background: var(--panel);
}
.bubble {
  max-width: 92%;
  margin: 14px 0 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--paper);
}
.bubble--user { margin-left: auto; background: var(--navy-mid); color: var(--snow); }
.bubble span {
  display: block;
  margin-bottom: 6px;
  opacity: .62;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ecosystem {
  min-height: 580px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  margin-top: 72px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  background: var(--navy);
  box-shadow: 0 34px 90px rgba(3, 27, 49, .18);
}
.ecosystem__core,
.ecosystem__line { display: none; }
.ecosystem__node {
  width: auto;
  min-height: 0;
  padding: clamp(26px, 4vw, 48px);
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  color: var(--snow);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025));
}
.ecosystem__node::before {
  width: 42%;
  height: 4px;
  margin-bottom: auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(197, 160, 89, .1));
  content: "";
}
.ecosystem__node span { color: var(--gold); font: italic 1.5rem/1 var(--editorial); }
.ecosystem__node h3 { margin: 12px 0 5px; font-size: clamp(1.5rem, 2.4vw, 2.2rem); letter-spacing: -.045em; }
.ecosystem__node p { margin: 0; color: rgba(255, 253, 248, .58); font-size: .9rem; }
.ecosystem__node--home,
.ecosystem__node--accounts,
.ecosystem__node--transfers,
.ecosystem__node--performance { grid-column: auto; grid-row: auto; }

.liquidity-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(197, 160, 89, .18), transparent 22%),
    #dfe8e3;
}
.liquidity-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr);
  gap: clamp(64px, 9vw, 140px);
  align-items: center;
}
.liquidity-copy,
.liquidity-products article > div { min-width: 0; max-width: 100%; }
.liquidity-copy .headline { max-width: 11ch; }
.liquidity-products { margin-top: 48px; }
.liquidity-products article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(7, 27, 46, .14);
}
.liquidity-products article:last-child { border-bottom: 1px solid rgba(7, 27, 46, .14); }
.liquidity-product__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px 16px 24px 16px;
  color: var(--snow);
  background: var(--navy);
}
.liquidity-products article:last-child .liquidity-product__icon {
  color: var(--navy);
  background: var(--gold);
  border-radius: 16px 24px 16px 16px;
}
.liquidity-product__icon svg { width: 24px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.liquidity-products h3 { margin: 0 0 6px; font-size: 1.25rem; letter-spacing: -.035em; }
.liquidity-products p { margin: 0; color: var(--graphite); font-size: .92rem; }
.liquidity-note {
  max-width: 38rem;
  margin: 24px 0 0;
  color: var(--graphite);
  font-size: .76rem;
  line-height: 1.55;
}
.liquidity-visual {
  min-height: 650px;
  position: relative;
}
.debit-card {
  width: min(72%, 390px);
  aspect-ratio: 1.58;
  padding: 28px;
  position: absolute;
  top: 34px;
  left: 2%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 34px 34px 72px 34px;
  color: var(--snow);
  background:
    radial-gradient(circle at 84% 18%, rgba(197, 160, 89, .32), transparent 25%),
    linear-gradient(145deg, #0e3856, #031827 72%);
  box-shadow: 0 34px 80px rgba(7, 27, 46, .26);
  transform: rotate(-5deg);
}
.debit-card__top,
.debit-card__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.debit-card__top strong { font-size: 1.15rem; }
.debit-card__top span,
.debit-card__bottom small {
  color: rgba(255, 253, 248, .58);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.debit-card__mark {
  margin: auto 0;
  color: var(--gold);
  font: italic 4.2rem/.8 var(--editorial);
}
.debit-card__bottom > span { font-size: .84rem; letter-spacing: .15em; }
.credit-surface {
  width: min(78%, 470px);
  min-height: 340px;
  padding: clamp(30px, 4vw, 48px);
  position: absolute;
  right: 0;
  bottom: 36px;
  z-index: 1;
  border-radius: 46px 46px 46px 112px;
  background: rgba(255, 253, 248, .93);
  box-shadow: 0 40px 90px rgba(7, 27, 46, .14);
  transform: rotate(2.2deg);
}
.credit-surface__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gold-deep);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.credit-surface h3 {
  max-width: 10ch;
  margin: 32px 0;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.credit-flow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
}
.credit-flow i { height: 2px; position: relative; background: var(--gold); }
.credit-flow i::after {
  width: 8px;
  height: 8px;
  position: absolute;
  top: -3px;
  right: 0;
  border-radius: 50%;
  background: var(--navy);
  content: "";
}
.credit-surface > p { margin: 24px 0 0; color: var(--graphite); font-size: .78rem; line-height: 1.5; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(3, 27, 49, .12);
}
.split article {
  min-height: 420px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
.split article:first-child {
  background: var(--navy);
  color: var(--snow);
}
.split article:last-child { background: var(--snow); }
.split h3 {
  margin: 12px 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.045em;
}
.split p { margin: 0 0 28px; max-width: 34ch; }
.split .btn { margin-top: auto; align-self: flex-start; }

.trading-visual {
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--line-light);
  border-radius: 28px;
  background: #06111d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .22);
}
.terminal-head {
  min-height: 76px;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}
.terminal-brand { color: var(--gold); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.terminal-search {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line-light);
  color: rgba(255, 253, 248, .42);
  font-size: .8rem;
}
.terminal-status { font-size: .75rem; }
.terminal-status::before {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}
.terminal-grid {
  min-height: 490px;
  display: grid;
  grid-template-columns: .42fr 1.2fr .55fr;
}
.terminal-grid > div { padding: 28px; }
.terminal-grid small {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.terminal-watch { border-right: 1px solid var(--line-light); }
.terminal-watch div {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line-light);
}
.terminal-watch div:last-child { border-bottom: 1px solid var(--line-light); }
.terminal-watch span { color: rgba(255, 253, 248, .48); font: italic 1.25rem/1 var(--editorial); }
.terminal-watch i {
  width: var(--w, 72%);
  height: 5px;
  background: rgba(255, 253, 248, .28);
}
.terminal-watch div:nth-child(2) i { --w: 58%; }
.terminal-watch div:nth-child(3) i { --w: 86%; }
.terminal-watch div:nth-child(4) i { --w: 66%; }
.terminal-chart {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
}
.terminal-chart svg { width: 100%; margin: auto 0; }
.terminal-gridline { fill: none; stroke: rgba(255, 253, 248, .08); stroke-width: 1; }
.terminal-path { fill: none; stroke: var(--gold); stroke-width: 2; }
.terminal-action { display: flex; flex-direction: column; }
.terminal-action strong { font: 400 clamp(2rem, 3vw, 3.2rem)/.95 var(--editorial); }
.terminal-action > span { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255, 253, 248, .58); font-size: .8rem; }
.terminal-action button {
  min-height: 46px;
  margin-top: 16px;
  border: 1px solid rgba(197, 160, 89, .36);
  background: transparent;
  color: var(--gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  counter-reset: trust;
  border-top: 1px solid var(--line);
}
.trust-grid article {
  min-height: 190px;
  padding: 28px 40px 28px 56px;
  position: relative;
  counter-increment: trust;
  border-bottom: 1px solid var(--line);
}
.trust-grid article:nth-child(odd) { border-right: 1px solid var(--line); }
.trust-grid article::before {
  position: absolute;
  top: 31px;
  left: 0;
  color: var(--gold-deep);
  font: italic 1.35rem/1 var(--editorial);
  content: "0" counter(trust);
}
.trust-grid h3 {
  margin: 0 0 10px;
  max-width: 17ch;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -.045em;
  line-height: 1.1;
}
.trust-grid p { margin: 0; color: var(--graphite); }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.learn-card {
  min-height: 320px;
  padding: 30px 34px 30px 0;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}
.learn-card + .learn-card { padding-left: 34px; border-left: 1px solid var(--line); }
.learn-card small {
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.learn-card h3 {
  margin: 18px 0 auto;
  font: 400 clamp(2rem, 3vw, 2.8rem)/1 var(--editorial);
  letter-spacing: -.035em;
}

.cta-final { text-align: left; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  align-items: center;
}

.site-footer {
  padding: 72px 0 40px;
  color: rgba(255, 253, 248, .72);
  background: #02101c;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(0, .7fr));
  gap: 32px;
}
.site-footer h2 {
  max-width: 14ch;
  margin: 22px 0 0;
  color: var(--snow);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.1;
}
.site-footer h3 {
  margin: 0 0 16px;
  color: var(--snow);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.site-footer a { display: block; padding: 6px 0; }
.site-footer a:hover { color: var(--snow); }
.legal-line {
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-size: .82rem;
  line-height: 1.55;
}

/* Organic technology direction */
.hero-lower { border-top-color: rgba(255, 255, 255, .1); }

.section--paper {
  background:
    radial-gradient(circle at 8% 12%, rgba(197, 160, 89, .08), transparent 24%),
    #f3f1ea;
}
.section--snow { background: #f3f6f4; }
.perspective-grid { gap: clamp(64px, 10vw, 150px); }
.goal-card {
  min-height: 470px;
  padding: clamp(52px, 6vw, 82px);
  border: 0;
  border-radius: 43% 57% 62% 38% / 40% 43% 57% 60%;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 22%, rgba(197, 160, 89, .25), transparent 24%),
    #dfe8e3;
  box-shadow: 0 40px 100px rgba(7, 27, 46, .1);
  transform: rotate(1.5deg);
}
.goal-card dl,
.goal-card .note { transform: rotate(-1.5deg); }
.goal-card dt { color: var(--gold-deep); }
.goal-card .note { color: var(--graphite); }

#smartinvest {
  color: var(--snow);
  background:
    radial-gradient(ellipse at 86% 18%, rgba(197, 160, 89, .15), transparent 25%),
    radial-gradient(ellipse at 18% 78%, rgba(48, 98, 119, .26), transparent 32%),
    #031827;
}
#smartinvest .headline,
#smartinvest .lede { color: inherit; }
#smartinvest .lede { color: rgba(255, 253, 248, .62); }
.journey#smartinvest {
  padding-block: clamp(56px, 5vw, 72px);
  scroll-margin-top: var(--header);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(197, 160, 89, .1), transparent 22%),
    #f2f4f1;
}
.journey#smartinvest .headline {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 68px);
}
.journey#smartinvest .lede { color: var(--graphite); }
.journey-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .7fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}
.journey-intro .headline { max-width: 12ch; }
.journey-intro .lede { margin: 0; }
.plan-builder {
  margin-top: clamp(30px, 3.5vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
}
.section-index {
  color: var(--gold-deep);
  font: italic 2rem/1 var(--editorial);
}
.plan-question h3 {
  max-width: 12ch;
  margin: 0 0 14px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: .98;
  letter-spacing: -.055em;
}
.plan-question > p {
  max-width: 34rem;
  margin: 0;
  color: var(--graphite);
}
.plan-question .goals { margin-top: 24px; }
.plan-question > .btn { margin-top: 22px; }
.plan-preview {
  min-height: 340px;
  padding: clamp(30px, 3.5vw, 42px);
  border-radius: 54px 54px 130px 54px;
  color: var(--snow);
  background:
    radial-gradient(circle at 86% 12%, rgba(197, 160, 89, .24), transparent 24%),
    var(--navy);
  box-shadow: 0 44px 100px rgba(7, 27, 46, .2);
}
.plan-preview__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}
.plan-preview__top small,
.plan-facts small {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.plan-preview__top strong {
  display: block;
  margin-top: 9px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.plan-avatar {
  width: 54px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font: italic 2rem/1 var(--editorial);
}
.plan-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 30px;
}
.plan-facts div { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .16); }
.plan-facts strong { display: block; margin-top: 7px; font-size: 1.05rem; }
.plan-progress {
  height: 6px;
  margin-top: 42px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}
.plan-progress i { width: 68%; height: 100%; display: block; border-radius: inherit; background: var(--gold); }
.plan-message {
  max-width: 34rem;
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.55;
}
.plan-preview .note { margin-top: 18px; color: rgba(255, 253, 248, .48); }
.journey-flow {
  margin-top: clamp(64px, 9vw, 110px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}
.journey-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.journey-flow article > span { color: var(--gold-deep); font: italic 1.6rem/1 var(--editorial); }
.journey-flow h3 { margin: 0 0 9px; font-size: 1.25rem; letter-spacing: -.035em; }
.journey-flow p { margin: 0; color: var(--graphite); font-size: .9rem; }
.journey-flow > .btn { grid-column: 1 / -1; justify-self: start; }
.si-track::before {
  width: 48%;
  aspect-ratio: 1;
  position: absolute;
  right: -8%;
  bottom: -12%;
  border-radius: 50%;
  background: rgba(197, 160, 89, .14);
  filter: blur(72px);
  content: "";
}
.si-sticky {
  min-height: 660px;
  padding: 0;
  grid-template-columns: minmax(300px, .62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 7vw, 108px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.si-sticky > div:first-child { padding: 34px 0; }
.si-step {
  min-height: 88px;
  padding: 18px 12px 18px 30px;
  position: relative;
  border-radius: 0;
  color: rgba(255, 253, 248, .32);
}
.si-step::before {
  width: 2px;
  height: 0;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transition: height 300ms var(--ease), top 300ms var(--ease);
}
.si-step:hover { background: transparent; }
.si-step.is-active {
  color: var(--snow);
  background: transparent;
  transform: translateX(10px);
}
.si-step.is-active::before { height: 64%; top: 18%; }
.si-step.is-active span { color: var(--gold); }
.si-visual {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  border-radius: 58px 58px 150px 58px;
  background:
    radial-gradient(circle at 88% 12%, rgba(197, 160, 89, .12), transparent 20%),
    #f7f8f5;
  box-shadow: 0 50px 120px rgba(0, 0, 0, .28);
  transform: rotate(.65deg);
}
.si-visual figure.is-active {
  min-height: 640px;
  transform: rotate(-.65deg);
  transform-origin: center;
}
.goal-composition { gap: 14px; }
.goal-composition span {
  border: 0;
  border-radius: 32px 32px 70px 32px;
  box-shadow: 0 18px 50px rgba(7, 27, 46, .08);
}
.goal-composition span:nth-child(2),
.goal-composition span:nth-child(3) { border-radius: 70px 32px 32px 32px; }

.coach-grid { gap: clamp(72px, 10vw, 150px); }
.coach-panel {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.coach-bar {
  padding: 0 8px 18px;
  border-bottom: 0;
  color: var(--ink);
}
.coach-qs { padding: 0 0 24px; }
.coach-panel .chip {
  border-color: rgba(7, 27, 46, .14);
  color: var(--ink);
  background: rgba(255, 255, 255, .45);
}
.coach-panel .chip[aria-pressed="true"],
.coach-panel .chip:hover { border-color: var(--navy); background: var(--navy); color: var(--snow); }
.coach-thread {
  min-height: 380px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 54px 54px 54px 132px;
  background:
    radial-gradient(circle at 88% 12%, rgba(197, 160, 89, .17), transparent 22%),
    #fff;
  box-shadow: 0 40px 100px rgba(7, 27, 46, .12);
  transform: rotate(-1deg);
}
.coach-thread .bubble { transform: rotate(1deg); }
.coach-thread .bubble:not(.bubble--user) {
  padding-inline: 0;
  border-radius: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.ecosystem {
  min-height: 560px;
  padding: 0;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.ecosystem__flow {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}
.ecosystem__flow path {
  fill: none;
  stroke: rgba(7, 27, 46, .16);
  stroke-width: 2;
}
.ecosystem__flow circle {
  fill: var(--gold);
  stroke: #f3f6f4;
  stroke-width: 8;
}
.ecosystem__node {
  width: min(23%, 280px);
  min-height: 0;
  padding: 0;
  position: absolute;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}
.ecosystem__node::before { display: none; }
.ecosystem__node span { font-size: 2rem; }
.ecosystem__node h3 { font-size: clamp(2rem, 3.4vw, 3.5rem); }
.ecosystem__node p { color: var(--graphite); }
.ecosystem__node--home { top: 8%; left: 4%; }
.ecosystem__node--accounts { top: 49%; left: 30%; }
.ecosystem__node--transfers { top: 16%; left: 60%; }
.ecosystem__node--performance { right: 0; bottom: 5%; }

.split {
  overflow: visible;
  gap: 24px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.split article {
  min-height: 500px;
  border: 0;
  box-shadow: 0 36px 90px rgba(7, 27, 46, .12);
}
.split article:first-child {
  border-radius: 48px 132px 48px 48px;
  transform: translateY(-18px) rotate(-.8deg);
}
.split article:last-child {
  border-radius: 132px 48px 48px 48px;
  background: #e2eae5;
  transform: translateY(22px) rotate(.8deg);
}
.trading-visual {
  border: 0;
  border-radius: 64px 64px 160px 64px;
  box-shadow: 0 50px 120px rgba(0, 0, 0, .3);
}
.trust-grid { gap: 24px; border: 0; }
.trust-grid article {
  min-height: 220px;
  padding: 34px 28px 28px 76px;
  overflow: hidden;
  border: 0 !important;
}
.trust-grid article::before {
  top: 18px;
  left: 4px;
  color: rgba(160, 127, 58, .28);
  font-size: 4.8rem;
}
:where(
  .hero-stage,
  .hero-lower,
  .perspective-grid,
  .goal-card,
  .si-sticky,
  .si-visual,
  .coach-grid,
  .coach-panel,
  .coach-thread,
  .ecosystem,
  .split,
  .trading-visual,
  .liquidity-grid,
  .liquidity-visual,
  .terminal-grid
) {
  min-width: 0;
  max-width: 100%;
}
.coach-panel,
.coach-thread,
.bubble,
.si-step,
.ecosystem__node { overflow-wrap: anywhere; }

.sticky-start {
  display: none;
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 30;
}
.sticky-start.is-visible { display: inline-flex; }

@media (min-width: 701px) {
  .sticky-start { display: none !important; }
}

@media (max-width: 1080px) {
  .nav-main, .lang { display: none; }
  .menu-toggle { display: grid; }
  .mobile-panel {
    display: none;
    padding: 12px 0 24px;
    position: absolute;
    inset: 100% 0 auto;
    background: var(--navy);
    color: var(--snow);
  }
  .site-header.is-open .mobile-panel { display: grid; }
  .mobile-panel a, .mobile-panel button {
    min-height: 48px;
    padding: 12px var(--gutter);
    border: 0;
    background: none;
    color: inherit;
    text-align: left;
  }
  .perspective-grid,
  .coach-grid,
  .liquidity-grid,
  .split,
  .trust-grid,
  .learn-grid,
  .footer-grid { grid-template-columns: 1fr; }
  #smartinvest > .wrap:first-child { grid-template-columns: 1fr; gap: 22px; }
  #smartinvest > .wrap:first-child .lede { margin-top: 0; }
  .si-track { height: auto !important; }
  .si-sticky {
    min-height: 0;
    position: static;
    grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
    gap: 12px;
  }
  .goal-card,
  .goal-card dl,
  .goal-card .note,
  .si-visual,
  .si-visual figure.is-active,
  .coach-thread,
  .coach-thread .bubble,
  .split article { transform: none !important; }
  .hero-lower {
    grid-template-columns: 1fr 1fr;
  }
  .hero-principles {
    grid-column: 1 / -1;
    margin-top: 12px;
  }
  .ecosystem { min-height: 580px; }
  .ecosystem__node { width: min(25%, 240px); }
  .liquidity-visual { width: min(100%, 680px); min-height: 610px; margin-inline: auto; }
  .terminal-grid { grid-template-columns: .55fr 1.45fr; }
  .terminal-action {
    grid-column: 1 / -1;
    min-height: 220px;
    border-top: 1px solid var(--line-light);
  }
  .terminal-action > span { margin-top: 36px; }
  .trust-grid article:nth-child(odd) { border-right: 0; }
  .learn-card + .learn-card { padding-left: 0; border-left: 0; }
}

@media (max-width: 900px) {
  .journey-intro,
  .plan-builder { grid-template-columns: 1fr; }
  .journey-intro { gap: 24px; }
  .plan-builder { gap: 44px; }
  .ecosystem {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }
  .ecosystem__flow { display: none; }
  .ecosystem__node {
    width: auto;
    min-height: 180px;
    padding-block: 28px;
    position: static;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  :root { --header: 72px; }
  .wrap { width: min(calc(100% - 40px), var(--max)); }
  .display { font-size: clamp(43px, 12vw, 52px); letter-spacing: -.072em; }
  .headline { font-size: clamp(38px, 11vw, 52px); }
  .header-inner { gap: 10px; }
  .logo { width: 96px; }
  .header-actions > .btn--ghost { display: none; }
  .header-actions > .btn--gold { min-height: 42px; padding: 9px 16px; }
  .hero { min-height: auto; padding-bottom: 64px; }
  .hero-stage { min-height: calc(100dvh - var(--header)); padding-top: 42px; justify-content: flex-start; }
  .hero-lower {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }
  .hero-principles {
    grid-template-columns: repeat(2, 1fr);
    grid-column: auto;
    gap: 22px 2px;
    margin-top: 8px;
  }
  .journey-intro .headline { max-width: 100%; }
  .plan-builder { margin-top: 52px; }
  .plan-preview {
    min-height: 0;
    padding: 34px 26px 46px;
    border-radius: 34px 34px 84px 34px;
  }
  .plan-preview__top strong { font-size: clamp(2rem, 10vw, 3rem); }
  .plan-facts { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .journey-flow { grid-template-columns: 1fr; gap: 24px; margin-top: 64px; }
  .liquidity-products { margin-top: 36px; }
  .liquidity-copy,
  .liquidity-copy .lede,
  .liquidity-products,
  .liquidity-note { width: 100%; max-width: 100%; overflow-wrap: anywhere; }
  .liquidity-visual { min-height: 540px; }
  .debit-card {
    width: 82%;
    padding: 22px;
    left: 0;
    border-radius: 28px 28px 58px 28px;
    transform: rotate(-2deg);
  }
  .credit-surface {
    width: 88%;
    min-height: 300px;
    padding: 28px 24px;
    right: 0;
    bottom: 10px;
    border-radius: 34px 34px 34px 78px;
    transform: rotate(1deg);
  }
  .credit-surface__head { flex-direction: column; gap: 5px; }
  .credit-surface h3 { margin: 24px 0; font-size: 2rem; }
  .section { padding-block: 80px; }
  .goal-card {
    min-height: 400px;
    padding: 40px 30px;
    border-radius: 34px 88px 34px 72px;
    transform: none;
  }
  .goal-card dl,
  .goal-card .note { transform: none; }
  .si-sticky { padding: 8px; border-radius: 24px; }
  .si-sticky > div:first-child { padding: 18px; }
  .si-sticky { grid-template-columns: 1fr; }
  .si-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding-bottom: 0;
  }
  .si-step {
    min-width: 0;
    min-height: 108px;
    padding: 14px 8px;
    grid-template-columns: 24px minmax(0, 1fr);
    transform: none !important;
  }
  .si-step:last-child { grid-column: 1 / -1; }
  .si-sticky .btn--text { margin-top: 18px !important; }
  .si-visual { min-height: 520px; }
  .si-visual {
    border-radius: 34px 34px 84px 34px;
    transform: none;
  }
  .si-visual figure.is-active { min-height: 520px; padding: 24px; transform: none; }
  .goal-composition span { min-height: 96px; padding: 14px; }
  .strategy-composition { grid-template-columns: 1fr; gap: 30px; }
  .strategy-ring { width: 170px; margin-inline: auto; border-width: 24px; }
  .monitor-note { width: 160px; top: 42%; right: 2%; }
  .coach-qs { flex-wrap: wrap; overflow: visible; }
  .coach-qs .chip { flex: 1 1 100%; max-width: 100%; white-space: normal; }
  .coach-thread {
    border-radius: 34px 34px 34px 82px;
    transform: none;
  }
  .coach-thread .bubble { transform: none; }
  .ecosystem {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 8px;
    margin-top: 48px;
    padding: 8px;
  }
  .ecosystem__core {
    display: none;
  }
  .ecosystem__flow { display: none; }
  .ecosystem__node {
    width: auto;
    min-height: 0;
    padding: 28px 0;
    position: static;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .ecosystem__node:nth-of-type(even) { padding-left: 0; border-left: 0; }
  .ecosystem__node--home,
  .ecosystem__node--accounts,
  .ecosystem__node--transfers,
  .ecosystem__node--performance { grid-column: auto; grid-row: auto; }
  .ecosystem__line { display: none; }
  .split article {
    min-height: 370px;
    padding: 36px 26px;
    transform: none !important;
  }
  .split article:first-child { border-radius: 34px 82px 34px 34px; }
  .split article:last-child { border-radius: 82px 34px 34px 34px; }
  .terminal-head { grid-template-columns: 1fr auto; }
  .terminal-search { grid-column: 1 / -1; grid-row: 2; }
  .terminal-grid { grid-template-columns: 1fr; }
  .terminal-grid > div { padding: 22px; }
  .terminal-watch, .terminal-chart { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .terminal-chart { min-height: 320px; }
  .terminal-action { grid-column: auto; }
  .trading-visual { border-radius: 34px 34px 86px 34px; }
  .trust-grid article { padding-right: 0; }
  .footer-grid { gap: 40px; }
}

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

/* Hero · intelligent wealth with energy */
.btn--header-primary {
  background: var(--snow);
  border-color: var(--snow);
  color: var(--hero-ink);
}
.btn--header-primary:hover { background: #eaf5ff; border-color: #eaf5ff; }
.site-header.is-light .btn--header-primary {
  background: var(--electric);
  border-color: var(--electric);
  color: #fff;
}
.hero--wealth {
  height: min(100svh, 980px);
  min-height: 760px;
  max-height: 980px;
  padding: var(--header) 0 0;
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: #fff;
  background:
    radial-gradient(ellipse 78% 72% at 52% 76%, rgba(18, 159, 143, .4), transparent 66%),
    radial-gradient(circle at 12% 42%, rgba(37, 117, 255, .38), transparent 39%),
    radial-gradient(circle at 87% 15%, rgba(224, 173, 79, .12), transparent 22%),
    linear-gradient(152deg, #061a27 0%, #084353 54%, #062532 100%);
}
.hero--wealth::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 58%, transparent 100%);
  content: "";
}
.hero--wealth::after {
  width: 70vw;
  height: 360px;
  position: absolute;
  right: -22vw;
  bottom: -210px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(37, 117, 255, .22);
  filter: blur(80px);
  content: "";
}
.hero-atmosphere,
.hero-atmosphere i { position: absolute; pointer-events: none; }
.hero-atmosphere { inset: 0; z-index: -1; overflow: hidden; }
.hero-atmosphere::after {
  width: min(1120px, 88vw);
  aspect-ratio: 2 / 1;
  position: absolute;
  left: 50%;
  bottom: -16%;
  opacity: .28;
  background: repeating-conic-gradient(
    from 252deg at 50% 100%,
    rgba(218, 255, 247, .78) 0 .12deg,
    transparent .12deg 4.4deg
  );
  mask-image: radial-gradient(ellipse at 50% 100%, transparent 0 34%, #000 34.5% 69%, transparent 70%);
  content: "";
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  animation: hero-signal-field 18s ease-in-out infinite alternate;
}
.hero-atmosphere i {
  display: block;
  border-radius: 50%;
  filter: blur(74px);
  will-change: transform;
}
.hero-atmosphere i:nth-child(1) {
  width: 35vw;
  height: 35vw;
  min-width: 420px;
  min-height: 420px;
  top: 18%;
  left: -15%;
  background: rgba(37, 117, 255, .2);
  animation: hero-light-left 20s ease-in-out infinite alternate;
}
.hero-atmosphere i:nth-child(2) {
  width: 28vw;
  height: 28vw;
  min-width: 330px;
  min-height: 330px;
  right: -8%;
  bottom: -4%;
  background: rgba(34, 199, 169, .19);
  animation: hero-light-right 17s ease-in-out infinite alternate;
}
.hero-atmosphere i:nth-child(3) {
  width: 18vw;
  height: 18vw;
  top: 4%;
  right: 18%;
  background: rgba(224, 173, 79, .08);
}
.hero--wealth .hero-stage {
  height: 100%;
  min-height: 0;
  padding-top: clamp(28px, 4.5vh, 48px);
  position: relative;
  z-index: 2;
  display: block;
}
.hero-content {
  width: min(100%, 1100px);
  margin-inline: auto;
  position: relative;
  z-index: 4;
  text-align: center;
}
.hero-content .kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .19em;
}
.hero--wealth .hero-title {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(82px, 7.45vw, 112px);
  font-weight: 650;
  letter-spacing: -.073em;
  line-height: .91;
  text-wrap: balance;
  animation: hero-copy-in 680ms var(--ease) both;
}
.hero--wealth .hero-title span { display: block; }
.hero-title__accent { color: #bfe9df; }
.hero-lede {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.52;
  text-wrap: balance;
  animation: hero-copy-in 620ms 100ms var(--ease) both;
}
.hero--wealth .hero-actions {
  margin-top: 24px;
  justify-content: center;
  animation: hero-copy-in 620ms 180ms var(--ease) both;
}
.btn--hero-primary,
.btn--hero-secondary {
  min-height: 54px;
  padding-inline: 26px;
}
.btn--hero-primary {
  color: #fff;
  background: var(--electric);
  border-color: var(--electric);
  box-shadow: 0 16px 42px rgba(37, 117, 255, .28);
}
.btn--hero-primary:hover { background: #4b8cff; border-color: #4b8cff; box-shadow: 0 18px 46px rgba(37, 117, 255, .38); }
.btn--hero-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .055);
}
.btn--hero-secondary:hover { border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .1); }
.hero--wealth :focus-visible { outline-color: #70dbc7; }

.product-stage {
  width: min(1160px, calc(100vw - 56px));
  height: 540px;
  position: absolute;
  top: clamp(370px, 48svh, 460px);
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.product-dashboard {
  width: calc(100% - 48px);
  height: 500px;
  position: absolute;
  top: 38px;
  left: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 30px 30px 0 0;
  color: var(--hero-ink);
  background: #f6f7f3;
  box-shadow: 0 50px 120px rgba(0, 8, 17, .4);
  animation: product-emerge 840ms 230ms var(--ease) both;
}
.product-dashboard__bar {
  min-height: 62px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(6, 26, 39, .1);
  background: rgba(255, 255, 255, .72);
}
.product-dashboard__bar > strong { font-size: 1.05rem; letter-spacing: -.035em; }
.product-dashboard__nav { display: flex; justify-content: center; gap: 30px; }
.product-dashboard__nav span {
  color: #647480;
  font-size: .72rem;
  font-weight: 700;
}
.product-dashboard__nav span:first-child { color: var(--hero-ink); }
.product-profile {
  width: 34px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--hero-ocean);
  font-size: .66rem;
  font-weight: 800;
}
.product-dashboard__main { padding: 26px 32px 42px; }
.product-dashboard__intro {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}
.product-dashboard__intro small,
.product-panel__label span,
.product-goal__meta small {
  display: block;
  color: #4f6370;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.product-dashboard__intro h2 {
  margin: 3px 0 0;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.strategy-state {
  min-height: 38px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #0c6758;
  background: #dff5ef;
  font-size: .72rem;
  font-weight: 800;
}
.strategy-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(34, 199, 169, .16);
  animation: strategy-pulse 1.8s 1.5s ease-out 3;
}
.product-dashboard__grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 14px;
}
.product-goal,
.product-strategy {
  min-width: 0;
  min-height: 228px;
  padding: 22px;
  border: 1px solid rgba(6, 26, 39, .09);
  border-radius: 19px;
  background: #fff;
}
.product-panel__label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.product-panel__label strong {
  color: #0c6758;
  font-size: .68rem;
}
.product-goal h3 {
  margin: 20px 0 0;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -.05em;
}
.product-goal__meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-goal__meta b { display: block; margin-top: 4px; font-size: .82rem; }
.product-progress {
  height: 7px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eceb;
}
.product-progress i {
  width: 64%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--electric), var(--teal));
  transform-origin: left;
  animation: product-progress-in 900ms 900ms var(--ease) both;
}
.product-strategy { background: #eef4f2; }
.product-strategy__value {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #536873;
  font-size: .75rem;
}
.product-strategy__value b { color: var(--hero-ink); font-size: 1rem; }
.product-strategy svg { width: 100%; height: 112px; margin-top: 10px; overflow: visible; }
.product-chart__fill { fill: url(#hero-chart-fill); }
.product-chart__line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 660;
  stroke-dashoffset: 660;
  animation: hero-chart-in 1100ms 720ms var(--ease) forwards;
}
.product-strategy circle { fill: var(--electric); stroke: #fff; stroke-width: 3; }

.hero-goal-card,
.hero-coach-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .5);
  color: var(--hero-ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 70px rgba(0, 13, 25, .24);
}
.hero-goal-card {
  width: 272px;
  min-height: 118px;
  top: 246px;
  left: -18px;
  padding: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 20px;
  animation: hero-card-in-left 620ms 620ms var(--ease) both;
}
.hero-card__icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--electric);
}
.hero-card__icon svg { width: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.hero-goal-card small,
.hero-coach-card small {
  display: block;
  color: #536671;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-goal-card strong { display: block; margin-top: 3px; font-size: .9rem; letter-spacing: -.02em; }
.hero-goal-card > div:last-child > span { display: block; margin-top: 3px; color: #536873; font-size: .7rem; }
.hero-coach-card {
  width: 328px;
  min-height: 172px;
  top: 230px;
  right: -20px;
  padding: 20px;
  border-radius: 22px;
  animation: hero-card-in-right 650ms 760ms var(--ease) both;
}
.hero-coach-card__head {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}
.coach-pulse {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--hero-ink);
  background: var(--amber);
  font: italic 1.25rem/1 var(--editorial);
}
.hero-coach-card__head strong { display: block; margin-top: 3px; font-size: .82rem; }
.hero-coach-card p { margin: 15px 0 0; color: #536873; font-size: .75rem; line-height: 1.45; }
.hero-coach-card a {
  min-height: 36px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0b5fde;
  font-size: .72rem;
  font-weight: 800;
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes product-emerge {
  from { opacity: 0; transform: translateY(46px) scale(.985); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-card-in-left {
  from { opacity: 0; transform: translate(-18px, 18px); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-card-in-right {
  from { opacity: 0; transform: translate(18px, 18px); }
  to { opacity: 1; transform: none; }
}
@keyframes product-progress-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes hero-chart-in { to { stroke-dashoffset: 0; } }
@keyframes hero-light-left {
  to { transform: translate(7vw, -3vh) scale(1.06); }
}
@keyframes hero-light-right {
  to { transform: translate(-5vw, -4vh) scale(.94); }
}
@keyframes hero-signal-field {
  to { transform: translateX(-50%) rotate(5deg) scale(1.045); opacity: .38; }
}
@keyframes strategy-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 199, 169, .16); }
  50% { box-shadow: 0 0 0 10px rgba(34, 199, 169, 0); }
}

@media (max-width: 1100px) {
  .hero--wealth .hero-title { font-size: clamp(70px, 8.3vw, 92px); }
  .product-stage { width: calc(100vw - 30px); }
  .hero-goal-card { left: 0; }
  .hero-coach-card { right: 0; }
}

@media (max-width: 900px) {
  .hero--wealth .hero-stage { padding-top: 36px; }
  .hero--wealth .hero-title { font-size: clamp(62px, 9.2vw, 78px); }
  .hero-lede { max-width: 620px; }
  .product-stage { top: clamp(400px, 49svh, 450px); }
  .product-dashboard { width: 900px; left: calc(50% - 450px); }
  .hero-goal-card { left: 6px; }
  .hero-coach-card { right: 6px; }
}

@media (max-width: 700px) {
  .site-header .btn--header-primary { min-height: 42px; padding: 9px 15px; }
  .hero--wealth {
    height: min(100svh, 900px);
    min-height: 760px;
    max-height: 900px;
    padding: var(--header) 0 0;
  }
  .hero--wealth .hero-stage {
    min-height: 0;
    height: 100%;
    padding-top: 24px;
  }
  .hero-content { width: 100%; text-align: left; }
  .hero-content .kicker { margin-bottom: 12px; }
  .hero--wealth .hero-title {
    max-width: 100%;
    margin: 0;
    font-size: clamp(42px, 11.8vw, 50px);
    line-height: .93;
    letter-spacing: -.068em;
    text-wrap: initial;
  }
  .hero-lede {
    max-width: 37rem;
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.48;
    text-wrap: initial;
  }
  .hero--wealth .hero-actions {
    width: 100%;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .btn--hero-primary,
  .btn--hero-secondary { width: 100%; min-height: 48px; }
  .btn--hero-secondary {
    min-height: 44px;
    border-color: transparent;
    background: transparent;
  }
  .product-stage {
    width: 100vw;
    height: 460px;
    top: 398px;
  }
  .product-dashboard {
    width: 680px;
    height: 440px;
    top: 38px;
    left: 20px;
    border-radius: 26px 26px 0 0;
  }
  .product-dashboard__bar { padding-inline: 22px; grid-template-columns: auto 1fr; }
  .product-dashboard__nav,
  .product-profile { display: none; }
  .product-dashboard__main { padding: 23px 26px 36px; }
  .product-dashboard__intro h2 { font-size: 2rem; }
  .product-dashboard__grid { grid-template-columns: 1fr 1.15fr; }
  .product-goal,
  .product-strategy { min-height: 220px; }
  .hero-goal-card { display: none; }
  .hero-coach-card {
    width: min(330px, calc(100vw - 32px));
    min-height: 162px;
    top: 175px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    animation-name: hero-card-in-mobile;
  }
  .hero-atmosphere i:nth-child(1) { left: -80%; }
  .hero-atmosphere i:nth-child(3) { display: none; }
  .hero-atmosphere::after {
    width: 760px;
    max-width: none;
    bottom: -8%;
    opacity: .2;
  }
}

@media (max-width: 390px) {
  .site-header .btn--header-primary { padding-inline: 12px; font-size: .82rem; }
  .hero--wealth .hero-title { font-size: clamp(40px, 11.6vw, 46px); }
  .hero-lede { font-size: 15px; }
  .product-stage { top: 400px; }
  .product-dashboard { left: 16px; }
}

@keyframes hero-card-in-mobile {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Hero · cinematic strategy system */
.site-header.is-light:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
}
.hero--cinematic {
  height: min(100svh, 980px);
  min-height: 760px;
  max-height: 980px;
  padding: var(--header) 0 0;
  position: relative;
  isolation: isolate;
  overflow: clip;
  color: var(--hero-ink);
  background:
    radial-gradient(circle at 8% 28%, rgba(37, 117, 255, .44), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(224, 173, 79, .2), transparent 21%),
    radial-gradient(ellipse 62% 58% at 52% 54%, rgba(255, 255, 255, .74), transparent 70%),
    linear-gradient(145deg, #c9f3e7 0%, #b9e9df 48%, #8ed9d3 100%);
}
.hero--cinematic::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .34;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  content: "";
}
.hero--cinematic::after {
  width: 56vw;
  height: 56vw;
  position: absolute;
  top: -35vw;
  right: -20vw;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(6, 26, 39, .11);
  box-shadow:
    0 0 0 9vw rgba(255, 255, 255, .06),
    0 0 0 18vw rgba(255, 255, 255, .035);
  content: "";
}
.cinematic-atmosphere,
.cinematic-atmosphere i {
  position: absolute;
  pointer-events: none;
}
.cinematic-atmosphere { inset: 0; z-index: -1; overflow: hidden; }
.cinematic-atmosphere i {
  display: block;
  border-radius: 50%;
  filter: blur(58px);
  will-change: transform;
}
.cinematic-atmosphere i:nth-child(1) {
  width: 36vw;
  height: 25vw;
  left: -10%;
  bottom: 12%;
  background: rgba(37, 117, 255, .34);
  animation: cinematic-color-left 16s ease-in-out infinite alternate;
}
.cinematic-atmosphere i:nth-child(2) {
  width: 32vw;
  height: 24vw;
  right: -4%;
  bottom: 8%;
  background: rgba(10, 115, 110, .24);
  animation: cinematic-color-right 20s ease-in-out infinite alternate;
}
.cinematic-atmosphere i:nth-child(3) {
  width: 16vw;
  height: 16vw;
  top: 7%;
  right: 12%;
  background: rgba(224, 173, 79, .2);
  animation: cinematic-color-warm 18s ease-in-out infinite alternate;
}
.hero--cinematic .hero-stage {
  height: 100%;
  min-height: 0;
  padding-top: clamp(24px, 3.8vh, 42px);
  position: relative;
  z-index: 2;
  display: block;
}
.hero--cinematic .hero-content {
  width: min(100%, 1100px);
  margin-inline: auto;
  position: relative;
  z-index: 6;
  color: var(--hero-ink);
  text-align: center;
}
.hero--cinematic .hero-content .kicker {
  margin-bottom: 12px;
  color: rgba(6, 26, 39, .67);
  letter-spacing: .2em;
}
.hero--cinematic .hero-title {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  color: var(--hero-ink);
  font-size: clamp(82px, 7.45vw, 112px);
  font-weight: 680;
  letter-spacing: -.074em;
  line-height: .9;
  animation: cinematic-copy-in 700ms var(--ease) both;
}
.hero--cinematic .hero-title span { display: block; }
.hero--cinematic .hero-title__accent { color: #0b5f65; }
.hero--cinematic .hero-lede {
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(6, 26, 39, .76);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  text-wrap: balance;
  animation: cinematic-copy-in 620ms 100ms var(--ease) both;
}
.hero--cinematic .hero-actions {
  margin-top: 22px;
  justify-content: center;
  animation: cinematic-copy-in 620ms 180ms var(--ease) both;
}
.hero--cinematic .btn--hero-primary {
  color: #fff;
  background: var(--hero-ink);
  border-color: var(--hero-ink);
  box-shadow: 0 16px 40px rgba(6, 26, 39, .2);
}
.hero--cinematic .btn--hero-primary:hover { background: #0b3a55; border-color: #0b3a55; }
.hero--cinematic .btn--hero-secondary {
  color: var(--hero-ink);
  border-color: rgba(6, 26, 39, .25);
  background: rgba(255, 255, 255, .16);
}
.hero--cinematic .btn--hero-secondary:hover { border-color: rgba(6, 26, 39, .52); background: rgba(255, 255, 255, .32); }
.hero--cinematic :focus-visible { outline-color: var(--electric); }

.cinematic-product {
  width: min(1240px, calc(100vw - 32px));
  height: 520px;
  position: absolute;
  top: clamp(368px, 46svh, 448px);
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}
.wealth-plane {
  width: 1460px;
  height: 520px;
  position: absolute;
  top: 154px;
  left: 50%;
  overflow: hidden;
  border-radius: 50% 50% 0 0 / 24% 24% 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 199, 169, .2), transparent 33%),
    radial-gradient(circle at 20% 8%, rgba(37, 117, 255, .25), transparent 30%),
    #061a27;
  box-shadow: 0 -26px 80px rgba(6, 26, 39, .18);
  transform: translateX(-50%) scaleX(.98);
  transform-origin: 50% 100%;
  animation: wealth-plane-in 900ms 220ms var(--ease) both;
}
.wealth-plane::before {
  width: 88%;
  height: 1px;
  position: absolute;
  top: 17px;
  left: 6%;
  background: linear-gradient(90deg, transparent, rgba(201, 243, 231, .5), transparent);
  content: "";
}
.strategy-thread {
  width: 100%;
  height: 420px;
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 1;
  overflow: visible;
}
.strategy-thread__base,
.strategy-thread__active {
  fill: none;
  stroke-linecap: round;
}
.strategy-thread__base { stroke: rgba(255, 255, 255, .13); stroke-width: 2; }
.strategy-thread__active {
  stroke: #78dfca;
  stroke-width: 3;
  stroke-dasharray: 10 18;
  animation: strategy-thread-flow 3.6s linear infinite;
}
.strategy-thread circle {
  fill: #c9f3e7;
  stroke: rgba(6, 26, 39, .58);
  stroke-width: 4;
}
.cinematic-goal,
.strategy-core,
.cinematic-coach {
  position: absolute;
  z-index: 3;
  box-shadow: 0 30px 78px rgba(6, 26, 39, .24);
}
.cinematic-goal {
  width: 260px;
  min-height: 190px;
  top: 208px;
  left: 42px;
  padding: 24px;
  border-radius: 22px;
  color: #fff;
  background: #0b3a55;
  animation: cinematic-goal-in 700ms 520ms var(--ease) both;
}
.cinematic-goal small,
.strategy-core small,
.cinematic-coach small {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.cinematic-goal > small { color: #8edbd0; }
.cinematic-goal h2 {
  margin: 8px 0 24px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -.055em;
}
.cinematic-goal > div { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .16); }
.cinematic-goal > div span { color: rgba(255, 255, 255, .58); font-size: .7rem; }
.cinematic-goal > div strong { font-size: .86rem; }
.cinematic-goal p {
  margin: 18px 0 0;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #bdece3;
  font-size: .72rem;
  font-weight: 750;
}
.cinematic-goal p i,
.strategy-core__head strong i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(34, 199, 169, .14);
}
.strategy-core {
  width: 540px;
  min-height: 348px;
  top: 58px;
  left: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 30px;
  color: var(--hero-ink);
  background: #f7f4ed;
  transform: translateX(-50%);
  animation: strategy-core-in 820ms 300ms var(--ease) both;
}
.strategy-core::after {
  width: 260px;
  height: 260px;
  position: absolute;
  right: -96px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(34, 199, 169, .12);
  content: "";
}
.strategy-core__head {
  min-height: 56px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(6, 26, 39, .11);
  font-size: .68rem;
  font-weight: 800;
}
.strategy-core__head > span { letter-spacing: .08em; text-transform: uppercase; }
.strategy-core__head strong { display: flex; align-items: center; gap: 8px; color: #0c6758; }
.strategy-core__body {
  padding: 26px 28px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 158px;
  gap: 20px;
  align-items: center;
}
.strategy-core__body > div:first-child small { color: #5d7079; }
.strategy-core__body h2 {
  max-width: 10ch;
  margin: 8px 0 0;
  font-size: clamp(2rem, 2.7vw, 2.65rem);
  line-height: .96;
  letter-spacing: -.06em;
}
.strategy-orbit {
  width: 154px;
  aspect-ratio: 1;
  position: relative;
}
.strategy-orbit svg { width: 100%; transform: rotate(-90deg); }
.strategy-orbit circle { fill: none; stroke-width: 13; }
.strategy-orbit__track { stroke: #dfe7e3; }
.strategy-orbit__value {
  stroke-linecap: round;
  stroke-dasharray: 402;
  stroke-dashoffset: 402;
}
.strategy-orbit__value--one { stroke: var(--electric); animation: strategy-ring-one 1s 1s var(--ease) forwards; }
.strategy-orbit__value--two { stroke: var(--teal); stroke-width: 7 !important; stroke-dasharray: 308; animation: strategy-ring-two 900ms 1.12s var(--ease) forwards; }
.strategy-orbit > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}
.strategy-orbit b { font-size: 1.45rem; line-height: 1; }
.strategy-orbit small { max-width: 9ch; margin-top: 6px; color: #5d7079; font-size: .55rem; line-height: 1.2; }
.strategy-core__foot {
  min-height: 58px;
  padding: 0 28px;
  display: flex;
  gap: 26px;
  align-items: center;
  border-top: 1px solid rgba(6, 26, 39, .1);
  color: #536873;
  font-size: .68rem;
  font-weight: 700;
}
.strategy-core__foot > span { display: flex; align-items: center; gap: 8px; }
.strategy-core__foot i { width: 6px; height: 6px; border-radius: 50%; background: var(--electric); }
.strategy-core__foot > span:last-child i { background: var(--teal); }
.cinematic-coach {
  width: 322px;
  min-height: 192px;
  top: 194px;
  right: 28px;
  padding: 24px;
  border-radius: 24px;
  color: var(--hero-ink);
  background: #d7f1e8;
  animation: cinematic-coach-in 720ms 760ms var(--ease) both;
}
.cinematic-coach__head { display: flex; gap: 12px; align-items: center; }
.cinematic-coach__head > span {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--electric);
  font: italic 1.2rem/1 var(--editorial);
}
.cinematic-coach small { color: #3f6664; }
.cinematic-coach p { margin: 19px 0 0; font-size: .8rem; line-height: 1.5; }
.cinematic-coach a {
  min-height: 40px;
  margin-top: 12px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: #0b5fde;
  font-size: .74rem;
  font-weight: 800;
}

@keyframes cinematic-copy-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes wealth-plane-in {
  from { opacity: 0; transform: translateX(-50%) translateY(90px) scaleX(.86); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scaleX(.98); }
}
@keyframes strategy-core-in {
  from { opacity: 0; transform: translate(-50%, 52px) scale(.95); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes cinematic-goal-in {
  from { opacity: 0; transform: translate(-32px, 32px) rotate(-3deg); }
  to { opacity: 1; transform: none; }
}
@keyframes cinematic-coach-in {
  from { opacity: 0; transform: translate(32px, 28px) rotate(3deg); }
  to { opacity: 1; transform: none; }
}
@keyframes strategy-thread-flow { to { stroke-dashoffset: -56; } }
@keyframes strategy-ring-one { to { stroke-dashoffset: 145; } }
@keyframes strategy-ring-two { to { stroke-dashoffset: 208; } }
@keyframes cinematic-color-left { to { transform: translate(10vw, -3vh) scale(1.08); } }
@keyframes cinematic-color-right { to { transform: translate(-8vw, -4vh) scale(.92); } }
@keyframes cinematic-color-warm { to { transform: translate(-4vw, 4vh) scale(1.12); } }

@media (max-width: 1100px) {
  .hero--cinematic .hero-title { font-size: clamp(70px, 8.3vw, 92px); }
  .cinematic-product { width: calc(100vw - 24px); }
  .cinematic-goal { left: 0; }
  .cinematic-coach { right: 0; }
}

@media (max-width: 900px) {
  .hero--cinematic .hero-stage { padding-top: 34px; }
  .hero--cinematic .hero-title { font-size: clamp(62px, 9.2vw, 78px); }
  .cinematic-product { top: clamp(398px, 49svh, 450px); }
  .cinematic-goal { left: -42px; scale: .88; }
  .cinematic-coach { right: -42px; scale: .88; }
}

@media (max-width: 700px) {
  .hero--cinematic {
    height: min(100svh, 900px);
    min-height: 760px;
    max-height: 900px;
    padding: var(--header) 0 0;
  }
  .hero--cinematic .hero-stage {
    height: 100%;
    min-height: 0;
    padding-top: 22px;
  }
  .hero--cinematic .hero-content { width: 100%; text-align: left; }
  .hero--cinematic .hero-content .kicker { margin-bottom: 11px; }
  .hero--cinematic .hero-title {
    max-width: 100%;
    margin: 0;
    font-size: clamp(42px, 11.8vw, 50px);
    line-height: .93;
    letter-spacing: -.068em;
  }
  .hero--cinematic .hero-lede {
    margin: 17px 0 0;
    font-size: 15.5px;
    line-height: 1.47;
    text-wrap: initial;
  }
  .hero--cinematic .hero-actions {
    width: 100%;
    margin-top: 19px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .hero--cinematic .btn--hero-primary,
  .hero--cinematic .btn--hero-secondary { width: 100%; min-height: 48px; }
  .hero--cinematic .btn--hero-secondary { min-height: 42px; border-color: transparent; background: transparent; }
  .cinematic-product {
    width: 100vw;
    height: 450px;
    top: 394px;
  }
  .wealth-plane {
    width: 760px;
    height: 420px;
    top: 148px;
  }
  .strategy-thread {
    width: 780px;
    height: 360px;
    top: 64px;
    left: calc(50% - 390px);
  }
  .cinematic-goal { display: none; }
  .strategy-core {
    width: min(350px, calc(100vw - 32px));
    min-height: 300px;
    top: 46px;
  }
  .strategy-core__head { min-height: 50px; padding-inline: 18px; }
  .strategy-core__body {
    padding: 22px 20px 18px;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 12px;
  }
  .strategy-core__body h2 { font-size: 1.9rem; }
  .strategy-orbit { width: 112px; }
  .strategy-orbit b { font-size: 1.2rem; }
  .strategy-core__foot {
    min-height: 52px;
    padding-inline: 20px;
    gap: 14px;
    font-size: .61rem;
  }
  .cinematic-coach {
    width: min(310px, calc(100vw - 52px));
    min-height: 166px;
    top: 278px;
    right: auto;
    left: 50%;
    padding: 20px;
    transform: translateX(-50%);
    animation-name: cinematic-coach-in-mobile;
  }
  .cinematic-coach p { margin-top: 14px; }
  .cinematic-atmosphere i:nth-child(1) { width: 560px; height: 390px; left: -105%; }
  .cinematic-atmosphere i:nth-child(2) { width: 430px; height: 330px; right: -80%; }
}

@media (max-width: 390px) {
  .hero--cinematic .hero-title { font-size: clamp(40px, 11.6vw, 46px); }
  .hero--cinematic .hero-lede { font-size: 15px; }
  .cinematic-product { top: 397px; }
}

@keyframes cinematic-coach-in-mobile {
  from { opacity: 0; transform: translate(-50%, 26px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
