/* SBZ — site styles */
:root {
  --ground-light: #e8e6ec;
  --paper: #f6f5f8;
  --ink: #0d0714;
  --aubergine: #150b22;
  --surface: #1f1331;
  --surface-2: #281a3e;
  --line: #34264b;
  --text: #f3eff9;
  --muted: #b9aecb;
  --violet: #a970ff;
  --violet-deep: #5b2a9e;
  --ice: #8ec5e6;
  --up: #58d68d;
  --down: #ff7a8a;
  --radius: 14px;
  --wrap: 1240px;
  --font: 'Schibsted Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: 96px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--aubergine);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.num { font-variant-numeric: tabular-nums; }

/* Header */
.site-header { background: var(--ink); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #1c1228; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 98px; gap: 24px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 52px; width: auto; }
.nav { display: flex; align-items: center; gap: 58px; }
.nav a { text-decoration: none; color: #ddd4ea; font-size: 16px; }
.nav a:not(.btn) { position: relative; padding-bottom: 12px; }
.nav .roll { display: block; position: relative; overflow: hidden; height: 1.25em; }
.nav .roll-in, .nav .roll-out { display: block; transition: transform .34s cubic-bezier(.4,0,.2,1); }
.nav .roll-out { position: absolute; left: 0; top: 0; transform: translateY(110%); }
.nav a:not(.btn):hover .roll-in, .nav a:not(.btn):focus-visible .roll-in { transform: translateY(-110%); }
.nav .roll-out { color: var(--violet); }
.nav a:not(.btn):hover .roll-out, .nav a:not(.btn):focus-visible .roll-out { transform: translateY(0); }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--violet); opacity: 1; transform: scaleX(0); transform-origin: right center; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.nav a:not(.btn):hover::after, .nav a:not(.btn):focus-visible::after { transform: scaleX(1); transform-origin: left center; }
.nav a:not(.btn)[aria-current="page"] { color: var(--violet); }
.nav a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); transform-origin: left center; opacity: .5; }
.nav a:not(.btn)[aria-current="page"]:hover::after { opacity: 1; }
.nav .btn, .nav .btn:hover, .nav .btn[aria-current="page"] { color: var(--ink); }
.nav .btn-white:hover { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--text); border-radius: 10px; width: 48px; height: 48px; cursor: pointer; }
.nav-toggle svg { margin: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 26px; border-radius: 999px; font: 600 16px/1 var(--font); text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.btn-violet { background: var(--violet); color: var(--ink); border-color: var(--violet); }
.btn-violet:hover, .btn-violet:focus-visible { background: var(--violet-deep); border-color: var(--violet-deep); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--violet-deep); }
.btn-outline-violet { border-color: var(--violet); color: var(--violet-deep); background: transparent; }
.btn-outline-violet:hover, .btn-outline-violet:focus-visible { background: var(--violet); border-color: var(--violet); color: var(--ink); }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover, .btn-white:focus-visible { background: var(--violet); border-color: var(--violet); color: var(--ink); }
.btn-line { border-color: var(--line); color: var(--text); background: transparent; }
.btn-line:hover { border-color: var(--violet); }
.btn-line-dark { border-color: #b7b1c2; color: var(--ink); background: transparent; }
.btn-line-dark:hover, .btn-line-dark:focus-visible { background: var(--violet); border-color: var(--violet); color: var(--ink); }
.btn-small { min-height: 44px; padding: 0 20px; font-size: 15px; }

/* Hero */
.hero { position: relative; background: var(--ground-light); color: var(--ink); overflow: hidden; min-height: min(86vh, 860px); display: flex; align-items: center; }
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-scrim { position: absolute; inset: 0 auto 0 0; width: 62%; background: linear-gradient(90deg, rgba(232,230,236,.95) 0%, rgba(232,230,236,.78) 60%, rgba(232,230,236,0) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 90px; }
.tagline { margin: 0 0 26px; font-size: 17px; font-weight: 600; letter-spacing: .04em; color: var(--violet-deep); }
.hero h1 { margin: 0; max-width: 11.5em; font-size: clamp(46px, 7.4vw, 104px); font-weight: 600; line-height: .98; letter-spacing: -.05em; }
.hero h1 .h1-a { display: block; color: var(--violet-deep); }
.hero h1 .h1-b { display: block; }
.hero .lede { margin: 30px 0 0; max-width: 34em; font-size: clamp(18px, 1.8vw, 23px); line-height: 1.45; color: #2a2433; }
.hero .actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.rise { animation: rise 1s cubic-bezier(.16,.8,.2,1) both; }
.rise-1 { animation-delay: .12s; } .rise-2 { animation-delay: .26s; } .rise-3 { animation-delay: .42s; } .rise-4 { animation-delay: .6s; }
@keyframes rise { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: none; } }

/* Dark homepage hero */
.hero-dark { background: radial-gradient(120% 90% at 70% 100%, #221236 0%, #0d0714 60%); color: var(--text); }
.hero-dark .hero-scrim { background: linear-gradient(90deg, rgba(13,7,20,.92) 0%, rgba(13,7,20,.6) 45%, rgba(13,7,20,0) 75%); }
.hero-dark .tagline { color: var(--violet); }
.hero-dark h1 .h1-a { color: var(--violet); }
.hero-dark h1 .h1-b { color: #fff; }
.hero-dark .lede { color: #cfc5df; }

/* Page hero (inner pages) */
.page-hero { background: var(--ground-light); color: var(--ink); position: relative; overflow: hidden; min-height: 300px; box-sizing: border-box; padding: 56px 0; display: flex; align-items: center; }
.page-hero > .wrap { width: 100%; }
.page-hero h1 { margin: 0; font-size: clamp(38px, 5.4vw, 68px); font-weight: 600; line-height: 1; letter-spacing: -.045em; max-width: 13em; }
.page-hero p { margin: 22px 0 0; max-width: 38em; font-size: clamp(18px, 1.6vw, 21px); color: #2a2433; }
.page-hero .hero-canvas { opacity: .55; }
.page-hero .wrap { position: relative; z-index: 2; }

/* Quick links strip */
.quick { background: var(--paper); color: var(--ink); }
.quick .wrap { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quick a { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 30px 28px; text-decoration: none; font-size: 20px; line-height: 1.3; letter-spacing: -.01em; border-left: 1px solid #cfcad8; }
.quick a:first-child { border-left: 0; padding-left: 0; }
.quick a:hover { color: var(--violet-deep); }
.quick svg { flex-shrink: 0; color: var(--violet-deep); }

/* Ticker */
.ticker { border-bottom: 1px solid var(--line); background: var(--ink); overflow: hidden; }
.ticker-track { display: flex; width: max-content; animation: marquee 50s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.tick { display: flex; align-items: baseline; gap: 12px; padding: 20px 34px; border-right: 1px solid #221633; white-space: nowrap; }
.tick-sym { font-weight: 600; }
.tick-price { font-variant-numeric: tabular-nums; color: #e9e2f5; transition: color .6s; }
.tick-chg { font-size: 14px; font-variant-numeric: tabular-nums; }
.tick-price.flash-up { color: var(--up); transition: none; }
.tick-price.flash-down { color: var(--down); transition: none; }
.up { color: var(--up); } .down { color: var(--down); }
.ticker-note { margin: 0; padding: 7px 28px 9px; font-size: 11px; color: #837799; text-align: right; background: var(--ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 120px 0; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.section h2 { margin: 0; font-size: clamp(36px, 5vw, 64px); font-weight: 600; line-height: 1.02; letter-spacing: -.04em; max-width: 12em; }
.section-head p { margin: 0; max-width: 26em; color: var(--muted); font-size: 18px; }
.lead { font-size: 20px; color: var(--muted); max-width: 36em; }

/* Market stats */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { background: var(--aubergine); padding: 34px 28px; }
.stat-label { color: var(--muted); font-size: 16px; }
.stat-value { display: block; margin-top: 10px; font-size: clamp(34px, 4.4vw, 60px); font-weight: 600; letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-change { display: inline-block; margin-top: 12px; font-size: 16px; font-variant-numeric: tabular-nums; }
.fg { display: flex; align-items: flex-end; gap: 16px; margin-top: 10px; }
.fg-gauge { width: 112px; height: auto; flex-shrink: 0; }
.fg-needle { transform-origin: 60px 60px; transform: rotate(-90deg); transition: transform 1.8s cubic-bezier(.2,.8,.2,1); }
.fg-read { display: flex; flex-direction: column; }
.fg-read .stat-value { margin-top: 0; }
.fg-class { margin-top: 8px; font-size: 16px; font-weight: 600; }
.source-note { margin-top: 18px; font-size: 11px; color: #837799; }
.source-note a { color: #b9aecb; }
.kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; margin-top: 72px; }
.kpi-value { font-size: clamp(48px, 6vw, 88px); font-weight: 600; letter-spacing: -.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.kpi-value .suffix, .kpi-value .prefix { color: inherit; }
.spot-wrap { position: relative; }
.spot-layer { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .25s ease; color: var(--violet); }
.spot-layer > * { margin: 0 !important; }
.spot-layer.on { opacity: 1; }
.spot-layer .kpi-value, .spot-layer .kpi-label { color: var(--violet) !important; }
.spot-layer { -webkit-mask-image: radial-gradient(circle 130px at var(--mx, -999px) var(--my, -999px), #000 0 45%, rgba(0,0,0,.35) 70%, transparent 100%); mask-image: radial-gradient(circle 130px at var(--mx, -999px) var(--my, -999px), #000 0 45%, rgba(0,0,0,.35) 70%, transparent 100%); }
@keyframes spotpulse { 0%, 100% { -webkit-mask-size: 100% 100%; } 50% { -webkit-mask-size: 106% 104%; } }
.kpis-about { margin-top: 0; row-gap: 64px; column-gap: 40px; }
.kpis-about .kpi { border-top: 0; padding-top: 0; cursor: default; }
.kpis-about .kpi-value, .kpis-about .kpi-label { transition: color .28s ease; }

.kpis-about .kpi-label { margin-top: 14px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #9a90ad; line-height: 1.5; }
.kpis-about .kpi-value { font-size: clamp(40px, 4.6vw, 68px); }
.mission { font-size: clamp(24px, 2.6vw, 34px); line-height: 1.3; letter-spacing: -.02em; color: var(--violet); margin: 24px 0 0; font-weight: 500; }
.kpi-label { margin-top: 10px; color: var(--muted); }

/* Solutions */
.solutions { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.solution { background: var(--surface); border-radius: 22px; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; gap: 48px; min-height: 380px; text-decoration: none; }
.solution h3 { margin: 0 0 14px; font-size: 30px; font-weight: 600; line-height: 1.08; letter-spacing: -.03em; }
.solution p { margin: 0; color: var(--muted); }
.solution .more { font-weight: 600; }
.solution.feature { background: var(--violet); color: var(--ink); }
.solution.feature p { color: #2b1845; }
.solution:hover .more { text-decoration: underline; text-underline-offset: 4px; }
.solution-kicker { color: var(--ice); font-size: 15px; }
.solution.feature .solution-kicker { color: var(--ink); }

/* Clients list */
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 80px; }
.rows { margin: 0; padding: 0; list-style: none; }
.rows li { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); align-items: baseline; }
.rows li:last-child { border-bottom: 1px solid var(--line); }
.rows strong { font-size: 23px; font-weight: 600; letter-spacing: -.02em; }
.rows span { color: var(--muted); }

/* Access tabs */
.tabs { display: inline-flex; gap: 6px; padding: 6px; background: var(--surface); border-radius: 999px; }
.tab { min-height: 46px; padding: 0 22px; border: 0; border-radius: 999px; background: transparent; color: #d9d0e6; font: 600 15px/1 var(--font); cursor: pointer; }
.tab[aria-selected="true"] { background: var(--violet); color: var(--ink); }
.tab-panel { background: var(--surface); border-radius: 24px; padding: 56px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 56px; align-items: start; }
.tab-panel > div:first-child { padding-top: 6px; }
.chat-col { display: flex; flex-direction: column; }
.tab-panel .chat + .chat-note, .tab-panel p.chat-note { font-size: 11px; line-height: 1.5; color: #837799; margin: 14px 6px 0; max-width: none; }
.tab-panel .tg-btn { margin-top: 24px; }
.tab-panel h3 { margin: 0 0 16px; font-size: 38px; font-weight: 600; letter-spacing: -.03em; line-height: 1.05; }
.tab-panel p { margin: 0; color: var(--muted); font-size: 18px; }
.tab-panel[hidden] { display: none; }
.rfq { background: var(--aubergine); border: 1px solid var(--line); border-radius: 16px; padding: 28px; font-variant-numeric: tabular-nums; }
.rfq div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; }
.rfq div + div { border-top: 1px solid #2a1d3d; }
.rfq dt, .rfq dd { margin: 0; }
.rfq dt { color: var(--muted); }
.rfq .status { color: var(--violet); display: inline-flex; align-items: center; gap: 8px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 50% { opacity: .25; } }

/* Process */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; counter-reset: step; }
.steps li { border-top: 2px solid var(--line); padding-top: 26px; counter-increment: step; }
.steps li:first-child { border-top-color: var(--violet); }
.steps li::before { content: counter(step); display: block; font-size: 44px; font-weight: 600; color: var(--violet); letter-spacing: -.03em; line-height: 1; margin-bottom: 18px; }
.steps h3 { margin: 0 0 10px; font-size: 23px; font-weight: 600; letter-spacing: -.02em; }
.steps p { margin: 0; color: var(--muted); }

/* News */
.news-list { list-style: none; margin: 0; padding: 0; }
.news-item { border-top: 1px solid var(--line); }
.news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item a { display: grid; grid-template-columns: 180px minmax(0, 1fr) 150px; gap: 28px; padding: 26px 0; text-decoration: none; align-items: baseline; }
.news-item a:hover .news-title { color: var(--violet); }
.news-meta { color: var(--muted); font-size: 15px; }
.news-title { font-size: 21px; font-weight: 500; letter-spacing: -.01em; line-height: 1.35; }
.news-source { color: var(--ice); font-size: 15px; text-align: right; }
.empty { color: var(--muted); padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.note { background: var(--surface); border-radius: 20px; padding: 36px; }
.note time { color: var(--muted); font-size: 15px; }
.note h3 { margin: 10px 0 14px; font-size: 26px; font-weight: 600; letter-spacing: -.02em; line-height: 1.15; }
.note .body { color: #d8cfe6; }
.note .body p { margin: 0 0 12px; }
.note details summary { cursor: pointer; color: var(--violet); font-weight: 600; margin-top: 8px; }

/* Markets table */
.table-wrap { overflow-x: auto; border-top: 1px solid var(--line); }
table.markets { width: 100%; border-collapse: collapse; min-width: 680px; font-variant-numeric: tabular-nums; }
table.markets th, table.markets td { text-align: right; padding: 20px 12px; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.markets th:first-child, table.markets td:first-child { text-align: left; padding-left: 0; }
table.markets th { color: var(--muted); font-weight: 500; font-size: 15px; }
table.markets td:first-child strong { font-size: 19px; }
table.markets td:first-child span { color: var(--muted); margin-left: 10px; }
.market-tools { margin-bottom: 20px; }
.market-search { width: 100%; max-width: 420px; min-height: 50px; padding: 0 18px; background: var(--ink); border: 1px solid var(--line); border-radius: 999px; color: var(--text); font: 16px var(--font); }
.market-search:focus { outline: none; border-color: var(--violet); }
table.markets th button { all: unset; cursor: pointer; }
table.markets th button:hover, table.markets th[aria-sort="ascending"] button, table.markets th[aria-sort="descending"] button { color: var(--text); }
table.markets th[aria-sort="ascending"] button::after { content: " \2191"; color: var(--violet); }
table.markets th[aria-sort="descending"] button::after { content: " \2193"; color: var(--violet); }
.market-more { display: flex; justify-content: center; margin-top: 28px; }
.pairs { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.pairs li { padding: 12px 20px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; }

/* FAQ */
.faq { max-width: 880px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; padding: 26px 0; font-size: 21px; font-weight: 500; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 28px; line-height: 1; color: var(--violet); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 28px; color: var(--muted); max-width: 44em; }
.faq .answer p { margin: 0 0 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 80px; }
.channels { list-style: none; margin: 32px 0 0; padding: 0; }
.channels li { padding: 18px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; }
.channels li:last-child { border-bottom: 1px solid var(--line); }
.channels span { color: var(--muted); }
.channels a { text-decoration: none; }
.channels a:hover { color: var(--violet); }
.form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 15px; color: #d9d0e6; }
.field input, .field select, .field textarea { min-height: 52px; padding: 12px 16px; background: var(--ink); border: 1px solid var(--line); border-radius: 10px; color: var(--text); font: 16px var(--font); }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--violet); outline: none; }
.consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.consent input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--violet); }
.consent a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.consent a:hover { color: var(--violet); }
.captcha { grid-column: 1 / -1; }
.captcha > div, .captcha iframe { filter: invert(0.92) hue-rotate(180deg) saturate(1.15) contrast(0.95); border-radius: 12px; }
.captcha:empty { display: none; }
.form-foot { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.form-foot small { color: var(--muted); max-width: 30em; }
.form-status { grid-column: 1 / -1; margin: 0; padding: 16px 20px; border-radius: 10px; background: var(--surface); }
.form-status[hidden] { display: none; }
.hidden-field { display: none; }
.radio-field { border: 0; margin: 0; padding: 0; min-width: 0; }
.radio-field legend { padding: 0; margin-bottom: 8px; font-size: 15px; color: #d9d0e6; }
.radios { display: flex; gap: 24px; min-height: 52px; align-items: center; }
.radios label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 16px; }
.radios input { width: 20px; height: 20px; accent-color: var(--violet); }
address { font-style: normal; }
.tg-btn { margin-top: 28px; background: #2aabee; color: #fff; gap: 12px; padding: 0 26px 0 22px; }
.tg-btn:hover { background: #229ad8; color: #fff; }
.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; align-items: flex-start; gap: 16px; }
.contact-list .ci { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: grid; place-items: center; color: var(--violet); }
.addr-label { display: block; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-list a, .contact-list address { padding-top: 10px; font-size: 18px; line-height: 1.55; color: var(--text); text-decoration: none; }
.contact-list a:hover { color: var(--violet); }
.field input::placeholder, .field textarea::placeholder { color: #7b6e92; }

/* Prose pages */
.prose { max-width: 760px; }
.prose h2 { font-size: 30px; margin: 52px 0 14px; letter-spacing: -.02em; }
.prose h3 { font-size: 21px; margin: 32px 0 10px; letter-spacing: -.01em; }
.prose p.sub { margin-left: 22px; }
.prose p, .prose li { color: #d8cfe6; }
.form-foot small a, .form-note a, .prose a, .about-body a, .pillar a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; transition: color .25s; }
.form-foot small a:hover, .form-note a:hover, .prose a:hover, .about-body a:hover, .pillar a:hover { color: var(--violet); }
.placeholder { border: 1px dashed #5a4a74; border-radius: 12px; padding: 18px 22px; color: #cbbfe0; }

/* Values (About) */
.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.value { background: var(--surface); border-radius: 22px; padding: 40px; }
.value h3 { margin: 0 0 12px; font-size: 34px; font-weight: 600; letter-spacing: -.03em; color: var(--violet); }
.value p { margin: 0; color: var(--muted); }

/* Protect (About) */
.protect { background: linear-gradient(180deg, #1c0f30 0%, var(--aubergine) 100%); }
.protect-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.protect-head h2 { margin: 0 auto; max-width: none; }
.protect-head .lead { margin: 20px auto 0; color: #e4dcf2; font-weight: 500; }
.protect-grid { display: grid; grid-template-columns: 1fr 220px 1fr; grid-template-rows: auto auto; gap: 56px 56px; align-items: center; }
.protect-grid .pillar:nth-child(1) { grid-column: 1; grid-row: 1; text-align: right; }
.protect-grid .pillar:nth-child(2) { grid-column: 3; grid-row: 1; }
.protect-grid .protect-mark { grid-column: 2; grid-row: 1 / span 2; width: 100%; height: auto; color: #fff; filter: drop-shadow(0 0 40px rgba(169,112,255,.45)); }
.protect-grid .pillar:nth-child(4) { grid-column: 1; grid-row: 2; text-align: right; }
.protect-grid .pillar:nth-child(5) { grid-column: 3; grid-row: 2; }
.pillar h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--violet); }
.pillar p { margin: 0; color: #d8cfe6; }
/* Why grid */
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.why { background: var(--surface); border-radius: 22px; padding: 36px; }
.why-ico { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: rgba(169,112,255,.12); color: var(--violet); margin-bottom: 22px; }
.why h3 { margin: 0 0 10px; font-size: 23px; font-weight: 600; letter-spacing: -.02em; }
.why p { margin: 0; color: var(--muted); }
/* Home protect band */
.home-protect-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 72px; align-items: center; }
.home-protect .lead { margin: 20px 0 28px; }
.hp-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp-list li { background: var(--surface); border-radius: 18px; padding: 26px; border-left: 3px solid var(--violet); }
.hp-list strong { display: block; font-size: 19px; margin-bottom: 6px; }
.hp-list span { color: var(--muted); }

/* Partners marquee */
.partners { padding-top: 84px; padding-bottom: 84px; }
.partners-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 56px; }
.partners-head p { margin: 0; color: var(--muted); font-size: 18px; max-width: 26em; }
.partners-head { margin-bottom: 36px; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-track { list-style: none; margin: 0; padding: 0; display: flex; width: max-content; animation: marquee 40s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track li { display: flex; align-items: center; justify-content: center; height: 120px; min-width: 260px; padding: 0 44px; font-size: 30px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #9e9e9e; transition: color .3s; }
.logo-track li img { height: 36px; width: auto; max-width: 220px; filter: brightness(0) invert(.62); opacity: 1; transition: filter .3s; }

/* Who we serve */
.serve-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.serve { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 48px; display: flex; flex-direction: column; gap: 20px; }
.serve-kicker { color: var(--violet); font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.serve h3 { margin: 0; font-size: clamp(26px, 2.6vw, 36px); font-weight: 600; line-height: 1.12; letter-spacing: -.03em; }
.serve p { margin: 0; color: var(--muted); font-size: 17px; }
.serve-tags { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.serve-tags li { padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 14px; color: #d9d0e6; }
.serve-link { margin-top: auto; padding-top: 8px; color: var(--violet); font-weight: 600; text-decoration: none; }
.serve-link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* Journey */
.journey { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; position: relative; }
.journey li { background: var(--surface); border-radius: 22px; padding: 32px; display: flex; flex-direction: column; gap: 12px; position: relative; }
.journey li:not(:last-child)::after { content: ""; position: absolute; top: 58px; right: -16px; width: 16px; height: 2px; background: var(--violet); opacity: .6; }
.j-ico { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: rgba(169,112,255,.12); color: var(--violet); margin-bottom: 6px; }
.j-step { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ice); }
.journey h3 { margin: 0; font-size: 24px; font-weight: 600; letter-spacing: -.02em; }
.journey p { margin: 0; color: var(--muted); }
.journey-cta { margin-top: 40px; display: flex; justify-content: center; }

/* News cards */
.news-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 20px; }
.news-cards .empty { grid-column: 1 / -1; }
.news-group { grid-column: 1 / -1; font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--violet); padding-top: 12px; border-top: 1px solid var(--line); }
.news-group:first-child { border-top: 0; padding-top: 0; }
.news-card a { display: flex; flex-direction: column; gap: 12px; text-decoration: none; }
.news-thumb { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; background: var(--surface); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.news-card a:hover .news-thumb img { transform: scale(1.04); }
.news-thumb-src { display: none; }
.news-thumb.no-img { background: radial-gradient(120% 120% at 100% 0%, #3b1f63 0%, var(--surface) 60%); display: grid; place-items: center; }
.news-thumb.no-img .news-thumb-src { display: block; font-size: 22px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.news-card .news-title { font-size: 19px; line-height: 1.35; font-weight: 500; }
.news-card a:hover .news-title { color: var(--violet); }

/* Desk chat illustration (light, like a real chat app) */
.chat { background: #f1f0f5; border: 1px solid #dedbe6; border-radius: 24px; padding: 20px 20px 16px; display: flex; flex-direction: column; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.chat-head { display: flex; align-items: center; gap: 13px; padding-bottom: 16px; border-bottom: 1px solid #dedbe6; }
.chat-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; flex: none; }
.chat-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.chat-who { flex: 1; }
.chat-head strong { display: block; font-size: 17px; font-weight: 600; color: #15101f; }
.chat-status { font-size: 13px; color: #2a9d63; }
.chat-tg { color: #2aabee; flex: none; }
.chat-log { list-style: none; margin: 0; padding: 18px 2px 6px; display: flex; flex-direction: column; gap: 12px; height: 430px; overflow-y: auto; scrollbar-width: none; justify-content: flex-end; }
.chat-log::-webkit-scrollbar { display: none; }
.msg-row { display: flex; align-items: flex-end; gap: 9px; flex: none; opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s; }
.msg-row.in { opacity: 1; transform: none; }
.msg-row.client { justify-content: flex-end; }
.msg-avatar { width: 30px; height: 30px; border-radius: 50%; overflow: hidden; flex: none; }
.msg-avatar img { width: 100%; height: 100%; display: block; }
.msg { position: relative; max-width: 78%; padding: 10px 14px 6px; border-radius: 18px; font-size: 15.5px; line-height: 1.45; box-shadow: 0 1px 2px rgba(20,10,35,.12); }
.msg.desk { background: #ffffff; border-bottom-left-radius: 6px; color: #15101f; }
.msg.client { background: #e3d4ff; color: #2c1550; border-bottom-right-radius: 6px; }
.msg-text { display: block; }
.msg-meta { display: flex; align-items: center; justify-content: flex-end; gap: 4px; margin-top: 2px; font-size: 11.5px; color: #8b839c; }
.msg.client .msg-meta { color: #7a5ba8; }
.msg-ticks { display: inline-flex; color: #4f9de0; }
.msg.typing { display: flex; align-items: center; gap: 5px; padding: 14px 16px; }
.msg.typing .dot { width: 7px; height: 7px; border-radius: 50%; background: #b7b0c6; animation: chatdot 1.2s infinite ease-in-out; }
.msg.typing .dot:nth-child(2) { animation-delay: .18s; }
.msg.typing .dot:nth-child(3) { animation-delay: .36s; }
@keyframes chatdot { 0%, 60%, 100% { opacity: .35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.msg-badge { display: block; margin-top: 8px; padding: 4px 10px; border-radius: 999px; background: rgba(42,157,99,.12); color: #1d7a4c; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; width: fit-content; }
.chat-compose { display: flex; align-items: center; gap: 12px; margin-top: 12px; padding: 12px 14px; background: #ffffff; border: 1px solid #dedbe6; border-radius: 999px; }
.chat-input { flex: 1; color: #9a93a8; font-size: 15px; }
.chat-send { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #2aabee; color: #fff; flex: none; }
.chat-note { margin: 14px 6px 0; font-size: 11px; color: #837799; }

#desk { scroll-margin-top: 0; }

/* Indicative two-way price */
.quote-wrap { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 28px; }
.quote-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.quote-pair { font-size: 20px; font-weight: 600; }
.quote-live { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.quote-tiles { display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: stretch; }
.quote-tile { border-radius: 18px; padding: 22px 20px; display: flex; flex-direction: column; gap: 6px; }
.quote-tile.bid { background: rgba(255,107,107,.12); border: 1px solid rgba(255,107,107,.25); }
.quote-tile.ask { background: rgba(110,231,168,.12); border: 1px solid rgba(110,231,168,.25); }
.quote-label { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.quote-price { font-size: clamp(24px, 3vw, 34px); font-weight: 600; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.quote-tile.bid .quote-price { color: #ff8c8c; }
.quote-tile.ask .quote-price { color: #7ff0b5; }
.quote-sub { font-size: 13px; color: var(--muted); }
.quote-mid { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 0 10px; font-variant-numeric: tabular-nums; }
.quote-rows { margin-top: 22px; border-top: 1px solid var(--line); }
.quote-rows div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.quote-rows div span:first-child { color: var(--muted); }
.quote-note { margin: 18px 0 0; font-size: 11px; color: #837799; }
.quote-side h3 { margin: 0 0 14px; font-size: clamp(24px, 2.4vw, 32px); font-weight: 600; letter-spacing: -.02em; }
.quote-side p { margin: 0 0 24px; color: var(--muted); }

/* Enquiry sent */
.sent-card { background: var(--surface); border: 1px solid var(--line); border-radius: 24px; padding: 48px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.sent-tick { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: rgba(110,231,168,.14); color: #6ee7a8; margin-bottom: 4px; }
.sent-card h3 { margin: 0; font-size: clamp(26px, 2.6vw, 34px); font-weight: 600; letter-spacing: -.02em; }
.sent-card p { margin: 0; color: var(--muted); font-size: 17px; max-width: 34em; }
.sent-next { list-style: none; margin: 6px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sent-next li { position: relative; padding-left: 20px; color: var(--muted); font-size: 15px; }
.sent-next li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--violet); }
.sent-card .tg-btn { margin-top: 18px; }

/* Coin logos */
.tok-logo { display: inline-flex; align-items: center; justify-content: center; flex: none; }
.tok-logo img { border-radius: 50%; display: block; background: rgba(255,255,255,.06); }
.tok-letters { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(169,112,255,.16); color: var(--violet); font-size: 11px; font-weight: 700; letter-spacing: .02em; }
td.tok { display: flex; align-items: center; gap: 12px; }
.tok-text { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tick .tok-logo { margin-right: 10px; }
.tick .tok-letters { width: 20px; height: 20px; font-size: 9px; }

/* Back to top */
.to-top { position: fixed; right: 26px; bottom: calc(26px + env(safe-area-inset-bottom, 0px)); z-index: 60; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: rgba(24,14,38,.9); backdrop-filter: blur(8px); color: var(--text); display: grid; place-items: center; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.to-top:hover { background: var(--violet); border-color: var(--violet); color: var(--ink); transform: translateY(-2px); }
.to-top[hidden] { display: none; }

/* CTA */
.cta { margin: 0 auto 120px; background: var(--violet); color: var(--ink); border-radius: 28px; padding: 80px 64px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.cta h2 { margin: 0; font-size: clamp(38px, 5.6vw, 76px); font-weight: 600; line-height: .98; letter-spacing: -.045em; max-width: 12em; }
.cta-wrap { padding: 0 28px; max-width: calc(var(--wrap)); margin: 0 auto; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 64px 0 48px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-top img { height: 46px; width: auto; display: block; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a { transition: color .25s; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--violet); }
.disclaimer { margin-top: 40px; font-size: 11px; line-height: 1.6; color: #8a7ea0; max-width: 110em; }
.disclaimer p { margin: 0 0 8px; }
.copyright { margin-top: 16px; font-size: 11px; color: #7a6e91; }

/* Responsive */
@media (max-width: 1024px) {
  .why-grid, .journey, .news-cards { grid-template-columns: 1fr 1fr; }
  .quote-wrap { grid-template-columns: 1fr; gap: 36px; }
  .journey li::after { display: none; }
  .home-protect-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .solutions { grid-template-columns: 1fr 1fr; }
  .solution.feature { grid-column: 1 / -1; min-height: 0; }
  .steps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .kpis { grid-template-columns: 1fr 1fr; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .tab-panel { grid-template-columns: 1fr; padding: 40px; }
  .news-item a { grid-template-columns: 1fr; gap: 6px; }
  .news-source { text-align: left; }
}
@media (max-width: 820px) {
  .page-hero { min-height: 300px; padding: 48px 0; }
  .protect-grid { grid-template-columns: 1fr; gap: 32px; }
  .protect-grid .pillar, .protect-grid .protect-mark { grid-column: auto !important; grid-row: auto !important; text-align: left !important; }
  .protect-grid .protect-mark { width: 120px; margin: 0 auto; order: -1; }
  .why-grid, .hp-list, .serve-grid, .journey, .news-cards { grid-template-columns: 1fr; }
  .serve { padding: 32px; }
  body { font-size: 16px; }
  .nav-toggle { display: inline-grid; }
  .site-header .wrap { min-height: 78px; }
  .logo img { height: 40px; }
  .footer-top img { height: 46px; }
  .nav { position: fixed; inset: 78px 0 auto 0; background: var(--ink); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 28px 28px; border-bottom: 1px solid var(--line); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 16px 0; border-bottom: 1px solid #221633; font-size: 18px; }
  .nav .btn { margin-top: 18px; border-bottom: 0; }
  .hero-scrim { width: 100%; background: rgba(232,230,236,.72); }
  .hero-dark .hero-scrim { background: rgba(13,7,20,.62); }
  .quick .wrap { grid-template-columns: 1fr; }
  .quick a, .quick a:first-child { border-left: 0; border-top: 1px solid #cfcad8; padding: 22px 0; }
  .quick a:first-child { border-top: 0; }
  .stats { grid-template-columns: 1fr; }
  .stat { padding: 26px 0; }
  .section { padding: 80px 0; }
  .solutions, .values, .notes { grid-template-columns: 1fr; }
  .solution { min-height: 0; }
  .rows li { grid-template-columns: 1fr; gap: 6px; }
  .steps { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .tab-panel { padding: 28px; }
  .tabs { width: 100%; }
  .tab { flex: 1; }
  .cta { padding: 48px 28px; border-radius: 22px; margin-bottom: 80px; }
  .ticker-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .nav a:not(.btn)::after, .nav .roll-in, .nav .roll-out { transition: none; }
  .fg-needle { transition: none; }
  html { scroll-behavior: auto; }
  .rise, .ticker-track, .pulse-dot, .logo-track { animation: none !important; }
  .logo-marquee { overflow-x: auto; }
  .ticker { overflow-x: auto; }
}
