:root {
  --bg: #050505;
  --silver: #d6d6d6;
  --silver-bright: #f7f7f7;
  --line: rgba(214, 214, 214, 0.16);
  --text: #f4f4f4;
  --muted: #a8a8a8;
  --header: 76px;
  --ticker: 38px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); }
html[lang="ar"] body { font-family: "Cairo", sans-serif; }
html[lang="en"] body { font-family: "Manrope", sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
em { font-style: normal; color: var(--silver-bright); }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(520px, calc(100% - 40px)); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
  padding-inline: 28px;
  background: rgba(0,0,0,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow .35s var(--ease), background .35s;
}
.site-header.is-scrolled {
  background: rgba(0,0,0,.92);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.logo img {
  height: 52px; width: auto; object-fit: contain;
  mix-blend-mode: lighten; filter: contrast(1.08);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.desk-nav {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  font-size: 13px; font-weight: 600; color: #d7d7d7;
}
.desk-nav > a, .desk-drop > a {
  padding: 10px 0; letter-spacing: .02em;
  transition: color .25s;
}
.desk-nav > a:hover, .desk-drop > a:hover { color: #fff; }
.desk-drop { position: relative; }
.desk-drop::after {
  content: ""; position: absolute; inset-inline: 0; top: 100%; height: 14px;
}
.desk-menu {
  position: absolute; top: calc(100% + 6px); inset-inline-start: 0;
  min-width: 220px; padding: 10px;
  background: #0d0d0d; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .22s var(--ease); z-index: 20;
}
.desk-drop:hover .desk-menu, .desk-drop:focus-within .desk-menu {
  opacity: 1; visibility: visible; transform: none;
}
.desk-menu a {
  display: block; padding: 10px 12px; border-radius: 10px; color: #cfcfcf; font-size: 13px;
}
.desk-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }
.header-link { min-height: 42px !important; padding: 0 16px !important; font-size: 14px; }
.lang-switch {
  display: inline-flex; align-items: center;
  min-width: 42px; justify-content: center;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; color: var(--silver-bright); letter-spacing: .12em; font-size: 12px; font-weight: 700;
  transition: border-color .3s, background .3s;
}
.lang-switch:hover { border-color: var(--silver); background: rgba(255,255,255,.04); }
.menu-btn {
  display: none;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line); place-content: center; gap: 5px;
  transition: border-color .3s, background .3s;
}
.menu-btn:hover { border-color: var(--silver); background: rgba(255,255,255,.04); }
.menu-btn span {
  display: block; width: 18px; height: 1.6px; background: var(--silver-bright);
  transition: transform .35s var(--ease), width .35s, opacity .35s;
}
.menu-btn span:nth-child(2) { width: 12px; margin-inline-start: auto; }
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.ticker {
  overflow: hidden; height: var(--ticker);
  border-bottom: 1px solid var(--line);
  background: #000; color: var(--silver);
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; gap: 42px; white-space: nowrap; width: max-content;
  animation: marquee 32s linear infinite;
  font-size: 13px; letter-spacing: .04em;
}
.ticker-track span { display: inline-flex; gap: 10px; align-items: center; }
.ticker-track i { font-style: normal; }
.up { color: #d8d8d8; }
.down { color: #8d8d8d; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .ticker-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }

.site-nav {
  position: fixed; inset: 0; z-index: 50; background: #000;
  overflow: auto; padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .45s var(--ease), visibility .4s;
}
.site-nav.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
.nav-inner { width: min(760px, 100%); margin-inline: auto; }
.nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.nav-close {
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; color: var(--silver);
  transition: background .3s, border-color .3s;
}
.nav-close:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.nav-list { display: grid; gap: 4px; }
.nav-list > li > a,
.nav-list > li > button {
  width: 100%; text-align: start; font-size: clamp(28px, 4vw, 40px); font-weight: 700;
  padding: 8px 0; transition: color .3s, padding-inline-start .3s var(--ease);
}
.nav-list > li > a:hover,
.nav-list > li > button:hover { color: var(--silver); padding-inline-start: 10px; }
.nav-list ul {
  display: grid; gap: 8px; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .45s var(--ease), opacity .3s, padding .3s;
}
.nav-list li.open ul { max-height: 420px; opacity: 1; padding-block: 8px 16px; }
.nav-list ul a { display: flex; gap: 14px; color: var(--muted); font-size: 18px; }
.nav-list ul a:hover { color: #fff; }
.nav-list ul a span { color: var(--silver); font-variant-numeric: tabular-nums; }
.nav-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 20px; border-radius: 10px; font-weight: 700;
  transition: background .25s, border-color .25s, color .25s;
}
.btn svg { width: 16px; height: 16px; }
html[dir="rtl"] .btn svg { transform: scaleX(-1); }
.btn-primary { color: #111; background: #f3f3f3; }
.btn-primary:hover { background: #fff; }
.btn-dark { color: #fff; background: #111; }
.btn-dark:hover { background: #000; }
.btn-ghost { border: 1px solid var(--silver); color: var(--silver-bright); }
.btn-ghost:hover { background: rgba(255,255,255,.06); }

.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--header) - var(--ticker) - 112px);
  display: grid; align-items: center;
  background:
    radial-gradient(900px 480px at 80% 10%, rgba(220,220,220,.1), transparent 60%),
    #050505;
}
.hero-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items: center; padding-block: 56px 80px;
}
.hero-grid {
  position: absolute; inset: 0; opacity: .22; pointer-events: none;
  background-image:
    linear-gradient(rgba(192,192,192,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,192,192,.14) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 75%);
  animation: gridShift 18s linear infinite;
}
@keyframes gridShift { to { background-position: 52px 52px; } }
.hero-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  inset-inline-end: -80px; bottom: -180px;
  background: radial-gradient(circle, rgba(230,230,230,.16), transparent 68%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.08); opacity: .75; } }

.hero-copy { max-width: 680px; }
.slide { display: none; }
.slide.is-active { display: block; }
.slide.is-active .anim-child {
  animation: rise .75s var(--ease) both;
  animation-delay: calc(var(--i) * .12s);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: rgba(255,255,255,.04);
  border-radius: 999px; padding: 7px 14px; color: var(--silver);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}
.badge i {
  width: 8px; height: 8px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 12px #fff; animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .35; } }
.hero h1, .page-hero h1, h2 {
  font-size: clamp(32px, 4.4vw, 56px); line-height: 1.15; font-weight: 800;
  margin: 18px 0 16px; letter-spacing: -.03em;
}
html[lang="en"] .hero h1, html[lang="en"] h2 { letter-spacing: .01em; }
.hero p, .lead { color: var(--muted); font-size: 18px; max-width: 58ch; line-height: 1.7; }
.hero-progress {
  height: 2px; width: 140px; background: rgba(255,255,255,.12); overflow: hidden;
}
.hero-progress span {
  display: block; height: 100%; width: 0; background: #fff;
  animation: load 7s linear infinite;
}
@keyframes load { from { width: 0; } to { width: 100%; } }

.hero-visual { position: relative; min-height: 460px; transition: transform .12s linear; }
.globe {
  width: min(360px, 70%); aspect-ratio: 1; margin-inline: auto; position: relative;
  transform-style: preserve-3d; perspective: 900px;
}
.globe-core {
  position: absolute; inset: 18%; border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(255,255,255,.05) 0 8deg, transparent 8deg 16deg),
    radial-gradient(circle at 32% 28%, #5a5a5a, #111 68%);
  box-shadow: inset -28px -24px 50px rgba(0,0,0,.65), 0 0 60px rgba(200,200,200,.12);
  animation: spin 28s linear infinite;
}
.globe-shine {
  position: absolute; inset: 18%; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.28), transparent 42%);
}
.globe-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(220,220,220,.28);
  animation: orbit 12s linear infinite;
}
.globe-ring.delay { inset: -18px; animation-duration: 18s; animation-direction: reverse; border-color: rgba(220,220,220,.16); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit {
  from { transform: rotateX(66deg) rotateZ(0deg); }
  to { transform: rotateX(66deg) rotateZ(360deg); }
}

.hero-chart {
  position: absolute; inset-inline-start: 0; bottom: 8%; width: 78%; opacity: .7;
}
.candles rect {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: grow .9s var(--ease) both;
}
.candles rect:nth-child(1) { animation-delay: .02s; }
.candles rect:nth-child(2) { animation-delay: .06s; }
.candles rect:nth-child(3) { animation-delay: .1s; }
.candles rect:nth-child(4) { animation-delay: .14s; }
.candles rect:nth-child(5) { animation-delay: .18s; }
.candles rect:nth-child(6) { animation-delay: .22s; }
.candles rect:nth-child(7) { animation-delay: .26s; }
.candles rect:nth-child(8) { animation-delay: .3s; }
.candles rect:nth-child(9) { animation-delay: .34s; }
.candles rect:nth-child(10) { animation-delay: .38s; }
.candles rect:nth-child(n+11) { animation-delay: .42s; }
@keyframes grow { from { transform: scaleY(0); opacity: 0; } }

.orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center; font-weight: 800; color: #111; font-size: 15px;
  background: linear-gradient(180deg, #fff, #b0b0b0);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.orb-a { inset-inline-end: 6%; top: 18%; animation: floatA 5s ease-in-out infinite; }
.orb-b { inset-inline-end: 22%; top: 8%; animation: floatB 5.6s ease-in-out infinite .3s; }
.orb-c { inset-inline-end: 2%; bottom: 28%; animation: floatC 4.8s ease-in-out infinite .7s; }
.orb-d { inset-inline-start: 8%; top: 36%; animation: floatD 6s ease-in-out infinite 1s; }
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, -16px) rotate(-6deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -14px); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-14px, 10px) rotate(5deg); }
}
@keyframes floatD {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -18px); }
}

.hero-controls {
  display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap;
}
.hero-nav {
  position: static; inset: auto; transform: none; display: flex; gap: 8px;
}
.circle-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.04);
  font-size: 20px; color: #fff;
  transition: background .25s, border-color .25s;
}
.circle-btn:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.hero-count {
  letter-spacing: .18em; color: var(--silver); unicode-bidi: isolate; direction: ltr; font-size: 13px;
}
.hero-count.is-flip { animation: countFlip .35s var(--ease); }
@keyframes countFlip {
  0% { transform: translateY(8px); opacity: .3; }
  100% { transform: none; opacity: 1; }
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-grid article {
  padding: 28px 18px;
  text-align: center;
  border-inline-end: 1px solid var(--line);
}
.trust-grid article:last-child { border-inline-end: 0; }
.trust-grid b {
  display: block; font-size: 28px; font-weight: 800; letter-spacing: -.02em;
}
.trust-grid span {
  display: block; margin-top: 6px; color: var(--muted); font-size: 13px; letter-spacing: .04em;
}

.section { padding: 110px 0; }
.theme-light {
  background: linear-gradient(180deg, #f6f6f6 0%, #ececec 100%);
  color: #111;
}
.theme-light .lead, .theme-light p, .theme-light .muted { color: #5c5c5c; }
.theme-light em { color: #1a1a1a; }
.theme-light .kicker { color: #6d6d6d; }
.kicker {
  display: inline-block; color: var(--silver); letter-spacing: .24em;
  text-transform: uppercase; font-size: 12px; font-weight: 700;
  position: relative;
}
.kicker::after {
  content: ""; display: block; width: 0; height: 1px; margin-top: 8px;
  background: currentColor; transition: width .8s var(--ease) .15s;
}
[data-animate].in-view .kicker::after { width: 52px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.feature-list li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,.08); font-size: 20px;
  transition: padding-inline-start .35s var(--ease);
}
.feature-list li:hover { padding-inline-start: 8px; }
.feature-list li.in-view .feature-icon { animation: iconPop .5s var(--ease) both; }
.feature-list .num { color: #888; font-variant-numeric: tabular-nums; font-weight: 700; }
.feature-icon {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(180deg, #fff, #7a7a7a);
  box-shadow: 0 0 0 6px rgba(0,0,0,.04);
}
@keyframes iconPop {
  0% { transform: scale(0); }
  70% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.market-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
.market-pills a {
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  color: var(--muted); font-size: 14px; transition: .3s;
}
.market-pills a:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
.market-grid, .cards-3 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.deposit { color: var(--silver); font-weight: 700; margin: 4px 0 8px; }
.theme-light .deposit { color: #444; }
.market-card {
  display: block; min-height: 230px; padding: 24px;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.market-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.35); box-shadow: 0 18px 36px rgba(0,0,0,.22); }
.market-card .n { color: var(--silver); letter-spacing: .14em; font-size: 12px; }
.market-card h3 { margin: 16px 0 10px; font-size: 26px; }
.market-card p { color: var(--muted); line-height: 1.6; }
.card-icon {
  display: block; width: 36px; height: 36px; margin-top: 18px;
  border-radius: 10px; border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 55%),
    #141414;
  position: relative;
}
.card-icon::before {
  content: ""; position: absolute; inset: 10px;
  border: 1.5px solid #d0d0d0; border-radius: 3px;
}
.icon-crypto::before { border-radius: 50%; }
.icon-currencies::before { border: 0; box-shadow: inset 0 0 0 1.5px #d0d0d0; border-radius: 50%; }
.theme-light .market-card {
  background: #fff; border-color: rgba(0,0,0,.08); color: #111;
}
.theme-light .market-card .checks li { color: #333; font-size: 14px; }
.theme-light .market-card .btn { margin-top: 16px; }

.checks { margin: 24px 0 28px; display: grid; gap: 12px; }
.checks li { position: relative; padding-inline-start: 28px; }
.checks li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(180deg, #2a2a2a, #000);
}
.theme-light .checks li::before { background: linear-gradient(180deg, #fff, #7a7a7a); box-shadow: 0 0 0 4px rgba(0,0,0,.06); }

.mt5-panel {
  border: 1px solid rgba(0,0,0,.08); border-radius: 22px; overflow: hidden;
  background: #111; color: #fff; box-shadow: 0 24px 50px rgba(0,0,0,.18);
}
.mt5-bar {
  display: flex; justify-content: space-between; padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08); color: var(--silver);
}
.live {
  color: #111; background: #fff; border-radius: 999px; padding: 3px 9px;
  font-size: 11px; font-weight: 800; animation: blink 1.4s ease-in-out infinite;
}
.mt5-rows div {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.mt5-rows div:hover { background: rgba(255,255,255,.04); }
.mt5-rows i { font-style: normal; }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 40px 0 32px;
}
.why-item {
  padding: 26px; min-height: 210px;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  transition: border-color .3s, transform .35s var(--ease);
}
.why-item:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.32); }
.why-item span { color: var(--silver); letter-spacing: .16em; font-size: 12px; font-weight: 700; }
.why-item h3 { margin: 14px 0 10px; font-size: 22px; }
.why-item p { color: var(--muted); line-height: 1.65; font-size: 15px; }

.account-card {
  display: flex; flex-direction: column;
  min-height: 100%; padding: 28px;
  border: 1px solid rgba(0,0,0,.08); border-radius: 16px;
  background: #fff; color: #111;
}
.account-card .n { color: #888; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
.account-card h3 { margin: 12px 0 8px; font-size: 26px; }
.account-card p { color: #5c5c5c; line-height: 1.65; }
.account-card .deposit { color: #444; }
.account-card .btn { margin-top: auto; align-self: flex-start; }
.account-card.is-featured {
  border-color: #111;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
  position: relative;
}
.account-card.is-featured::after {
  content: ""; position: absolute; inset-inline: 28px; top: 0; height: 3px; background: #111;
}

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0; position: relative; }
.step-grid article {
  padding: 28px; border: 1px solid rgba(0,0,0,.08); border-radius: 22px;
  min-height: 230px; background: #fff;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.step-grid article:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.step-grid span { font-size: 48px; font-weight: 800; color: #c3c3c3; display: block; }

.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.help-grid a, .help-grid.stacked, .help-grid div {
  border: 1px solid var(--line); border-radius: 18px; padding: 24px;
  display: grid; gap: 8px; transition: transform .35s var(--ease), border-color .3s, background .3s;
}
.help-grid a:hover { transform: translateY(-6px); border-color: #fff; background: rgba(255,255,255,.04); }
.help-grid.stacked { grid-template-columns: 1fr; }
.help-grid span { color: var(--muted); }

.cta {
  padding: 120px 0; text-align: center; position: relative; overflow: hidden;
  background:
    radial-gradient(620px 240px at 50% 0%, rgba(220,220,220,.16), transparent 70%),
    #050505;
  border-top: 1px solid var(--line);
}
.cta .lead { margin-inline: auto; margin-bottom: 24px; }

.page-hero { padding: 80px 0 28px; animation: rise .7s var(--ease); }
.prose p { color: var(--muted); font-size: 18px; margin-bottom: 18px; max-width: 70ch; }

.form { display: grid; gap: 16px; }
.form label { display: grid; gap: 8px; color: var(--silver); }
.form input, .form textarea {
  width: 100%; background: #0c0c0c; border: 1px solid var(--line);
  border-radius: 12px; color: var(--text); padding: 14px 16px; font: inherit;
  transition: border-color .3s, box-shadow .3s;
}
.form input:focus, .form textarea:focus {
  outline: 0; border-color: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}
.notice { color: var(--silver-bright); border: 1px solid var(--line); padding: 12px 14px; border-radius: 12px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-size: 20px; font-weight: 700; }
.faq p { color: var(--muted); margin-top: 10px; }

.site-footer { border-top: 1px solid var(--line); padding: 72px 0 28px; background: #000; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr .8fr 1.1fr; gap: 40px; }
.footer-brand p, .site-footer p { color: var(--muted); margin-top: 16px; line-height: 1.7; }
.site-footer h4 { letter-spacing: .12em; text-transform: uppercase; color: var(--silver); margin-bottom: 14px; }
.footer-list { display: grid; gap: 10px; color: var(--muted); }
.footer-list a { transition: color .3s; }
.footer-list a:hover { color: #fff; }
.legal-entity {
  margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line);
}
.legal-entity p { font-size: 13px; margin-top: 8px; }
.legal-entity strong { color: var(--silver-bright); }
.risk-box {
  margin-top: 40px; padding: 22px; border: 1px solid var(--line); border-radius: 16px; color: var(--muted);
}
.risk-box strong { display: block; color: var(--silver-bright); margin-bottom: 8px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 24px; color: #6e6e6e; font-size: 14px;
}
.footer-links { display: flex; gap: 16px; }
.footer-links a:hover { color: #fff; }

[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-animate].in-view { opacity: 1; transform: none; }

.mt5-rows div.flash { animation: rowFlash .55s ease; }
@keyframes rowFlash {
  0% { background: rgba(255,255,255,.14); }
  100% { background: transparent; }
}

.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
html[dir="rtl"] .btn:hover svg { transform: scaleX(-1) translateX(4px); }

.cta::before {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  inset-inline-start: 50%; top: -180px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 68%);
}

.step-grid::before {
  content: ""; position: absolute; top: 52px; inset-inline: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, #cfcfcf, transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform 1s var(--ease) .2s;
}
.step-grid.in-view::before { transform: scaleX(1); }

.checks li.in-view { animation: checkIn .55s var(--ease) both; }
@keyframes checkIn {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: none; }
}
html[dir="rtl"] .checks li.in-view { animation-name: checkInRtl; }
@keyframes checkInRtl {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1200px) {
  .market-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto; }
  .desk-nav { display: none; }
  .menu-btn { display: grid; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 2; }
  .hero-visual {
    position: absolute;
    inset-block: 8% 0;
    inset-inline-end: 0;
    width: min(520px, 78%);
    min-height: 100%;
    opacity: .55;
    pointer-events: none;
    z-index: 1;
  }
}
@media (max-width: 980px) {
  .split, .market-grid, .cards-3, .step-grid, .help-grid, .footer-grid, .why-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article:nth-child(2) { border-inline-end: 0; }
  .trust-grid article:nth-child(1),
  .trust-grid article:nth-child(2) { border-bottom: 1px solid var(--line); }
  .header-link { display: none; }
  .logo img { height: 52px; }
  .hero { min-height: auto; }
}
@media (max-width: 720px) {
  .hero-chart, .orb-d { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .wrap { width: min(1180px, calc(100% - 32px)); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important; transition: none !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}
