:root {
  --bg: #03020b;
  --bg-2: #08071a;
  --bg-3: #0f0a29;
  --card: rgba(17, 20, 47, 0.68);
  --card-2: rgba(19, 15, 44, 0.78);
  --line: rgba(169, 125, 255, 0.18);
  --line-strong: rgba(169, 125, 255, 0.34);
  --text: #f6f4ff;
  --muted: #a8a0c9;
  --muted-2: #756e98;
  --purple: #8b45ff;
  --purple-2: #6236ff;
  --violet: #c05bff;
  --cyan: #48d6ff;
  --blue: #4383ff;
  --pink: #ff4edb;
  --green: #2df7b1;
  --danger: #ff5377;
  --radius: 24px;
  --radius-lg: 32px;
  --shadow: 0 24px 70px rgba(0,0,0,.42);
  --container: 1180px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { max-width: 100%; }
::selection { background: rgba(139,69,255,.45); color: #fff; }



@media (pointer: fine) {
  html, body, a, button, input, textarea, select, label, .feature-card, .benefit-card, .stat-card, .mockup, .metric, .step-card, .contact-card, .contact-form, .custom-select, .custom-select__option {
    cursor: none;
  }

  .cursor-pointer,
  .cursor-halo,
  .cursor-trail {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    will-change: transform, opacity, width, height, filter;
  }

  .cursor-pointer {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f8fbff;
    box-shadow:
      0 0 10px rgba(248,251,255,.88),
      0 0 20px rgba(72,214,255,.35),
      0 0 28px rgba(139,69,255,.20);
    transition: opacity .14s ease, box-shadow .18s ease, background .18s ease;
  }

  .cursor-halo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(186, 165, 255, .34);
    background: radial-gradient(circle at 50% 50%, rgba(72,214,255,.06), transparent 62%);
    box-shadow:
      0 0 18px rgba(72,214,255,.12),
      inset 0 0 16px rgba(139,69,255,.08);
    transform-origin: center;
    transition: width .18s ease, height .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, opacity .14s ease;
  }

  .cursor-halo::before,
  .cursor-halo::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72,214,255,.42), transparent);
    transform: translate(-50%, -50%);
    opacity: .42;
  }

  .cursor-halo::after { transform: translate(-50%, -50%) rotate(90deg); }

  .cursor-trail { display: none; }

  body.cursor-ready .cursor-pointer,
  body.cursor-ready .cursor-halo { opacity: 1; }

  body.cursor-ready .cursor-trail { opacity: 0; }

  body.cursor-hover .cursor-pointer {
    background: linear-gradient(135deg, #ffffff 0%, #daf8ff 54%, #c9adff 100%);
    box-shadow:
      0 0 12px rgba(246,244,255,.95),
      0 0 24px rgba(72,214,255,.42),
      0 0 34px rgba(139,69,255,.26);
  }

  body.cursor-hover .cursor-halo {
    width: 32px;
    height: 32px;
    border-color: rgba(72,214,255,.54);
    background: radial-gradient(circle at 50% 50%, rgba(139,69,255,.10), transparent 62%);
    box-shadow:
      0 0 24px rgba(72,214,255,.18),
      inset 0 0 18px rgba(139,69,255,.09);
  }

  body.cursor-down .cursor-pointer {
    background: #48d6ff;
    box-shadow: 0 0 15px rgba(72,214,255,.88), 0 0 26px rgba(139,69,255,.35);
  }

  body.cursor-down .cursor-halo {
    width: 28px;
    height: 28px;
    border-color: rgba(255,255,255,.52);
    background: radial-gradient(circle at 50% 50%, rgba(72,214,255,.12), transparent 60%);
  }
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(118,55,255,.18), transparent 34%),
    radial-gradient(circle at 84% 9%, rgba(72,214,255,.13), transparent 28%),
    linear-gradient(135deg, #03020b 0%, #08061a 44%, #05030e 100%);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  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: radial-gradient(circle at 50% 22%, #000 0%, transparent 65%);
}
.gradient { position: absolute; border-radius: 999px; filter: blur(50px); opacity: .42; }
.gradient-a { width: 560px; height: 560px; left: -220px; top: 220px; background: rgba(128, 60, 255, .32); animation: floatBlob 11s ease-in-out infinite; }
.gradient-b { width: 620px; height: 620px; right: -260px; top: 660px; background: rgba(255, 54, 215, .16); animation: floatBlob 14s ease-in-out infinite reverse; }
.grid-glow { position:absolute; inset:auto -10% 0; height: 40%; background: radial-gradient(ellipse at center, rgba(79,69,255,.2), transparent 60%); }
.particle { position: absolute; width: 3px; height: 3px; border-radius: 999px; background: rgba(191,162,255,.8); box-shadow: 0 0 16px rgba(151,84,255,.9); animation: particleDrift var(--speed) linear infinite; opacity: var(--alpha); }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(3, 2, 11, .56);
  backdrop-filter: blur(18px);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(139,69,255,.12), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.header.is-scrolled::before { opacity: 1; }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 22px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 820; letter-spacing: -.02em; white-space: nowrap; }
.brand__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180,125,255,.55);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,69,255,.2), rgba(72,214,255,.08));
  color: #fff;
  font-weight: 900;
  font-style: italic;
  box-shadow: 0 0 22px rgba(139,69,255,.34), inset 0 0 20px rgba(255,255,255,.06);
}
.brand__text { font-size: 16px; }
.nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); margin-left: auto; }
.nav a { color: rgba(246,244,255,.78); font-size: 14px; font-weight: 650; transition: color .25s ease, transform .25s ease; }
.nav a:hover { color: #fff; transform: translateY(-1px); }
.header__actions { display: flex; align-items: center; gap: 16px; }
.menu-btn { display: none; border: 0; background: transparent; width: 42px; height: 42px; border-radius: 14px; border: 1px solid var(--line); }
.menu-btn span { display:block; width:18px; height:2px; background:#fff; margin:4px auto; border-radius:9px; transition: transform .25s ease, opacity .25s ease; }
body.menu-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 780;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  isolation: isolate;
}
.btn::after { content: "→"; transition: transform .25s ease; }
.btn:hover::after { transform: translateX(4px); }
.btn--small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.btn--primary {
  background: linear-gradient(135deg, var(--purple-2), var(--violet));
  color: #fff;
  box-shadow: 0 12px 38px rgba(139,69,255,.34), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(139,69,255,.46), inset 0 1px 0 rgba(255,255,255,.32); }
.btn--ghost { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(167,125,255,.45); background: rgba(255,255,255,.07); }
.btn--full { width: 100%; }

.section { padding: 108px 0; position: relative; }
.section--compact { padding: 84px 0; }
.section + .section { border-top: 1px solid rgba(255,255,255,.06); }
.kicker, .eyebrow { color: #ad7cff; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 900; }
.eyebrow { display:inline-flex; align-items:center; gap:10px; margin-bottom: 22px; }
.eyebrow span { width: 24px; height: 1px; background: linear-gradient(90deg, transparent, #ad7cff); box-shadow: 0 0 14px #ad7cff; }
h1, h2, h3, p { margin: 0; }
h1 { max-width: 700px; font-size: clamp(48px, 7vw, 88px); line-height: .96; letter-spacing: -.07em; }
h1::first-letter { letter-spacing: -.1em; }
h2 { font-size: clamp(34px, 5vw, 58px); line-height: 1.02; letter-spacing: -.055em; }
h3 { font-size: 18px; letter-spacing: -.025em; }
p { color: var(--muted); line-height: 1.65; }
.section-heading { max-width: 690px; margin-bottom: 34px; }
.section-heading h2 { margin-top: 12px; }
.section-heading p { margin-top: 14px; font-size: 17px; }
.section-heading--inline { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading--inline p { max-width: 580px; }

.hero { min-height: calc(100vh - var(--header-h)); display:flex; align-items:center; padding: 92px 0 114px; }
.hero__grid { display:grid; grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr); gap: 54px; align-items:center; }
.hero__lead { margin-top: 22px; font-size: 18px; max-width: 620px; }
.hero__buttons { display:flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero__stats { display:flex; gap: 16px; margin-top: 52px; flex-wrap: wrap; }
.stat-card { min-width: 148px; padding: 16px; display:grid; grid-template-columns: 40px auto; column-gap: 12px; align-items:center; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.stat-card__icon { grid-row: 1 / span 2; width: 40px; height: 40px; display:grid; place-items:center; border-radius: 13px; background: rgba(139,69,255,.13); color: #c89cff; border: 1px solid rgba(199,144,255,.18); }
.stat-card strong { font-size: 22px; letter-spacing: -.03em; }
.stat-card small { color: var(--muted); font-weight: 700; }
.hero__visual { min-height: 640px; position: relative; perspective: 1200px; }
.mockup {
  position: relative;
  border: 1px solid rgba(177,136,255,.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    rgba(12,12,32,.78);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 0 80px rgba(93,55,255,.16), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(22px);
  overflow:hidden;
}
.mockup::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(circle at 18% 0, rgba(187,93,255,.25), transparent 32%), radial-gradient(circle at 82% 30%, rgba(72,214,255,.13), transparent 30%); }
.mockup--hero::after {
  content: "";
  position: absolute;
  inset: -35% -55%;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 38%, rgba(72,214,255,.075) 46%, rgba(199,91,255,.12) 50%, rgba(72,214,255,.06) 54%, transparent 62%);
  transform: translateX(-55%) rotate(8deg);
  animation: dashboardSweep 5.8s cubic-bezier(.45,0,.2,1) infinite;
  z-index: 2;
  mix-blend-mode: screen;
}
.mockup--hero { width: min(100%, 720px); margin-left:auto; transform: rotateY(-8deg) rotateX(5deg); animation: floatPanel 7s ease-in-out infinite; }
.mockup__topbar { height: 62px; display:flex; align-items:center; gap: 13px; padding: 0 20px; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 1; }
.mockup__logo { width: 34px; height: 34px; display:grid; place-items:center; border-radius: 12px; color:#fff; font-weight:900; background: linear-gradient(135deg, rgba(139,69,255,.58), rgba(72,214,255,.12)); }
.mockup__status { margin-left:auto; padding: 6px 10px; border-radius:999px; color: var(--green); background: rgba(45,247,177,.09); border: 1px solid rgba(45,247,177,.18); font-size: 12px; font-weight: 850; }
.mockup__body { display:grid; grid-template-columns: 62px 1fr; position: relative; z-index: 1; }
.mockup__rail { border-right: 1px solid rgba(255,255,255,.08); padding: 22px 0; display:flex; flex-direction:column; align-items:center; gap: 22px; }
.mockup__rail span { width: 22px; height: 22px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.mockup__content { padding: 18px; }
.metric-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.metric { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.045); border-radius: 16px; padding: 14px; position: relative; overflow: hidden; }
.metric::after { content:""; position:absolute; inset:auto 12px 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(72,214,255,.7), transparent); opacity:.6; }
.metric small { display:block; color: var(--muted-2); font-size: 11px; font-weight: 800; }
.metric b { display:block; margin-top: 8px; font-size: 17px; letter-spacing: -.03em; }
.metric em { display:block; margin-top: 6px; color: var(--green); font-style: normal; font-size: 11px; font-weight: 850; }
.metric--danger em { color: var(--danger); }
.hero-dashboard-grid { display:grid; grid-template-columns: 1.3fr .8fr; gap: 12px; margin-top: 12px; }
.chart-card, .transactions-card, .balance-card, .status-card, .table-card { border: 1px solid rgba(255,255,255,.08); background: rgba(3,5,20,.48); border-radius: 18px; padding: 15px; }
.card-heading { display:flex; align-items:center; justify-content:space-between; margin-bottom: 12px; gap: 16px; }
.card-heading b { font-size: 13px; }
.card-heading span { color: var(--muted-2); font-size: 11px; font-weight: 700; }
.line-chart { width: 100%; height: auto; overflow: visible; }
.grid-line { stroke: rgba(255,255,255,.08); stroke-width: 1; }
.chart-area { fill: url(#lineA); opacity: .11; }
.chart-line { fill: none; stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 900; animation: drawLine 2.1s ease-out both; }
.mockup--hero .chart-line { animation: drawLine 2.1s ease-out both, lineGlow 4.2s ease-in-out 2.1s infinite; }
.mockup--hero .chart-area { animation: chartAreaPulse 4.6s ease-in-out infinite; transform-origin: center; }
.chart-line--a { stroke: url(#lineA); filter: drop-shadow(0 0 8px rgba(72,214,255,.4)); }
.chart-line--b { stroke: url(#lineB); animation-delay: .2s; filter: drop-shadow(0 0 8px rgba(255,79,216,.35)); }
.transactions-card { grid-row: span 2; }
.transactions-heading { margin-bottom: 10px; }
.tx-list { display: grid; gap: 9px; }
.mini-tx {
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "type status"
    "amount status";
  gap: 5px 10px;
  align-items:center;
  padding: 11px 10px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.mini-tx__type { grid-area: type; display:flex; align-items:center; gap: 8px; min-width: 0; }
.mini-tx p { color:#fff; font-size: 12px; font-weight: 800; line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-tx b { grid-area: amount; color: var(--green); font-size: 12px; line-height: 1.15; white-space: nowrap; padding-left: 18px; }
.mini-tx em {
  grid-area: status;
  justify-self: end;
  color: var(--green);
  font-style: normal;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  padding: 7px 8px;
  border-radius: 999px;
  background: rgba(45,247,177,.08);
  border: 1px solid rgba(45,247,177,.14);
  white-space: nowrap;
}
.mini-tx--pending b, .mini-tx--pending em { color: var(--danger); }
.mini-tx--pending em { background: rgba(255,83,119,.09); border-color: rgba(255,83,119,.16); }
.dot { width: 10px; height: 10px; border-radius: 50%; display:block; box-shadow: 0 0 14px currentColor; }
.dot--green { color: var(--green); background: currentColor; }
.dot--blue { color: var(--blue); background: currentColor; }
.dot--cyan { color: var(--cyan); background: currentColor; }
.dot--pink { color: var(--pink); background: currentColor; }
.balance-line, .status-line { display:flex; align-items:center; justify-content:space-between; padding: 8px 0; color: var(--muted); font-size: 12px; border-top: 1px solid rgba(255,255,255,.06); }
.status-line b { color: var(--green); }

.mockup--hero {
  animation: floatPanel 7s ease-in-out infinite, dashboardAura 4.8s ease-in-out infinite;
  will-change: transform, filter, box-shadow;
}
.mockup--hero .mockup__logo { animation: logoPulse 3.6s ease-in-out infinite; }
.mockup--hero .mockup__status {
  position: relative;
  animation: liveBadgePulse 1.8s ease-in-out infinite;
}
.mockup--hero .mockup__status::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  animation: liveDotBlink 1.2s ease-in-out infinite;
}
.mockup--hero .mockup__rail span { animation: railNodePulse 3.4s ease-in-out infinite; }
.mockup--hero .mockup__rail span:nth-child(2) { animation-delay: .25s; }
.mockup--hero .mockup__rail span:nth-child(3) { animation-delay: .5s; }
.mockup--hero .mockup__rail span:nth-child(4) { animation-delay: .75s; }
.mockup--hero .mockup__rail span:nth-child(5) { animation-delay: 1s; }
.mockup--hero .metric { animation: metricBreath 5.2s ease-in-out infinite; }
.mockup--hero .metric:nth-child(2) { animation-delay: .32s; }
.mockup--hero .metric:nth-child(3) { animation-delay: .64s; }
.mockup--hero .metric:nth-child(4) { animation-delay: .96s; }
.mockup--hero .metric::before,
.mockup--hero .chart-card::before,
.mockup--hero .balance-card::before,
.mockup--hero .status-card::before,
.mockup--hero .transactions-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(72,214,255,.16), transparent 42%);
  opacity: .45;
}
.mockup--hero .metric em { animation: tinyValuePulse 2.2s ease-in-out infinite; }
.mockup--hero .chart-card,
.mockup--hero .balance-card,
.mockup--hero .status-card,
.mockup--hero .transactions-card { position: relative; overflow: hidden; }
.mockup--hero .chart-card { animation: panelMicroLift 5.6s ease-in-out infinite; }
.mockup--hero .transactions-card { animation: panelMicroLift 5.6s ease-in-out .4s infinite; }
.mockup--hero .balance-card { animation: panelMicroLift 5.6s ease-in-out .8s infinite; }
.mockup--hero .status-card { animation: panelMicroLift 5.6s ease-in-out 1.2s infinite; }
.mockup--hero .mini-tx {
  position: relative;
  overflow: hidden;
  animation: txRealtime 5.4s ease-in-out infinite;
}
.mockup--hero .mini-tx:nth-of-type(2) { animation-delay: .35s; }
.mockup--hero .mini-tx:nth-of-type(3) { animation-delay: .7s; }
.mockup--hero .mini-tx:nth-of-type(4) { animation-delay: 1.05s; }
.mockup--hero .mini-tx:nth-of-type(5) { animation-delay: 1.4s; }
.mockup--hero .mini-tx::after {
  content: "";
  position: absolute;
  inset: 0 -40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transform: translateX(-70%);
  animation: txSweep 4.8s ease-in-out infinite;
  pointer-events: none;
}
.mockup--hero .dot { animation: statusDotPulse 1.9s ease-in-out infinite; }
.mockup--hero .balance-line b { animation: balanceNumberPulse 3.2s ease-in-out infinite; }
.mockup--hero .balance-line:nth-child(3) b { animation-delay: .45s; }
.mockup--hero .balance-line:nth-child(4) b { animation-delay: .9s; }
.mockup--hero .status-line b { animation: statusTextPulse 2.6s ease-in-out infinite; }
.mockup--hero .status-line:nth-child(3) b { animation-delay: .45s; }
.mockup--hero .status-line:nth-child(4) b { animation-delay: .9s; }
.token, .orbit { position:absolute; pointer-events:none; }
.orbit { border: 1px solid rgba(123,83,255,.26); border-radius: 50%; filter: drop-shadow(0 0 14px rgba(139,69,255,.5)); }
.orbit--one { width: 760px; height: 360px; right: -64px; top: 48px; transform: rotate(-13deg); animation: orbitPulse 5s ease-in-out infinite; }
.orbit--two { width: 340px; height: 190px; right: 62px; bottom: 52px; transform: rotate(18deg); animation: orbitPulse 6s ease-in-out infinite reverse; }
.token--cube { width: 74px; height: 74px; left: 12%; bottom: 170px; border-radius: 24px; background: linear-gradient(135deg, rgba(72,214,255,.55), rgba(139,69,255,.58)); box-shadow: 0 0 44px rgba(72,214,255,.38); transform: rotate(16deg); animation: floatToken 4.2s ease-in-out infinite; }
.token--cube span { position:absolute; inset: 14px; border-radius: 16px; border: 1px solid rgba(255,255,255,.36); }
.token--coin { width: 82px; height: 82px; left: 20%; bottom: 70px; display:grid; place-items:center; border-radius: 50%; font-size: 34px; font-weight: 900; color:#f7fbff; background: linear-gradient(145deg, #eef5ff, #6c70a8 58%, #251a65); border: 6px solid rgba(255,255,255,.2); box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 45px rgba(139,69,255,.4); animation: floatToken 5.4s ease-in-out infinite reverse; }

.card-row { display:grid; gap: 18px; }
.five-cards { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.four-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .benefit-card {
  min-height: 176px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 45px rgba(0,0,0,.16);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.feature-card::before, .benefit-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at var(--mx, 20%) var(--my, 10%), rgba(139,69,255,.25), transparent 32%); opacity: 0; transition: opacity .3s ease; }
.feature-card:hover, .benefit-card:hover { transform: translateY(-8px); border-color: var(--line-strong); background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)); box-shadow: 0 24px 70px rgba(73,29,160,.22); }
.feature-card:hover::before, .benefit-card:hover::before { opacity: 1; }
.icon { width: 48px; height: 48px; display:grid; place-items:center; margin-bottom: 22px; border-radius: 16px; color: #d6a8ff; background: rgba(139,69,255,.12); border: 1px solid rgba(202,156,255,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 24px rgba(139,69,255,.13); font-weight: 900; }
.feature-card h3, .benefit-card h3, .feature-card p, .benefit-card p, .feature-card .icon, .benefit-card .icon { position:relative; z-index: 1; }
.feature-card p, .benefit-card p { margin-top: 10px; font-size: 14px; line-height: 1.55; }
.benefit-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.benefit-card { min-height: 150px; display:grid; grid-template-columns: 54px 1fr; column-gap: 16px; align-items:start; }
.benefit-card .icon { grid-row: 1 / span 2; margin-bottom: 0; }
.benefit-card p { margin-top: 8px; }

.backoffice { display:grid; grid-template-columns: 210px 1fr 220px; gap: 16px; padding: 18px; border: 1px solid rgba(177,136,255,.30); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08); overflow: hidden; }
.filters-panel, .analytics-panel { border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: rgba(2,5,20,.46); padding: 16px; }
.filters-panel h3, .top-currencies h3 { font-size: 15px; margin-bottom: 16px; }
.filters-panel label { display:block; color: var(--muted-2); font-size: 12px; font-weight: 800; margin-bottom: 12px; }
.filters-panel span { display:flex; align-items:center; justify-content:space-between; margin-top: 7px; min-height: 38px; padding: 0 12px; color: var(--muted); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.035); font-size: 12px; }
.filters-panel button { width:100%; min-height: 40px; margin-top: 6px; border:0; color:#fff; font-weight:800; border-radius:12px; background: linear-gradient(135deg, var(--purple-2), var(--violet)); cursor:pointer; }
.backoffice__main { min-width:0; }
.summary-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-bottom: 12px; }
.table-wrap { overflow-x:auto; }
table { width:100%; border-collapse: collapse; min-width: 720px; }
th, td { text-align:left; padding: 13px 10px; border-top: 1px solid rgba(255,255,255,.06); color: var(--muted); font-size: 12px; white-space:nowrap; }
th { color: var(--muted-2); font-size: 11px; text-transform: uppercase; letter-spacing:.06em; }
td:first-child { color:#fff; font-weight:750; }
.badge { display:inline-flex; min-width: 82px; justify-content:center; padding: 5px 8px; border-radius: 999px; font-size: 11px; font-weight: 850; }
.badge--success { color: var(--green); background: rgba(45,247,177,.09); border: 1px solid rgba(45,247,177,.17); }
.badge--pending { color: var(--danger); background: rgba(255,83,119,.10); border: 1px solid rgba(255,83,119,.18); }
.coin { display:inline-block; width: 9px; height:9px; margin-right: 6px; border-radius:50%; box-shadow: 0 0 10px currentColor; }
.coin--green { color: var(--green); background:currentColor; }
.coin--blue { color: var(--blue); background:currentColor; }
.analytics-panel { display:flex; flex-direction:column; gap: 16px; }
.donut { width: 158px; aspect-ratio: 1; border-radius:50%; margin: 8px auto 0; display:grid; place-items:center; background: conic-gradient(var(--blue) 0 45%, var(--purple) 45% 70%, rgba(255,255,255,.08) 70% 100%); box-shadow: inset 0 0 25px rgba(0,0,0,.35), 0 0 35px rgba(67,131,255,.15); position:relative; }
.donut::after { content:""; position:absolute; inset: 18px; border-radius:50%; background: #0b0b20; border:1px solid rgba(255,255,255,.08); }
.donut span { position:relative; z-index:1; font-weight:900; text-align:center; font-size: 20px; }
.donut small { display:block; color: var(--muted); font-size: 11px; font-weight:700; }
.legend p, .top-currencies p { display:flex; justify-content:space-between; gap:12px; padding: 5px 0; font-size: 12px; color: var(--muted); }
.legend i { width: 7px; height:7px; border-radius:50%; background: var(--blue); display:inline-block; margin-right: 8px; }
.top-currencies { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.08); }

.section-heading__lead { max-width: 620px; margin: 14px auto 0; color: var(--muted); }
.flow-section { position: relative; overflow: hidden; }
.flow-section::before { content:""; position:absolute; left:50%; top: 22%; width: 860px; height: 320px; transform: translateX(-50%); background: radial-gradient(circle, rgba(139,69,255,.16), transparent 64%); filter: blur(20px); pointer-events:none; opacity:.72; }
.payment-flow { position:relative; display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 56px; padding: 10px 0 2px; isolation:isolate; }
.flow-glow { position:absolute; z-index:-1; border-radius:50%; filter: blur(30px); pointer-events:none; opacity:.52; }
.flow-glow--one { width: 250px; height: 250px; left: 8%; top: -40px; background: rgba(139,69,255,.22); animation: flowBlob 8s ease-in-out infinite; }
.flow-glow--two { width: 220px; height: 220px; right: 8%; bottom: -70px; background: rgba(72,214,255,.16); animation: flowBlob 9s ease-in-out infinite reverse; }
.flow-track { position:absolute; left: 12%; right: 12%; top: 50px; height: 70px; z-index:0; pointer-events:none; }
.flow-track__base,
.flow-track__fill { position:absolute; left:0; right:0; top: 34px; height:2px; border-radius:999px; }
.flow-track__base { background: linear-gradient(90deg, transparent, rgba(177,136,255,.18), rgba(72,214,255,.18), rgba(177,136,255,.18), transparent); }
.flow-track__fill { right:auto; width:0; background: linear-gradient(90deg, var(--purple), var(--cyan), var(--violet)); box-shadow: 0 0 22px rgba(72,214,255,.42), 0 0 38px rgba(139,69,255,.30); animation: flowFill 6s cubic-bezier(.35,.02,.18,1) infinite; }
.flow-packet { position:absolute; top: 28px; left:0; width:14px; height:14px; border-radius:50%; background: #fff; box-shadow: 0 0 18px rgba(72,214,255,.88), 0 0 32px rgba(139,69,255,.38); transform: translateX(0) scale(.7); animation: flowPacket 6s cubic-bezier(.35,.02,.18,1) infinite; }
.flow-packet::after { content:""; position:absolute; inset:-8px; border-radius:inherit; border:1px solid rgba(72,214,255,.28); animation: flowRipple 1.4s ease-out infinite; }
.flow-packet--secondary { width:8px; height:8px; top:31px; animation-delay: .34s; opacity:.55; }
.step-card { position: relative; padding: 92px 24px 24px; text-align:center; border-radius: 26px; border: 1px solid rgba(177,136,255,.14); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)); box-shadow: inset 0 1px 0 rgba(255,255,255,.065); overflow:hidden; transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.step-card::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at var(--mx,50%) var(--my,30%), rgba(72,214,255,.14), transparent 38%); opacity:0; transition: opacity .25s ease; pointer-events:none; }
.step-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.045); border-color: rgba(177,136,255,.34); box-shadow: 0 24px 70px rgba(0,0,0,.20), 0 0 48px rgba(139,69,255,.13); }
.step-card:hover::before { opacity:1; }
.flow-card { animation: flowCardActive 6s ease-in-out infinite; animation-delay: var(--step-delay); }
.flow-card__pulse { position:absolute; left:50%; top: 52px; width:90px; height:90px; border-radius:50%; transform: translate(-50%, -50%) scale(.7); background: radial-gradient(circle, rgba(72,214,255,.22), transparent 64%); opacity:0; animation: stepPulse 6s ease-in-out infinite; animation-delay: var(--step-delay); pointer-events:none; }
.step-card__icon { position:absolute; top: 18px; left:50%; transform: translateX(-50%); width: 68px; height: 68px; display:grid; place-items:center; border-radius:50%; background: #100b2a; color:#d9b5ff; border:1px solid rgba(177,136,255,.42); box-shadow: 0 0 30px rgba(139,69,255,.34); font-weight:900; z-index:1; }
.step-card strong { display:block; color: transparent; background: linear-gradient(135deg, var(--purple), var(--cyan)); -webkit-background-clip:text; background-clip:text; font-size: 44px; line-height:1; margin-bottom: 10px; position:relative; z-index:1; }
.step-card h3, .step-card p, .step-card small { position:relative; z-index:1; }
.step-card p { margin: 10px auto 0; max-width: 260px; font-size: 14px; }
.step-card small { display:inline-flex; align-items:center; justify-content:center; min-height:28px; margin-top: 18px; padding: 0 12px; border-radius: 999px; color: rgba(246,244,255,.86); background: rgba(139,69,255,.10); border: 1px solid rgba(177,136,255,.14); font-size: 11px; font-weight: 850; letter-spacing:.02em; }


.trader-grid { display:grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items:start; }
.toolkit-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.toolkit-grid .feature-card { min-height: 210px; }
.partner-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.partner-grid .benefit-card { min-height: 170px; }

.contact { padding-top: 96px; }
.contact__grid { display:grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items:center; }
.contact__copy { position:relative; }
.contact__copy h2 { margin-top: 12px; }
.contact__copy p { margin-top: 14px; max-width: 360px; }
.contact-lines { display:grid; gap: 14px; margin-top: 32px; max-width: 340px; }
.contact-lines a { display:grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.035); border-radius: 18px; transition: transform .25s ease, border-color .25s ease; }
.contact-lines a:hover { transform: translateX(6px); border-color: var(--line-strong); }
.contact-lines span { grid-row: 1 / span 2; width:48px; height:48px; display:grid; place-items:center; border-radius: 16px; background: rgba(139,69,255,.12); color:#d9b5ff; }
.contact-lines b { font-size: 13px; }
.contact-lines small { color: var(--muted); }
.contact-orb { position:absolute; width: 300px; height: 300px; right: -80px; bottom: -64px; border-radius:50%; border:1px solid rgba(139,69,255,.35); box-shadow: inset 0 0 60px rgba(139,69,255,.12), 0 0 60px rgba(139,69,255,.25); animation: rotateOrb 18s linear infinite; opacity:.7; }
.contact-orb::before, .contact-orb::after { content:""; position:absolute; inset:26px; border:1px solid rgba(72,214,255,.22); border-radius: 47% 53% 42% 58%; transform: rotate(30deg); }
.contact-orb::after { inset:58px; border-color: rgba(255,79,216,.26); transform: rotate(-47deg); }
.contact-card {
  position: relative;
  z-index: 1;
  min-height: 370px;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(177,136,255,.28);
  background:
    radial-gradient(circle at 14% 0%, rgba(139,69,255,.24), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(72,214,255,.15), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.068), rgba(255,255,255,.024));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.09);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: -40% -18% auto;
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(72,214,255,.16), rgba(192,91,255,.14), transparent);
  transform: rotate(10deg);
  animation: dashboardSweep 7.2s ease-in-out infinite;
  pointer-events: none;
}
.contact-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -86px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(72,214,255,.20);
  box-shadow: inset 0 0 60px rgba(139,69,255,.16), 0 0 70px rgba(72,214,255,.10);
  opacity: .78;
}
.contact-card__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #d9c8ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(139,69,255,.14);
  border: 1px solid rgba(177,136,255,.20);
}
.contact-card__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(45,247,177,.72);
}
.contact-card h3,
.contact-card p,
.contact-card__actions,
.contact-card__meta { position: relative; z-index: 1; }
.contact-card h3 { margin-top: 18px; font-size: clamp(28px, 3vw, 44px); line-height: .98; letter-spacing: -.05em; }
.contact-card p { margin-top: 16px; max-width: 520px; color: var(--muted); font-size: 16px; }
.contact-card__actions { display:flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-card__meta { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-top: 32px; }
.contact-card__meta span {
  min-height: 74px;
  padding: 14px;
  border-radius: 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  border: 1px solid rgba(255,255,255,.075);
  background: rgba(3,5,20,.34);
}
.contact-card__meta b { display:block; color:#fff; font-size: 14px; margin-bottom: 4px; }
.contact-form { position:relative; z-index:1; padding: 28px; border-radius: 28px; border: 1px solid rgba(177,136,255,.28); background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025)); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08); }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display:block; color: var(--muted); font-size: 12px; font-weight: 800; margin-bottom: 16px; }
.contact-form label span { display:block; margin-bottom: 8px; }
.contact-form input, .contact-form textarea, .contact-form select { width:100%; border: 1px solid rgba(255,255,255,.10); border-radius: 13px; background: rgba(255,255,255,.045); color:#fff; min-height: 52px; padding: 0 15px; outline:none; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.contact-form textarea { min-height: 118px; padding-top: 14px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: rgba(166,115,255,.7); box-shadow: 0 0 0 4px rgba(139,69,255,.16); background: rgba(255,255,255,.065); }
.contact-form option { background: #0b0920; color: #fff; }

.select-field { position: relative; }
.select-field .native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  inset: auto auto 0 0;
}

.custom-select {
  position: relative;
  isolation: isolate;
  color: #fff;
  user-select: none;
}

.custom-select__trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px 0 16px;
  border-radius: 15px;
  border: 1px solid rgba(177,136,255,.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(139,69,255,.18), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 30px rgba(0,0,0,.18);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.custom-select__trigger::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(72,214,255,.14), rgba(192,91,255,.12), transparent);
  transform: translateX(-100%);
  opacity: 0;
  transition: transform .55s ease, opacity .35s ease;
  pointer-events: none;
}

.custom-select__value {
  font-size: 14px;
  font-weight: 750;
  color: rgba(246,244,255,.92);
}

.custom-select__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: #d7b8ff;
  background: rgba(139,69,255,.13);
  border: 1px solid rgba(177,136,255,.16);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.custom-select__menu {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(177,136,255,.24);
  background:
    radial-gradient(circle at 12% 0%, rgba(139,69,255,.22), transparent 42%),
    linear-gradient(180deg, rgba(18,14,44,.98), rgba(8,7,26,.96));
  box-shadow: 0 24px 70px rgba(0,0,0,.42), 0 0 45px rgba(139,69,255,.18), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(22px);
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  transform-origin: 50% 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.custom-select__option {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px;
  border-radius: 12px;
  color: rgba(246,244,255,.82);
  font-size: 14px;
  font-weight: 750;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.custom-select__option::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  opacity: 0;
  box-shadow: 0 0 14px rgba(139,69,255,.5);
  transition: opacity .18s ease, transform .18s ease;
}

.custom-select__option:hover,
.custom-select__option.is-active {
  color: #fff;
  background: rgba(139,69,255,.16);
  transform: translateX(3px);
}

.custom-select__option.is-selected {
  color: #fff;
  background: linear-gradient(135deg, rgba(139,69,255,.24), rgba(72,214,255,.08));
}

.custom-select__option.is-selected::after { opacity: 1; transform: scale(1.1); }
.custom-select:hover .custom-select__trigger,
.custom-select.is-open .custom-select__trigger,
.custom-select:focus-visible .custom-select__trigger {
  border-color: rgba(177,136,255,.48);
  background:
    radial-gradient(circle at 14% 0%, rgba(139,69,255,.25), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
  box-shadow: 0 0 0 4px rgba(139,69,255,.10), 0 18px 44px rgba(73,29,160,.18), inset 0 1px 0 rgba(255,255,255,.10);
}

.custom-select:hover .custom-select__trigger::before,
.custom-select.is-open .custom-select__trigger::before { opacity: 1; transform: translateX(100%); }
.custom-select.is-open .custom-select__arrow { transform: rotate(180deg); color: #fff; background: rgba(72,214,255,.12); }
.custom-select.is-open .custom-select__menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.form-status { min-height: 24px; margin-top: 12px; text-align:center; color: var(--green); font-weight: 750; }

.footer { border-top: 1px solid rgba(255,255,255,.06); padding: 58px 0 28px; background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,0,0,.2)); }
.footer__grid { display:grid; grid-template-columns: 1.5fr repeat(2, .7fr); gap: 42px; align-items:start; }
.footer__brand p { max-width: 310px; margin-top: 20px; }
.social { width: 38px; height:38px; display:grid; place-items:center; margin-top: 18px; border-radius: 50%; background: rgba(139,69,255,.14); border: 1px solid var(--line); color:#d7b3ff; }
.footer__col { display:grid; gap: 13px; }
.footer__col h3 { color: #9b84d8; text-transform: uppercase; letter-spacing:.1em; font-size: 12px; margin-bottom: 8px; }
.footer__col a { color: var(--muted); font-size: 14px; transition: color .25s ease; }
.footer__col a:hover { color:#fff; }
.footer__bottom { margin-top: 48px; color: var(--muted-2); font-size: 13px; }



.brand, .stat-card, .mockup, .metric, .chart-card, .balance-card, .status-card, .balance-line, .status-line, .step-card, .contact-card, .contact-form, .social, .footer__brand, .footer__col a, .contact-form input, .contact-form textarea, .contact-form select, .custom-select, .custom-select__trigger, .custom-select__option {
  transition: transform .28s cubic-bezier(.2,.75,.25,1), border-color .28s ease, background .28s ease, box-shadow .28s ease, color .28s ease, filter .28s ease;
}

.brand:hover { transform: translateY(-2px); filter: drop-shadow(0 0 18px rgba(139,69,255,.32)); }
.brand:hover .brand__mark { box-shadow: 0 0 34px rgba(139,69,255,.54), inset 0 0 22px rgba(255,255,255,.10); }

.nav a { position: relative; }
.nav a::after { content:""; position:absolute; left:0; right:0; bottom:-8px; height:1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent); transform: scaleX(0); opacity:0; transition: transform .28s ease, opacity .28s ease; }
.nav a:hover::after { transform: scaleX(1); opacity:1; }

.stat-card:hover { transform: translateY(-6px) scale(1.015); border-color: rgba(177,136,255,.45); background: rgba(255,255,255,.06); box-shadow: 0 18px 48px rgba(73,29,160,.22), inset 0 1px 0 rgba(255,255,255,.10); }
.stat-card:hover .stat-card__icon, .feature-card:hover .icon, .benefit-card:hover .icon { transform: translateY(-2px) rotate(-5deg) scale(1.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 34px rgba(139,69,255,.28); }
.stat-card__icon, .icon { transition: transform .32s cubic-bezier(.2,.75,.25,1), box-shadow .32s ease, background .32s ease; }

.mockup:hover { border-color: rgba(177,136,255,.55); box-shadow: var(--shadow), 0 0 110px rgba(93,55,255,.25), inset 0 1px 0 rgba(255,255,255,.18); filter: saturate(1.08); }
.mockup__rail span { transition: transform .28s ease, background .28s ease, border-color .28s ease; }
.mockup:hover .mockup__rail span { transform: translateX(4px); background: rgba(139,69,255,.18); border-color: rgba(177,136,255,.28); }

.metric:hover, .chart-card:hover, .balance-card:hover, .status-card:hover { transform: translateY(-5px); border-color: rgba(177,136,255,.28); background: rgba(255,255,255,.07); box-shadow: 0 16px 36px rgba(0,0,0,.24); }
.balance-line:hover, .status-line:hover { transform: translateX(4px); background: rgba(139,69,255,.08); border-radius: 10px; padding-inline: 8px; }


.transactions-card,
.transactions-card *,
.mini-tx {
  transition: none !important;
}

.transactions-card:hover {
  transform: none !important;
  border-color: rgba(255,255,255,.08) !important;
  background: rgba(3,5,20,.48) !important;
  box-shadow: none !important;
}

.mini-tx:hover {
  transform: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding-inline: 0 !important;
}

.step-card:hover .step-card__icon { animation: pulseIcon 1.2s ease-in-out infinite; }
.contact-card:hover { transform: translateY(-5px); border-color: rgba(177,136,255,.44); box-shadow: 0 30px 90px rgba(73,29,160,.26), inset 0 1px 0 rgba(255,255,255,.10); }
.contact-card:hover .contact-card__meta span { border-color: rgba(177,136,255,.18); background: rgba(255,255,255,.045); }
.contact-form:hover { transform: translateY(-5px); border-color: rgba(177,136,255,.44); box-shadow: 0 30px 90px rgba(73,29,160,.26), inset 0 1px 0 rgba(255,255,255,.10); }
.contact-form input:hover, .contact-form textarea:hover, .contact-form select:hover { border-color: rgba(177,136,255,.42); background: rgba(255,255,255,.06); box-shadow: 0 0 0 3px rgba(139,69,255,.06); }
.social:hover { transform: translateY(-4px) rotate(-8deg) scale(1.08); color:#fff; border-color: var(--line-strong); box-shadow: 0 16px 32px rgba(139,69,255,.24); }
.footer__col a:hover { transform: translateX(4px); }
.btn:active, .feature-card:active, .benefit-card:active, .stat-card:active { transform: scale(.985); }

@keyframes dashboardSweep { 0% { transform: translateX(-58%) rotate(8deg); opacity: 0; } 18% { opacity: .75; } 46% { opacity: .38; } 72%,100% { transform: translateX(58%) rotate(8deg); opacity: 0; } }
@keyframes dashboardAura { 0%,100% { filter: saturate(1) brightness(1); box-shadow: var(--shadow), 0 0 80px rgba(93,55,255,.16), inset 0 1px 0 rgba(255,255,255,.12); } 50% { filter: saturate(1.08) brightness(1.03); box-shadow: var(--shadow), 0 0 108px rgba(93,55,255,.24), 0 0 34px rgba(72,214,255,.08), inset 0 1px 0 rgba(255,255,255,.16); } }
@keyframes logoPulse { 0%,100% { box-shadow: inset 0 0 0 rgba(255,255,255,0), 0 0 0 rgba(72,214,255,0); } 50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 0 24px rgba(139,69,255,.36); } }
@keyframes liveBadgePulse { 0%,100% { border-color: rgba(45,247,177,.18); box-shadow: 0 0 0 rgba(45,247,177,0); } 50% { border-color: rgba(45,247,177,.42); box-shadow: 0 0 20px rgba(45,247,177,.16); } }
@keyframes liveDotBlink { 0%,100% { opacity:.55; transform: scale(.8); } 50% { opacity:1; transform: scale(1.15); } }
@keyframes railNodePulse { 0%,100% { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); box-shadow: none; } 45% { background: rgba(139,69,255,.22); border-color: rgba(72,214,255,.24); box-shadow: 0 0 18px rgba(139,69,255,.22); } }
@keyframes metricBreath { 0%,100% { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.045); } 50% { border-color: rgba(177,136,255,.24); background: rgba(255,255,255,.064); } }
@keyframes tinyValuePulse { 0%,100% { opacity:.82; filter: drop-shadow(0 0 0 rgba(45,247,177,0)); } 50% { opacity:1; filter: drop-shadow(0 0 8px rgba(45,247,177,.32)); } }
@keyframes panelMicroLift { 0%,100% { transform: translateY(0); border-color: rgba(255,255,255,.08); } 50% { transform: translateY(-2px); border-color: rgba(177,136,255,.16); } }
@keyframes lineGlow { 0%,100% { opacity:.76; stroke-dashoffset: 0; } 50% { opacity:1; stroke-dashoffset: -26; } }
@keyframes chartAreaPulse { 0%,100% { opacity:.09; } 50% { opacity:.16; } }
@keyframes txRealtime { 0%,100% { background: transparent; } 45%,55% { background: rgba(72,214,255,.035); } }
@keyframes txSweep { 0%, 62% { transform: translateX(-72%); opacity: 0; } 72% { opacity: .62; } 100% { transform: translateX(72%); opacity: 0; } }
@keyframes statusDotPulse { 0%,100% { transform: scale(.86); box-shadow: 0 0 10px currentColor; } 50% { transform: scale(1.12); box-shadow: 0 0 20px currentColor; } }
@keyframes balanceNumberPulse { 0%,100% { color: #f6f4ff; } 50% { color: #8eeaff; text-shadow: 0 0 12px rgba(72,214,255,.28); } }
@keyframes statusTextPulse { 0%,100% { text-shadow: 0 0 0 rgba(45,247,177,0); } 50% { text-shadow: 0 0 12px rgba(45,247,177,.34); } }
@keyframes pulseIcon { 0%,100% { box-shadow: 0 0 30px rgba(139,69,255,.34); } 50% { box-shadow: 0 0 46px rgba(72,214,255,.45); } }
@keyframes flowFill { 0%, 14% { width: 0%; opacity:.55; } 42% { width: 50%; opacity:1; } 72% { width: 100%; opacity:1; } 100% { width: 100%; opacity:.55; } }
@keyframes flowPacket { 0%, 12% { left: 0%; opacity: 0; transform: translate(-50%, 0) scale(.55); } 18% { opacity: 1; transform: translate(-50%, 0) scale(1); } 46% { left: 50%; opacity: 1; transform: translate(-50%, 0) scale(1); } 76% { left: 100%; opacity: 1; transform: translate(-50%, 0) scale(1); } 92%,100% { left: 100%; opacity: 0; transform: translate(-50%, 0) scale(.55); } }
@keyframes flowRipple { 0% { opacity:.9; transform: scale(.45); } 100% { opacity:0; transform: scale(1.9); } }
@keyframes flowCardActive { 0%, 23%, 100% { border-color: rgba(177,136,255,.14); box-shadow: inset 0 1px 0 rgba(255,255,255,.065); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022)); } 8%, 18% { border-color: rgba(72,214,255,.45); box-shadow: 0 20px 70px rgba(72,214,255,.12), 0 0 52px rgba(139,69,255,.18), inset 0 1px 0 rgba(255,255,255,.10); background: linear-gradient(180deg, rgba(139,69,255,.12), rgba(255,255,255,.026)); } }
@keyframes stepPulse { 0%, 22%, 100% { opacity:0; transform: translate(-50%, -50%) scale(.65); } 8%, 18% { opacity:.9; transform: translate(-50%, -50%) scale(1); } }
@keyframes flowBlob { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(30px,-18px,0) scale(1.08); } }
@keyframes flowFillVertical { 0%, 14% { height: 0%; opacity:.55; } 42% { height: 50%; opacity:1; } 72% { height: 100%; opacity:1; } 100% { height: 100%; opacity:.55; } }
@keyframes flowPacketVertical { 0%, 12% { top: 0%; opacity: 0; transform: translate(-50%, -50%) scale(.55); } 18% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 46% { top: 50%; opacity: 1; transform: translate(-50%, -50%) scale(1); } 76% { top: 100%; opacity: 1; transform: translate(-50%, -50%) scale(1); } 92%,100% { top: 100%; opacity: 0; transform: translate(-50%, -50%) scale(.55); } }


.reveal { opacity: 0; transform: translateY(28px); filter: blur(10px); transition: opacity .75s ease, transform .75s ease, filter .75s ease; }
.reveal.is-visible { opacity:1; transform: translateY(0); filter: blur(0); }
.reveal--delay { transition-delay: .12s; }

@keyframes floatBlob { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(28px,-24px,0) scale(1.08); } }
@keyframes particleDrift { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,-120vh,0); } }
@keyframes floatPanel { 0%,100% { transform: rotateY(-8deg) rotateX(5deg) translateY(0); } 50% { transform: rotateY(-5deg) rotateX(6deg) translateY(-16px); } }
@keyframes floatToken { 0%,100% { transform: translateY(0) rotate(12deg); } 50% { transform: translateY(-24px) rotate(-6deg); } }
@keyframes orbitPulse { 0%,100% { opacity:.48; transform: rotate(-13deg) scale(1); } 50% { opacity:.82; transform: rotate(-9deg) scale(1.04); } }
@keyframes drawLine { from { stroke-dashoffset: 900; } to { stroke-dashoffset: 0; } }
@keyframes rotateOrb { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .flow-track__fill, .flow-packet, .flow-card, .flow-card__pulse, .flow-glow,
  .mockup--hero, .mockup--hero *, .mockup--hero::after { animation: none !important; }
  .flow-track__fill { width: 100%; opacity: .8; }
  .flow-packet { display:none; }
}

@media (max-width: 1180px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 590px; }
  .mockup--hero { margin-inline: auto; }
  .five-cards, .benefit-grid, .toolkit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .backoffice { grid-template-columns: 1fr; }
  .filters-panel { display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .filters-panel h3 { grid-column: 1 / -1; }
  .analytics-panel { display:grid; grid-template-columns: 200px 1fr 1fr; align-items:center; }
  .trader-grid { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .menu-btn { display:block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 18px auto;
    display:grid;
    gap: 0;
    padding: 16px;
    border-radius: 22px;
    background: rgba(8,7,26,.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
    backdrop-filter: blur(18px);
  }
  .nav a { padding: 16px; border-radius: 14px; }
  .nav a:hover { background: rgba(255,255,255,.05); transform:none; }
  body.menu-open .nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .section-heading--inline { display:block; }
  .section-heading--inline .btn { margin-top: 24px; }
  .four-cards, .partner-grid, .footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact__grid { grid-template-columns: 1fr; gap: 34px; }
  .contact-orb { right: 0; opacity: .38; }
  .payment-flow { grid-template-columns: 1fr; gap: 18px; margin-top: 38px; }
  .flow-track { left: 34px; right: auto; top: 34px; bottom: 34px; width:70px; height:auto; }
  .flow-track__base, .flow-track__fill { left:34px; right:auto; top:0; bottom:0; width:2px; height:auto; }
  .flow-track__fill { width:2px; height:0; animation: flowFillVertical 6s cubic-bezier(.35,.02,.18,1) infinite; }
  .flow-packet { left:35px; top:0; animation: flowPacketVertical 6s cubic-bezier(.35,.02,.18,1) infinite; }
  .flow-packet--secondary { left:35px; top:0; }
  .step-card { text-align:left; padding: 24px 24px 24px 106px; }
  .flow-card__pulse { left: 34px; top: 50%; }
  .step-card__icon { left: 34px; top: 50%; transform: translate(-50%, -50%); }
  .step-card p { margin-left: 0; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header__actions .btn { display:none; }
  .hero { padding-top: 64px; }
  h1 { font-size: clamp(42px, 14vw, 62px); }
  h2 { font-size: clamp(30px, 10vw, 44px); }
  .hero__visual { min-height: auto; }
  .mockup--hero { transform: none; animation: none; }
  .mockup__body { grid-template-columns: 1fr; }
  .mockup__rail { display:none; }
  .metric-grid, .hero-dashboard-grid, .summary-grid, .analytics-panel, .filters-panel, .five-cards, .four-cards, .benefit-grid, .toolkit-grid, .partner-grid, .footer__grid, .form-row { grid-template-columns: 1fr; }
  .token, .orbit { display:none; }
  .hero__stats { flex-direction: column; }
  .stat-card { width:100%; }
  .benefit-card { grid-template-columns: 1fr; }
  .benefit-card .icon { margin-bottom: 18px; }
  .backoffice { padding: 12px; border-radius: 22px; }
  .analytics-panel { display:block; }
  .contact-card { padding: 24px; min-height: auto; }
  .contact-card__meta { grid-template-columns: 1fr; }
  .contact-form { padding: 18px; }
  .footer { padding-top: 42px; }
}

/* Floating glass cards in hero */
.glass-constellation {
  position: relative;
  width: min(100%, 720px);
  min-height: 640px;
  margin-left: auto;
  perspective: 1200px;
}
.glass-constellation::before,
.glass-constellation::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
.glass-constellation::before {
  width: 280px;
  height: 280px;
  left: 10%;
  top: 4%;
  background: radial-gradient(circle, rgba(173,124,255,.28), rgba(173,124,255,0));
  animation: glassGlowDrift 8s ease-in-out infinite;
}
.glass-constellation::after {
  width: 320px;
  height: 320px;
  right: 2%;
  bottom: 6%;
  background: radial-gradient(circle, rgba(69,213,255,.18), rgba(69,213,255,0));
  animation: glassGlowDrift 10s ease-in-out infinite reverse;
}
.glass-card {
  position: absolute;
  border: 1px solid rgba(184,145,255,.22);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
    rgba(8, 10, 28, .52);
  box-shadow:
    0 18px 80px rgba(25, 12, 65, .45),
    0 0 0 1px rgba(255,255,255,.035) inset,
    inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(26px) saturate(130%);
  -webkit-backdrop-filter: blur(26px) saturate(130%);
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(193, 114, 255, .16), transparent 34%), radial-gradient(circle at 90% 60%, rgba(69, 213, 255, .12), transparent 28%);
  pointer-events: none;
}
.glass-card::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(255,255,255,.04), rgba(69,213,255,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: .72;
}
.glass-card strong,
.glass-card b { color: #fff; }
.glass-card small,
.glass-card span { color: var(--muted-2); }

.glass-card--main {
  top: 70px;
  left: 70px;
  width: 470px;
  min-height: 360px;
  padding: 22px;
  transform: rotate(-6deg);
}
.glass-card__topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.glass-card__brand {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(156,92,255,.75), rgba(72,214,255,.18));
  box-shadow: 0 0 24px rgba(156,92,255,.28);
}
.glass-card__topbar strong { display:block; font-size: 16px; letter-spacing: -.03em; }
.glass-card__topbar small { display:block; margin-top: 3px; font-size: 12px; }
.glass-live {
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green) !important;
  font-size: 12px;
  font-weight: 900;
  background: rgba(45,247,177,.08);
  border: 1px solid rgba(45,247,177,.2);
  box-shadow: inset 0 0 0 1px rgba(45,247,177,.06);
}
.glass-live::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
  animation: liveDotBlink 1.3s ease-in-out infinite;
}
.glass-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.glass-kpi {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.glass-kpi span { display:block; font-size: 11px; font-weight: 800; }
.glass-kpi b { display:block; margin-top: 8px; font-size: 22px; letter-spacing: -.045em; }
.glass-kpi em { display:block; margin-top: 5px; color: var(--green); font-style: normal; font-size: 11px; font-weight: 900; }
.glass-chart-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(4,8,24,.52);
}
.line-chart--compact { margin-top: 6px; }
.glass-mini-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.glass-mini-head b { font-size: 13px; }
.glass-mini-head span { font-size: 11px; font-weight: 800; }

.glass-card--stat,
.glass-card--side,
.glass-card--ticker {
  padding: 18px;
}
.glass-card--stat {
  top: 20px;
  right: 34px;
  width: 210px;
  min-height: 190px;
  transform: rotate(9deg);
}
.chip {
  display:inline-flex;
  align-items:center;
  gap: 8px;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}
.chip--violet {
  color: #dcbcff;
  background: rgba(166,104,255,.12);
  border: 1px solid rgba(166,104,255,.18);
}
.glass-card--stat strong { display:block; font-size: 14px; }
.glass-card--stat b { display:block; margin-top: 12px; font-size: 34px; letter-spacing: -.055em; }
.glass-card--stat small { display:block; margin-top: 10px; line-height: 1.55; }

.glass-card--side {
  width: 240px;
  min-height: 176px;
}
.glass-card--float-c {
  left: 0;
  bottom: 70px;
  transform: rotate(-10deg);
}
.glass-card--float-d {
  right: 0;
  top: 256px;
  transform: rotate(7deg);
}
.glass-list { display:grid; gap: 12px; }
.glass-list div {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
}
.glass-list div:first-child { padding-top: 0; border-top: 0; }
.glass-list span { color: var(--muted); }
.glass-list b { font-size: 18px; letter-spacing: -.03em; }
.glass-flow {
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.flow-pill {
  display:inline-flex;
  align-items:center;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #f3edff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.glass-card--ticker {
  width: 270px;
  right: 76px;
  bottom: 14px;
  min-height: 150px;
  transform: rotate(-4deg);
}
.glass-ticker { display:grid; gap: 10px; }
.glass-ticker div {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.glass-ticker div:first-child { border-top: 0; padding-top: 0; }
.glass-ticker span { color: #f7f5ff; font-size: 12px; font-weight: 800; }
.glass-ticker b { font-size: 13px; }

.glass-card--float-a { animation: glassFloatA 7.8s ease-in-out infinite; }
.glass-card--float-b { animation: glassFloatB 6.2s ease-in-out infinite; }
.glass-card--float-c { animation: glassFloatC 7.2s ease-in-out infinite; }
.glass-card--float-d { animation: glassFloatD 8.1s ease-in-out infinite; }
.glass-card--float-e { animation: glassFloatE 6.8s ease-in-out infinite; }
.glass-kpi { animation: glassPulse 4.5s ease-in-out infinite; }
.glass-kpi:nth-child(2) { animation-delay: .35s; }
.glass-kpi:nth-child(3) { animation-delay: .7s; }
.glass-flow .flow-pill:nth-child(1) { animation: pillPulse 3.8s ease-in-out infinite; }
.glass-flow .flow-pill:nth-child(2) { animation: pillPulse 3.8s ease-in-out .4s infinite; }
.glass-flow .flow-pill:nth-child(3) { animation: pillPulse 3.8s ease-in-out .8s infinite; }
.glass-flow .flow-pill:nth-child(4) { animation: pillPulse 3.8s ease-in-out 1.2s infinite; }
.glass-card--ticker .glass-ticker div { animation: tickerFade 4.2s ease-in-out infinite; }
.glass-card--ticker .glass-ticker div:nth-child(2) { animation-delay: .35s; }
.glass-card--ticker .glass-ticker div:nth-child(3) { animation-delay: .7s; }

@keyframes glassGlowDrift {
  0%,100% { transform: translate3d(0,0,0) scale(1); opacity: .8; }
  50% { transform: translate3d(26px,-18px,0) scale(1.07); opacity: 1; }
}
@keyframes glassFloatA {
  0%,100% { transform: translate3d(0,0,0) rotate(-6deg); }
  50% { transform: translate3d(0,-18px,0) rotate(-3deg); }
}
@keyframes glassFloatB {
  0%,100% { transform: translate3d(0,0,0) rotate(9deg); }
  50% { transform: translate3d(8px,-16px,0) rotate(6deg); }
}
@keyframes glassFloatC {
  0%,100% { transform: translate3d(0,0,0) rotate(-10deg); }
  50% { transform: translate3d(10px,-14px,0) rotate(-6deg); }
}
@keyframes glassFloatD {
  0%,100% { transform: translate3d(0,0,0) rotate(7deg); }
  50% { transform: translate3d(-8px,-18px,0) rotate(4deg); }
}
@keyframes glassFloatE {
  0%,100% { transform: translate3d(0,0,0) rotate(-4deg); }
  50% { transform: translate3d(10px,-16px,0) rotate(-1deg); }
}
@keyframes glassPulse {
  0%,100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 rgba(69,213,255,0); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 20px rgba(69,213,255,.08); }
}
@keyframes pillPulse {
  0%,100% { transform: translateY(0); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
  50% { transform: translateY(-4px); box-shadow: 0 10px 22px rgba(72,214,255,.12), inset 0 1px 0 rgba(255,255,255,.09); }
}
@keyframes tickerFade {
  0%,100% { opacity: .72; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .glass-constellation::before,
  .glass-constellation::after,
  .glass-card,
  .glass-card * {
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .glass-constellation { margin-inline: auto; }
}

@media (max-width: 720px) {
  .glass-constellation {
    width: 100%;
    min-height: auto;
    display: grid;
    gap: 14px;
  }
  .glass-card {
    position: relative;
    inset: auto !important;
    width: 100% !important;
    min-height: auto;
    transform: none !important;
    animation: none !important;
  }
  .glass-card--main,
  .glass-card--stat,
  .glass-card--side,
  .glass-card--ticker { padding: 18px; }
  .glass-kpi-grid { grid-template-columns: 1fr; }
  .glass-constellation::before,
  .glass-constellation::after { display: none; }
}

/* Final polish: hidden native scrollbar + consistent custom cursor */
html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent !important;
}

@media (hover: hover) and (pointer: fine) {
  *,
  *::before,
  *::after,
  a,
  button,
  input,
  textarea,
  select,
  option,
  label,
  summary,
  [role="button"],
  [tabindex],
  .btn,
  .nav a,
  .brand,
  .menu-btn,
  .feature-card,
  .benefit-card,
  .step-card,
  .glass-card,
  .custom-select,
  .select-trigger,
  .select-option,
  .magnetic {
    cursor: none !important;
  }
}

@media (hover: none), (pointer: coarse) {
  *,
  *::before,
  *::after {
    cursor: auto !important;
  }
}

/* Premium mobile adaptation */
@media (max-width: 920px) {
  :root {
    --header-h: 68px;
    --radius: 20px;
    --radius-lg: 26px;
  }

  body {
    min-width: 320px;
    overflow-x: clip;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header {
    height: var(--header-h);
    background: rgba(3, 2, 11, .74);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
  }

  .header__inner {
    gap: 12px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .brand__text {
    font-size: 15px;
  }

  .menu-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    background: rgba(255,255,255,.045);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  }

  .menu-btn::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(139,69,255,.42), rgba(72,214,255,.16), transparent 62%);
    opacity: .5;
    z-index: -1;
  }

  .nav {
    inset: calc(var(--header-h) + 10px) 14px auto;
    width: auto;
    padding: 12px;
    gap: 6px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 12% 0%, rgba(139,69,255,.22), transparent 42%),
      linear-gradient(180deg, rgba(12, 9, 33, .96), rgba(5, 4, 18, .94));
    border-color: rgba(177,136,255,.22);
    box-shadow: 0 26px 80px rgba(0,0,0,.52), 0 0 70px rgba(139,69,255,.15);
  }

  .nav::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,.11), transparent 38%, rgba(72,214,255,.08));
  }

  .nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-radius: 16px;
    color: rgba(246,244,255,.86);
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.055);
  }

  .nav a::after {
    content: "→";
    color: #bfa3ff;
    opacity: .72;
  }

  .header__actions .btn {
    display: none;
  }

  .section,
  .section--compact,
  .contact {
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 74px;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero__copy {
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
    margin-bottom: 18px;
  }

  h1 {
    margin-inline: auto;
    max-width: 720px;
    font-size: clamp(44px, 10vw, 78px);
    line-height: .95;
  }

  .hero__lead {
    max-width: 620px;
    margin-inline: auto;
    font-size: 16px;
  }

  .hero__buttons {
    justify-content: center;
    margin-top: 28px;
  }

  .hero__stats {
    justify-content: center;
    margin-top: 34px;
  }

  .stat-card {
    min-width: 0;
    flex: 1 1 180px;
    max-width: 220px;
  }

  .hero__visual {
    min-height: auto;
  }

  .glass-constellation {
    width: min(100%, 680px);
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-inline: auto;
    perspective: none;
  }

  .glass-card {
    position: relative;
    inset: auto !important;
    width: auto !important;
    min-width: 0;
    min-height: auto;
    transform: none !important;
  }

  .glass-card--main {
    grid-column: 1 / -1;
    padding: 18px;
  }

  .glass-card--ticker {
    grid-column: 1 / -1;
  }

  .glass-card--stat,
  .glass-card--side,
  .glass-card--ticker {
    padding: 16px;
  }

  .glass-kpi-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .glass-kpi b {
    font-size: 18px;
  }

  .glass-card--stat b {
    font-size: 28px;
  }

  .token--cube {
    left: 5%;
    bottom: 44px;
    opacity: .72;
    transform: scale(.82) rotate(14deg);
  }

  .token--coin {
    left: auto;
    right: 5%;
    bottom: 28px;
    opacity: .72;
    transform: scale(.82);
  }

  .orbit--one,
  .orbit--two {
    opacity: .32;
  }

  .section-heading,
  .section-heading--inline {
    text-align: center;
    margin-inline: auto;
  }

  .section-heading p,
  .section-heading__lead {
    margin-inline: auto;
  }

  .section-heading--inline .btn {
    margin-inline: auto;
  }

  .five-cards,
  .four-cards,
  .benefit-grid,
  .toolkit-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .benefit-card {
    min-height: 0;
    padding: 20px;
    border-radius: 20px;
  }

  .icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    margin-bottom: 16px;
  }

  .payment-flow {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .flow-track {
    left: 32px;
    right: auto;
    top: 32px;
    bottom: 32px;
    width: 64px;
    height: auto;
  }

  .flow-track__base,
  .flow-track__fill {
    left: 32px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .flow-track__fill {
    width: 2px;
    height: 0;
    animation: flowFillVertical 6s cubic-bezier(.35,.02,.18,1) infinite;
  }

  .flow-packet,
  .flow-packet--secondary {
    left: 33px;
    top: 0;
    animation-name: flowPacketVertical;
  }

  .step-card {
    min-height: 154px;
    padding: 22px 20px 22px 92px;
    text-align: left;
    border-radius: 22px;
  }

  .step-card__icon,
  .flow-card__pulse {
    left: 32px;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .step-card p {
    max-width: none;
    margin-left: 0;
  }

  .step-card small {
    margin-top: 14px;
  }

  .trader-grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__copy {
    text-align: center;
  }

  .contact__copy p,
  .contact-lines {
    margin-inline: auto;
  }

  .contact-lines a:hover {
    transform: translateY(-3px);
  }

  .contact-orb {
    right: 50%;
    transform: translateX(50%);
    bottom: -110px;
    opacity: .28;
  }

  .contact-card {
    min-height: auto;
    padding: 28px;
    border-radius: 26px;
  }

  .contact-card h3 {
    font-size: clamp(28px, 7vw, 42px);
  }

  .contact-card__actions .btn {
    flex: 1 1 190px;
  }

  .footer__grid {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section,
  .section--compact,
  .contact {
    padding: 58px 0;
  }

  .hero {
    padding: 42px 0 60px;
  }

  .hero__copy {
    text-align: left;
  }

  .eyebrow {
    justify-content: flex-start;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 60px);
    margin-inline: 0;
    letter-spacing: -.065em;
  }

  h2 {
    font-size: clamp(31px, 9vw, 43px);
    letter-spacing: -.055em;
  }

  .hero__lead,
  .section-heading p,
  .contact-card p,
  p {
    font-size: 15px;
    line-height: 1.62;
  }

  .hero__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero__buttons .btn,
  .contact-card__actions .btn,
  .section-heading--inline .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stat-card {
    max-width: none;
    width: 100%;
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .glass-constellation {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .glass-card {
    border-radius: 20px;
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    box-shadow: 0 16px 54px rgba(18, 8, 52, .42), inset 0 1px 0 rgba(255,255,255,.12);
  }

  .glass-card--main {
    grid-column: 1 / -1;
    padding: 16px;
  }

  .glass-card--stat,
  .glass-card--side {
    padding: 14px;
  }

  .glass-card--ticker {
    grid-column: 1 / -1;
    padding: 14px;
  }

  .glass-card__topbar {
    gap: 10px;
  }

  .glass-card__brand {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .glass-live {
    padding: 7px 10px;
  }

  .glass-kpi-grid {
    grid-template-columns: 1fr;
  }

  .glass-kpi {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 4px 10px;
    padding: 12px;
  }

  .glass-kpi span {
    grid-column: 1 / -1;
  }

  .glass-kpi b {
    margin-top: 2px;
    font-size: 20px;
  }

  .glass-kpi em {
    margin-top: 0;
  }

  .glass-chart-card {
    padding: 12px;
    border-radius: 18px;
  }

  .line-chart--compact {
    max-height: 150px;
  }

  .glass-card--stat strong,
  .glass-mini-head b {
    font-size: 12px;
  }

  .glass-card--stat b {
    font-size: 24px;
  }

  .glass-card--stat small {
    font-size: 12px;
  }

  .glass-list div,
  .glass-ticker div {
    font-size: 12px;
  }

  .glass-list b,
  .glass-ticker b {
    font-size: 12px;
  }

  .flow-pill {
    padding: 8px 9px;
    font-size: 11px;
    border-radius: 12px;
  }

  .section-heading,
  .section-heading--inline,
  .contact__copy {
    text-align: left;
  }

  .section-heading p,
  .section-heading__lead,
  .contact__copy p,
  .contact-lines {
    margin-inline: 0;
  }

  .five-cards,
  .four-cards,
  .benefit-grid,
  .toolkit-grid,
  .partner-grid,
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card,
  .benefit-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 18px;
  }

  .feature-card .icon,
  .benefit-card .icon {
    grid-row: 1 / span 2;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .feature-card h3,
  .benefit-card h3 {
    margin-top: 0;
  }

  .feature-card p,
  .benefit-card p {
    grid-column: 2;
    margin-top: 8px;
  }

  .step-card {
    padding: 20px 18px 20px 86px;
    min-height: 148px;
  }

  .step-card strong {
    font-size: 42px;
  }

  .step-card h3 {
    font-size: 17px;
  }

  .step-card p {
    font-size: 14px;
  }

  .contact-lines {
    max-width: none;
  }

  .contact-lines a {
    grid-template-columns: 44px 1fr;
    padding: 12px;
    border-radius: 16px;
  }

  .contact-lines span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .contact-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-card__meta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .contact-card__meta span {
    min-height: 0;
  }

  .footer {
    padding-top: 48px;
  }

  .footer__grid {
    text-align: left;
  }

  .footer__brand p {
    max-width: 280px;
  }

  .footer__bottom {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 18px, var(--container));
  }

  h1 {
    font-size: clamp(38px, 14vw, 52px);
  }

  .btn {
    padding-inline: 16px;
  }

  .glass-constellation {
    grid-template-columns: 1fr;
  }

  .glass-card--main,
  .glass-card--ticker,
  .glass-card--stat,
  .glass-card--side {
    grid-column: auto;
  }

  .glass-card--float-d .glass-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .feature-card,
  .benefit-card {
    grid-template-columns: 1fr;
  }

  .feature-card .icon,
  .benefit-card .icon,
  .feature-card p,
  .benefit-card p {
    grid-column: auto;
  }

  .feature-card .icon,
  .benefit-card .icon {
    margin-bottom: 14px;
  }

  .step-card {
    padding-left: 78px;
  }

  .step-card__icon,
  .flow-card__pulse {
    left: 29px;
  }

  .flow-track,
  .flow-track__base,
  .flow-track__fill {
    left: 29px;
  }

  .flow-packet,
  .flow-packet--secondary {
    left: 30px;
  }
}
