:root {
  --ink: #080914;
  --ink-2: #111427;
  --paper: #f6f7fb;
  --paper-2: #edf1f8;
  --white: #fff;
  --brand-blue: #287cfe;
  --brand-violet: #7b5cf9;
  --brand-orange: #ff7e32;
  --brand-green: #30d987;
  --gold: var(--brand-orange);
  --gold-dark: #d65320;
  --blue: var(--brand-blue);
  --muted: #667187;
  --line: rgba(8, 9, 20, .13);
  --line-light: rgba(255, 255, 255, .14);
  --positive: var(--brand-green);
  --negative: #ff625a;
  --shadow: 0 24px 80px rgba(5, 12, 23, .18);
  --radius: 20px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.65 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; }
body::selection { background: var(--brand-violet); color: var(--white); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
svg { width: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: 'Manrope', sans-serif; letter-spacing: -.045em; line-height: 1.08; }
h1 { font-size: clamp(3.3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 4.2rem); }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(88px, 10vw, 150px) 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 16px; background: var(--brand-blue); color: var(--white); transform: translateY(-160%); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.site-header { position: absolute; z-index: 20; top: 0; left: 0; right: 0; color: var(--white); }
.nav-shell { width: min(calc(100% - 40px), 1320px); min-height: var(--header-height); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand { display: inline-flex; align-items: center; flex: none; white-space: nowrap; }
.brand-logo { display: block; width: 158px; height: auto; max-height: 54px; object-fit: contain; filter: drop-shadow(0 4px 14px rgba(0,0,0,.16)); transition: transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease; }
.brand:hover .brand-logo { transform: translateY(-1px) scale(1.025); filter: drop-shadow(0 7px 18px rgba(40,124,254,.2)); }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; font-size: .9rem; font-weight: 600; }
.desktop-nav > a, .nav-trigger { position:relative;color:rgba(255,255,255,.8);transition:color .25s ease; }
.desktop-nav > a::after,.nav-trigger::after { content:'';position:absolute;left:0;right:0;bottom:19px;height:1px;background:linear-gradient(90deg,var(--brand-blue),var(--brand-violet));transform:scaleX(0);transform-origin:right;transition:transform .35s cubic-bezier(.2,.8,.2,1); }
.desktop-nav > a:hover::after,.nav-trigger:hover::after,.nav-trigger[aria-expanded=true]::after { transform:scaleX(1);transform-origin:left; }
.desktop-nav > a:hover, .nav-trigger:hover { color: var(--white); }
.nav-trigger { display: flex; align-items: center; gap: 5px; background: none; border: 0; padding: 28px 0; }
.nav-trigger svg { width: 14px; transition: transform .2s; }
.nav-trigger[aria-expanded=true] svg { transform: rotate(180deg); }
.nav-group { position: relative; }
.nav-panel { position: absolute; top: calc(100% - 6px); left: -22px; width: 280px; background: var(--white); color: var(--ink); border-radius: 14px; padding: 10px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s ease; }
.nav-trigger[aria-expanded=true] + .nav-panel, .nav-group:hover .nav-panel { opacity: 1; visibility: visible; transform: none; }
.nav-panel a { display: flex; flex-direction: column; padding: 10px 12px; border-radius: 9px; }
.nav-panel a:hover { background: var(--paper); }
.nav-panel span { font-weight: 700; font-size: .9rem; }
.nav-panel small { color: var(--muted); }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.icon-button, .text-button { border: 0; background: transparent; color: inherit; min-width: 44px; min-height: 44px; display: inline-grid; place-items: center; border-radius: 10px; }
.icon-button:hover { background: rgba(255,255,255,.1); }
.text-button { padding: 0 13px; font-weight: 700; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 10px; background: linear-gradient(115deg, var(--brand-blue), var(--brand-violet) 48%, var(--brand-blue)); background-size:180% 100%;background-position:0 50%; color: var(--white); box-shadow: 0 12px 30px rgba(40,124,254,.2); font-weight: 800; transition: transform .28s cubic-bezier(.2,.8,.2,1), filter .28s, box-shadow .28s, background-position .55s ease; }
.button:hover { transform: translateY(-3px); background-position:100% 50%;filter:brightness(1.06);box-shadow:0 18px 38px rgba(123,92,249,.28); }
.button:active { transform:translateY(-1px) scale(.985); }
.button svg { width: 18px; transition: transform .2s; }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button-small { min-height: 44px; padding: 0 18px; font-size: .88rem; }
.button-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.36); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-dark { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: none; }
.menu-toggle, .mobile-nav { display: none; }

.hero { min-height: min(900px, 100vh); display: flex; align-items: center; position: relative; overflow: hidden; background: var(--ink); color: var(--white); padding: 130px 0 70px; }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .25; 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: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-glow { position: absolute; width: 800px; height: 800px; right: -250px; top: -240px; border-radius: 50%; background: radial-gradient(circle, rgba(40,124,254,.28) 0, rgba(123,92,249,.16) 34%, transparent 68%); }
.hero-grid { position: relative; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: clamp(35px, 5vw, 80px); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--gold-dark); text-transform: uppercase; font-size: .72rem; line-height: 1.2; letter-spacing: .16em; font-weight: 800; }
.hero .eyebrow, .inner-hero .eyebrow, .why-section .eyebrow, .site-footer .eyebrow { color: var(--gold); }
.eyebrow i { width: 24px; height: 1px; background: currentColor; }
.hero h1 { margin-bottom: 25px; max-width: 710px; }
.hero h1 span { color: var(--brand-blue); background: linear-gradient(100deg, var(--brand-blue), var(--brand-violet) 55%, var(--brand-orange)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-copy > p { max-width: 600px; color: rgba(255,255,255,.66); font-size: 1.1rem; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 43px; color: rgba(255,255,255,.6); font-size: .78rem; }
.hero-proof > span { display: flex; align-items: center; gap: 7px; }
.hero-proof svg { color: var(--gold); }
.hero-proof b { color: var(--white); }
.terminal-wrap { position: relative; min-height: 540px; display: grid; place-items: center; perspective: 1200px; }
.terminal-card { width: min(100%, 610px); position: relative; z-index: 2; transform: rotateY(-7deg) rotateX(2deg); overflow: hidden; border-radius: 20px; box-shadow: 0 45px 100px rgba(0,0,0,.48); }
.glass { background: linear-gradient(145deg, rgba(255,255,255,.115), rgba(255,255,255,.035)); border: 1px solid rgba(255,255,255,.17); backdrop-filter: blur(18px); }
.terminal-head { height: 50px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .6rem; letter-spacing: .12em; }
.terminal-head > span:first-child { display: flex; gap: 5px; }
.terminal-head i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); }
.live-dot { justify-self: end; color: var(--positive); }
.terminal-body { padding: 26px; }
.quote-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.quote-head span { display: flex; flex-direction: column; }
.quote-head small { color: rgba(255,255,255,.42); }
.quote-head b { font: 700 1.15rem 'Manrope'; }
.quote-price { text-align: right; }
.quote-price small { color: var(--positive); }
.quote-price b { font-size: 1.55rem; }
.hero-chart { display: block; width: 100%; height: auto; margin-top: 18px; overflow: visible; }
.grid-line { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.chart-area { fill: url(#chartFill); stroke: none; }
.chart-line { stroke: var(--brand-blue); stroke-width: 3; filter: drop-shadow(0 0 8px rgba(40,124,254,.45)); }
.volume-bars { height: 68px; display: flex; align-items: flex-end; gap: 5px; margin-top: -48px; opacity: .35; }
.volume-bars i { flex: 1; background: var(--brand-violet); border-radius: 2px 2px 0 0; }
.float-stat { position: absolute; z-index: 3; left: -20px; bottom: 56px; display: flex; align-items: center; gap: 11px; padding: 13px 17px; border-radius: 14px; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.stat-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--brand-orange), #ffb22e); color: var(--ink); }
.float-stat span:last-child { display: flex; flex-direction: column; }
.float-stat small { color: rgba(255,255,255,.45); font-size: .65rem; }
.float-stat b { font-size: .78rem; }
.float-pair { position: absolute; z-index: 3; right: -2px; top: 55px; padding: 13px 16px; border-radius: 50px; display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: .65rem; }
.pair-line { width: 28px; height: 1px; background: var(--brand-green); }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 430px; height: 430px; background: radial-gradient(circle at 35% 30%, rgba(123,92,249,.2), rgba(40,124,254,.07) 48%, transparent 70%); border: 1px solid rgba(123,92,249,.18); }
.orb-two { width: 300px; height: 300px; right: 0; bottom: 30px; border: 1px solid rgba(40,124,254,.15); }

.hero-photo { min-height:570px;margin:0;position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:24px;box-shadow:0 35px 100px rgba(0,0,0,.42); }
.hero-photo::after { content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(3,9,18,.85),transparent 58%); }
.hero-photo img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center; }
.hero-photo figcaption { position:absolute;z-index:1;left:28px;right:28px;bottom:25px;display:flex;align-items:end;justify-content:space-between;gap:20px;color:var(--white); }
.hero-photo figcaption span { color:var(--gold);font-size:.69rem;font-weight:800;text-transform:uppercase;letter-spacing:.13em; }
.hero-photo figcaption b { font:700 1.15rem 'Manrope'; }
.live-ticker { height:78px;overflow:hidden;background:#0c1727;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08); }
.ticker-widget { position:relative;width:100%;height:78px;overflow:hidden; }
.ticker-widget > .tradingview-widget-container__widget { height:0; }
.ticker-widget > div[style] { width:100%!important;height:100%!important; }
.ticker-widget iframe { width:100%!important;height:78px!important;border:0; }
.ticker-loading { position:absolute;z-index:1;inset:0;display:grid;place-items:center;background:#0c1727;color:rgba(255,255,255,.55);font-size:.78rem;letter-spacing:.05em; }
.ticker-widget.is-ready .ticker-loading { display:none; }

.section-head { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: end; margin-bottom: 48px; }
.section-head h2 { margin: 0; max-width: 760px; }
.section-head p { margin: 0; max-width: 430px; justify-self: end; }
.market-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 13px; }
.market-card { grid-column: span 2; min-height: 390px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.45); transition: transform .25s, background .25s, box-shadow .25s; }
.market-card:nth-child(n+4) { grid-column: span 3; min-height: 330px; }
.market-card:hover { transform: translateY(-5px); background: var(--white); box-shadow: var(--shadow); }
.market-card .round-arrow,.related-grid svg,.platform-links b { transition:transform .4s cubic-bezier(.2,.8,.2,1),background .3s,color .3s; }
.market-card:hover .round-arrow,.related-grid a:hover svg,.platform-links a:hover b { transform:translateX(4px) rotate(-4deg);background:var(--brand-blue); }
.market-index { align-self: flex-end; color: var(--gold-dark); font: 700 .75rem 'Manrope'; }
.card-eyebrow { display: block; margin-bottom: 9px; color: var(--gold-dark); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.market-card h3 { font-size: 2rem; margin-bottom: 14px; }
.market-card p { font-size: .9rem; }
.market-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.market-bottom > span:first-child { display: flex; flex-direction: column; }
.market-bottom b { font: 700 1.6rem 'Manrope'; }
.market-bottom small { color: var(--muted); }
.round-arrow { width: 48px; height: 48px; display: grid; place-items: center; background: var(--ink); color: var(--white); border-radius: 50%; }

.platform-section { background: var(--paper-2); overflow: hidden; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
.platform-art { min-height: 510px; position: relative; }
.device { position: absolute; border-radius: 24px; color: var(--white); background: var(--ink); box-shadow: var(--shadow); overflow: hidden; }
.device-back { width: 86%; height: 400px; top: 20px; left: 0; padding: 26px; transform: rotate(-5deg); }
.device-back > span { font: 800 .72rem 'Manrope'; color: var(--gold); }
.device-back::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(217,174,95,.18), transparent 50%); }
.device-back svg { width: 100%; margin-top: 85px; stroke: var(--gold); stroke-width: 3; }
.device-front { width: 53%; height: 360px; right: 2%; bottom: 0; padding: 24px; border: 7px solid #202b3a; transform: rotate(4deg); }
.device-front > span { display: block; margin-top: 24px; max-width: 130px; font: 700 1.3rem/1.2 'Manrope'; }
.device-bar { width: 65px; height: 5px; background: #394557; border-radius: 10px; margin: 0 auto; }
.mini-quotes { display: grid; gap: 7px; margin-top: 28px; }.mini-quotes i { height: 34px; background: rgba(255,255,255,.07); border-radius: 6px; }
.section-copy > p { font-size: 1.05rem; }
.feature-list { list-style: none; margin: 28px 0; padding: 0; display: grid; gap: 12px; }
.feature-list li { display: flex; align-items: center; gap: 10px; }.feature-list svg { color: var(--gold-dark); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.text-link svg { width: 18px; transition: transform .2s; }

.accounts-section { background: var(--white); }
.account-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; align-items: stretch; }
.account-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.account-card.featured { background: var(--ink); color: var(--white); transform: translateY(-12px); box-shadow: var(--shadow); }
.recommend { position: absolute; top: 18px; right: 18px; padding: 5px 9px; border-radius: 20px; color: var(--ink); background: var(--gold); font-size: .64rem; text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.account-card h3 { margin: 5px 0 30px; font-size: 2rem; }
.deposit { display: flex; flex-direction: column; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.featured .deposit { border-color: var(--line-light); }.deposit small { color: var(--muted); }.deposit b { font: 700 2.9rem 'Manrope'; letter-spacing: -.06em; }
.account-card dl { margin: 20px 0; }.account-card dl div { display: flex; justify-content: space-between; gap: 15px; padding: 8px 0; }.account-card dt { color: var(--muted); }.account-card dd { margin: 0; font-weight: 700; }
.account-card ul { list-style: none; padding: 19px 0; margin: 0; display: grid; gap: 10px; border-top: 1px solid var(--line); }.featured ul { border-color: var(--line-light); }.account-card li { display: flex; gap: 9px; align-items: center; font-size: .88rem; }.account-card li svg { color: var(--gold); }
.account-card .button { width: 100%; margin-top: 17px; }.section-footer { display: flex; justify-content: center; margin-top: 45px; }
.comparison-wrap { margin-top: 80px; }.comparison-wrap h2 { font-size: 2rem; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 700px; text-align: left; }
th, td { padding: 18px 20px; border-bottom: 1px solid var(--line); } thead th { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }

.why-section { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
.why-section::after { content: ''; position: absolute; width: 600px; height: 600px; right: -200px; top: -300px; background: radial-gradient(circle, rgba(217,174,95,.13), transparent 68%); }
.light p { color: rgba(255,255,255,.58); }.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); position: relative; z-index: 1; }
.why-card { padding: 38px; background: var(--ink); min-height: 340px; }.why-card > span { color: rgba(255,255,255,.3); font-size: .7rem; }.why-icon { width: 53px; height: 53px; display: grid; place-items: center; margin: 50px 0 27px; border-radius: 14px; color: var(--gold); background: rgba(217,174,95,.09); }.why-card h3 { font-size: 1.55rem; }.why-card p { color: rgba(255,255,255,.52); }
.center-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }.steps { display: grid; grid-template-columns: repeat(3,1fr); }.steps article { padding: 25px 45px; text-align: center; border-right: 1px solid var(--line); }.steps article:last-child { border-right: 0; }.steps span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 28px; border: 1px solid var(--gold-dark); border-radius: 50%; color: var(--gold-dark); font-weight: 800; }.steps p { font-size: .9rem; }.center-cta { display: flex; justify-content: center; margin-top: 45px; }.center-cta .button-ghost { color: var(--ink); border-color: var(--line); }

.faq-section { background: var(--paper-2); }.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px, 10vw, 140px); align-items: start; }.faq-layout h2 { margin-bottom: 19px; }.accordion article { border-top: 1px solid var(--line); }.accordion article:last-child { border-bottom: 1px solid var(--line); }.accordion button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 23px 0; border: 0; background: transparent; text-align: left; color: var(--ink); font-weight: 700; }.accordion button b { font-size: 1.4rem; transition: transform .2s; }.accordion button[aria-expanded=true] b { transform: rotate(45deg); }.answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s; }.answer p { min-height: 0; overflow: hidden; margin: 0; }.accordion button[aria-expanded=true] + .answer { grid-template-rows: 1fr; }.accordion button[aria-expanded=true] + .answer p { padding-bottom: 22px; }

.inner-hero { min-height: 720px; display: flex; align-items: center; padding: 145px 0 80px; overflow: hidden; background: var(--ink); color: var(--white); position: relative; }.inner-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 35%, rgba(159,200,255,.14), transparent 40%); }.inner-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }.inner-hero h1 { font-size: clamp(3rem, 5.7vw, 5.6rem); margin-bottom: 25px; }.inner-hero p { color: rgba(255,255,255,.6); max-width: 630px; font-size: 1.05rem; }.inner-visual { height: 410px; position: relative; display: grid; place-items: center; }.visual-label { position: absolute; top: 20px; left: 20px; z-index: 2; font-size: .65rem; letter-spacing: .16em; color: rgba(255,255,255,.4); }.visual-ring { width: 330px; height: 330px; border-radius: 50%; border: 1px solid rgba(217,174,95,.25); box-shadow: inset 0 0 70px rgba(217,174,95,.05), 0 0 90px rgba(33,75,124,.14); }.visual-ring::before, .visual-ring::after { content:''; position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.08); inset: 76px; }.visual-ring::after { inset: 120px; background: rgba(255,255,255,.02); }.visual-number { position: absolute; z-index: 2; font: 800 6rem 'Manrope'; letter-spacing: -.09em; color: var(--gold); text-shadow: 0 20px 70px rgba(217,174,95,.24); }.inner-visual > svg { position: absolute; bottom: 18px; width: 100%; stroke: var(--gold); stroke-width: 2; opacity: .7; }
.inner-photo { height:470px;margin:0;position:relative;overflow:hidden;border-radius:22px;border:1px solid rgba(255,255,255,.14);box-shadow:0 30px 90px rgba(0,0,0,.35); }
.inner-photo::after { content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(3,9,18,.72),transparent 55%); }
.inner-photo img { width:100%;height:100%;object-fit:cover; }
.inner-photo figcaption { position:absolute;z-index:1;left:22px;bottom:18px;color:var(--gold);font-size:.7rem;font-weight:800;text-transform:uppercase;letter-spacing:.13em; }
.content-split { align-items: start; }.content-split p { font-size: 1.05rem; }.dark-list { color: var(--ink); }.metric-panel { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); }.metric-panel > div { min-height: 230px; padding: 28px; display:flex; flex-direction:column; justify-content:flex-end; }.metric-panel > div + div { border-left: 1px solid var(--line); }.metric-panel small,.metric-panel span { color: var(--muted); }.metric-panel b { font: 700 2.4rem 'Manrope'; }.instrument-section { padding-top: 0; }.instrument-table { background: var(--white); border-radius: var(--radius); overflow: hidden; }.instrument-table tbody tr:hover { background: #f8f7f3; }

.tool-section { min-height: 700px; }.tool-toolbar { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom: 35px; }.tool-toolbar h2 { margin: 0; }.filter-group,.timeframes { display:flex; flex-wrap:wrap; gap:6px; }.filter-group button,.timeframes button { min-width:44px; min-height:44px; padding:0 14px; border:1px solid var(--line); border-radius:9px; background:transparent; color:var(--ink); font-weight:700; }.filter-group button.active,.timeframes button.active { background:var(--ink); color:var(--white); }.calendar-card,.chart-shell { background:var(--white); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; box-shadow:0 20px 60px rgba(8,17,31,.06); }.calendar-date { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; border-bottom:1px solid var(--line); }.calendar-date button { width:44px;height:44px;border:1px solid var(--line);border-radius:50%;background:transparent; }.impact { display:inline-flex; align-items:center; gap:7px; font-size:.8rem; }.impact i { width:8px;height:8px;border-radius:50%;background:var(--muted); }.impact.high i { background:#cc4b4b; }.impact.medium i { background:#d8a139; }.impact.low i { background:#5aa684; }.data-note { margin:18px 0 0; font-size:.78rem; }.chart-toolbar { display:flex; align-items:center; gap:22px; padding:18px 22px; border-bottom:1px solid var(--line); }.chart-toolbar select { min-height:44px;padding:0 40px 0 12px;border:1px solid var(--line);border-radius:9px;background:var(--white);font-weight:700; }.demo-badge { margin-left:auto;color:var(--gold-dark);font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em; }.chart-summary { display:flex; gap:50px; padding:25px 28px 0; }.chart-summary > div { display:flex;flex-direction:column; }.chart-summary small { color:var(--muted); }.chart-summary b { font:700 1.5rem 'Manrope'; }.chart-summary > div:first-child b { font-size:2.2rem; }.chart-summary em { color:#1a8c66;font-style:normal;font-weight:700; }.large-chart { position:relative; padding:20px 35px 10px 55px; }.large-chart svg { width:100%;height:auto; }.big-grid { stroke:var(--line);stroke-width:1; }.big-area { fill:url(#bigFill);stroke:none; }.big-line { stroke:var(--gold-dark);stroke-width:3;filter:drop-shadow(0 0 6px rgba(169,119,40,.25)); }.y-labels { position:absolute;left:13px;top:31px;bottom:32px;display:flex;flex-direction:column;justify-content:space-between;color:var(--muted);font-size:.66rem;line-height:1; }.chart-a11y { padding:17px 24px;background:var(--paper);font-size:.8rem;color:var(--muted); }.chart-a11y b { color:var(--ink); }

.story-grid { display:grid;grid-template-columns:.85fr 1.15fr;gap:100px;margin-bottom:80px; }.story-grid .lead { font:500 1.6rem/1.5 'Manrope';color:var(--ink); }.value-grid { display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--line); }.value-grid article { padding:35px 50px 10px 0; }.value-grid article + article { padding-left:40px;border-left:1px solid var(--line); }.value-grid span { color:var(--gold-dark);font-weight:800;font-size:.75rem; }.dark-band { background:var(--ink);color:var(--white); }.stats-grid { display:grid;grid-template-columns:repeat(4,1fr); }.stats-grid div { display:flex;flex-direction:column;padding:10px 30px;border-right:1px solid var(--line-light); }.stats-grid div:last-child { border:0; }.stats-grid b { font:700 clamp(2.5rem,5vw,4.6rem) 'Manrope';color:var(--gold);letter-spacing:-.07em; }.stats-grid span { color:rgba(255,255,255,.55);font-size:.85rem; }.contact-grid { display:grid;grid-template-columns:.7fr 1.3fr;gap:100px; }.contact-lines { display:grid;gap:10px;margin-top:35px;font-weight:700; }.contact-lines span { color:var(--muted); }.contact-form,.lead-dialog form { display:grid;grid-template-columns:1fr 1fr;gap:18px; }.contact-form label,.lead-dialog label { display:grid;gap:7px;font-size:.8rem;font-weight:700; }.contact-form label:last-of-type { grid-column:1/-1; }.contact-form input,.contact-form select,.contact-form textarea,.lead-dialog input,.lead-dialog select { width:100%;min-height:50px;border:1px solid var(--line);border-radius:9px;background:var(--white);padding:11px 13px;color:var(--ink); }.contact-form textarea { resize:vertical; }.contact-form .button,.contact-form .form-status { grid-column:1/-1;justify-self:start; }.form-status { color:#237b5d;font-size:.82rem;min-height:1.4em; }

.site-footer { background:#050b14;color:var(--white);padding:80px 0 25px; }.footer-top { display:grid;grid-template-columns:1.7fr repeat(3,1fr);gap:55px;padding-bottom:60px; }.footer-top > div:first-child p { max-width:290px;color:rgba(255,255,255,.45);font-size:.85rem;margin-top:22px; }.footer-top h3 { font-size:.75rem;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.4);margin-bottom:20px; }.footer-top > div:not(:first-child) { display:flex;flex-direction:column;gap:10px; }.footer-top a:not(.brand) { color:rgba(255,255,255,.68);font-size:.86rem; }.footer-top a:hover { color:var(--white); }.risk-box { width:100%;padding:30px 0;border-block:1px solid var(--line-light); }.risk-copy { display:grid;grid-template-columns:1fr; }.risk-copy section { max-width:none;padding:24px 0;border-top:1px solid var(--line-light); }.risk-copy section:first-child { padding-top:0;border-top:0; }.risk-copy h3 { margin:0 0 9px;font-size:.73rem;text-transform:uppercase;letter-spacing:.1em;color:var(--gold); }.risk-copy p { max-width:75ch;margin:0;color:rgba(255,255,255,.52);font-size:.72rem;line-height:1.75; }.risk-copy .risk-closing { padding-bottom:0; }.risk-copy .risk-closing p { color:rgba(255,255,255,.7);font-weight:600; }.footer-bottom { display:flex;justify-content:space-between;gap:25px;padding-top:24px;color:rgba(255,255,255,.33);font-size:.72rem; }

.lead-dialog { width:min(calc(100% - 32px),560px);border:1px solid rgba(255,255,255,.14);border-radius:20px;background:var(--ink);color:var(--white);padding:40px;box-shadow:0 40px 120px rgba(0,0,0,.5); }.lead-dialog::backdrop { background:rgba(2,7,15,.78);backdrop-filter:blur(7px); }.dialog-close { position:absolute;right:15px;top:15px; }.lead-dialog h2 { font-size:2.5rem;margin-bottom:10px; }.dialog-intro { color:rgba(255,255,255,.55); }.lead-dialog form { grid-template-columns:1fr; }.lead-dialog input,.lead-dialog select { background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.14);color:var(--white); }.lead-dialog option { color:var(--ink); }.empty-state { min-height:75vh;padding:160px 20px 100px;text-align:center;background:var(--ink);color:var(--white); }.empty-state p { color:rgba(255,255,255,.6); }

.motion-enabled .reveal { opacity:0;transform:translateY(16px);transition:opacity .58s cubic-bezier(.2,.75,.25,1),transform .58s cubic-bezier(.2,.75,.25,1);transition-delay:var(--reveal-delay,0ms);will-change:opacity,transform; }
.motion-enabled .reveal.delay { --reveal-delay:120ms; }
.motion-enabled .reveal.motion-scale { transform:translateY(10px) scale(.985); }
.motion-enabled .reveal.motion-left { transform:translateX(-14px); }
.motion-enabled .reveal.is-visible { opacity:1;transform:none;will-change:auto; }
.motion-enabled .site-header { animation:header-enter .65s cubic-bezier(.2,.8,.2,1) both; }
.motion-enabled .hero-glow { animation:ambient-drift 12s ease-in-out infinite alternate; }
.motion-image img { transition:transform 1.1s cubic-bezier(.2,.75,.25,1),filter .8s ease; }
.motion-image.is-visible img { transform:scale(1); }
.motion-enabled .motion-image:not(.is-visible) img { transform:scale(1.025); }
@keyframes header-enter { from { opacity:0;transform:translateY(-12px); } to { opacity:1;transform:none; } }
@keyframes ambient-drift { from { transform:translate3d(-1.5%,0,0) scale(.98);opacity:.78; } to { transform:translate3d(2%,2%,0) scale(1.04);opacity:1; } }

.platform-showcase { display:grid;grid-template-columns:1.05fr .95fr;align-items:center;gap:clamp(50px,8vw,110px); }
.platform-image,.content-photo { margin:0;position:relative;overflow:hidden;border-radius:var(--radius);background:var(--ink);box-shadow:var(--shadow); }
.platform-image { min-height:510px; }.content-photo { min-height:520px; }
.platform-image::after,.content-photo::after { content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(3,9,18,.8),transparent 60%); }
.platform-image img,.content-photo img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover; }
.platform-image figcaption,.content-photo figcaption { position:absolute;z-index:1;left:24px;right:24px;bottom:21px;color:rgba(255,255,255,.82);font-weight:700; }
.platform-product-art { background:radial-gradient(circle at 50% 42%,#25364d 0,#101b2a 52%,#07101d 100%); }
.platform-product-art::after { background:linear-gradient(0deg,rgba(3,9,18,.88),transparent 38%); }
.platform-product-art img { object-fit:contain;padding:28px 34px 70px;filter:drop-shadow(0 24px 36px rgba(0,0,0,.28)); }
.desktop-product-art img { padding:22px 18px 68px; }
.platform-links > a { display:grid;grid-template-columns:auto 1fr auto;gap:24px;align-items:start;padding:36px 0;border-top:1px solid var(--line); }
.platform-links > a:last-child { border-bottom:1px solid var(--line); }
.platform-links > a > span { color:var(--gold-dark);font-weight:800;font-size:.75rem; }
.platform-links small { color:var(--gold-dark);font-weight:800;text-transform:uppercase;letter-spacing:.1em; }
.platform-links h3 { margin:7px 0 12px;font-size:2rem; }
.platform-links p { margin-bottom:20px; }
.platform-links ul { display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:0; }
.platform-links li { padding:6px 10px;border:1px solid var(--line);border-radius:999px;color:var(--muted);font-size:.72rem; }
.platform-links b { width:46px;height:46px;display:grid;place-items:center;border-radius:50%;background:var(--ink);color:var(--white); }
.conversion-band { padding:75px 0;background:linear-gradient(120deg,var(--brand-blue),var(--brand-violet) 56%,var(--brand-orange));color:var(--white); }
.conversion-band .container { display:flex;align-items:center;justify-content:space-between;gap:50px; }
.conversion-band h2 { max-width:760px;margin-bottom:12px;font-size:clamp(2.3rem,4vw,4rem); }
.conversion-band p { max-width:650px;margin:0;color:rgba(255,255,255,.76); }
.conversion-band .eyebrow { color:var(--white); }
.conversion-band .cta-row { flex:none;margin:0; }
.conversion-band .button { background:var(--white);border-color:var(--white);color:var(--ink);box-shadow:0 12px 30px rgba(8,9,20,.18); }
.conversion-band .button-ghost { background:transparent;color:var(--white);border-color:rgba(255,255,255,.55);box-shadow:none; }
.editorial-photo { position:relative;min-height:clamp(460px,66vw,820px);overflow:hidden;background:var(--ink);color:var(--white); }
.editorial-photo::after { content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(5,11,20,.8),rgba(5,11,20,.08) 60%),linear-gradient(0deg,rgba(5,11,20,.72),transparent 55%); }
.editorial-photo img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover; }
.home-photo img { object-position:center 46%; }.platform-photo img { object-position:center 52%; }
.home-trading-photo { background:radial-gradient(circle at 72% 42%,#263a53 0,#111e2e 45%,#07101d 78%); }
.home-trading-photo::after { background:linear-gradient(90deg,rgba(5,11,20,.94) 0%,rgba(5,11,20,.56) 42%,rgba(5,11,20,.08) 78%),linear-gradient(0deg,rgba(5,11,20,.78),transparent 55%); }
.home-trading-photo img { object-fit:contain;object-position:76% center;padding:50px 2vw 80px 27vw;filter:drop-shadow(0 28px 48px rgba(0,0,0,.38)); }
.photo-caption { position:absolute;z-index:2;left:max(20px,calc((100vw - var(--container))/2));bottom:clamp(35px,7vw,90px);width:min(560px,calc(100% - 40px)); }
.photo-caption span { display:block;margin-bottom:14px;color:var(--gold);font-size:.72rem;font-weight:800;letter-spacing:.15em;text-transform:uppercase; }
.photo-caption p { margin:0;color:rgba(255,255,255,.83);font:500 clamp(1.45rem,3vw,2.5rem)/1.3 'Manrope';letter-spacing:-.035em; }
.platform-console { padding:24px;border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);background:var(--ink);color:var(--white);box-shadow:var(--shadow);overflow:hidden; }
.console-top { display:grid;grid-template-columns:1fr auto 1fr;align-items:center;padding-bottom:18px;border-bottom:1px solid var(--line-light);font-size:.68rem;letter-spacing:.1em;color:rgba(255,255,255,.5); }
.console-top > span { display:flex;gap:5px; }.console-top i { width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.25); }.console-top em { justify-self:end;color:var(--positive);font-style:normal; }
.console-quote { display:flex;align-items:flex-end;justify-content:space-between;padding:26px 0 10px; }.console-quote > span { display:flex;flex-direction:column; }.console-quote small { color:rgba(255,255,255,.45); }.console-quote b { font:700 2.1rem 'Manrope'; }.console-quote em { color:var(--positive);font-style:normal;font-weight:700; }
.platform-console svg { width:100%;height:auto; }.platform-area { fill:url(#platformFill);stroke:none; }.platform-line { stroke:var(--gold);stroke-width:3;filter:drop-shadow(0 0 6px rgba(217,174,95,.35)); }
.console-orders { display:flex;gap:18px;align-items:center;padding-top:18px;border-top:1px solid var(--line-light);font-size:.72rem;color:rgba(255,255,255,.52); }.console-orders span { display:flex;align-items:center;gap:7px; }.console-orders span:last-child { margin-left:auto; }.console-orders i { width:7px;height:7px;border-radius:50%; }.console-orders .buy { background:var(--positive); }.console-orders .sell { background:var(--negative); }
.feature-section,.comparison-section,.market-benefits { background:var(--paper-2); }
.capability-grid { display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--line);background:var(--line);gap:1px; }
.capability-grid article { min-height:290px;padding:34px;background:var(--paper); }.capability-grid span,.access-grid > article > span { color:var(--gold-dark);font-size:.72rem;font-weight:800; }.capability-grid h3 { margin-top:70px; }
.supported-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:12px; }.supported-grid a { position:relative;min-height:210px;padding:27px;border:1px solid var(--line);border-radius:var(--radius);background:var(--white); }.supported-grid a > span { color:var(--gold-dark);font-size:.72rem;font-weight:800; }.supported-grid h3 { margin:42px 0 8px; }.supported-grid svg { position:absolute;right:25px;bottom:25px; }
.install-section { background:var(--ink);color:var(--white); }.install-copy p,.install-steps p { color:rgba(255,255,255,.55); }.install-steps { list-style:none;padding:0;margin:0;border-top:1px solid var(--line-light); }.install-steps li { display:grid;grid-template-columns:50px 1fr;gap:25px;padding:24px 0;border-bottom:1px solid var(--line-light); }.install-steps li > span { color:var(--gold);font-weight:800;font-size:.72rem; }.install-steps h3 { margin-bottom:7px; }.install-steps p { margin:0; }
.platform-product-hero { background:radial-gradient(circle at 58% 45%,#253851 0,#111d2c 50%,#07101c 100%); }
.platform-product-hero::after { background:linear-gradient(0deg,rgba(3,9,18,.78),transparent 43%); }
.platform-product-hero img { object-fit:contain;padding:34px 28px 70px;filter:drop-shadow(0 25px 45px rgba(0,0,0,.35)); }
.mt5-mobile-section { overflow:hidden;background:linear-gradient(135deg,#101c2b,#07101d);color:var(--white); }
.mt5-mobile-layout { grid-template-columns:.82fr 1.18fr;align-items:center; }
.mt5-mobile-layout > div { max-width:650px; }
.mt5-mobile-layout p { color:rgba(255,255,255,.62);font-size:1.08rem; }
.mt5-mobile-art { height:560px;margin:-70px 0;display:flex;align-items:center;justify-content:center; }
.mt5-mobile-art img { width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 30px 45px rgba(0,0,0,.38)); }
.download-actions { display:flex;flex-wrap:wrap;gap:10px;margin-top:28px; }
.download-actions .button-ghost { background:transparent;color:var(--white);border-color:rgba(255,255,255,.3); }
.download-actions .button-ghost:hover { background:rgba(255,255,255,.08); }
.external-note { display:block;max-width:670px;margin-top:17px;color:rgba(255,255,255,.44);font-size:.72rem;line-height:1.65; }
.access-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:14px; }.access-grid article { min-height:330px;padding:34px;display:flex;flex-direction:column;border:1px solid var(--line);border-radius:var(--radius);background:var(--white); }.access-grid small { margin-top:50px;color:var(--gold-dark);font-weight:800;text-transform:uppercase;letter-spacing:.08em; }.access-grid h3 { margin:8px 0 14px;font-size:2rem; }.access-grid a { min-height:44px;display:flex;align-items:center;gap:8px;margin-top:auto;font-weight:800; }.access-grid a svg { width:18px; }
.access-grid-five { grid-template-columns:repeat(6,1fr); }
.access-grid-five article { grid-column:span 2; }
.access-grid-five article:nth-child(4),.access-grid-five article:nth-child(5) { grid-column:span 3; }
.access-disclaimer { max-width:850px;margin:22px 0 0;color:var(--muted);font-size:.76rem; }
.platform-path { background:var(--ink);color:var(--white); }.platform-path p { color:rgba(255,255,255,.58); }.platform-mini-list a { display:grid;grid-template-columns:auto 1fr auto;gap:22px;align-items:center;padding:27px;border:1px solid var(--line-light);border-radius:var(--radius);background:rgba(255,255,255,.04); }.platform-mini-list a > span { width:58px;height:58px;display:grid;place-items:center;border-radius:14px;background:var(--gold);color:var(--ink);font-weight:800; }.platform-mini-list h3 { margin:0 0 4px; }.platform-mini-list p { margin:0; }.platform-mini-list svg { color:var(--gold); }
.legal-layout { display:grid;grid-template-columns:280px 1fr;gap:clamp(60px,10vw,140px);align-items:start; }.legal-layout aside { position:sticky;top:30px;display:flex;flex-direction:column;gap:10px;padding:25px;border:1px solid var(--line);border-radius:var(--radius);background:var(--white); }.legal-layout aside .eyebrow { margin-bottom:12px; }.legal-layout aside a { color:var(--muted); }.legal-layout aside a:hover { color:var(--ink); }.legal-layout article > section { padding:0 0 55px;margin-bottom:55px;border-bottom:1px solid var(--line); }.legal-layout article > section > span { color:var(--gold-dark);font-weight:800;font-size:.75rem; }.legal-layout article h2 { margin:14px 0 20px;font-size:clamp(2rem,3vw,3.2rem); }.legal-layout article p { max-width:760px;font-size:1.04rem; }

.product-hero { min-height:800px;display:flex;align-items:flex-end;position:relative;overflow:hidden;background:var(--ink);color:var(--white);padding:170px 0 90px; }
.product-hero > img { position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:saturate(.78) contrast(1.05); }
.product-hero-shade { position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,9,18,.94) 0%,rgba(3,9,18,.7) 47%,rgba(3,9,18,.18) 78%),linear-gradient(0deg,rgba(3,9,18,.78),transparent 55%); }
.product-hero-content { position:relative;z-index:1; }
.product-hero h1 { max-width:880px;margin-bottom:24px;font-size:clamp(3.2rem,6.7vw,6.8rem); }
.product-hero-content > p { max-width:600px;color:rgba(255,255,255,.7);font-size:1.08rem; }
.product-hero .button-ghost { background:rgba(8,17,31,.22);backdrop-filter:blur(8px); }
.product-hero-facts { display:flex;flex-wrap:wrap;gap:1px;margin-top:52px;border:1px solid rgba(255,255,255,.14);width:max-content;max-width:100%;background:rgba(255,255,255,.1); }
.product-hero-facts span { min-width:175px;padding:16px 20px;display:flex;flex-direction:column;background:rgba(4,10,19,.62);color:rgba(255,255,255,.55);font-size:.72rem;text-transform:uppercase;letter-spacing:.08em; }
.product-hero-facts b { color:var(--white);font:700 1.15rem 'Manrope';text-transform:none;letter-spacing:-.03em; }
.lead-copy { font-size:1.22rem!important;line-height:1.7; }
.market-chart-section,.market-chart-page { background:var(--ink);color:var(--white); }
.market-chart-section .section-head p,.market-chart-page .section-head p { color:rgba(255,255,255,.56); }
.tv-card { overflow:hidden;border:1px solid rgba(255,255,255,.14);border-radius:var(--radius);background:#08111f;box-shadow:0 30px 90px rgba(0,0,0,.25); }
.tv-widget { position:relative;width:100%;height:680px;overflow:hidden; }
.tv-widget > .tradingview-widget-container__widget { width:100%;height:0; }
.tv-widget > div[style] { width:100%!important;height:100%!important; }
.tv-widget iframe { display:block;width:100%!important;height:100%!important;border:0; }
.tv-loading { position:absolute;z-index:1;inset:0;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;background:#08111f;color:var(--white);text-align:center;padding:30px; }
.tv-loading span { width:36px;height:36px;border:2px solid rgba(255,255,255,.18);border-top-color:var(--gold);border-radius:50%;animation:tv-spin .8s linear infinite; }
.tv-loading small { color:rgba(255,255,255,.45); }
.tv-widget.is-ready .tv-loading { display:none; }
.tv-meta { min-height:48px;padding:10px 16px;display:flex;align-items:center;justify-content:space-between;gap:20px;border-top:1px solid rgba(255,255,255,.1);color:rgba(255,255,255,.5);font-size:.72rem; }
.tv-meta a { color:var(--gold);font-weight:700; }
.widget-disclaimer { margin:17px 0 0;color:rgba(255,255,255,.48);font-size:.76rem; }
@keyframes tv-spin { to { transform:rotate(360deg); } }
.process-grid { display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line); }
.process-grid article { min-height:280px;padding:34px 30px 30px;border-right:1px solid var(--line); }
.process-grid article:last-child { border-right:0; }
.process-grid span,.driver-list > article > span { color:var(--gold-dark);font-size:.72rem;font-weight:800; }
.process-grid h3 { margin:82px 0 12px; }
.market-guide,.related-section,.calendar-guide { background:var(--white); }
.market-drivers { background:var(--paper-2); }
.market-drivers .split,.event-types .split { align-items:start; }
.driver-list { border-top:1px solid var(--line); }
.driver-list article { display:grid;grid-template-columns:42px 1fr;gap:22px;padding:24px 0;border-bottom:1px solid var(--line); }
.driver-list h3 { margin:0 0 7px;font-size:1.25rem; }
.driver-list p { margin:0; }
.related-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:13px; }
.related-grid a { min-height:300px;padding:30px;display:flex;flex-direction:column;border:1px solid var(--line);border-radius:var(--radius);background:var(--paper);transition:transform .2s,box-shadow .2s,background .2s; }
.related-grid a:hover { transform:translateY(-4px);background:var(--white);box-shadow:var(--shadow); }
.related-grid small { color:var(--gold-dark);text-transform:uppercase;letter-spacing:.1em;font-weight:800; }
.related-grid h3 { margin:48px 0 12px;font-size:2rem; }
.related-grid span { display:flex;align-items:center;gap:8px;margin-top:auto;font-weight:800; }
.related-grid span svg { width:18px; }

@media (max-width: 980px) {
  .hero-photo { min-height:520px; }.inner-photo { height:520px; }.content-photo { min-height:460px; }
  .process-grid { grid-template-columns:1fr 1fr; }.process-grid article:nth-child(2) { border-right:0; }.process-grid article:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .platform-showcase { grid-template-columns:1fr; }.platform-art { max-width:720px;width:100%;margin:auto; }.capability-grid,.supported-grid,.access-grid { grid-template-columns:1fr 1fr; }.access-grid-five article:nth-child(n) { grid-column:auto; }.conversion-band .container { align-items:flex-start;flex-direction:column; }.legal-layout { grid-template-columns:1fr; }.legal-layout aside { position:static;display:grid;grid-template-columns:1fr 1fr; }
  .desktop-nav,.nav-actions .text-button,.nav-actions .button-small { display:none; }.menu-toggle { display:grid; }.mobile-nav { display:none; position:absolute;top:var(--header-height);left:20px;right:20px;padding:20px;background:var(--white);color:var(--ink);border-radius:14px;box-shadow:var(--shadow);grid-template-columns:1fr 1fr;gap:7px; }.mobile-nav.open { display:grid; }.mobile-nav span { grid-column:1/-1;color:var(--muted);font-size:.7rem;text-transform:uppercase;letter-spacing:.1em;font-weight:800;margin-top:6px; }.mobile-nav a { min-height:44px;display:flex;align-items:center;padding:0 11px;border-radius:8px; }.mobile-nav a:hover { background:var(--paper); }
  .hero { min-height:auto;padding-top:150px; }.hero-grid,.inner-grid { grid-template-columns:1fr; }.hero h1 { font-size:clamp(3.5rem,10vw,6rem); }.terminal-wrap { min-height:500px; }.section-head { grid-template-columns:1fr; }.section-head p { justify-self:start; }.market-card { grid-column:span 3; }.market-card:nth-child(7) { grid-column:span 6; }.split { gap:65px; }.account-grid { grid-template-columns:1fr;max-width:700px;margin:auto; }.account-card.featured { transform:none; }.faq-layout { grid-template-columns:1fr;gap:55px; }.inner-hero { padding-top:150px; }.inner-visual { max-width:650px;width:100%;margin:auto; }.story-grid,.contact-grid { grid-template-columns:1fr;gap:45px; }.footer-top { grid-template-columns:1.4fr 1fr 1fr; }.footer-top > div:last-child { grid-column:2; }.stats-grid { grid-template-columns:1fr 1fr;gap:45px 0; }.stats-grid div:nth-child(2) { border-right:0; }
}

@media (max-width: 700px) {
  .hero-photo { min-height:430px;margin-top:20px; }.hero-photo figcaption { left:18px;right:18px;bottom:17px;flex-direction:column;align-items:flex-start;gap:5px; }.inner-photo { height:360px; }.platform-image,.content-photo { min-height:390px; }
  .product-hero { min-height:760px;padding:135px 0 60px; }.product-hero-shade { background:linear-gradient(0deg,rgba(3,9,18,.97) 0%,rgba(3,9,18,.72) 67%,rgba(3,9,18,.28)); }.product-hero > img { object-position:center; }.product-hero-facts { width:100%; }.product-hero-facts span { min-width:0;flex:1;padding:13px 11px; }.product-hero-facts span:last-child { display:none; }.tv-widget { height:560px; }.tv-meta { align-items:flex-start;flex-direction:column;gap:2px; }.process-grid,.related-grid { grid-template-columns:1fr; }.process-grid article,.process-grid article:nth-child(2) { min-height:220px;border-right:0;border-bottom:1px solid var(--line); }.process-grid article:last-child { border-bottom:0; }.process-grid h3 { margin-top:45px; }
  .editorial-photo { min-height:520px; }.home-photo img { object-position:62% center; }.home-trading-photo img { object-position:center 28%;padding:22px 8px 190px; }.about-photo img { object-position:58% center; }.photo-caption { left:14px;width:calc(100% - 28px); }.capability-grid,.supported-grid,.access-grid { grid-template-columns:1fr; }.capability-grid article,.access-grid article { min-height:260px; }.platform-links > a { grid-template-columns:auto 1fr; }.platform-links > a > b { display:none; }.legal-layout aside { grid-template-columns:1fr; }
  .platform-product-hero img { padding:24px 10px 60px; }.platform-product-art img { padding:20px 18px 64px; }.mt5-mobile-layout { grid-template-columns:1fr;gap:28px; }.mt5-mobile-art { height:430px;margin:-45px 0 0; }.download-actions { flex-direction:column; }.download-actions .button { width:100%; }
  :root { --header-height:72px; }.container { width:min(calc(100% - 28px),var(--container)); }.section { padding:80px 0; }.nav-shell { width:calc(100% - 28px); }.brand-logo { width:138px;max-height:47px; }.hero { padding-top:125px; }.hero h1 { font-size:clamp(3rem,15vw,4.5rem); }.hero-proof { gap:16px; }.terminal-wrap { min-height:380px;margin-top:20px; }.terminal-card { transform:none; }.terminal-body { padding:18px; }.float-stat { left:-5px;bottom:18px; }.float-pair { right:-4px;top:22px; }.market-grid { display:grid;grid-template-columns:1fr; }.market-card,.market-card:nth-child(n+4),.market-card:nth-child(7) { grid-column:auto;min-height:300px; }.split { grid-template-columns:1fr; }.platform-art { min-height:430px; }.device-back { height:340px; }.device-front { height:300px; }.why-grid,.steps { grid-template-columns:1fr; }.why-card { min-height:280px; }.why-icon { margin-top:35px; }.steps article { border-right:0;border-bottom:1px solid var(--line);padding:35px 20px; }.steps article:last-child { border:0; }.cta-row { flex-direction:column; }.cta-row .button { width:100%; }.inner-hero { min-height:auto;padding:125px 0 70px; }.inner-hero h1 { font-size:clamp(2.7rem,13vw,4.2rem); }.inner-grid { gap:35px; }.inner-visual { height:330px; }.visual-ring { width:260px;height:260px; }.visual-number { font-size:4.8rem; }.metric-panel { grid-template-columns:1fr; }.metric-panel > div + div { border-left:0;border-top:1px solid var(--line); }.metric-panel > div { min-height:170px; }.tool-toolbar { align-items:flex-start;flex-direction:column; }.demo-badge { margin-left:0; }.chart-summary { gap:20px;overflow-x:auto; }.large-chart { padding-left:40px;padding-right:15px; }.story-grid { margin-bottom:50px; }.value-grid { grid-template-columns:1fr; }.value-grid article,.value-grid article + article { padding:28px 0;border-left:0;border-bottom:1px solid var(--line); }.stats-grid { grid-template-columns:1fr 1fr;gap:30px 0; }.stats-grid div { padding:0 15px; }.contact-form,.lead-dialog form { grid-template-columns:1fr; }.contact-form label:last-of-type,.contact-form .button,.contact-form .form-status { grid-column:auto; }.footer-top { grid-template-columns:1fr 1fr; }.footer-top > div:first-child { grid-column:1/-1; }.footer-top > div:last-child { grid-column:auto; }.risk-box { padding-block:24px; }.risk-copy { grid-template-columns:1fr;gap:25px; }.risk-copy section { max-width:none; }.risk-copy .risk-closing { grid-column:auto; }.footer-bottom { flex-direction:column; }.lead-dialog { padding:35px 22px 25px; }.lead-dialog h2 { font-size:2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important; }.ticker-track { animation:none; }.reveal,.motion-enabled .reveal { opacity:1;transform:none; }.motion-image img,.motion-enabled .motion-image:not(.is-visible) img { transform:none; }
}
