@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #0B0E11;
  --bg-secondary: #1E2026;
  --bg-tertiary: #2B2F36;
  --accent: #F0B90B;
  --accent-hover: #D4A800;
  --text-primary: #EAECEF;
  --text-secondary: #848E9C;
  --text-muted: #5E6673;
  --green: #0ECB81;
  --red: #F6465D;
  --border: #2B2F36;
  --font-sans: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --nav-h: 64px;
  --r: 6px;
  --t: 150ms ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 9999;
  width: 0%;
  transition: width 80ms linear;
  pointer-events: none;
}

#back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background var(--t), border-color var(--t);
  z-index: 900;
  color: var(--text-secondary);
}
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--accent); color: #000; border-color: var(--accent); }

.announce-bar {
  background: var(--accent);
  color: #000;
  text-align: center;
  padding: 9px 48px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 101;
}
.announce-bar a { color: #000; font-weight: 700; }
.announce-close {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  cursor: pointer; font-size: 18px;
  color: #000; line-height: 1;
}

nav {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  background: rgba(11,14,17,0.97);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--accent); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
  position: relative;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-tertiary); }
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-spacer { flex: 1; }
.nav-right { display: flex; align-items: center; gap: 8px; }

.lang-btn {
  display: flex; align-items: center; gap: 5px;
  color: var(--text-secondary);
  background: none; border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.lang-btn:hover { color: var(--text-primary); background: var(--bg-tertiary); }

.btn-ghost {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 7px 16px;
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  transition: border-color var(--t), background var(--t);
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(240,185,11,0.05); }

.btn-yellow {
  background: var(--accent);
  color: #000;
  padding: 8px 20px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-yellow:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(240,185,11,0.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 20px 24px 40px;
  transform: translateX(-100%);
  transition: transform 0.32s ease;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; }
.mobile-drawer ul li a {
  display: block;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 17px; font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-drawer ul li a:hover { color: var(--accent); }
.mob-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.mob-btns .btn-ghost,
.mob-btns .btn-yellow { justify-content: center; padding: 14px; font-size: 15px; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  padding: 72px 24px 56px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(240,185,11,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,185,11,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none; z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(240,185,11,0.08);
  border: 1px solid rgba(240,185,11,0.18);
  color: var(--accent);
  font-size: 11px; font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  animation: fadeUp 0.5s ease 0.1s both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  animation: fadeUp 0.5s ease 0.2s both;
}
.hero h1 .typed-line {
  color: var(--accent);
  display: block;
  min-height: 1.15em;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 30px;
  animation: fadeUp 0.5s ease 0.3s both;
}

.hero-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s ease 0.4s both;
}
.hero-form input {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t);
}
.hero-form input::placeholder { color: var(--text-muted); }
.hero-form input:focus { border-color: var(--accent); }
.hero-form .btn-yellow { padding: 12px 22px; font-size: 14px; flex-shrink: 0; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s ease 0.5s both;
}
.hero-stat .num {
  font-size: 22px; font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  display: block;
  letter-spacing: -0.01em;
}
.hero-stat .lbl { color: var(--text-secondary); font-size: 12px; }

/* ─── HERO VISUAL (Orbital Animation) ──────────────────────── */
.hero-right {
  animation: fadeUp 0.5s ease 0.35s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
}

.hv-bg-glow {
  position: absolute;
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(240,185,11,0.07) 0%, rgba(240,185,11,0.025) 45%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.hv-bg-glow-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(240,185,11,0.025) 0%, transparent 65%);
  animation-delay: 2s;
  animation-duration: 5s;
}

.orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  animation: ring-spin var(--dur, 25s) linear infinite;
  pointer-events: none;
}
.o1 {
  width: 420px; height: 420px;
  margin: -210px 0 0 -210px;
  border: 1px solid rgba(240,185,11,0.07);
  --dur: 30s;
}
.o2 {
  width: 300px; height: 300px;
  margin: -150px 0 0 -150px;
  border: 1px solid rgba(240,185,11,0.1);
  --dur: 20s;
  animation-direction: reverse;
}
.o3 {
  width: 175px; height: 175px;
  margin: -87.5px 0 0 -87.5px;
  border: 1px solid rgba(240,185,11,0.14);
  --dur: 13s;
}

.orbit-dot {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  top: -2.5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(240,185,11,0.6);
}

.coin-token {
  position: absolute;
  width: 46px; height: 46px;
  top: 50%; left: 50%;
  margin: -23px 0 0 -23px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 700;
  z-index: 5;
  border: 1.5px solid var(--c-border, rgba(240,185,11,0.4));
  background: var(--c-bg, rgba(11,14,17,0.92));
  color: var(--c-text, var(--accent));
  box-shadow: 0 0 14px var(--c-shadow, rgba(240,185,11,0.2)), 0 2px 8px rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.coin-token:hover {
  box-shadow: 0 0 22px var(--c-shadow, rgba(240,185,11,0.4)), 0 4px 12px rgba(0,0,0,0.5);
  transform: translate(-50%, -50%) scale(1.12) !important;
}

.ct-btc {
  --c-bg: rgba(11,14,17,0.92);
  --c-border: rgba(247,147,26,0.5);
  --c-text: #F7931A;
  --c-shadow: rgba(247,147,26,0.25);
  animation: orb-btc 30s linear infinite;
}
.ct-eth {
  --c-bg: rgba(11,14,17,0.92);
  --c-border: rgba(98,126,234,0.5);
  --c-text: #627EEA;
  --c-shadow: rgba(98,126,234,0.25);
  animation: orb-eth 30s linear infinite;
}
.ct-bnb {
  --c-bg: rgba(11,14,17,0.92);
  --c-border: rgba(240,185,11,0.55);
  --c-text: #F0B90B;
  --c-shadow: rgba(240,185,11,0.3);
  animation: orb-bnb 20s linear infinite reverse;
}
.ct-sol {
  --c-bg: rgba(11,14,17,0.92);
  --c-border: rgba(153,69,255,0.5);
  --c-text: #9945FF;
  --c-shadow: rgba(153,69,255,0.25);
  animation: orb-sol 20s linear infinite reverse;
}
.ct-xrp {
  --c-bg: rgba(11,14,17,0.92);
  --c-border: rgba(0,170,228,0.5);
  --c-text: #00AAE4;
  --c-shadow: rgba(0,170,228,0.25);
  animation: orb-xrp 13s linear infinite;
}

.hv-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10;
}
.hv-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(240,185,11,0.25);
  pointer-events: none;
}
.hv-pulse-ring.r1 {
  width: 100px; height: 100px;
  animation: pulse-ring 3s ease-out infinite;
}
.hv-pulse-ring.r2 {
  width: 100px; height: 100px;
  animation: pulse-ring 3s ease-out infinite 1.5s;
}
.hv-diamond {
  width: 72px; height: 72px;
  background: var(--bg-secondary);
  border: 2px solid rgba(240,185,11,0.45);
  transform: rotate(45deg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: diamond-glow 3.5s ease-in-out infinite;
  box-shadow: 0 0 32px rgba(240,185,11,0.12), 0 0 64px rgba(240,185,11,0.04), inset 0 0 20px rgba(240,185,11,0.03);
}
.hv-diamond-inner {
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
}

.hv-card {
  position: absolute;
  background: rgba(22,25,32,0.92);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
  z-index: 20;
  min-width: 118px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.hv-card-1 {
  top: 6%; right: -2%;
  animation: float-a 4.2s ease-in-out infinite;
}
.hv-card-2 {
  bottom: 22%; left: -4%;
  animation: float-b 5s ease-in-out infinite 1.8s;
}
.hv-card-3 {
  bottom: 6%; right: 3%;
  animation: float-c 4.6s ease-in-out infinite 0.9s;
}
.hvc-row {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 5px;
}
.hvc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  flex-shrink: 0;
}
.hvc-pair { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); }
.hvc-price {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 600;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  display: block; margin-bottom: 2px;
}
.hvc-chg {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500;
}
.hvc-chg.up { color: var(--green); }
.hvc-chg.down { color: var(--red); }

.hv-stat-badge {
  position: absolute;
  top: 38%; right: -6%;
  display: flex; align-items: center; gap: 6px;
  background: rgba(14,203,129,0.06);
  border: 1px solid rgba(14,203,129,0.2);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 500;
  color: var(--green);
  font-family: var(--font-mono);
  white-space: nowrap;
  z-index: 20;
  animation: float-b 5.5s ease-in-out infinite 0.5s;
}

.hv-p {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
}
.p1 { top: 15%; left: 22%; animation: p-twinkle 3.2s ease-in-out infinite; opacity: 0; }
.p2 { top: 72%; left: 15%; animation: p-twinkle 4s ease-in-out infinite 1s; opacity: 0; }
.p3 { top: 28%; right: 18%; animation: p-twinkle 3.6s ease-in-out infinite 0.5s; opacity: 0; }
.p4 { top: 82%; right: 22%; animation: p-twinkle 4.4s ease-in-out infinite 2s; opacity: 0; }
.p5 { top: 10%; left: 48%; animation: p-twinkle 3s ease-in-out infinite 1.5s; opacity: 0; width: 4px; height: 4px; }
.p6 { top: 90%; left: 55%; animation: p-twinkle 4.8s ease-in-out infinite 0.8s; opacity: 0; }
.p7 { top: 48%; left: 5%; animation: p-twinkle 3.8s ease-in-out infinite 2.5s; opacity: 0; }
.p8 { top: 55%; right: 6%; animation: p-twinkle 4.2s ease-in-out infinite 1.2s; opacity: 0; width: 2px; height: 2px; background: rgba(240,185,11,0.5); }

.hv-conn-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ─── TICKER BAR ───────────────────────────────────────────── */
.ticker-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  user-select: none;
}
.ticker-bar::before, .ticker-bar::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2;
  pointer-events: none;
}
.ticker-bar::before { left: 0; background: linear-gradient(to right, var(--bg-secondary), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(to left, var(--bg-secondary), transparent); }
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 50s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 6px;
  padding: 0 22px; white-space: nowrap;
  font-family: var(--font-mono); font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.t-pair  { color: var(--text-primary); font-weight: 500; }
.t-price { color: var(--text-secondary); }
.t-chg   { font-weight: 500; }
.t-chg.up   { color: var(--green); }
.t-chg.down { color: var(--red); }
.t-dot { color: var(--bg-tertiary); font-size: 8px; }

/* ─── SHARED SECTION STYLES ────────────────────────────────── */
.section { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.section-hd { margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-sub { color: var(--text-secondary); font-size: 15px; }

/* ─── MARKET TABLE ─────────────────────────────────────────── */
.tab-row {
  display: flex; gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  background: none; border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 500;
  padding: 10px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t), border-color var(--t);
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.market-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.market-table thead th {
  text-align: left;
  color: var(--text-muted); font-weight: 500;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  cursor: pointer; user-select: none;
  white-space: nowrap; font-size: 12px;
  transition: color var(--t);
}
.market-table thead th:hover { color: var(--text-secondary); }
.market-table thead th.sort-asc::after  { content: ' ↑'; color: var(--accent); }
.market-table thead th.sort-desc::after { content: ' ↓'; color: var(--accent); }
.market-table thead th:first-child,
.market-table thead th:nth-child(2),
.market-table thead th:last-child { cursor: default; }
.market-table tbody tr {
  border-bottom: 1px solid rgba(43,47,54,0.5);
  transition: background var(--t);
  cursor: pointer;
}
.market-table tbody tr:hover { background: var(--bg-tertiary); }
.market-table tbody td { padding: 13px 12px; vertical-align: middle; }

.td-rank { color: var(--text-muted); font-size: 11px; width: 36px; }
.td-coin { display: flex; align-items: center; gap: 10px; min-width: 150px; }
.td-coin .c-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  font-family: var(--font-mono); flex-shrink: 0;
}
.td-coin .cn { font-weight: 600; font-size: 13px; line-height: 1.2; display: block; }
.td-coin .cs { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); }
.td-price { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 500; white-space: nowrap; }
.td-chg   { font-family: var(--font-mono); font-weight: 500; white-space: nowrap; }
.td-chg.up   { color: var(--green); }
.td-chg.down { color: var(--red); }
.td-mcap  { color: var(--text-secondary); font-family: var(--font-mono); }
.td-chart { width: 110px; }
.trade-btn {
  background: rgba(240,185,11,0.08);
  border: 1px solid rgba(240,185,11,0.25);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: var(--r);
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  font-family: var(--font-sans); white-space: nowrap;
}
.trade-btn:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* ─── FEATURES ─────────────────────────────────────────────── */
.features-bg { background: var(--bg-secondary); }
.features-inner { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.feat-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 8px;
  padding: 26px 22px;
  transition: transform 0.15s, border-left-color 0.15s;
}
.feat-card:hover { transform: translateY(-4px); border-left-color: var(--accent); }
.feat-icon {
  width: 44px; height: 44px;
  background: rgba(240,185,11,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 16px;
}
.feat-card h3 { font-size: 14.5px; font-weight: 600; margin-bottom: 8px; }
.feat-card p  { color: var(--text-secondary); font-size: 13px; line-height: 1.65; }

/* ─── TRADING PREVIEW ──────────────────────────────────────── */
.trading-bg { background: var(--bg-primary); padding: 80px 24px; }
.trading-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.trading-left h2 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.trading-left p  { color: var(--text-secondary); margin-bottom: 28px; line-height: 1.75; font-size: 15px; }
.t-points { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.t-points li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-secondary); font-size: 14px; line-height: 1.6;
}
.t-check {
  width: 18px; height: 18px;
  background: rgba(240,185,11,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 10px; color: var(--accent); font-weight: 700;
}

.chart-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.chart-hdr {
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 10px;
}
.chart-left { display: flex; align-items: center; gap: 12px; }
.chart-pair  { font-weight: 700; font-size: 14px; letter-spacing: 0.02em; }
.chart-price { font-family: var(--font-mono); font-size: 20px; font-weight: 600; }
.chart-badge-g {
  background: rgba(14,203,129,0.12);
  color: var(--green);
  font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 4px;
  font-family: var(--font-mono);
}
.chart-tfs { display: flex; gap: 2px; }
.chart-tfs button {
  background: none; border: none;
  color: var(--text-muted); font-size: 11px;
  cursor: pointer; padding: 5px 9px;
  border-radius: 4px; font-family: var(--font-sans);
  transition: background var(--t), color var(--t);
}
.chart-tfs button.active,
.chart-tfs button:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.chart-svg-wrap { background: var(--bg-secondary); overflow: hidden; }
.order-book {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.ob-side { padding: 12px 14px; }
.ob-side:first-child { border-right: 1px solid var(--border); }
.ob-head {
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--text-muted);
  margin-bottom: 6px; font-family: var(--font-mono);
  padding-bottom: 4px; border-bottom: 1px solid rgba(43,47,54,0.5);
}
.ob-row {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  padding: 2.5px 0; position: relative;
}
.ob-fill {
  position: absolute; top: 0; bottom: 0; right: 0;
  border-radius: 2px; opacity: 0.1;
}
.ob-sell { color: var(--red); }
.ob-sell .ob-fill { background: var(--red); }
.ob-buy  { color: var(--green); }
.ob-buy  .ob-fill { background: var(--green); }
.ob-spread {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6px;
  font-family: var(--font-mono); font-size: 14px; font-weight: 600;
  color: var(--green);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(14,203,129,0.03);
}

/* ─── EARN ─────────────────────────────────────────────────── */
.earn-bg { background: var(--bg-secondary); padding: 80px 24px; }
.earn-inner { max-width: 1280px; margin: 0 auto; }
.earn-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.earn-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.earn-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.earn-tag  { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.earn-apy  { font-size: 38px; font-weight: 700; color: var(--accent); font-family: var(--font-mono); letter-spacing: -0.03em; margin-bottom: 2px; line-height: 1; }
.earn-apy sup { font-size: 16px; vertical-align: super; }
.earn-apy-lbl { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.earn-name { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.earn-desc { color: var(--text-secondary); font-size: 13px; line-height: 1.65; margin-bottom: 22px; }
.earn-btn {
  background: none;
  border: 1px solid rgba(240,185,11,0.35);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600;
  cursor: pointer; width: 100%;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.earn-btn:hover { background: var(--accent); color: #000; border-color: var(--accent); }

/* ─── APP DOWNLOAD ─────────────────────────────────────────── */
.app-bg { background: var(--bg-primary); padding: 80px 24px; }
.app-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.app-left h2 { font-size: clamp(22px, 2.8vw, 34px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 16px; }
.app-left p  { color: var(--text-secondary); font-size: 15px; margin-bottom: 28px; line-height: 1.75; }
.qr-row { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 24px; }
.qr-box {
  width: 90px; height: 90px; flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 8px; padding: 6px; background: #fff;
}
.qr-hint { color: var(--text-secondary); font-size: 12px; line-height: 1.6; padding-top: 2px; }
.store-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 16px;
  text-decoration: none; color: var(--text-primary);
  transition: border-color var(--t), background var(--t);
  cursor: pointer;
}
.store-btn:hover { border-color: var(--accent); background: rgba(240,185,11,0.03); }
.store-ico { color: var(--text-secondary); width: 22px; height: 22px; flex-shrink: 0; }
.store-txt { display: flex; flex-direction: column; }
.store-txt small  { font-size: 10px; color: var(--text-muted); }
.store-txt strong { font-size: 13px; font-weight: 600; }

.phone {
  width: 240px; height: 460px;
  background: var(--bg-secondary);
  border: 2px solid var(--bg-tertiary);
  border-radius: 34px;
  padding: 16px 12px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 32px 72px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.phone-notch {
  width: 72px; height: 18px;
  background: var(--bg-tertiary);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 14px;
}
.phone-screen { height: calc(100% - 32px); display: flex; flex-direction: column; gap: 8px; }
.ph { display: flex; justify-content: space-between; align-items: center; padding: 0 2px; }
.ph-logo { font-size: 13px; font-weight: 700; color: var(--accent); }
.ph-bal { text-align: right; }
.ph-bal small  { font-size: 8px; color: var(--text-muted); display: block; }
.ph-bal strong { font-family: var(--font-mono); font-size: 12px; }
.ph-chart { background: var(--bg-tertiary); border-radius: 8px; padding: 10px; flex-shrink: 0; }
.ph-cl small  { font-size: 8px; color: var(--text-muted); display: block; margin-bottom: 3px; }
.ph-cl strong { font-family: var(--font-mono); font-size: 15px; font-weight: 700; }
.ph-cl span   { font-size: 9px; color: var(--green); font-family: var(--font-mono); margin-left: 5px; }
.ph-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; }
.ph-action {
  background: var(--bg-tertiary);
  border-radius: 7px; padding: 7px 4px;
  text-align: center; font-size: 8px; color: var(--text-muted);
}
.ph-action .ph-ico {
  width: 20px; height: 20px;
  background: rgba(240,185,11,0.1);
  border-radius: 50%;
  margin: 0 auto 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--accent);
}
.ph-coins { display: flex; flex-direction: column; gap: 5px; flex: 1; overflow: hidden; }
.ph-coin {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-tertiary);
  border-radius: 7px; padding: 7px 9px;
}
.ph-cl2 { display: flex; align-items: center; gap: 6px; }
.ph-cico {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 700; font-family: var(--font-mono);
}
.ph-cnm  { font-size: 10px; font-weight: 600; }
.ph-csm  { font-size: 7.5px; color: var(--text-muted); }
.ph-cr   { text-align: right; }
.ph-cp   { font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; }
.ph-cc   { font-size: 7.5px; font-family: var(--font-mono); }
.ci-btc  { background: rgba(247,147,26,0.12); color: #F7931A; }
.ci-eth  { background: rgba(98,126,234,0.12); color: #627EEA; }
.ci-sol  { background: rgba(153,69,255,0.12); color: #9945FF; }

/* ─── TRUST ────────────────────────────────────────────────── */
.trust-bg { background: var(--bg-secondary); padding: 80px 24px; }
.trust-inner { max-width: 1280px; margin: 0 auto; }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 48px; margin-bottom: 40px;
}
.stat-box {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 20px;
  text-align: center;
  transition: border-color var(--t);
}
.stat-box:hover { border-color: rgba(240,185,11,0.3); }
.stat-num {
  font-size: clamp(26px, 3vw, 36px); font-weight: 700;
  font-family: var(--font-mono); color: var(--accent);
  display: block; font-variant-numeric: tabular-nums;
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.stat-lbl { color: var(--text-secondary); font-size: 13px; }
.badges-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.sec-badge {
  display: flex; align-items: center; gap: 7px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 12px; font-weight: 600;
  color: var(--text-secondary);
  transition: border-color var(--t), color var(--t);
}
.sec-badge:hover { border-color: var(--accent); color: var(--text-primary); }
.sec-badge svg { color: var(--accent); width: 14px; height: 14px; }

/* ─── NEWS ─────────────────────────────────────────────────── */
.news-bg { background: var(--bg-primary); padding: 80px 24px; }
.news-inner { max-width: 1280px; margin: 0 auto; }
.news-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 18px; margin-top: 48px;
}
.news-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
  cursor: pointer;
}
.news-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.news-img-area {
  height: 148px;
  background: linear-gradient(135deg, #1a1d24 0%, var(--bg-tertiary) 60%, #23272e 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.news-img-area svg { color: var(--text-muted); opacity: 0.2; }
.news-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #000;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.news-body    { padding: 18px; }
.news-date    { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); margin-bottom: 8px; }
.news-title   { font-size: 14px; font-weight: 600; line-height: 1.5; margin-bottom: 8px; }
.news-excerpt { font-size: 12px; color: var(--text-secondary); line-height: 1.65; }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 56px 24px 28px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(5,1fr);
  gap: 28px; margin-bottom: 44px;
}
.footer-brand p { color: var(--text-muted); font-size: 12.5px; line-height: 1.7; max-width: 220px; margin-top: 14px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-secondary); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  color: var(--text-muted); text-decoration: none;
  font-size: 13px; transition: color var(--t);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy    { color: var(--text-muted); font-size: 12px; }
.footer-socials { display: flex; gap: 6px; }
.social-link {
  width: 32px; height: 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.social-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(240,185,11,0.05); }
.footer-disclaimer {
  color: var(--text-muted); font-size: 11px; margin-top: 18px;
  line-height: 1.65; max-width: 960px;
  border-top: 1px solid var(--border); padding-top: 18px;
}

/* ─── TOAST ────────────────────────────────────────────────── */
.toast-wrap {
  position: fixed; bottom: 72px; right: 22px;
  z-index: 9998; display: flex; flex-direction: column; gap: 8px;
}
.toast {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  min-width: 270px; max-width: 320px;
  display: flex; align-items: center; gap: 10px;
  animation: toastIn 0.25s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  font-size: 13px; color: var(--text-primary);
}
.toast.ok  { border-left: 3px solid var(--green); }
.toast.err { border-left: 3px solid var(--red); }
.toast.out { animation: toastOut 0.25s ease forwards; }

/* ─── KEYFRAMES ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes toastIn  {
  from { opacity:0; transform:translateX(16px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes toastOut {
  from { opacity:1; transform:translateX(0); }
  to   { opacity:0; transform:translateX(16px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.4; }
}
@keyframes ring-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes glow-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.8; }
  50%     { transform: translate(-50%,-50%) scale(1.18); opacity: 1;   }
}
@keyframes diamond-glow {
  0%,100% {
    box-shadow: 0 0 28px rgba(240,185,11,0.1), 0 0 56px rgba(240,185,11,0.03);
    border-color: rgba(240,185,11,0.4);
  }
  50% {
    box-shadow: 0 0 44px rgba(240,185,11,0.28), 0 0 88px rgba(240,185,11,0.08);
    border-color: rgba(240,185,11,0.75);
  }
}
@keyframes pulse-ring {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.5; }
  100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0;   }
}
@keyframes float-a {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-9px); }
}
@keyframes float-b {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-7px); }
}
@keyframes float-c {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-11px); }
}
@keyframes p-twinkle {
  0%,100% { opacity: 0;    transform: scale(1); }
  40%     { opacity: 0.65; transform: scale(1.3); }
  60%     { opacity: 0.5;  transform: scale(1); }
}
@keyframes orb-btc {
  from { transform: rotate(0deg) translateX(210px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(210px) rotate(-360deg); }
}
@keyframes orb-eth {
  from { transform: rotate(180deg) translateX(210px) rotate(-180deg); }
  to   { transform: rotate(540deg) translateX(210px) rotate(-540deg); }
}
@keyframes orb-bnb {
  from { transform: rotate(50deg) translateX(150px) rotate(-50deg); }
  to   { transform: rotate(410deg) translateX(150px) rotate(-410deg); }
}
@keyframes orb-sol {
  from { transform: rotate(230deg) translateX(150px) rotate(-230deg); }
  to   { transform: rotate(590deg) translateX(150px) rotate(-590deg); }
}
@keyframes orb-xrp {
  from { transform: rotate(90deg) translateX(87.5px) rotate(-90deg); }
  to   { transform: rotate(450deg) translateX(87.5px) rotate(-450deg); }
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: repeat(4,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .features-grid { gap: 12px; }
  .hero { grid-template-columns: 1fr 420px; gap: 36px; }
  .hero-visual { width: 420px; height: 420px; }
  .o1 { width: 380px; height: 380px; margin: -190px 0 0 -190px; }
  .hv-card-1 { right: 0%; }
  .hv-stat-badge { right: -2%; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .trading-inner { grid-template-columns: 1fr; }
  .app-inner { grid-template-columns: 1fr; }
  .phone { display: none; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .earn-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .earn-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hero-form { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .market-table-wrap { overflow-x: auto; }
  .footer-top { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section,
  .features-inner,
  .earn-inner,
  .trust-inner,
  .news-inner { padding: 60px 16px; }
  .hero { padding: 56px 16px 40px; }
  .trading-bg,
  .app-bg,
  .earn-bg,
  .trust-bg,
  .news-bg { padding: 60px 16px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
