/* ================================================================
   Centron Strategy v6.0 — ULTRA-PREMIUM 8K FINTECH
   Olymptrade-Inspired · GSAP Pro · 3D Canvas · Retina-Ready
   ================================================================ */
@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #020508;
  --bg2: #040b12;
  --bg3: #061018;
  --glass: rgba(6, 14, 30, 0.72);
  --glass2: rgba(8, 18, 40, 0.6);
  --blue: #1d6ef5;
  --blue2: #3b82f6;
  --blue3: #60a5fa;
  --green: #00e676;
  --green2: #22c55e;
  --green3: #16a34a;
  --red: #ff3d57;
  --gold: #f59e0b;
  --text: #e2efff;
  --text2: #6a90b0;
  --text3: #2e4a60;
  --border: rgba(29, 110, 245, 0.14);
  --border-g: rgba(0, 230, 118, 0.2);
  --glow-g: 0 0 40px rgba(0, 230, 118, 0.3);
  --glow-b: 0 0 40px rgba(29, 110, 245, 0.3);
  --r: 16px;
  --r2: 22px;
  --r3: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 68px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.nav-open {
  overflow: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Exo 2", sans-serif;
  font-weight: 800;
  line-height: 1.12;
}
.orb {
  font-family: "Orbitron", monospace !important;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: inline-block;
}
button {
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  border: none;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue), var(--green));
  border-radius: 3px;
}

/* ── CURSOR ─────────────────────────────────────────────────── */
.cursor,
.cursor-ring,
.cursor-glow {
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 7px;
  height: 7px;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  mix-blend-mode: screen;
  transition:
    width 0.15s,
    height 0.15s,
    background 0.2s;
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(0, 230, 118, 0.4);
  transition:
    width 0.25s var(--spring),
    height 0.25s var(--spring);
}
.cursor-glow {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.06), transparent 70%);
  transition:
    width 0.4s,
    height 0.4s,
    opacity 0.4s;
  opacity: 0.5;
}

/* ── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition:
    opacity 0.8s var(--ease),
    visibility 0.8s;
}
#preloader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pre-logo-wrap {
  position: relative;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pre-logo {
  width: 86px;
  height: 30px;
  position: relative;
  z-index: 2;
  animation: logo-pulse 2s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 14px rgba(29, 110, 245, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 32px rgba(0, 230, 118, 0.9));
  }
}
.pre-r1,
.pre-r2,
.pre-r3 {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: transparent;
}
.pre-r1 {
  inset: -12px;
  border-width: 2px;
  border-top-color: var(--green);
  border-right-color: var(--blue);
  animation: spin 1.1s linear infinite;
}
.pre-r2 {
  inset: -26px;
  border-width: 1.5px;
  border-bottom-color: rgba(0, 230, 118, 0.4);
  border-left-color: rgba(29, 110, 245, 0.4);
  animation: spin 2s linear infinite reverse;
}
.pre-r3 {
  inset: -42px;
  border-width: 1px;
  border-top-color: rgba(0, 230, 118, 0.12);
  border-right-color: rgba(29, 110, 245, 0.08);
  animation: spin 3.5s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.pre-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 260px;
}
.pre-bar {
  width: 100%;
  height: 2px;
  background: rgba(29, 110, 245, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transition: width 0.12s linear;
  border-radius: 2px;
}
.pre-pct {
  font-family: "Orbitron", monospace;
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.14em;
}
.pre-txt {
  font-family: "Orbitron", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  color: var(--text2);
  animation: blink 1.3s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR — GLASSMORPHIC PREMIUM
   ══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 40px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.45s var(--smooth);
}
#navbar.solid {
  background: rgba(2, 5, 12, 0.92);
  backdrop-filter: blur(32px) saturate(1.8);
  -webkit-backdrop-filter: blur(32px) saturate(1.8);
  border-bottom-color: rgba(29, 110, 245, 0.08);
  box-shadow:
    0 4px 60px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.02) inset;
  height: 60px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(29, 110, 245, 0.5));
  transition:
    filter 0.3s,
    transform 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 20px rgba(0, 230, 118, 0.7));
  transform: scale(1.04);
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.25s,
    background 0.25s;
  user-select: none;
}
.nav-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s var(--spring);
}
.nav-item:hover > .nav-link {
  color: var(--text);
  background: rgba(29, 110, 245, 0.08);
}
.nav-item:hover > .nav-link svg {
  transform: rotate(180deg);
}
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px) scale(0.96);
  min-width: 220px;
  background: rgba(3, 7, 18, 0.97);
  backdrop-filter: blur(40px) saturate(2);
  -webkit-backdrop-filter: blur(40px) saturate(2);
  border: 1px solid rgba(29, 110, 245, 0.12);
  border-radius: 16px;
  padding: 8px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s var(--smooth),
    visibility 0.25s;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text2);
  transition:
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.dropdown a:hover {
  color: var(--text);
  background: rgba(0, 230, 118, 0.07);
  transform: translateX(3px);
}
.dropdown .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(29, 110, 245, 0.07);
  border: 1px solid rgba(29, 110, 245, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.dropdown a:hover .ico {
  background: rgba(0, 230, 118, 0.08);
  border-color: rgba(0, 230, 118, 0.18);
  transform: scale(1.08);
}
.dropdown .ico img {
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-nav-in {
  padding: 8px 22px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text2);
  background: transparent;
  border: 1px solid rgba(29, 110, 245, 0.24);
  transition: all 0.25s;
}
.btn-nav-in:hover {
  color: var(--text);
  background: rgba(29, 110, 245, 0.1);
  border-color: var(--blue2);
  transform: translateY(-1px);
}
.btn-nav-up {
  padding: 8px 22px;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--green3), var(--green));
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 22px rgba(0, 230, 118, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-nav-up:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.5);
}
.btn-nav-up::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-nav-up:hover::after {
  transform: translateX(100%);
}

/* Hamburger — larger tap target */
.ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s;
  margin-left: 4px;
  -webkit-tap-highlight-color: transparent;
}
.ham:hover {
  background: rgba(29, 110, 245, 0.1);
}
.ham span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s var(--spring);
  display: block;
  transform-origin: center;
}
.ham.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ham.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE NAV — FULL-SCREEN OVERLAY + ACCORDION
   ══════════════════════════════════════════════════════════════ */
.mob-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: rgba(2, 4, 10, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s var(--smooth),
    visibility 0.35s;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.mob-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mob-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 9999;
  background: rgba(29, 110, 245, 0.07);
  border: 1px solid rgba(29, 110, 245, 0.18);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.mob-close:hover,
.mob-close:active {
  background: rgba(255, 61, 87, 0.12);
  border-color: rgba(255, 61, 87, 0.3);
  color: var(--red);
  transform: rotate(90deg);
}
.mob-logo {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(29, 110, 245, 0.08);
}
.mob-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  flex: 1;
}
.mob-menu > li > a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text2);
  border: 1px solid transparent;
  transition: all 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.mob-menu > li > a:hover,
.mob-menu > li > a:active {
  color: var(--text);
  background: rgba(29, 110, 245, 0.06);
  border-color: rgba(29, 110, 245, 0.1);
}

/* Accordion toggle */
.mob-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text2);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.mob-dropdown-toggle:hover,
.mob-dropdown-toggle:active,
.mob-dropdown.open > .mob-dropdown-toggle {
  color: var(--text);
  background: rgba(29, 110, 245, 0.06);
  border-color: rgba(29, 110, 245, 0.1);
}
.mob-chev {
  transition: transform 0.35s var(--spring);
  flex-shrink: 0;
  color: var(--blue3);
  width: 16px;
  height: 16px;
}
.mob-dropdown.open > .mob-dropdown-toggle .mob-chev {
  transform: rotate(180deg);
  color: var(--green);
}

/* Accordion sub-menu */
.mob-dropdown-menu {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--smooth);
  padding-left: 14px;
}
.mob-dropdown.open > .mob-dropdown-menu {
  max-height: 500px;
}
.mob-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.87rem;
  color: var(--text2);
  transition: all 0.2s;
  border: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
}
.mob-dropdown-menu li a:hover,
.mob-dropdown-menu li a:active {
  color: var(--text);
  background: rgba(0, 230, 118, 0.05);
  border-color: rgba(0, 230, 118, 0.1);
  transform: translateX(4px);
}
.mob-dropdown-menu li a img {
  flex-shrink: 0;
  border-radius: 4px;
}
.mob-btns {
  display: flex;
  gap: 12px;
  margin: 8px 20px 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(29, 110, 245, 0.08);
}
.mob-btns .btn-nav-in,
.mob-btns .btn-nav-up {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

/* ── TICKER ─────────────────────────────────────────────────── */
#ticker {
  position: relative;
  overflow: hidden;
  background: rgba(3, 7, 16, 1);
  border-bottom: 1px solid rgba(0, 230, 118, 0.08);
  margin-top: var(--nav-h);
  height: 44px;
  display: flex;
  align-items: center;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 14px 0 18px;
  font-family: "Orbitron", monospace;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #000;
  background: var(--green);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 6px 0 24px rgba(0, 230, 118, 0.3);
  z-index: 3;
  white-space: nowrap;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  animation: blink 0.9s ease-in-out infinite;
}
.ticker-fade-r {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(270deg, rgba(3, 7, 16, 1), transparent);
  pointer-events: none;
  z-index: 2;
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker-scroll 60s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-right: 1px solid rgba(29, 110, 245, 0.06);
  font-size: 0.75rem;
  height: 44px;
  transition: background 0.2s;
}
.ticker-item:hover {
  background: rgba(29, 110, 245, 0.04);
}
.t-sym {
  font-family: "Orbitron", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--blue3);
  letter-spacing: 0.04em;
  min-width: 58px;
}
.t-price {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  min-width: 68px;
}
.t-chg {
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 54px;
}
.t-chg.up {
  color: var(--green);
}
.t-chg.dn {
  color: var(--red);
}
@keyframes skel-shine {
  0% {
    background-position: 200%;
  }
  100% {
    background-position: -200%;
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO — 8K CINEMATIC
   ══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.ho1 {
  width: clamp(500px, 70vw, 900px);
  height: clamp(400px, 55vw, 700px);
  right: -8%;
  top: -5%;
  background: radial-gradient(
    ellipse,
    rgba(0, 230, 118, 0.045),
    transparent 65%
  );
  animation: orb-drift 12s ease-in-out infinite;
}
.ho2 {
  width: clamp(400px, 50vw, 650px);
  height: clamp(350px, 42vw, 550px);
  right: 8%;
  top: 8%;
  background: radial-gradient(
    ellipse,
    rgba(29, 110, 245, 0.06),
    transparent 60%
  );
  animation: orb-drift 16s ease-in-out infinite 2s;
}
.ho3 {
  width: clamp(250px, 32vw, 400px);
  height: clamp(250px, 32vw, 400px);
  left: 2%;
  bottom: 10%;
  background: radial-gradient(
    circle,
    rgba(0, 230, 118, 0.035),
    transparent 60%
  );
  animation: orb-drift 20s ease-in-out infinite 5s;
}
@keyframes orb-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(14px, -14px) scale(1.05);
  }
}
.hero-scanline {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(29, 110, 245, 0.01) 2px,
    rgba(29, 110, 245, 0.01) 4px
  );
  opacity: 0.4;
}
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px clamp(16px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 11px;
  border-radius: 24px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.2);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}
.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #00e676, #4eff9a 50%, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(0, 230, 118, 0.45));
}
.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0d5f2a, var(--green3), var(--green));
  background-size: 260%;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 28px rgba(0, 230, 118, 0.35),
    0 4px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform 0.25s var(--spring),
    box-shadow 0.25s,
    background-position 0.5s;
  animation: btn-glow 4s ease-in-out infinite;
}
@keyframes btn-glow {
  0%,
  100% {
    box-shadow:
      0 0 24px rgba(0, 230, 118, 0.3),
      0 4px 18px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow:
      0 0 60px rgba(0, 230, 118, 0.6),
      0 4px 18px rgba(0, 0, 0, 0.25);
  }
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100%;
  box-shadow:
    0 0 70px rgba(0, 230, 118, 0.7),
    0 8px 30px rgba(0, 0, 0, 0.35);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary img,
.btn-ghost img {
  flex-shrink: 0;
}
.btn-ghost {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(29, 110, 245, 0.04);
  border: 1px solid rgba(29, 110, 245, 0.25);
  transition: all 0.25s var(--smooth);
}
.btn-ghost:hover {
  background: rgba(29, 110, 245, 0.1);
  border-color: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(29, 110, 245, 0.18);
}
.hero-stats {
  display: flex;
  gap: clamp(18px, 3vw, 32px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(29, 110, 245, 0.08);
  flex-wrap: wrap;
}
.hstat-val {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hstat-lbl {
  font-size: 0.7rem;
  color: var(--text2);
  margin-top: 5px;
  letter-spacing: 0.04em;
}

/* ── 3D Dashboard ────────────────────────────────────────────── */
.hero-right {
  position: relative;
}
.dash-3d {
  position: relative;
  transform: perspective(1100px) rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s var(--ease);
}
.dash-card {
  background: rgba(6, 14, 32, 0.88);
  backdrop-filter: blur(28px) saturate(1.6);
  -webkit-backdrop-filter: blur(28px) saturate(1.6);
  border: 1px solid rgba(29, 110, 245, 0.18);
  border-radius: var(--r2);
  padding: 22px;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 60px rgba(29, 110, 245, 0.05);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.dash-pair {
  font-family: "Orbitron", monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 230, 118, 0.07);
  border: 1px solid rgba(0, 230, 118, 0.18);
  padding: 3px 11px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blink 0.9s ease-in-out infinite;
  flex-shrink: 0;
}
.dash-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 9px;
}
.dash-price {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.1rem, 2.5vw, 1.38rem);
  font-weight: 800;
  color: var(--green);
}
.dash-change {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 6px;
}
.dash-trade {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}
.btn-buy,
.btn-sell {
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-family: "Orbitron", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s var(--spring),
    box-shadow 0.2s;
}
.btn-buy {
  background: linear-gradient(135deg, #0d5f2a, var(--green));
  color: #fff;
  box-shadow: 0 4px 22px rgba(0, 230, 118, 0.28);
}
.btn-sell {
  background: linear-gradient(135deg, #8b1a1a, var(--red));
  color: #fff;
  box-shadow: 0 4px 22px rgba(255, 61, 87, 0.28);
}
.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 230, 118, 0.45);
}
.btn-sell:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 61, 87, 0.45);
}
.btn-lbl {
  display: block;
  font-size: 0.56rem;
  opacity: 0.55;
  margin-top: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
}
.hf {
  position: absolute;
  background: rgba(4, 9, 22, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(29, 110, 245, 0.16);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  pointer-events: none;
  will-change: transform;
}
.hf-1 {
  top: -28px;
  right: -24px;
  border-color: rgba(0, 230, 118, 0.22);
}
.hf-2 {
  bottom: 24px;
  left: -32px;
}
.hf-3 {
  top: 50%;
  left: -44px;
  transform: translateY(-50%);
}
.hf-lbl {
  font-size: 0.6rem;
  color: var(--text2);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.hf-val {
  font-family: "Orbitron", monospace;
  font-size: 0.88rem;
  font-weight: 700;
}
.hf-val.g {
  color: var(--green);
}
.hf-val.b {
  color: var(--blue3);
}
.hf-sub {
  font-size: 0.6rem;
  margin-top: 3px;
}
.hf-bars {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  margin-top: 6px;
}
.hf-bar {
  width: 4px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.75;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.65rem;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
.scroll-mouse {
  width: 20px;
  height: 30px;
  border-radius: 10px;
  border: 1.5px solid rgba(29, 110, 245, 0.25);
}
.scroll-mouse::after {
  content: "";
  display: block;
  width: 3px;
  height: 5px;
  margin: 5px auto 0;
  border-radius: 2px;
  background: var(--blue3);
  animation: mouse-fall 2.5s ease-in-out infinite;
}
@keyframes mouse-fall {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS — PREMIUM BASE
   ══════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 40px);
}
.inner {
  max-width: 1320px;
  margin: 0 auto;
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.sec-label::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--green), transparent);
  border-radius: 2px;
}
.sec-label::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.sec-title {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.sec-title .g {
  background: linear-gradient(135deg, var(--green), #4eff9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-title .b {
  background: linear-gradient(135deg, var(--blue2), var(--blue3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-sub {
  color: var(--text2);
  max-width: 540px;
  line-height: 1.8;
  font-size: 0.93rem;
}
.tc {
  text-align: center;
}
.tc .sec-sub,
.tc .sec-label {
  margin-left: auto;
  margin-right: auto;
}
.tc .sec-label {
  justify-content: center;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(29, 110, 245, 0.2) 30%,
    rgba(0, 230, 118, 0.2) 70%,
    transparent
  );
}
.lazy-section {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--smooth),
    transform 0.8s var(--smooth);
}
.lazy-section.revealed {
  opacity: 1;
  transform: translateY(0);
}
.skel-card {
  background: linear-gradient(
    145deg,
    rgba(8, 16, 36, 0.9),
    rgba(4, 10, 22, 0.8)
  );
  border: 1px solid rgba(29, 110, 245, 0.08);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.skel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 25%,
    rgba(29, 110, 245, 0.05) 50%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: skel-shine 1.6s linear infinite;
}
.skel-line {
  height: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  background: rgba(29, 110, 245, 0.08);
}
.skel-line.w60 {
  width: 60%;
}
.skel-line.w80 {
  width: 80%;
}
.skel-line.w40 {
  width: 40%;
}

/* ── MARKET CARDS ────────────────────────────────────────────── */
#market {
  background: var(--bg2);
}
#market .inner > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
#marketCards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.market-card {
  background: linear-gradient(
    150deg,
    rgba(7, 15, 34, 0.92),
    rgba(4, 10, 22, 0.85)
  );
  border: 1px solid rgba(29, 110, 245, 0.1);
  border-radius: var(--r3);
  padding: 18px 16px;
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--smooth);
}
.market-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 230, 118, 0.25),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.market-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 230, 118, 0.22);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(0, 230, 118, 0.05);
}
.market-card:hover::before {
  opacity: 1;
}
.mc-sym {
  font-family: "Orbitron", monospace;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--blue3);
  margin-bottom: 7px;
  letter-spacing: 0.05em;
}
.mc-price {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.mc-chg {
  font-size: 0.73rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}
.mc-chg.up {
  color: var(--green);
}
.mc-chg.dn {
  color: var(--red);
}
.mc-spark {
  height: 32px;
  margin-top: 10px;
  overflow: hidden;
  position: relative;
}
.mc-spark svg {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 32px !important;
  display: block;
}
.mc-spark canvas {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES — 3D CANVAS CARDS
   ══════════════════════════════════════════════════════════════ */
#features {
  background: var(--bg2);
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 58px;
}
.feat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    152deg,
    rgba(7, 15, 34, 0.93),
    rgba(4, 10, 22, 0.78)
  );
  border: 1px solid rgba(29, 110, 245, 0.1);
  border-radius: var(--r);
  padding: 32px 24px;
  transition: all 0.5s var(--smooth);
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--smooth);
}
.feat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: radial-gradient(
    circle at 50% 0,
    rgba(0, 230, 118, 0.05),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.feat-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(0, 230, 118, 0.06);
  border-color: var(--border-g);
}
.feat-card:hover::before {
  transform: scaleX(1);
}
.feat-card:hover::after {
  opacity: 1;
}
.feat-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  transition: opacity 0.5s;
}
.feat-card:hover .feat-canvas-wrap {
  opacity: 0.55;
}
.feat-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.feat-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(29, 110, 245, 0.1),
    rgba(0, 230, 118, 0.06)
  );
  border: 1px solid rgba(29, 110, 245, 0.16);
  transition: all 0.4s var(--spring);
  position: relative;
  z-index: 1;
}
.feat-icon img {
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0, 230, 118, 0.3));
}
.feat-card:hover .feat-icon {
  box-shadow: 0 0 28px rgba(0, 230, 118, 0.25);
  transform: scale(1.12) rotate(-4deg);
  border-color: rgba(0, 230, 118, 0.28);
}
.feat-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feat-desc {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   INSTRUMENTS — 3D CANVAS + LARGE ICONS
   ══════════════════════════════════════════════════════════════ */
#instruments {
  background: var(--bg);
}
.inst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 58px;
}
.inst-card {
  background: linear-gradient(
    160deg,
    rgba(7, 15, 34, 0.93),
    rgba(4, 10, 22, 0.82)
  );
  border: 1px solid rgba(29, 110, 245, 0.1);
  border-radius: var(--r2);
  padding: 36px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--smooth);
}
.inst-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r2);
  background: linear-gradient(
    160deg,
    rgba(0, 230, 118, 0.04),
    rgba(29, 110, 245, 0.03)
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.inst-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: rgba(0, 230, 118, 0.28);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(0, 230, 118, 0.08);
}
.inst-card:hover::after {
  opacity: 1;
}
.inst-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  transition: opacity 0.5s;
}
.inst-card:hover .inst-canvas-wrap {
  opacity: 0.5;
}
.inst-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.inst-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle,
    rgba(0, 230, 118, 0.1),
    rgba(29, 110, 245, 0.06)
  );
  border: 2px solid rgba(0, 230, 118, 0.16);
  box-shadow:
    0 0 36px rgba(0, 230, 118, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--spring);
  position: relative;
  z-index: 1;
}
.inst-icon img {
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 230, 118, 0.35));
}
.inst-card:hover .inst-icon {
  transform: scale(1.18) translateY(-5px);
  box-shadow: 0 0 60px rgba(0, 230, 118, 0.28);
}
.inst-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
}
.inst-desc {
  font-size: 0.83rem;
  color: var(--text2);
  line-height: 1.68;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.inst-pairs {
  font-size: 0.7rem;
  color: var(--text3);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.inst-pairs span {
  color: var(--blue3);
  font-weight: 600;
}
.btn-inst {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--green3), var(--green));
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.22);
  transition: all 0.3s var(--spring);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-inst::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-inst:hover {
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.48);
  transform: scale(1.04);
}
.btn-inst:hover::before {
  transform: translateX(100%);
}

/* ── ABOUT ──────────────────────────────────────────────────── */
#about {
  background: var(--bg2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.astat {
  background: linear-gradient(
    145deg,
    rgba(7, 15, 34, 0.86),
    rgba(4, 10, 22, 0.65)
  );
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  cursor: default;
  transition: all 0.4s var(--smooth);
}
.astat:hover {
  border-color: var(--border-g);
  transform: translateY(-5px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(0, 230, 118, 0.06);
}
.astat-num {
  font-family: "Orbitron", monospace;
  font-size: 1.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), #4eff9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.astat-lbl {
  font-size: 0.72rem;
  color: var(--text2);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.ab-card {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.55),
    var(--glow-b);
}
.ab-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.ab-card-title {
  font-weight: 600;
  font-size: 0.88rem;
}
.ab-badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(0, 230, 118, 0.08);
  color: var(--green);
  border: 1px solid rgba(0, 230, 118, 0.2);
}
.ab-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.ab-cell {
  background: rgba(7, 15, 34, 0.72);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.25s;
}
.ab-cell:hover {
  border-color: var(--border-g);
}
.ab-cell-lbl {
  font-size: 0.66rem;
  color: var(--text2);
  margin-bottom: 5px;
}
.ab-cell-val {
  font-family: "Orbitron", monospace;
  font-size: 1.06rem;
  font-weight: 700;
}
.ab-cell-val.g {
  color: var(--green);
}
.ab-cell-val.b {
  color: var(--blue3);
}

/* ── COPY TRADING ───────────────────────────────────────────── */
#copytrading {
  background: var(--bg);
}
.traders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 58px;
}
.trader-card {
  background: linear-gradient(
    152deg,
    rgba(7, 15, 34, 0.93),
    rgba(4, 10, 22, 0.78)
  );
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--smooth);
}
.trader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 230, 118, 0.4),
    transparent
  );
  transform: scaleX(0);
  transition: transform 0.45s;
}
.trader-card:hover::before {
  transform: scaleX(1);
}
.trader-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-g);
  box-shadow:
    0 28px 65px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(0, 230, 118, 0.06);
}
.tc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.tc-av {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid rgba(0, 230, 118, 0.25);
  box-shadow: 0 0 16px rgba(0, 230, 118, 0.14);
  flex-shrink: 0;
}
.tc-name {
  font-weight: 700;
  font-size: 0.93rem;
}
.tc-role {
  font-size: 0.68rem;
  color: var(--text2);
  margin-top: 2px;
}
.tc-badge {
  margin-left: auto;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.tc-badge img {
  flex-shrink: 0;
}
.tc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 18px;
}
.tc-stat {
  text-align: center;
  padding: 10px 7px;
  background: rgba(29, 110, 245, 0.04);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.tc-stat:hover {
  border-color: rgba(0, 230, 118, 0.08);
  background: rgba(0, 230, 118, 0.03);
}
.tc-stat-v {
  font-family: "Orbitron", monospace;
  font-size: 0.82rem;
  font-weight: 700;
}
.tc-stat-v.g {
  color: var(--green);
}
.tc-stat-v.b {
  color: var(--blue3);
}
.tc-stat-l {
  font-size: 0.58rem;
  color: var(--text3);
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.tc-chart {
  height: 54px;
  margin-bottom: 16px;
}
.btn-copy {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--green3), var(--green));
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.22);
  transition: all 0.3s var(--spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.btn-copy:hover {
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.48);
  transform: translateY(-2px);
}
.btn-copy:hover::after {
  transform: translateX(100%);
}

/* ── HOW IT WORKS ───────────────────────────────────────────── */
#howworks {
  background: var(--bg2);
}
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}
.steps-line {
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--green3),
    var(--blue2),
    var(--green3)
  );
  background-size: 200%;
  animation: line-march 3.5s linear infinite;
  z-index: 0;
}
@keyframes line-march {
  0% {
    background-position: 0;
  }
  100% {
    background-position: 200%;
  }
}
.step-item {
  text-align: center;
  padding: 0 18px;
  position: relative;
  z-index: 1;
}
.step-ico {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(7, 15, 34, 0.94),
    rgba(4, 10, 22, 0.8)
  );
  border: 2px solid rgba(0, 230, 118, 0.28);
  box-shadow:
    0 0 24px rgba(0, 230, 118, 0.14),
    inset 0 0 22px rgba(0, 230, 118, 0.03);
  transition: all 0.4s var(--spring);
}
.step-ico img {
  filter: drop-shadow(0 2px 10px rgba(0, 230, 118, 0.28));
}
.step-item:hover .step-ico {
  background: linear-gradient(135deg, var(--green3), var(--green));
  box-shadow: 0 0 50px rgba(0, 230, 118, 0.45);
  transform: scale(1.1);
}
.step-num-label {
  font-family: "Orbitron", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text3);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  background: var(--bg);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 58px;
}
.testi-card {
  background: linear-gradient(
    152deg,
    rgba(7, 15, 34, 0.93),
    rgba(4, 10, 22, 0.78)
  );
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.5s var(--smooth);
}
.testi-card:hover {
  border-color: rgba(29, 110, 245, 0.25);
  transform: translateY(-6px);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(29, 110, 245, 0.05);
}
.tq {
  margin-bottom: 14px;
}
.ttext {
  font-size: 0.87rem;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 18px;
}
.tstars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.tauthor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  border: 2px solid rgba(29, 110, 245, 0.24);
}
.tname {
  font-weight: 700;
  font-size: 0.87rem;
}
.trole {
  font-size: 0.7rem;
  color: var(--text2);
  margin-top: 2px;
}

/* ── SECURITY ───────────────────────────────────────────────── */
#security {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
#security::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(29, 110, 245, 0.035),
    transparent 60%
  );
  pointer-events: none;
}
.sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.sec-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(29, 110, 245, 0.03);
  border: 1px solid rgba(29, 110, 245, 0.08);
  font-size: 0.87rem;
  font-weight: 500;
  transition: all 0.3s var(--smooth);
}
.sec-row:hover {
  background: rgba(29, 110, 245, 0.07);
  border-color: rgba(29, 110, 245, 0.22);
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(29, 110, 245, 0.08);
}
.sec-ico {
  flex-shrink: 0;
  display: flex;
}
.sec-ico img {
  filter: drop-shadow(0 2px 8px rgba(29, 110, 245, 0.28));
}
.sec-row:hover .sec-ico {
  transform: scale(1.15);
}
.shield-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}
#shieldCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.shield-center-icon {
  position: relative;
  z-index: 2;
  animation: icon-float 5s ease-in-out infinite;
}
@keyframes icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
.shield-model-img {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shield-photo {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--r2);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 40px rgba(29, 110, 245, 0.1));
  animation: shield-float 6s ease-in-out infinite;
  transition:
    transform 0.5s var(--smooth),
    filter 0.5s;
}
.shield-photo:hover {
  transform: scale(1.03) translateY(-8px);
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 60px rgba(0, 230, 118, 0.12));
}
@keyframes shield-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
#cta-banner {
  padding: clamp(60px, 8vw, 90px) clamp(16px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(29, 110, 245, 0.06),
    rgba(0, 230, 118, 0.03)
  );
  border-top: 1px solid rgba(29, 110, 245, 0.08);
  border-bottom: 1px solid rgba(0, 230, 118, 0.06);
}
#cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(0, 230, 118, 0.03),
    transparent 60%
  );
}
.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-split {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-content {
  text-align: left;
}
.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trader-photo {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: var(--r2);
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 50px rgba(0, 230, 118, 0.08));
  animation: trader-float 7s ease-in-out infinite;
  transition:
    transform 0.5s var(--smooth),
    filter 0.5s;
}
.trader-photo:hover {
  transform: scale(1.03) translateY(-8px);
  filter: drop-shadow(0 28px 80px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 70px rgba(0, 230, 118, 0.12));
}
@keyframes trader-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — CLEAN PREMIUM
   ══════════════════════════════════════════════════════════════ */
footer {
  background: #010307;
  border-top: 1px solid rgba(29, 110, 245, 0.07);
  padding: clamp(50px, 7vw, 80px) clamp(16px, 4vw, 40px) 30px;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
  gap: 46px;
  margin-bottom: 56px;
}
.foot-brand p {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.76;
  max-width: 250px;
  margin-top: 14px;
}
.foot-socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(29, 110, 245, 0.06);
  border: 1px solid rgba(29, 110, 245, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.3s var(--spring);
}
.soc-btn:hover {
  background: rgba(0, 230, 118, 0.08);
  border-color: var(--border-g);
  color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 230, 118, 0.14);
}
.foot-col h4 {
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.foot-col ul li a {
  font-size: 0.79rem;
  color: var(--text2);
  transition: all 0.2s;
  display: inline-block;
}
.foot-col ul li a:hover {
  color: var(--green);
  transform: translateX(4px);
}
.news-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.news-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgba(29, 110, 245, 0.05);
  border: 1px solid rgba(29, 110, 245, 0.14);
  color: var(--text);
  font-size: 0.79rem;
  outline: none;
  font-family: "Space Grotesk", sans-serif;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.news-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.07);
}
.news-btn {
  padding: 11px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green3), var(--green));
  color: #fff;
  border: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--spring);
  cursor: pointer;
}
.news-btn:hover {
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.38);
  transform: scale(1.05);
}
.foot-bottom {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(29, 110, 245, 0.06);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-copy {
  font-size: 0.76rem;
  color: var(--text2);
}
.foot-legal {
  display: flex;
  gap: 20px;
}
.foot-legal a {
  font-size: 0.76rem;
  color: var(--text2);
  transition: color 0.2s;
}
.foot-legal a:hover {
  color: var(--green);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE-FIRST PERFECTED
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inst-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
  #marketCards {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 992px) {
  #navbar {
    padding: 0 16px;
  }
  .nav-center {
    display: none;
  }
  .nav-right .btn-nav-in,
  .nav-right .btn-nav-up {
    display: none;
  }
  .ham {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 72px 20px 52px;
  }
  .about-grid,
  .sec-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .shield-wrap {
    order: -1;
    min-height: 300px;
  }
  .cta-split {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-content {
    text-align: center;
  }
  .trader-photo {
    max-height: 400px;
  }
  .traders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }
  .steps-line {
    display: none;
  }
  .hero-right {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .dash-3d {
    transform: perspective(900px) rotateY(-4deg) rotateX(2deg) !important;
  }
  .hf-1 {
    top: -14px;
    right: -4px;
  }
  .hf-2 {
    bottom: 14px;
    left: -4px;
  }
  .hf-3 {
    display: none;
  }
  #marketCards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .feat-grid,
  .inst-grid,
  .traders-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .hero-stats {
    gap: 16px;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    padding: 48px 16px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-inner {
    padding: 62px 14px 40px;
    gap: 24px;
  }
  .hero-h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .hero-right {
    padding: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .dash-3d {
    transform: perspective(800px) rotateY(-3deg) rotateX(1deg) !important;
  }
  .dash-card {
    padding: 16px;
  }
  .dash-price {
    font-size: 1.05rem;
  }
  .btn-buy,
  .btn-sell {
    padding: 10px 6px;
    font-size: 0.68rem;
  }
  .hf-1 {
    top: -10px;
    right: 0;
    padding: 10px 12px;
  }
  .hf-2 {
    bottom: 10px;
    left: 0;
    padding: 10px 12px;
  }
  .hf-3 {
    display: none;
  }
  .hf-val {
    font-size: 0.76rem;
  }
  .hf-lbl,
  .hf-sub {
    font-size: 0.57rem;
  }
  #marketCards {
    grid-template-columns: 1fr 1fr !important;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .shield-wrap {
    min-height: 260px;
  }
  .shield-photo {
    max-height: 340px;
  }
  .trader-photo {
    max-height: 320px;
  }
  .cta-split {
    gap: 28px;
  }
  #cta-banner {
    padding: 50px 16px;
  }
}
@media (hover: none) {
  .cursor,
  .cursor-ring,
  .cursor-glow {
    display: none !important;
  }
}
