/* ===== Font Faces ===== */
@font-face {
  font-family: 'Outfit';
  src: url('Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Outfit';
  src: url('Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrainsMono';
  src: url('JetBrainsMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrainsMono';
  src: url('JetBrainsMono-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

/* ===== Design Tokens ===== */
:root {
  --bg: #0B0E14;
  --bg2: #131820;
  --bg3: #1A2030;
  --bg-card: #161B26;
  --ink: #E8ECF1;
  --muted: #8B95A7;
  --muted2: #5C6678;
  --rule: #252D3D;
  --rule-light: #1E2535;
  --accent: #00D4AA;
  --accent-hover: #00E8BA;
  --accent-dim: rgba(0,212,170,0.12);
  --accent2: #FFB800;
  --accent2-dim: rgba(255,184,0,0.12);
  --danger: #FF5757;
  --purple: #7C5CFC;
  --font: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrainsMono', monospace;
  --max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(0,212,170,0.08);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Layout ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* ===== Typography ===== */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-accent2 { color: var(--accent2); }
.text-muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 3rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11,14,20,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule-light);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(11,14,20,0.95); border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.nav-logo .logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-weight: 700;
  font-size: 0.85rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 20px rgba(0,212,170,0.3);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--rule);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { color: var(--muted); }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 8rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,170,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,92,252,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 .grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink);
}
.hero-stat .label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Badge ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,212,170,0.25);
  border-radius: 20px;
  padding: 0.25rem 0.8rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== Feature Grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; line-height: 1.6; }

/* ===== Bento Grid ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.bento-item {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.bento-item:hover { border-color: var(--rule); }
.bento-item.large { grid-column: span 2; }
.bento-item.full { grid-column: span 3; }
.bento-item h3 { margin-bottom: 0.5rem; }
.bento-item p { font-size: 0.9rem; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.step-card h3 { margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.price-card:hover { border-color: var(--rule); }
.price-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  position: relative;
}
.price-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 0.2rem 0.7rem;
  border-radius: 10px;
}
.price-card .plan-name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.price-card.featured .plan-name { color: var(--accent); }
.price-card .price {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.price-card .price .cur { font-size: 1rem; color: var(--muted); }
.price-card .price .per { font-size: 0.8rem; color: var(--muted); font-weight: 400; }
.price-card .price.free { color: var(--accent); }
.price-card .plan-desc {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.price-card ul li {
  font-size: 0.84rem;
  color: var(--muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.price-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.price-card .btn { margin-top: 1.25rem; width: 100%; }

/* Pricing toggle */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.pricing-toggle span {
  font-size: 0.9rem;
  color: var(--muted);
  transition: var(--transition);
}
.pricing-toggle span.active { color: var(--ink); font-weight: 600; }
.toggle-switch {
  width: 48px;
  height: 26px;
  background: var(--bg3);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--muted);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch.active { background: var(--accent-dim); }
.toggle-switch.active::after { left: 25px; background: var(--accent); }
.save-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent2);
  background: var(--accent2-dim);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
}

/* ===== Tables ===== */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 600px;
}
thead { background: var(--bg3); }
th {
  text-align: left;
  padding: 0.8rem 1rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--rule-light);
  color: var(--muted);
}
td:first-child { color: var(--ink); font-weight: 600; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: rgba(0,212,170,0.02); }
.check { color: var(--accent); }
.cross { color: var(--muted2); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q .arrow {
  color: var(--accent);
  transition: var(--transition);
  font-size: 1.2rem;
}
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p {
  padding: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ===== Marketplace ===== */
.marketplace-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  border: 1px solid var(--rule);
  transition: var(--transition);
}
.filter-btn:hover { color: var(--ink); border-color: var(--muted); }
.filter-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.strategy-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.strategy-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.strategy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.strategy-name { font-weight: 700; font-size: 1rem; }
.strategy-author { font-size: 0.78rem; color: var(--muted); }
.strategy-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}
.tag-green { background: var(--accent-dim); color: var(--accent); }
.tag-gold { background: var(--accent2-dim); color: var(--accent2); }
.tag-purple { background: rgba(124,92,252,0.15); color: var(--purple); }
.strategy-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.metric { text-align: center; }
.metric .val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
}
.metric .val.pos { color: var(--accent); }
.metric .val.neg { color: var(--danger); }
.metric .label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.15rem;
}
.strategy-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.strategy-price {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
}
.strategy-price .per { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

/* ===== Dashboard Preview ===== */
.dash-preview {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--bg2);
}
.dash-tabs { display: flex; gap: 1.5rem; }
.dash-tab {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.dash-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.dash-body { padding: 1.5rem; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dash-stat {
  background: var(--bg2);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.dash-stat .label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.dash-stat .val {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
}
.dash-chart {
  background: var(--bg2);
  border: 1px solid var(--rule-light);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  height: 280px;
  position: relative;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { margin-bottom: 2rem; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--rule);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { font-size: 0.85rem; margin-top: 0.75rem; max-width: 280px; }
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.25rem 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--rule-light);
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ===== Page Header ===== */
.page-header {
  padding: 8rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 { margin-bottom: 0.75rem; position: relative; }
.page-header p { font-size: 1.1rem; max-width: 560px; margin: 0 auto; position: relative; }

/* ===== Exchange badges ===== */
.exchange-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
}
.exchange-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
  .feature-grid, .steps, .strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; }
  .bento-item.large, .bento-item.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--rule);
    padding: 1.5rem;
    gap: 1rem;
  }
  .hero { padding: 6rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .feature-grid, .steps, .strategy-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ==============================================
   ★ COOL FX — Premium Visual Upgrade
   ============================================== */

/* ----- Animated Mesh Background ----- */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: mesh-drift 20s ease-in-out infinite;
}
.mesh-blob:nth-child(1) {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,170,0.15), transparent 70%);
  top: -10%; left: -5%;
  animation-delay: 0s;
}
.mesh-blob:nth-child(2) {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124,92,252,0.12), transparent 70%);
  bottom: -5%; right: -5%;
  animation-delay: -7s;
}
.mesh-blob:nth-child(3) {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,184,0,0.08), transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -14s;
}
@keyframes mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 60px) scale(0.9); }
}

/* ----- Particle Canvas ----- */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* ----- Grid Overlay ----- */
.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,212,170,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,170,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* ----- Neon Glow Buttons ----- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  box-shadow: 0 0 30px rgba(0,212,170,0.4), 0 0 60px rgba(0,212,170,0.2);
}

/* ----- Glassmorphism Cards ----- */
.glass-card {
  background: rgba(22, 27, 38, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
  border-radius: var(--radius);
}

/* ----- Spotlight Card Hover ----- */
.spotlight-card {
  position: relative;
  overflow: hidden;
}
.spotlight-card::after {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,212,170,0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 50%;
}
.spotlight-card:hover::after { opacity: 1; }

/* ----- Animated Gradient Border ----- */
.gradient-border {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
}
.gradient-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, var(--accent), transparent 40%, var(--purple) 80%);
  -webkit-mask: linear-gradient(white, white) content-box, linear-gradient(white, white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gradient-border:hover::before { opacity: 1; }

/* ----- Animated Gradient Text ----- */
.grad-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--purple) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: grad-shift 4s linear infinite;
}
@keyframes grad-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ----- Glow Pulse ----- */
.glow-pulse {
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,212,170,0.15); }
  50% { box-shadow: 0 0 40px rgba(0,212,170,0.3), 0 0 80px rgba(0,212,170,0.1); }
}

/* ----- Floating Animation ----- */
.float-anim {
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ----- Shimmer Loading ----- */
.shimmer {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg2) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ----- Scroll Reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.40s; }

/* ----- Slide In Left/Right ----- */
.slide-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.slide-right { opacity: 0; transform: translateX(40px); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }

/* ----- Scale In ----- */
.scale-in { opacity: 0; transform: scale(0.92); transition: all 0.6s cubic-bezier(0.16,1,0.3,1); }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* ----- 3D Tilt Card ----- */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

/* ----- Neon Stat Numbers ----- */
.neon-number {
  font-family: var(--font-mono);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0,212,170,0.3);
}

/* ----- Live Ticker Bar ----- */
.ticker-bar {
  display: flex;
  gap: 2rem;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.ticker-item .symbol { color: var(--ink); font-weight: 600; }
.ticker-item .up { color: var(--accent); }
.ticker-item .down { color: var(--danger); }

/* ----- Price Flash ----- */
.flash-green { animation: flash-green 0.6s ease; }
.flash-red { animation: flash-red 0.6s ease; }
@keyframes flash-green {
  0% { background: rgba(0,212,170,0.2); }
  100% { background: transparent; }
}
@keyframes flash-red {
  0% { background: rgba(255,87,87,0.2); }
  100% { background: transparent; }
}

/* ----- Glow Dot ----- */
.glow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
  animation: glow-dot-pulse 2s ease-in-out infinite;
}
@keyframes glow-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ----- Card Glow Border on Hover ----- */
.feature-card, .strategy-card, .price-card, .step-card, .bento-item {
  position: relative;
  overflow: hidden;
}
.feature-card::after, .strategy-card::after {
  content: '';
  position: absolute;
  top: var(--card-y, 50%);
  left: var(--card-x, 50%);
  width: 200px; height: 200px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,212,170,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.feature-card:hover::after, .strategy-card:hover::after { opacity: 1; }

/* ----- Hero Glow Text ----- */
.hero-glow {
  text-shadow: 0 0 40px rgba(0,212,170,0.15);
}

/* ----- Animated Underline ----- */
.nav-underline {
  position: relative;
}
.nav-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.nav-underline:hover::after { width: 100%; }

/* ----- Scroll Progress Bar ----- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--purple));
  z-index: 200;
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(0,212,170,0.5);
}

/* ----- Loading Spinner ----- */
.spinner-ring {
  width: 40px; height: 40px;
  border: 3px solid var(--rule);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----- Ripple Effect ----- */
.ripple {
  position: relative;
  overflow: hidden;
}

/* ----- Badge Glow ----- */
.badge {
  box-shadow: 0 0 15px rgba(0,212,170,0.1);
}

/* ----- Featured Price Card Glow ----- */
.price-card.featured {
  animation: featured-glow 4s ease-in-out infinite;
}
@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(0,212,170,0.08); }
  50% { box-shadow: 0 0 50px rgba(0,212,170,0.15), 0 0 100px rgba(0,212,170,0.05); }
}

/* ----- Content z-index above bg effects ----- */
.navbar, .hero, .section, footer, .page-header, .cta-section {
  position: relative;
  z-index: 1;
}

/* ----- Marquee Exchange Logos ----- */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

/* ----- Reduced Motion ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
