:root {
  --primary: #000099;
  --primary-bright: #3333f4;
  --primary-soft: #7d7dff;
  --ink: #fff;
  --muted: #9b9cae;
  --muted-strong: #c8c9d6;
  --night: #05050c;
  --night-2: #090914;
  --surface: #0d0d1a;
  --surface-2: #121224;
  --line: rgba(255, 255, 255, .09);
  --line-dark: rgba(3, 3, 31, .1);
  --green: #22c55e;
  --orange: #f2a74c;
  --radius: 18px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body, button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-shell { overflow: clip; }
.container { width: min(var(--container), calc(100% - 64px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 12px 16px; background: #fff; color: #080816; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; top: 18px; left: 50%; z-index: 20;
  width: min(1120px, calc(100% - 40px)); height: 64px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 999px;
  background: rgba(8, 8, 18, .66);
  box-shadow: 0 12px 40px rgba(0,0,0,.25), 0 0 40px rgba(0,0,153,.08);
  backdrop-filter: blur(20px) saturate(160%);
  transform: translateX(-50%);
  isolation: isolate;
  transition: top .3s, height .3s, background .3s, border-color .3s, box-shadow .3s, border-radius .3s;
}
.site-header:before { content: ""; position: absolute; top: 0; left: 15%; width: 70%; height: 1px; border-radius: 50%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent); opacity: .7; }
.site-header.is-scrolled { top: 12px; background: rgba(8, 8, 18, .9); border-color: rgba(255,255,255,.11); box-shadow: 0 16px 44px rgba(0,0,0,.32), 0 0 40px rgba(0,0,153,.1); backdrop-filter: blur(16px) saturate(150%); }
.site-header .container { width: 100%; }
.nav-wrap { position: relative; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 10px 8px 20px; }
.brand img, .footer-brand img { display: block; object-fit: contain; object-position: left center; }
.brand { width: 154px; flex: 0 0 auto; }
.desktop-nav { position: relative; display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-active-indicator { display: none; }
.nav-link, .login-link { color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; transition: color .2s, background .2s, box-shadow .2s, transform .2s; }
.nav-link { padding: 9px 12px; border-radius: 999px; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-link { position: relative; z-index: 1; }
.nav-link.is-active { color: #fff; background: rgba(0,0,153,.22); box-shadow: inset 0 0 0 1px rgba(70,70,255,.25); }
.nav-actions, .nav-user-actions { display: flex; align-items: center; gap: 18px; }
.notification-button { display: grid; place-items: center; width: 31px; height: 31px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #a9aabd; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.notification-button:hover { color: #fff; background: rgba(255,255,255,.06); transform: translateY(-1px); }
.nav-user-actions { position: relative; gap: 10px; }
.user-balance { display: flex; flex-direction: column; gap: 1px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.06); }
.user-balance small { color: #77788d; font: 7px "DM Mono", monospace; }
.user-balance strong { color: #e8e8f1; font: 10px "DM Mono", monospace; }
.avatar-button { display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%; background: var(--primary); color: #fff; font: 10px "DM Mono", monospace; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.avatar-button:hover, .avatar-button[aria-expanded="true"] { transform: scale(1.04); box-shadow: 0 5px 18px rgba(0,0,153,.35); }
.user-menu { position: absolute; top: calc(100% + 12px); right: 0; width: 180px; padding: 8px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; background: rgba(12,12,27,.94); box-shadow: 0 18px 40px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.user-menu a { display: block; padding: 10px 11px; border-radius: 11px; color: #a8a9b9; font-size: 11px; }
.user-menu a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-user-actions[hidden] { display: none; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: .01em; transition: transform .22s, background .22s, border-color .22s, box-shadow .22s;
}
.button span { font-size: 15px; line-height: 0; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 0 17px; background: var(--primary); }
.button-small:hover, .button-primary:hover { background: #0000ca; box-shadow: 0 10px 26px rgba(0, 0, 153, .3); }
.button-primary { background: var(--primary); }
.menu-toggle, .mobile-nav { display: none; }

.hero { position: relative; min-height: 890px; padding: 165px 0 82px; overflow: hidden; background: radial-gradient(circle at 78% 38%, rgba(0,0,153,.2), transparent 32%), radial-gradient(circle at 50% 100%, rgba(51,51,244,.08), transparent 40%), linear-gradient(112deg, #05050c 18%, #07071a 100%); }
.hero:before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 78%); pointer-events: none; }
.hero-glow { position: absolute; width: 780px; height: 780px; right: -5%; top: 35px; background: radial-gradient(ellipse, rgba(0, 0, 153, .28), transparent 66%); filter: blur(22px); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 76px; }
.hero-copy { position: relative; z-index: 2; max-width: 590px; padding-bottom: 20px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; color: #8c8d9e; font-family: "DM Mono", monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.status-dot, .mini-status i, .live-pulse { width: 6px; height: 6px; background: var(--primary-bright); border-radius: 50%; box-shadow: 0 0 0 5px rgba(51,51,244,.12); }
.hero h1 { margin: 25px 0 27px; max-width: 680px; color: #f8f8fc; font-size: clamp(56px, 6vw, 86px); line-height: 1.01; letter-spacing: -.078em; font-weight: 700; }
.hero-accent { color: #a9aaff; }
.hero h1 em { color: #fff; }
.masked-heading { color: #fff; }
.masked-heading.is-masked { color: transparent; background-image: var(--mh-image); background-position: calc(50% + var(--mh-x, 0px)) calc(50% + var(--mh-y, 0px)); background-size: 125% auto; background-repeat: no-repeat; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.masked-heading.is-masked em { color: transparent; -webkit-text-fill-color: transparent; }
.masked-heading.is-masked:not(.is-visible) { opacity: 0; transform: translateY(22px); }
.masked-heading.is-masked.is-visible { opacity: 1; transform: none; }
em { color: #8d8dff; font-style: normal; }
.hero-lead { max-width: 480px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 37px; }
.text-link, .arrow-link { display: inline-flex; align-items: center; gap: 12px; color: #d9d9e5; font-size: 12px; font-weight: 700; }
.text-link span, .arrow-link span { color: var(--primary-soft); font-size: 18px; transition: transform .2s; }
.text-link:hover span, .arrow-link:hover span { transform: translate(3px, -3px); }
.button-ghost { border-color: rgba(255,255,255,.15); color: #e6e6f0; background: rgba(255,255,255,.035); }
.button-ghost:hover { border-color: rgba(125,125,255,.42); background: rgba(255,255,255,.08); box-shadow: 0 10px 26px rgba(0,0,0,.2); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 13px 21px; margin-top: 28px; color: #77788b; font: 9px "DM Mono", monospace; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { display: grid; place-items: center; width: 14px; height: 14px; border: 1px solid rgba(77,77,255,.4); border-radius: 50%; color: #9596ff; font-style: normal; font-size: 8px; }
.shield-icon { color: #7778ff; font-size: 14px; }

.hero-product-wrap { position: relative; width: calc(100% + 100px); min-width: 0; margin-left: -50px; padding: 34px 0 42px; }
.product-glow { position: absolute; top: 12%; right: 2%; width: 88%; height: 78%; border-radius: 50%; background: rgba(0,0,153,.26); filter: blur(70px); pointer-events: none; }
.hero-product { position: relative; z-index: 1; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: #0b0b17; box-shadow: 0 35px 90px rgba(0,0,0,.48), 0 0 0 8px rgba(255,255,255,.018); }
.hero-platform-frame { overflow: hidden; border-radius: 15px; background: #0d1020; }
.hero-platform-image { display: block; width: 100%; height: auto; object-fit: contain; }
.product-topbar, .product-bottom { display: flex; align-items: center; min-height: 42px; padding: 0 17px; border-bottom: 1px solid var(--line); color: #696a80; font: 8px "DM Mono", monospace; letter-spacing: .08em; }
.product-brand { display: flex; align-items: center; gap: 7px; color: #f1f1f8; font-weight: 700; }
.product-brand span, .product-side-mark { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; color: #fff; background: var(--primary); font: 12px Manrope, sans-serif; font-weight: 800; }
.product-topbar-title { margin-left: 25px; color: #85869b; }
.product-status { display: flex; align-items: center; gap: 7px; margin-left: auto; color: #777887; }
.product-status i, .product-chart-footer i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.product-body { display: grid; grid-template-columns: 58px minmax(0, 1fr) 184px; min-height: 370px; }
.product-sidebar { display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 18px 0; border-right: 1px solid var(--line); }
.product-side-item { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #5e5f70; }
.product-side-item.is-active { color: #8586ff; }
.product-side-item small { display: none; }
.product-side-bottom { margin-top: auto; }
.product-icon { position: relative; display: block; width: 16px; height: 16px; }
.product-icon-grid:before { content: "· ·\A· ·"; position: absolute; inset: -6px 0 0; color: currentColor; font: 22px/9px sans-serif; text-align: center; white-space: pre; }
.product-icon-chart:before { content: "⌁"; position: absolute; top: -5px; color: currentColor; font-size: 24px; }
.product-icon-star:before { content: "☆"; position: absolute; top: -5px; color: currentColor; font-size: 19px; }
.product-icon-settings:before { content: "⚙"; position: absolute; top: 0; color: currentColor; font-size: 15px; }
.product-dashboard { min-width: 0; padding: 25px 19px 15px; }
.product-dashboard-head { display: flex; align-items: center; gap: 28px; }
.product-overline, .product-trade label { display: block; margin-bottom: 7px; color: #5e6075; font: 7px "DM Mono", monospace; letter-spacing: .08em; }
.product-dashboard-head strong { display: block; color: #eeeef5; font-size: 14px; }
.product-dashboard-head > div:nth-child(2) strong { font-size: 18px; }
.product-dashboard-head button { margin-left: auto; padding: 7px 9px; border: 1px solid var(--line); border-radius: 5px; color: #9293a5; background: transparent; font-size: 8px; }
.product-dashboard-head button span { margin-left: 7px; color: #6b6d7c; }
.product-chart { position: relative; height: 257px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,.035); border-bottom: 1px solid rgba(255,255,255,.035); }
.product-chart-grid { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 100% 25%, 20% 100%; opacity: .45; }
.product-chart svg { position: absolute; inset: 14px 0 10px; width: 100%; height: calc(100% - 24px); overflow: visible; }
.product-chart-line { fill: none; stroke: #696aff; stroke-width: 2; vector-effect: non-scaling-stroke; }
.product-chart-area { fill: url(#hero-chart-fill); stroke: none; }
.product-chart-empty { position: absolute; top: 52%; left: 50%; width: 180px; color: #77788b; font-size: 9px; line-height: 1.5; text-align: center; transform: translate(-50%, -50%); }
.product-chart-axis { position: absolute; right: 0; bottom: 4px; left: 0; display: flex; justify-content: space-between; color: #525365; font: 7px "DM Mono", monospace; }
.product-chart-footer { display: flex; gap: 17px; margin-top: 13px; color: #65677b; font: 7px "DM Mono", monospace; }
.product-chart-footer span { display: inline-flex; align-items: center; gap: 5px; }
.product-chart-footer b { width: 11px; height: 1px; background: #6d6eff; }
.product-trade { padding: 23px 16px; border-left: 1px solid var(--line); background: rgba(255,255,255,.014); }
.product-trade-head { display: flex; justify-content: space-between; color: #e2e2ec; font-size: 11px; }
.product-trade-head span { color: #626377; letter-spacing: 2px; }
.product-trade-summary { margin: 30px 0 17px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.product-trade-summary strong { display: block; color: #d2d3df; font-size: 10px; }
.product-trade-summary small { display: block; margin-top: 5px; color: #626478; font-size: 7px; }
.product-trade label { display: flex; justify-content: space-between; margin: 16px 0 7px; text-transform: uppercase; }
.product-trade label span { color: #aaaabd; }
.product-input { display: flex; justify-content: space-between; padding: 10px 9px; border: 1px solid var(--line); border-radius: 5px; color: #55576b; font-size: 8px; }
.product-input b { color: #696a7d; font: 8px "DM Mono", monospace; }
.product-direction { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 22px; }
.product-direction button { padding: 10px 3px; border: 1px solid var(--line); border-radius: 5px; color: #68697e; background: rgba(255,255,255,.02); font-size: 8px; font-weight: 700; }
.product-direction button:first-child span { color: #66d8a0; }
.product-direction button:last-child span { color: #ec6c78; }
.product-trade-hint { display: flex; align-items: center; gap: 7px; margin-top: 15px; color: #5e6073; font-size: 7px; line-height: 1.4; }
.product-trade-hint i { display: grid; place-items: center; width: 12px; height: 12px; border: 1px solid #55576e; border-radius: 50%; font-style: normal; font-size: 8px; }
.product-bottom { min-height: 35px; gap: 24px; border-top: 1px solid var(--line); border-bottom: 0; }
.product-bottom span:last-child { margin-left: auto; color: #4f5062; }
.hero-floating-card { position: absolute; z-index: 2; display: flex; flex-direction: column; gap: 6px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(13,13,29,.8); box-shadow: 0 18px 45px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
.hero-floating-card-top { top: 0; right: -25px; animation: hero-float 7s ease-in-out infinite; }
.hero-floating-card-bottom { bottom: 0; left: -32px; animation: hero-float 8s ease-in-out -2s infinite; }
.floating-label { color: #77788b; font: 7px "DM Mono", monospace; letter-spacing: .1em; }
.hero-floating-card strong { color: #e8e8f1; font-size: 11px; font-weight: 600; }
.hero-floating-card small { color: #77788b; font: 8px "DM Mono", monospace; }
.hero-floating-card small i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--green); }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

.platform-visual { display: block; }
.platform-window { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: #0b0b17; box-shadow: -25px 40px 80px rgba(0,0,0,.48), 0 0 0 8px rgba(255,255,255,.018); transform: rotateY(-5deg) rotateX(2deg); transform-origin: right center; }
.window-topbar, .window-bottom { display: flex; align-items: center; height: 38px; padding: 0 15px; border-bottom: 1px solid var(--line); color: #696a80; font-family: "DM Mono", monospace; font-size: 7px; letter-spacing: .08em; }
.window-dots { display: flex; gap: 5px; margin-right: 20px; }
.window-dots i { width: 5px; height: 5px; border-radius: 50%; background: #3b3c4d; }
.window-dots i:first-child { background: #7778ff; }
.window-title { color: #85869b; }
.window-state { display: flex; align-items: center; gap: 6px; margin-left: auto; color: #777887; }
.window-state b { width: 5px; height: 5px; background: var(--green); border-radius: 50%; }
.window-body { display: grid; grid-template-columns: 57px minmax(0, 1fr) 188px; min-height: 335px; }
.platform-sidebar { display: flex; flex-direction: column; align-items: center; padding: 17px 0; border-right: 1px solid var(--line); }
.side-brand { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 7px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 800; }
.side-brand span { color: #898aff; }
.side-menu { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.side-item { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #5e5f70; }
.side-item.active { color: #7e7fff; }
.side-item small { display: none; }
.side-settings { margin-top: auto; color: #626376; }
.icon-grid, .icon-chart, .icon-star, .icon-settings, .icon-layers, .icon-clock { display: block; position: relative; width: 15px; height: 15px; }
.icon-grid:before { content: "· ·\A· ·"; white-space: pre; position: absolute; inset: -6px 0 0; font-size: 22px; line-height: 9px; text-align: center; }
.icon-chart:before { content: "⌁"; position: absolute; font-size: 24px; line-height: 12px; top: -4px; left: -1px; }
.icon-star:before { content: "☆"; position: absolute; font-size: 18px; top: -4px; }
.icon-settings:before { content: "⚙"; position: absolute; font-size: 14px; top: 0; }
.icon-layers:before { content: "▤"; position: absolute; font-size: 17px; top: -3px; }
.icon-clock:before { content: "◷"; position: absolute; font-size: 18px; top: -3px; }
.chart-panel { min-width: 0; padding: 23px 18px 13px; }
.chart-heading { display: flex; align-items: center; gap: 25px; }
.muted-label, .trade-summary > span { display: block; margin-bottom: 7px; color: #5e6075; font-family: "DM Mono", monospace; font-size: 7px; letter-spacing: .08em; }
.chart-heading strong { display: block; color: #eeeef5; font-size: 14px; }
.chart-price strong { font-size: 18px; }
.chart-filter { margin-left: auto; padding: 7px 9px; border: 1px solid var(--line); border-radius: 4px; background: transparent; color: #9293a5; font-size: 8px; }
.chart-filter span { margin-left: 7px; color: #6b6d7c; }
.chart-area { position: relative; height: 230px; margin-top: 17px; border-top: 1px solid rgba(255,255,255,.035); border-bottom: 1px solid rgba(255,255,255,.035); }
.chart-grid { position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 100% 25%, 20% 100%; opacity: .45; }
.chart-area svg { position: absolute; inset: 14px 0 10px; width: 100%; height: calc(100% - 24px); overflow: visible; }
.chart-line, .line { fill: none; stroke: #696aff; stroke-width: 2; vector-effect: non-scaling-stroke; }
.chart-fill, .area { fill: url(#chart-fill); stroke: none; }
.chart-empty-label { position: absolute; left: 50%; top: 53%; transform: translate(-50%, -50%); width: 160px; color: #686a7e; font-size: 8px; line-height: 1.5; text-align: center; }
.chart-axis { position: absolute; right: 0; bottom: 4px; left: 0; display: flex; justify-content: space-between; color: #525365; font: 7px "DM Mono", monospace; }
.chart-footer { display: flex; gap: 16px; margin-top: 13px; color: #65677b; font: 7px "DM Mono", monospace; }
.chart-footer b { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: #6d6eff; }
.chart-footer .legend-line { border-radius: 0; width: 11px; height: 1px; vertical-align: middle; }
.trade-panel { padding: 22px 16px; border-left: 1px solid var(--line); background: rgba(255,255,255,.014); }
.trade-heading { display: flex; justify-content: space-between; color: #e2e2ec; font-size: 11px; font-weight: 700; }
.more { color: #626377; letter-spacing: 2px; }
.trade-summary { margin-top: 30px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.trade-summary strong { display: block; color: #d2d3df; font-size: 10px; }
.trade-summary small { display: block; margin-top: 5px; color: #626478; font-size: 7px; }
.trade-fields { padding-top: 16px; }
.trade-fields label { display: flex; justify-content: space-between; margin-bottom: 7px; color: #77788b; font: 7px "DM Mono", monospace; text-transform: uppercase; }
.trade-fields label span { color: #aaaabd; }
.fake-input { display: flex; justify-content: space-between; margin-bottom: 14px; padding: 9px; border: 1px solid var(--line); border-radius: 4px; color: #55576b; font-size: 8px; }
.fake-input b { color: #696a7d; font: 8px "DM Mono", monospace; }
.direction-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 4px; }
.direction-buttons button { padding: 10px 3px; border: 1px solid var(--line); border-radius: 4px; background: rgba(255,255,255,.02); color: #68697e; font-size: 8px; font-weight: 700; }
.direction-buttons button span { display: block; margin-bottom: 3px; color: #7778ff; font-size: 13px; }
.direction-buttons button:last-child span { color: #ec6c78; }
.trade-hint { display: flex; gap: 7px; align-items: center; margin-top: 15px; color: #5e6073; font-size: 7px; line-height: 1.4; }
.trade-hint span { display: grid; place-items: center; width: 12px; height: 12px; border: 1px solid #55576e; border-radius: 50%; font-size: 8px; }
.window-bottom { height: 33px; border-top: 1px solid var(--line); border-bottom: 0; gap: 22px; }
.bottom-muted { margin-left: auto; color: #4f5062; }
.hero-steps-section { position: relative; z-index: 2; margin-top: -52px; padding-bottom: 48px; background: linear-gradient(180deg, transparent, rgba(8,8,17,.72) 28%, #080811 100%); }
.hero-steps-card { position: relative; overflow: hidden; padding: 21px 28px 24px; border: 1px solid rgba(255,255,255,.07); border-radius: 24px; background: rgba(255,255,255,.025); box-shadow: 0 10px 40px rgba(0,0,0,.18); backdrop-filter: blur(8px); }
.hero-steps-card:before { content: ""; position: absolute; top: -110px; right: 14%; width: 330px; height: 160px; border-radius: 50%; background: rgba(0,0,153,.11); filter: blur(60px); pointer-events: none; }
.hero-steps-heading { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; padding-bottom: 17px; border-bottom: 1px solid rgba(255,255,255,.055); }
.hero-steps-heading .kicker { color: #9596a8; }
.hero-steps-heading .kicker i { width: 6px; height: 6px; border-radius: 50%; background: #4d4dff; box-shadow: 0 0 0 5px rgba(77,77,255,.1); }
.hero-steps-note { color: #656679; font: 9px "DM Mono", monospace; letter-spacing: .04em; }
.hero-steps-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.hero-step { position: relative; display: flex; align-items: flex-start; gap: 17px; min-width: 0; padding: 25px 25px 3px 0; transition: transform .25s ease; }
.hero-step:not(:last-child):after { content: ""; position: absolute; top: 30px; right: 1px; width: 1px; height: 42px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.13), transparent); }
.hero-step:hover { transform: translateY(-2px); }
.hero-step-number { flex: 0 0 auto; color: #7778ff; font: 700 12px "DM Mono", monospace; letter-spacing: .04em; }
.hero-step h3 { margin: -2px 0 7px; color: #f0f0f6; font-size: 16px; font-weight: 600; letter-spacing: -.03em; }
.hero-step p { margin: 0; color: #9a9bad; font-size: 12px; line-height: 1.5; }
.hero-step:hover h3 { color: #fff; }

.market-ticker { position: relative; isolation: isolate; overflow: hidden; padding: 100px 0 90px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 50% 0%, rgba(0,0,153,.12), transparent 50%), #070711; }
.market-ticker:before { content: ""; position: absolute; inset: 0; opacity: .025; background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px); background-size: 88px 88px; mask-image: linear-gradient(to bottom, black, transparent 80%); pointer-events: none; }
.market-ticker-graph { position: absolute; top: 205px; left: 0; z-index: 0; width: 100%; height: 230px; opacity: .035; overflow: visible; pointer-events: none; }
.market-ticker-graph path { fill: none; stroke: #8183ff; stroke-width: 2; vector-effect: non-scaling-stroke; }
.market-ticker-head { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.market-ticker-kicker { color: #a3a4b5; }
.market-ticker-kicker i { width: 6px; height: 6px; border-radius: 50%; background: #4d4dff; box-shadow: 0 0 0 5px rgba(77,77,255,.1); }
.market-ticker-head h2 { max-width: 680px; margin: 18px 0 14px; color: #f7f7fb; font-size: clamp(40px, 4.8vw, 60px); line-height: 1.03; letter-spacing: -.07em; }
.market-ticker-caption { max-width: 520px; margin: 0; color: #87889b; font-size: 15px; line-height: 1.75; }
.market-ticker-status { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; color: #646579; font: 9px "DM Mono", monospace; white-space: nowrap; }
.market-ticker-status i { width: 6px; height: 6px; border-radius: 50%; background: #656678; }
.market-ticker-status.is-connected { color: #8c8da0; }
.market-ticker-status.is-connected i { background: var(--green); box-shadow: 0 0 0 4px rgba(34,197,94,.1); }
.market-ticker-viewport { position: relative; z-index: 1; width: calc(100% + 100px); overflow: hidden; margin: 42px -50px 0; padding: 7px 0 13px; mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); }
.market-ticker-track { display: flex; flex-wrap: nowrap; width: max-content; gap: 16px; animation: market-ticker-scroll 54s linear infinite; }
.market-ticker-set { display: flex; flex: 0 0 auto; flex-wrap: nowrap; gap: 16px; }
.market-ticker-viewport:hover .market-ticker-track, .market-ticker-viewport.is-touching .market-ticker-track { animation-play-state: paused; }
.market-ticker-item { position: relative; display: flex; flex: 0 0 220px; width: 220px; height: 86px; min-height: 86px; flex-direction: column; justify-content: space-between; padding: 16px 18px; border: 1px solid rgba(255,255,255,.07); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.018)); box-shadow: 0 8px 28px rgba(0,0,0,.08); transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.market-ticker-item:before { content: ""; position: absolute; top: -1px; left: 18px; width: 28px; height: 1px; border-radius: 1px; background: rgba(77,77,255,.75); opacity: .55; }
.market-ticker-item:hover { border-color: rgba(65,65,255,.25); background: rgba(255,255,255,.045); box-shadow: 0 12px 35px rgba(0,0,153,.1); transform: translateY(-4px); }
.market-asset-icon { position: relative; display: grid; flex: 0 0 36px; place-items: center; width: 36px; height: 36px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; background: rgba(255,255,255,.04); transition: transform .25s ease; }
.market-asset-icon img { display: block; width: 36px; height: 36px; object-fit: contain; }
.market-asset-fallback { display: none; color: #b7b8ff; font: 11px "DM Mono", monospace; }
.market-asset-icon.is-fallback img { display: none; }
.market-asset-icon.is-fallback .market-asset-fallback { display: block; }
.market-item-copy { display: flex; min-width: 0; flex: 1; flex-direction: column; gap: 8px; }
.market-item-head { display: flex; align-items: center; gap: 10px; min-width: 0; }
.market-item-top { display: flex; align-items: baseline; gap: 8px; min-width: 0; }
.market-item-copy strong { overflow: hidden; color: rgba(255,255,255,.95); font: 650 14px "DM Mono", monospace; letter-spacing: .02em; text-overflow: ellipsis; white-space: nowrap; }
.market-item-top small { overflow: hidden; color: rgba(255,255,255,.38); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.market-item-values { display: flex; align-items: baseline; justify-content: space-between; gap: 7px; min-width: 0; }
.market-item-price { overflow: hidden; color: #fff; font: 600 15px "DM Mono", monospace; text-overflow: ellipsis; white-space: nowrap; }
.market-item-change { color: #77788b; font: 10px "DM Mono", monospace; white-space: nowrap; }
.market-item-change.is-positive { color: var(--green); }
.market-item-change.is-negative { color: #ef4444; }
.market-ticker-item:hover .market-asset-icon { transform: scale(1.04); }
.market-ticker-item.is-unavailable .market-item-price { color: rgba(255,255,255,.35); font-size: 9px; }
.market-ticker-item.is-loading .market-item-price { min-width: 102px; color: transparent; border-radius: 4px; background: linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.12), rgba(255,255,255,.05)); background-size: 200% 100%; animation: market-skeleton 1.4s ease-in-out infinite; }
.market-ticker-item.is-loading .market-item-change { width: 36px; height: 9px; overflow: hidden; color: transparent; border-radius: 4px; background: rgba(255,255,255,.06); }
@keyframes market-ticker-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(calc(-50% - 8px),0,0); } }
@keyframes market-skeleton { 0%, 100% { background-position: 100% 0; } 50% { background-position: 0 0; } }
@keyframes market-price-up { 0% { background: rgba(34,197,94,.22); } 100% { background: transparent; } }
@keyframes market-price-down { 0% { background: rgba(239,68,68,.2); } 100% { background: transparent; } }
.market-item-price.price-up { animation: market-price-up .45s ease-out; }
.market-item-price.price-down { animation: market-price-down .45s ease-out; }

.scroll-expand-section { position: relative; overflow: clip; background: radial-gradient(circle at 50% 46%, rgba(0,0,153,.13), transparent 48%), #080811; }
.scroll-expand-track { position: relative; width: 100%; }
.scroll-expand-stage { position: sticky; top: 0; width: 100%; height: 100vh; overflow: hidden; isolation: isolate; --scroll-expand-title-size: clamp(34px, 7.5vw, 84px); }
.scroll-expand-frame { position: absolute; inset: 0; overflow: hidden; clip-path: inset(19% 23% 19% 23% round 22px); background: transparent; box-shadow: 0 28px 90px rgba(0,0,0,.42), 0 0 0 1px rgba(255,255,255,.12); will-change: clip-path; }
.scroll-expand-frame:after { content: ""; position: absolute; inset: 0; z-index: 3; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.scroll-expand-media { position: absolute; inset: 0; display: block; width: 100%; height: auto; min-height: 100%; object-fit: contain; object-position: center; background: transparent !important; transform-origin: center; user-select: none; -webkit-user-drag: none; filter: none; will-change: transform; }
.scroll-expand-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(5,7,18,.78), rgba(5,7,18,.08) 48%, rgba(5,7,18,.25)); opacity: 0; }
.scroll-expand-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6%; opacity: 0; text-align: center; will-change: opacity, transform; }
.scroll-expand-overlay h2 { max-width: 680px; margin: 18px 0 15px; color: #fff; font-size: clamp(34px, 5vw, 68px); line-height: 1.05; letter-spacing: -.07em; }
.scroll-expand-overlay p { max-width: 390px; margin: 0 0 24px; color: #d0d0de; font-size: 14px; line-height: 1.75; }
.scroll-expand-title { position: absolute; inset: 0; z-index: 4; display: flex; align-items: center; justify-content: center; margin: 0; padding: 0 6%; color: #fff; font-size: var(--scroll-expand-title-size); font-weight: 700; letter-spacing: -.05em; line-height: 1; text-align: center; text-shadow: 0 2px 24px rgba(0,0,0,.6); pointer-events: none; will-change: opacity, transform; }
.scroll-expand-hint { position: absolute; right: 0; bottom: 1.5rem; left: 0; color: rgba(255,255,255,.6); font: 10px "DM Mono", monospace; letter-spacing: .1em; text-align: center; text-transform: uppercase; will-change: opacity, transform; }
.scroll-expand-hint > span { margin-right: 7px; color: #8d8dff; font-size: 15px; }

.section { padding: 135px 0; position: relative; }
.section-light { color: #090916; background: #f2f2f7; }
.section-dark { background: #080811; }
.section-heading { max-width: 750px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; max-width: none; gap: 60px; }
.section-heading h2 { margin: 18px 0 17px; font-size: clamp(36px, 4vw, 53px); line-height: 1.08; letter-spacing: -.065em; font-weight: 700; }
.section-heading p { max-width: 390px; margin: 0; color: #818294; font-size: 15px; line-height: 1.75; }
.section-light .kicker { color: #8c8d9a; }
.market-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 20px; margin-top: 60px; }
.market-intro-card { position: relative; min-height: 404px; overflow: hidden; padding: 32px; border-radius: var(--radius); color: #fff; background: #0a0a16; }
.market-intro-card:after { content: ""; position: absolute; width: 280px; height: 280px; right: -100px; bottom: -100px; border: 1px solid rgba(85,85,255,.26); border-radius: 50%; box-shadow: 0 0 0 34px rgba(85,85,255,.03), 0 0 0 70px rgba(85,85,255,.025); }
.intro-card-top { display: flex; justify-content: space-between; align-items: center; }
.blue-mark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 7px; background: var(--primary); font-size: 12px; font-weight: 800; }
.mini-status { display: flex; align-items: center; gap: 8px; color: #858699; font: 8px "DM Mono", monospace; }
.mini-status i { width: 5px; height: 5px; background: var(--green); box-shadow: none; }
.market-intro-card h3 { margin: 71px 0 18px; font-size: 27px; line-height: 1.15; letter-spacing: -.05em; }
.market-intro-card p { max-width: 275px; margin: 0; color: #858699; font-size: 12px; line-height: 1.7; }
.market-intro-card .arrow-link { position: absolute; bottom: 35px; }
.intro-lines { position: absolute; right: 0; bottom: 0; left: 0; height: 100px; opacity: .35; background: linear-gradient(160deg, transparent 30%, rgba(50,50,244,.23) 30.3%, transparent 30.7%), linear-gradient(160deg, transparent 49%, rgba(50,50,244,.19) 49.3%, transparent 49.7%), linear-gradient(160deg, transparent 68%, rgba(50,50,244,.12) 68.3%, transparent 68.7%); }
.asset-list { padding: 0 25px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: rgba(255,255,255,.55); }
.asset-list-head, .asset-row { display: flex; align-items: center; justify-content: space-between; }
.asset-list-head { padding: 22px 0 14px; color: #9b9ca9; font: 8px "DM Mono", monospace; letter-spacing: .12em; }
.asset-row { min-height: 73px; border-top: 1px solid var(--line-dark); }
.asset-name { display: flex; align-items: center; gap: 14px; }
.asset-badge { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: #e0e5ff; color: #4b5dd4; font: 9px "DM Mono", monospace; }
.asset-badge-purple { background: #ebe1ff; color: #8a5dd4; }
.asset-badge-orange { background: #ffebd8; color: #d58642; }
.asset-badge-green { background: #daf5e5; color: #36a567; }
.asset-name strong { display: block; color: #202031; font-size: 12px; }
.asset-name small { display: block; margin-top: 4px; color: #9a9ba9; font: 9px "DM Mono", monospace; }
.asset-status { color: #888997; font: 8px "DM Mono", monospace; }
.asset-status b { margin-left: 8px; color: #6768ea; font-size: 13px; }
.asset-list-foot { display: flex; align-items: center; gap: 9px; padding: 22px 0; color: #999aa8; font: 8px "DM Mono", monospace; }
.live-pulse { display: inline-block; width: 5px; height: 5px; background: var(--green); box-shadow: 0 0 0 4px rgba(34,197,94,.1); }
.asset-list-foot > span:last-child { margin-left: auto; color: #7778e7; font-size: 12px; }

.blue-kicker { color: #7778ff; }
.section-dark .section-heading p { color: #747589; }
.section-dark h2 { color: #f5f5fa; }
.feature-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 15px; margin-top: 67px; }
.feature-card { position: relative; min-height: 310px; overflow: hidden; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.018); }
.feature-card-large { grid-row: span 1; }
.feature-icon { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(117,118,255,.34); border-radius: 9px; color: #7778ff; }
.feature-icon .icon-chart:before { font-size: 25px; }
.feature-index { position: absolute; top: 30px; right: 27px; color: #55566a; font: 9px "DM Mono", monospace; }
.feature-card h3 { margin: 34px 0 11px; color: #e8e8f1; font-size: 17px; letter-spacing: -.04em; }
.feature-card p { max-width: 260px; margin: 0; color: #77788b; font-size: 11px; line-height: 1.7; }
.mini-chart { position: absolute; right: 0; bottom: 0; left: 0; height: 90px; background: linear-gradient(180deg, transparent, rgba(51,51,244,.08)); }
.mini-chart svg { width: 100%; height: 100%; overflow: visible; }
.mini-chart path { fill: none; stroke: #6566f5; stroke-width: 2; vector-effect: non-scaling-stroke; }
.stacked-visual { position: absolute; right: 26px; bottom: 28px; left: 27px; display: flex; flex-direction: column; gap: 5px; }
.stacked-visual span { padding: 10px; border: 1px solid var(--line); border-radius: 4px; color: #626479; font: 8px "DM Mono", monospace; background: rgba(255,255,255,.025); }
.stacked-visual span:nth-child(2) { margin-left: 14px; color: #7a7bf7; background: rgba(0,0,153,.18); }
.stacked-visual span:nth-child(3) { margin-left: 28px; }
.steps-visual { position: absolute; right: 27px; bottom: 55px; left: 27px; display: flex; align-items: center; }
.steps-visual b { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid #4b4c63; border-radius: 50%; color: #7778ff; font: 9px "DM Mono", monospace; }
.steps-visual i { flex: 1; height: 1px; background: linear-gradient(90deg, #47485e, transparent); }

.how-section { position: relative; overflow: hidden; padding: 110px 0 120px; color: #0b0b18; background: radial-gradient(circle at 50% 0%, rgba(0,0,153,.05), transparent 45%), #f7f7fa; }
.how-section:before { content: ""; position: absolute; top: 205px; left: 50%; width: min(1200px, 100%); height: 260px; opacity: .04; background: linear-gradient(165deg, transparent 0 35%, #000099 35.2% 35.45%, transparent 35.65% 47%, #000099 47.2% 47.45%, transparent 47.65% 61%, #000099 61.2% 61.45%, transparent 61.65%); transform: translateX(-50%); pointer-events: none; }
.how-heading { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.how-heading .kicker { color: rgba(0,0,50,.45); font-size: 11px; font-weight: 600; }
.how-heading h2 { margin: 18px 0 0; color: #070713; font-size: clamp(52px, 5vw, 60px); line-height: 1.02; letter-spacing: -.06em; font-weight: 700; }
.how-heading > p { max-width: 560px; margin: 0 0 3px; color: rgba(7,7,19,.5); font-size: 16px; line-height: 1.7; }
.steps-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 52px; }
.step-card { position: relative; display: flex; min-height: 260px; flex-direction: column; overflow: hidden; padding: 28px; border: 1px solid rgba(10,10,40,.07); border-radius: 24px; background: rgba(255,255,255,.7); box-shadow: 0 10px 40px rgba(20,20,50,.035); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.step-card:after { content: ""; position: absolute; right: -38px; bottom: -60px; width: 125px; height: 125px; border: 1px solid rgba(0,0,153,.05); border-radius: 50%; pointer-events: none; }
.step-card-featured { background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(245,245,255,.9)); }
.step-card:hover { border-color: rgba(0,0,153,.16); box-shadow: 0 22px 50px rgba(20,20,60,.07); transform: translateY(-6px); }
.step-card-top { display: flex; align-items: center; justify-content: space-between; }
.step-number { color: var(--primary); font: 700 12px "DM Mono", monospace; letter-spacing: .08em; }
.step-progress { width: 46px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--primary) 0 28%, rgba(0,0,153,.1) 28% 100%); }
.step-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-top: 31px; border: 1px solid rgba(0,0,153,.1); border-radius: 14px; color: var(--primary); background: rgba(0,0,153,.055); transition: color .25s ease, background .25s ease, border-color .25s ease; }
.step-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.step-card-body { margin-top: auto; padding-top: 24px; }
.step-card h3 { margin: 0 0 9px; color: #080812; font-size: 18px; font-weight: 650; letter-spacing: -.04em; }
.step-card p { max-width: 220px; margin: 0; color: rgba(8,8,18,.52); font-size: 14px; line-height: 1.6; }
.step-arrow { position: absolute; right: 28px; bottom: 27px; color: var(--primary); font-size: 17px; opacity: .25; transition: opacity .25s ease, transform .25s ease; }
.step-card:hover .step-icon { border-color: var(--primary); color: #fff; background: var(--primary); }
.step-card:hover .step-arrow { opacity: 1; transform: translate(2px, -2px); }
.steps-grid .reveal-delay { transition-delay: .07s; }
.steps-grid .reveal-delay-2 { transition-delay: .14s; }
.steps-grid .reveal-delay-3 { transition-delay: .21s; }

.insight-section { background: #0a0a15; }
.insight-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 80px; }
.insight-copy h2 { margin: 18px 0 19px; color: #f7f7fa; font-size: clamp(40px, 4vw, 57px); line-height: 1.05; letter-spacing: -.07em; }
.insight-copy p { max-width: 330px; color: #808195; font-size: 13px; line-height: 1.8; }
.insight-copy .button { margin-top: 21px; }
.insight-card { padding: 25px 25px 17px; border: 1px solid var(--line); border-radius: var(--radius); background: #0f0f20; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.insight-platform-preview { position: relative; overflow: hidden; aspect-ratio: 1024 / 354; margin-top: 28px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: #0b0e1b; box-shadow: inset 0 0 0 1px rgba(0,0,153,.08); }
.insight-platform-preview:after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 35px rgba(0,0,0,.2); pointer-events: none; }
.insight-platform-preview img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; user-select: none; -webkit-user-drag: none; }
.insight-card-head, .insight-footer { display: flex; justify-content: space-between; align-items: center; color: #75768b; font: 8px "DM Mono", monospace; letter-spacing: .1em; }
.insight-pips { color: #5a5b73; letter-spacing: 3px; }
.insight-chart { position: relative; height: 290px; margin-top: 28px; border-top: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.insight-chart:before { content: ""; position: absolute; inset: 0 0 0 28px; background: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 100% 25%, 20% 100%; }
.insight-chart svg { position: absolute; inset: 14px 0 16px 28px; width: calc(100% - 28px); height: calc(100% - 30px); overflow: visible; }
.insight-chart .area { fill: url(#chart-fill); opacity: .8; }
.insight-y, .insight-x { position: absolute; display: flex; justify-content: space-between; color: #4e5066; font: 7px "DM Mono", monospace; }
.insight-y { inset: 10px auto 10px 0; flex-direction: column; }
.insight-x { right: 0; bottom: 4px; left: 28px; }
.insight-footer { margin-top: 15px; letter-spacing: .02em; text-transform: none; }
.insight-footer i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: #7778ff; }
.insight-footer b { margin-left: 5px; color: #abacc0; font-weight: 400; }

.mobile-section { background: #f3f3f7; color: #0b0b18; }
.mobile-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 120px; }
.phone-stage { position: relative; display: flex; justify-content: center; min-height: 420px; }
.phone-glow { position: absolute; top: 40px; width: 240px; height: 320px; border-radius: 50%; background: rgba(0,0,153,.18); filter: blur(55px); }
.platform-visual-mobile { position: relative; z-index: 1; width: min(178px, 100%); height: auto; filter: drop-shadow(25px 30px 30px rgba(0,0,50,.2)); }
.phone { position: relative; width: 210px; height: 410px; padding: 9px; border: 5px solid #141424; border-radius: 30px; background: #080813; box-shadow: 25px 30px 50px rgba(0,0,50,.2); transform: rotate(-8deg); }
.phone-notch { position: absolute; z-index: 1; top: 8px; left: 50%; width: 77px; height: 18px; border-radius: 0 0 13px 13px; background: #141424; transform: translateX(-50%); }
.phone-screen { height: 100%; padding: 35px 14px 14px; border-radius: 21px; background: linear-gradient(160deg, #111127, #080812); }
.phone-header { display: flex; justify-content: space-between; color: #8586a0; font: 8px "DM Mono", monospace; }
.phone-logo { color: #fff; font-weight: 800; letter-spacing: .1em; }
.phone-label { display: block; margin-top: 40px; color: #65667c; font: 7px "DM Mono", monospace; }
.phone-balance { display: block; margin-top: 9px; color: #f5f5fb; font-size: 26px; letter-spacing: -.06em; }
.phone-screen small { display: block; margin-top: 3px; color: #66677c; font: 8px "DM Mono", monospace; }
.phone-line-chart { height: 105px; margin-top: 26px; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); background: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 100% 33%; }
.phone-line-chart svg { width: 100%; height: 100%; overflow: visible; }
.phone-line-chart path { fill: none; stroke: #696aff; stroke-width: 2; vector-effect: non-scaling-stroke; }
.phone-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 23px; }
.phone-actions span { padding: 8px 3px; border: 1px solid var(--line); border-radius: 4px; color: #6e7087; font: 6px "DM Mono", monospace; text-align: center; }
.mobile-copy h2 { margin: 18px 0; color: #0d0d1e; font-size: clamp(39px, 4vw, 55px); line-height: 1.05; letter-spacing: -.07em; }
.mobile-copy p { max-width: 400px; color: #818291; font-size: 14px; line-height: 1.8; }
.mobile-points { display: grid; gap: 15px; margin: 31px 0; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.mobile-points span { color: #373747; font: 10px "DM Mono", monospace; }
.mobile-points b { display: inline-block; width: 26px; color: var(--primary); font-weight: 400; }
.dark-link { color: #17172a; }

.security-section { background: #f7f7fa; color: #0b0b18; }
.security-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.security-copy h2 { margin: 18px 0; font-size: clamp(40px, 4vw, 56px); line-height: 1.05; letter-spacing: -.07em; }
.security-copy p { max-width: 340px; color: #858696; font-size: 13px; line-height: 1.8; }
.security-list { border-top: 1px solid var(--line-dark); }
.security-list > div { display: grid; grid-template-columns: 48px 1fr 26px; align-items: center; min-height: 112px; border-bottom: 1px solid var(--line-dark); }
.security-number { color: #7778e6; font: 9px "DM Mono", monospace; }
.security-list strong { color: #282837; font-size: 13px; }
.security-list p { margin: 7px 0 0; color: #9596a4; font-size: 11px; }
.security-check { display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid rgba(0,0,153,.3); border-radius: 50%; color: var(--primary); font-size: 11px; }

.about-section { background: #090914; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.about-mark { display: grid; place-items: center; justify-self: center; width: 235px; height: 235px; overflow: hidden; border: 1px solid rgba(112,113,255,.35); border-radius: 50%; box-shadow: 0 0 0 35px rgba(0,0,153,.08), 0 0 90px rgba(0,0,153,.16); }
.about-mark-image { display: block; width: 100%; height: 100%; object-fit: contain; }
.about-copy h2 { margin: 18px 0; color: #f5f5fa; font-size: clamp(39px, 4vw, 54px); line-height: 1.05; letter-spacing: -.07em; }
.about-copy p { max-width: 445px; margin: 0 0 16px; color: #808195; font-size: 14px; line-height: 1.8; }

.testimonials-section { padding: 100px 0; background: #080811; }
.testimonial-heading-wrap { max-width: 1440px; }
.testimonial-heading-wrap .section-heading { max-width: 720px; }
.testimonial-heading-wrap .section-heading p { color: #808195; }
.testimonial-disclaimer { display: block; margin-top: 18px; color: #68697d; font: 10px "DM Mono", monospace; }
.testimonials-viewport { position: relative; width: 100%; overflow: hidden; margin-top: 48px; padding: 3px 0 10px; mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%); }
.testimonials-viewport:before, .testimonials-viewport:after { content: ""; position: absolute; top: 0; bottom: 0; z-index: 2; width: 8%; pointer-events: none; }
.testimonials-viewport:before { left: 0; background: linear-gradient(90deg, #080811, transparent); }
.testimonials-viewport:after { right: 0; background: linear-gradient(270deg, #080811, transparent); }
.testimonials-track { display: flex; flex-wrap: nowrap; width: max-content; gap: 16px; }
.testimonials-track.is-looping { animation: testimonials-scroll 46s linear infinite; }
.testimonials-viewport:hover .testimonials-track.is-looping { animation-play-state: paused; }
.testimonial-card { display: flex; flex: 0 0 340px; flex-direction: column; justify-content: space-between; width: 340px; min-width: 340px; height: 220px; min-height: 220px; padding: 26px; border: 1px solid rgba(255,255,255,.07); border-radius: 20px; background: rgba(255,255,255,.025); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.testimonial-card:hover { border-color: rgba(77,77,255,.25); background: rgba(255,255,255,.035); transform: translateY(-4px); }
.testimonial-label { display: block; color: #68697d; font: 8px "DM Mono", monospace; letter-spacing: .14em; }
.quote-mark { display: block; height: 30px; margin-top: 12px; color: #4d4dff; font: 54px/32px Georgia, serif; }
.testimonial-card p { margin: 0; color: #afb0bf; font-size: 12px; line-height: 1.65; }
.testimonial-card footer { display: flex; align-items: center; gap: 10px; margin-top: 15px; }
.testimonial-avatar { display: grid; flex: 0 0 auto; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(77,77,255,.3); border-radius: 50%; color: #a5a6ff; background: rgba(0,0,153,.18); font: 8px "DM Mono", monospace; }
.testimonial-card footer > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.testimonial-card footer strong { color: #d5d5e2; font: 10px "DM Mono", monospace; font-weight: 500; }
.testimonial-card footer small { color: #68697d; font: 8px "DM Mono", monospace; }
.testimonial-verified { display: block; margin-top: 10px; color: #7778ff; font: 8px "DM Mono", monospace; text-transform: uppercase; }
@keyframes testimonials-scroll { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }

.faq-section { background: #f3f3f7; color: #0b0b18; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading h2 { margin: 18px 0; font-size: clamp(40px, 4vw, 56px); line-height: 1.05; letter-spacing: -.07em; }
.faq-heading p { max-width: 300px; color: #858696; font-size: 13px; line-height: 1.8; }
.faq-heading .text-link { margin-top: 25px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { overflow: hidden; border: 1px solid rgba(10,10,30,.1); border-radius: 16px; background: rgba(255,255,255,.45); transition: border-color .25s, background .25s, box-shadow .25s; }
.faq-item.is-open { border-color: rgba(0,0,153,.28); background: rgba(255,255,255,.72); box-shadow: 0 8px 25px rgba(12,12,60,.04); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 22px; border: 0; background: transparent; color: #202031; cursor: pointer; font-size: 13px; font-weight: 700; text-align: left; }
.faq-item button:focus-visible { outline: 2px solid var(--primary); outline-offset: -4px; }
.faq-plus { position: relative; flex: 0 0 auto; width: 18px; height: 18px; margin-left: 15px; border: 1px solid #8d8e9d; border-radius: 50%; transition: transform .3s, border-color .3s, background .3s; }
.faq-plus:before, .faq-plus:after { content: ""; position: absolute; top: 50%; left: 50%; width: 7px; height: 1px; background: currentColor; transform: translate(-50%, -50%); transition: transform .3s; }
.faq-plus:after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-plus { border-color: var(--primary); background: var(--primary); color: #fff; transform: rotate(180deg); }
.faq-item.is-open .faq-plus:after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .32s ease, opacity .25s ease; }
.faq-item.is-open .faq-answer { max-height: 180px; opacity: 1; }
.faq-answer p { margin: -2px 22px 21px; color: #858696; font-size: 12px; line-height: 1.75; }

.final-cta { position: relative; overflow: hidden; min-height: 450px; padding: 110px 0; background: linear-gradient(115deg, #000099, #0b0b20 75%); }
.cta-grid { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.23) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.23) 1px, transparent 1px); background-size: 100px 100px; mask-image: linear-gradient(90deg, black, transparent 82%); }
.final-cta:after { content: ""; position: absolute; top: -180px; right: -80px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.03), 0 0 0 110px rgba(255,255,255,.025); }
.final-cta-inner { position: relative; z-index: 1; }
.cta-tag { display: flex; align-items: center; gap: 9px; color: #9999ff; font: 9px "DM Mono", monospace; letter-spacing: .16em; }
.cta-tag span { width: 6px; height: 6px; border: 1px solid #9999ff; border-radius: 50%; }
.final-cta h2 { margin: 20px 0 14px; color: #fff; font-size: clamp(43px, 5vw, 67px); letter-spacing: -.07em; }
.final-cta p { max-width: 485px; margin: 0; color: #aaaade; font-size: 14px; line-height: 1.8; }
.button-white { color: #17172a; background: #fff; }
.button-white:hover { background: #ebebff; box-shadow: 0 12px 35px rgba(0,0,0,.25); }
.button-outline-white { border-color: rgba(255,255,255,.25); color: #fff; }
.button-outline-white:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }

.site-footer { background: #05050c; }
.footer-top { display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; padding: 75px 0 65px; }
.footer-brand p { max-width: 220px; margin: 20px 0 0; color: #696a7c; font-size: 11px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-links div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-links span { margin-bottom: 9px; color: #696a7c; font: 8px "DM Mono", monospace; letter-spacing: .13em; }
.footer-links a { color: #9a9baa; font-size: 11px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.risk-notice { display: flex; gap: 15px; align-items: start; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.risk-icon { display: grid; flex: 0 0 auto; place-items: center; width: 18px; height: 18px; border: 1px solid #5d5e72; border-radius: 50%; color: #9495a5; font: 10px "DM Mono", monospace; }
.risk-notice p { max-width: 900px; margin: 0; color: #666778; font-size: 10px; line-height: 1.7; }
.risk-notice strong { color: #999aaa; font-weight: 700; }
.footer-bottom { display: flex; justify-content: space-between; padding: 27px 0 31px; color: #515264; font: 9px "DM Mono", monospace; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .container { width: min(var(--container), calc(100% - 48px)); }
  .desktop-nav { gap: 2px; }
  .hero { padding-top: 145px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 650px; }
  .hero-product-wrap { max-width: 820px; width: 100%; margin: 0 auto; }
  .hero-steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-step:nth-child(2n):after { display: none; }
  .hero-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.055); }
  .how-heading { gap: 35px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 45px; }
  .step-card { min-height: 250px; }
  .mobile-layout, .security-layout { gap: 50px; }
}
@media (max-width: 760px) {
  .container { width: calc(100% - 32px); }
  .site-header { top: 10px; width: calc(100% - 24px); height: 56px; }
  .site-header.is-scrolled { top: 10px; }
  .site-header.mobile-open { height: 438px; border-radius: 26px; background: rgba(8,8,18,.94); }
  .nav-wrap { height: 56px; padding: 7px 12px 7px 16px; }
  .desktop-nav, .nav-actions, .nav-user-actions { display: none; }
  .brand { width: 135px; }
  .brand img { width: 135px; height: 40px; }
  .menu-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0; border: 0; background: transparent; color: #fff; }
  .menu-toggle span { display: block; width: 21px; height: 1px; margin-left: auto; background: #fff; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav { display: flex; position: absolute; top: 56px; right: 0; left: 0; flex-direction: column; gap: 0; padding: 12px 16px 20px; background: transparent; opacity: 0; pointer-events: none; transform: translateY(-10px) scaleY(.94); transform-origin: top; transition: opacity .25s ease, transform .3s cubic-bezier(.22,1,.36,1); }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .mobile-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); color: #b2b3c2; font-size: 13px; }
  .mobile-nav a:hover, .mobile-nav a:focus-visible { color: #fff; }
  .mobile-nav .button { margin-top: 15px; border: 0; color: #fff; }
  .hero { min-height: 0; padding: 130px 0 65px; }
  .hero h1 { margin-top: 20px; font-size: clamp(42px, 12vw, 58px); }
  .hero-lead { font-size: 14px; line-height: 1.7; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-note { line-height: 1.5; }
  .hero-product-wrap { padding: 22px 0 28px; }
  .hero-product { transform: none; }
  .hero-floating-card-top { right: 0; }
  .hero-floating-card-bottom { bottom: 0; left: 0; }
  .product-topbar-title, .product-status { display: none; }
  .product-body { grid-template-columns: 44px minmax(0, 1fr); }
  .product-trade { display: none; }
  .product-dashboard { padding: 18px 12px 12px; }
  .product-chart { height: 220px; }
  .hero-trust { gap: 10px 14px; font-size: 8px; }
  .hero-steps-section { margin-top: -20px; padding-bottom: 30px; }
  .hero-steps-card { padding: 18px 16px 7px; border-radius: 20px; }
  .hero-steps-heading { padding-bottom: 14px; }
  .hero-steps-note { display: none; }
  .hero-steps-grid { grid-template-columns: 1fr; }
  .hero-step, .hero-step:nth-child(-n+2) { min-height: 0; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.055); }
  .hero-step:last-child { border-bottom: 0; }
  .hero-step:after, .hero-step:nth-child(2n):after { display: none; }
  .hero-step h3 { font-size: 15px; }
  .hero-step p { font-size: 11px; }
  .platform-window { transform: none; }
  .window-body { grid-template-columns: 44px minmax(0, 1fr); }
  .trade-panel { display: none; }
  .chart-panel { padding: 18px 12px 12px; }
  .chart-area { height: 220px; }
  .window-bottom { gap: 12px; font-size: 6px; }
  .market-ticker { padding: 76px 0 68px; }
  .market-ticker-graph { top: 280px; height: 180px; }
  .market-ticker-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .market-ticker-head h2 { margin: 16px 0 12px; font-size: 42px; }
  .market-ticker-caption { max-width: 430px; font-size: 13px; }
  .market-ticker-status { margin-bottom: 0; padding-top: 2px; font-size: 8px; }
  .market-ticker-viewport { width: 100%; overflow-x: auto; overflow-y: hidden; margin: 32px 0 0; padding: 4px 16px 8px; scrollbar-width: none; touch-action: pan-x; }
  .market-ticker-viewport::-webkit-scrollbar { display: none; }
  .market-ticker-item { flex-basis: 190px; width: 190px; height: 80px; min-height: 80px; padding: 14px; border-radius: 16px; scroll-snap-align: center; }
  .market-asset-icon, .market-asset-icon img { width: 32px; height: 32px; }
  .market-asset-icon { flex-basis: 32px; }
  .market-item-copy { gap: 6px; }
  .market-item-copy strong { font-size: 12px; }
  .market-item-top small, .market-item-change { font-size: 9px; }
  .market-item-price { font-size: 13px; }
  .section { padding: 82px 0; }
  .how-section { padding: 82px 0 88px; }
  .how-heading { flex-direction: column; align-items: flex-start; gap: 23px; }
  .how-heading h2 { font-size: 42px; }
  .how-heading > p { max-width: 500px; font-size: 14px; }
  .split-heading, .insight-layout, .mobile-layout, .security-layout, .about-layout, .faq-layout, .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .split-heading { align-items: start; gap: 20px; }
  .section-heading h2 { font-size: 39px; }
  .section-heading p { font-size: 13px; }
  .market-layout, .feature-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .market-intro-card { min-height: 350px; }
  .market-intro-card h3 { margin-top: 55px; }
  .asset-list { padding: 0 16px; }
  .asset-status { max-width: 120px; font-size: 7px; text-align: right; }
  .feature-grid { gap: 12px; }
  .feature-card { min-height: 270px; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .step-card { min-height: 0; padding: 24px; border-radius: 20px; }
  .step-icon { margin-top: 24px; }
  .step-card-body { padding-top: 20px; }
  .step-card h3 { font-size: 17px; }
  .step-card p { font-size: 13px; }
  .insight-copy h2, .mobile-copy h2, .security-copy h2, .about-copy h2 { font-size: 42px; }
  .insight-card { padding: 18px 14px 14px; }
  .insight-chart { height: 220px; }
  .testimonials-section { padding: 82px 0; }
  .testimonials-viewport { overflow-x: auto; overflow-y: hidden; padding: 3px 24px 10px; mask-image: none; -webkit-mask-image: none; scrollbar-width: none; scroll-snap-type: x mandatory; }
  .testimonials-viewport::-webkit-scrollbar { display: none; }
  .testimonials-viewport:before, .testimonials-viewport:after { display: none; }
  .testimonials-track { animation: none !important; }
  .testimonial-card { flex-basis: calc(100vw - 48px); width: calc(100vw - 48px); min-width: calc(100vw - 48px); scroll-snap-align: center; }
  .faq-heading { position: static; }
  .faq-list { gap: 8px; }
  .faq-item button { padding: 18px 16px; font-size: 12px; }
  .faq-answer p { margin-right: 16px; margin-left: 16px; font-size: 11px; }
  .phone-stage { min-height: 410px; order: 2; }
  .mobile-copy { order: 1; }
  .security-list > div { grid-template-columns: 34px 1fr 26px; min-height: 108px; }
  .security-list strong { font-size: 12px; }
  .security-list p { font-size: 10px; line-height: 1.5; }
  .about-mark { width: 175px; height: 175px; }
  .about-copy p { font-size: 13px; }
  .final-cta { min-height: 0; padding: 80px 0; }
  .final-cta h2 { font-size: 45px; }
  .final-cta p { font-size: 13px; }
  .final-cta .hero-actions { align-items: stretch; }
  .final-cta .button { width: 100%; }
  .footer-top { padding: 55px 0 45px; gap: 40px; }
  .footer-links { gap: 18px; }
  .footer-links a { font-size: 10px; }
  .risk-notice { gap: 10px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding-bottom: 25px; line-height: 1.5; }
}
@media (max-width: 390px) {
  .market-ticker-head h2 { font-size: 38px; }
}
