


/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}
::selection { background: rgba(0,191,255,0.3); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--electric-blue), var(--neon-purple)); border-radius: 3px; }

/* ===== PARTICLES BG ===== */
#particles-js {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===== GRID OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,191,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,191,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
}

/* ======================== */
/* SCROLLBAR */
/* ======================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:var(--qx-gradient);
    border-radius:20px;
}

/* ======================== */
/* NAVBAR */
/* ======================== */

.qx-navbar{
    background:rgba(5,8,22,0.75);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.qx-logo{
    font-size:34px;
    font-weight:800;
    font-family:'Orbitron',sans-serif;
    background:var(--qx-gradient);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.qx-nav-link{
    color:white !important;
    margin-left:18px;
    transition:0.4s;
}

.qx-nav-link:hover{
    color:#00F0FF !important;
}

.qx-btn{
    padding:13px 30px;
    border:none;
    border-radius:50px;
    background:linear-gradient(214deg, #1d83a8, #a06fd6);
    color:white;
    font-weight:600;
    transition:0.4s;
    box-shadow:0 0 25px rgba(176,38,255,0.4);
    margin:12px;
}

.qx-btn:hover{
    transform:translateY(-5px);
}




/* ======================== */
/* ANIMATION */
/* ======================== */

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ======================== */
/* RESPONSIVE */
/* ======================== */

@media(max-width:991px){

    .qx-hero{
        text-align:center;
    }

    .qx-hero-text h1{
        font-size:50px;
    }

}

@media(max-width:600px){

    .qx-hero-text h1{
        font-size:36px;
    }

}



.fixed-top {
  position: none !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  width: 100%;
}





#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding:10px 0 60px;
  overflow: hidden;
  z-index: 1;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(157,78,221,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(0,191,255,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(57,255,20,0.06) 0%, transparent 50%);
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(0,191,255,0.08); top: 10%; right: 5%; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(157,78,221,0.1); bottom: 10%; left: 0%; animation-delay: 3s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(57,255,20,0.06); top: 60%; right: 30%; animation-delay: 6s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,191,255,0.08);
  border: 1px solid rgba(0,191,255,0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--electric-blue);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--crypto-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--crypto-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title .line-blue {
  background: linear-gradient(90deg, var(--electric-blue), #60DFFF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-shadow: none;
}
.hero-title .line-glow {
  background: linear-gradient(90deg, var(--neon-purple) 0%, var(--electric-blue) 50%, var(--crypto-green) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(240,244,255,0.7);
  max-width: 520px;
  margin-bottom: 16px;
}
.hero-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 36px;
}
.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--neon-purple) 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 25px rgba(0,191,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.btn-primary-glow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary-glow:hover::before { left: 100%; }
.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0,191,255,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #fff;
}
.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 13px 30px;
  background: transparent;
  border: 1px solid rgba(0,191,255,0.4);
  border-radius: 8px;
  color: var(--electric-blue);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-secondary-outline:hover {
  background: rgba(0,191,255,0.1);
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
  color: var(--electric-blue);
  transform: translateY(-3px);
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 5px 12px;
}
.trust-badge i { color: var(--crypto-green); font-size: 0.8rem; }


.hero-dashboard {
  position: relative;
  z-index: 2;
}
.hero-main-card {
  background: rgba(10,10,30,0.85);
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(0,191,255,0.1), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.hero-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric-blue), var(--neon-purple), transparent);
}
.ai-robot-display {
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.robot-emoji-container {
  position: relative;
  display: inline-block;
}
.robot-svg {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 20px rgba(0,191,255,0.6));
  animation: robotFloat 4s ease-in-out infinite;
}
@keyframes robotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.robot-glow-ring {
  position: absolute;
  inset: -15px;
  border: 2px solid rgba(0,191,255,0.2);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}
.robot-glow-ring-2 {
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(157,78,221,0.15);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite 1s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.4; }
}
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,191,255,0.1);
}
.dashboard-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--electric-blue);
  letter-spacing: 1px;
}
.live-dot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--crypto-green);
}
.live-dot::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--crypto-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--crypto-green);
  animation: pulse 1.5s infinite;
}
.crypto-ticker-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
  cursor: pointer;
}
.crypto-ticker-row:hover {
  background: rgba(0,191,255,0.06);
  border-color: rgba(0,191,255,0.15);
  transform: translateX(4px);
}
.ticker-left { display: flex; align-items: center; gap: 10px; }
.ticker-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.ticker-icon.btc { background: linear-gradient(135deg, #f7931a, #ff6b00); }
.ticker-icon.eth { background: linear-gradient(135deg, #627eea, #9D4EDD); }
.ticker-icon.bnb { background: linear-gradient(135deg, #F3BA2F, #FFB703); color: #000; }
.ticker-icon.sol { background: linear-gradient(135deg, #9945FF, #14F195); }
.ticker-name { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.ticker-pair { font-size: 0.65rem; color: var(--text-muted); font-family: var(--font-mono); }
.ticker-price { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-primary); text-align: right; }
.ticker-change { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; }
.ticker-change.up { color: var(--crypto-green); }
.ticker-change.down { color: #FF4040; }
.floating-card {
  position: absolute;
  background: rgba(10,15,35,0.9);
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(15px);
  font-size: 0.72rem;
  animation: floatCard 6s ease-in-out infinite;
  z-index: 5;
  white-space: nowrap;
}
.floating-card-1 { top: 10%; left: -15%; animation-delay: 0s; }
.floating-card-2 { bottom: 20%; right: -12%; animation-delay: 2s; }
.floating-card-3 { top: 45%; left: -20%; animation-delay: 4s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-label { color: var(--text-muted); font-size: 0.65rem; font-family: var(--font-mono); display: block; }
.fc-value { color: var(--crypto-green); font-weight: 700; font-family: var(--font-display); font-size: 0.85rem; }
.fc-value.blue { color: var(--electric-blue); }
.fc-value.gold { color: var(--gold); }
.mini-chart { display: flex; align-items: flex-end; gap: 2px; height: 20px; margin-top: 4px; }
.bar { width: 3px; border-radius: 1px; background: var(--crypto-green); }



/* ===== SECTION STYLES ===== */
section { position: relative; z-index: 1; }
.section-padding { padding: 100px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--electric-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--electric-blue);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-title .highlight {
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-purple));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
}

/* ===== LIVE MARKET SECTION ===== */
#market { background: linear-gradient(180deg, rgba(0,191,255,0.02) 0%, transparent 100%); }
.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.market-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.market-card:hover::before { opacity: 1; }
.market-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0,191,255,0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0,191,255,0.15), 0 0 20px rgba(0,191,255,0.08);
}
.market-coin-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.coin-icon-lg {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
}
.coin-icon-lg.btc { background: linear-gradient(135deg, #f7931a, #ff6b00); }
.coin-icon-lg.eth { background: linear-gradient(135deg, #627eea, #9D4EDD); }
.coin-icon-lg.bnb { background: linear-gradient(135deg, #F3BA2F, #FFB703); color: #000; }
.coin-icon-lg.sol { background: linear-gradient(135deg, #9945FF, #14F195); }
.coin-icon-lg.xrp { background: linear-gradient(135deg, #00AAE4, #0070C0); }
.coin-name-block .coin-sym { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; }
.coin-name-block .coin-full { font-size: 0.7rem; color: var(--text-muted); }
.market-price {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.market-change { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.market-change.pos { color: var(--crypto-green); }
.market-change.neg { color: #FF4040; }
.mini-sparkline { margin-top: 12px; }
.sparkline-svg { width: 100%; height: 36px; }


/* ===== STATS SECTION ===== */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,191,255,0.05) 0%, rgba(157,78,221,0.05) 100%);
  border-top: 1px solid rgba(0,191,255,0.1);
  border-bottom: 1px solid rgba(0,191,255,0.1);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,191,255,0.04) 0%, transparent 70%);
}
.stat-block { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-blue), var(--crypto-green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}


/* ===== FEATURES SECTION ===== */
#features { background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(157,78,221,0.05) 0%, transparent 70%); }
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,191,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover { transform: translateY(-8px); border-color: rgba(0,191,255,0.3); }
.feature-card:hover::after { opacity: 1; }
.feature-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}
.feature-icon-wrap.blue { background: rgba(0,191,255,0.1); box-shadow: 0 0 20px rgba(0,191,255,0.15); }
.feature-icon-wrap.purple { background: rgba(157,78,221,0.1); box-shadow: 0 0 20px rgba(157,78,221,0.15); }
.feature-icon-wrap.green { background: rgba(57,255,20,0.08); box-shadow: 0 0 20px rgba(57,255,20,0.12); }
.feature-icon-wrap.gold { background: rgba(255,183,3,0.1); box-shadow: 0 0 20px rgba(255,183,3,0.15); }
.feature-title { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); position: relative; z-index: 1; }
.feature-desc { font-size: 0.82rem; color: var(--text-muted); position: relative; z-index: 1; }

/* ===== HOW IT WORKS ===== */
#how-it-works { background: linear-gradient(180deg, rgba(0,191,255,0.03) 0%, rgba(157,78,221,0.03) 100%); }
.timeline-container { position: relative; }
.timeline-line {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,191,255,0.3), var(--neon-purple), rgba(0,191,255,0.3), transparent);
}
.timeline-step { text-align: center; position: relative; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(5,5,5,0.9);
  border: 2px solid rgba(0,191,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--electric-blue);
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0,191,255,0.15);
}
.timeline-step:hover .step-number {
  background: rgba(0,191,255,0.15);
  border-color: var(--electric-blue);
  box-shadow: var(--glow-blue);
  transform: scale(1.1);
}
.step-title { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; letter-spacing: 0.5px; }
.step-desc { font-size: 0.75rem; color: var(--text-muted); }

/* ===== BENEFITS SECTION ===== */
.benefit-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}
.benefit-item:hover {
  background: rgba(0,191,255,0.06);
  border-color: rgba(0,191,255,0.15);
  transform: translateX(6px);
}
.benefit-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0,191,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(0,191,255,0.1);
}
.benefit-title { font-family: var(--font-display); font-size: 0.82rem; font-weight: 700; margin-bottom: 4px; color: var(--text-primary); }
.benefit-desc { font-size: 0.78rem; color: var(--text-muted); }
.dashboard-mockup {
  background: rgba(10,15,35,0.9);
  border: 1px solid rgba(0,191,255,0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,191,255,0.12), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.mockup-header {
  background: rgba(0,191,255,0.05);
  border-bottom: 1px solid rgba(0,191,255,0.1);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: var(--crypto-green); }
.mockup-title { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted); margin-left: auto; margin-right: auto; }
.mockup-body { padding: 16px; }
.chart-area {
  background: rgba(0,191,255,0.03);
  border: 1px solid rgba(0,191,255,0.08);
  border-radius: 8px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  gap: 3px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
.chart-line-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart-bar-group { display: flex; align-items: flex-end; gap: 2px; flex: 1; height: 100%; }
.c-bar { flex: 1; border-radius: 2px 2px 0 0; }
.stats-row { display: flex; gap: 8px; }
.stat-mini {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}
.stat-mini-value { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 700; }
.stat-mini-label { font-size: 0.6rem; color: var(--text-muted); font-family: var(--font-mono); }



/* ===== PRICING SECTION ===== */
#pricing { background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(157,78,221,0.06) 0%, transparent 70%); }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  background: rgba(0,191,255,0.07);
  border: 1px solid rgba(0,191,255,0.3);
  box-shadow: 0 0 40px rgba(0,191,255,0.15);
  transform: scale(1.04);
}
.pricing-card:not(.featured):hover {
  transform: translateY(-6px);
  border-color: rgba(0,191,255,0.25);
  box-shadow: 0 15px 40px rgba(0,191,255,0.1);
}
.featured-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-purple));
  padding: 4px 20px;
  border-radius: 0 0 10px 10px;
  font-size: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
  font-weight: 700;
}
.plan-tier {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.plan-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.plan-name.blue { color: var(--electric-blue); }
.plan-name.purple { color: var(--neon-purple); }
.plan-name.gold { color: var(--gold); }
.plan-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 20px 0; }
.plan-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-align: left;
}
.plan-feature i { color: var(--crypto-green); font-size: 0.75rem; flex-shrink: 0; }
.btn-plan {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px;
  border-radius: 8px;
  margin-top: 24px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  text-align: center;
}
.btn-plan.outline {
  border: 1px solid rgba(0,191,255,0.3);
  color: var(--electric-blue);
  background: transparent;
}
.btn-plan.outline:hover { background: rgba(0,191,255,0.1); box-shadow: var(--glow-blue); }
.btn-plan.filled {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-purple));
  color: #fff;
  border: none;
  box-shadow: 0 0 20px rgba(0,191,255,0.3);
}
.btn-plan.filled:hover { box-shadow: 0 0 35px rgba(0,191,255,0.5); transform: translateY(-2px); color: #fff; }
.plan-note {
  font-size: 0.65rem;
  color: rgba(136,153,187,0.6);
  font-family: var(--font-mono);
  margin-top: 10px;
}