/*
Theme Name: PumpFun Trading Bot Pro
Theme URI: https://pumpfunbot.com
Author: PumpFun Bot Pro
Author URI: https://pumpfunbot.com
Description: Professional trading bot platform for PUMP.FUN tokens - Buy & Sell automation with advanced analytics
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pumpfun-bot
Tags: crypto, trading, bot, dark, modern, responsive
*/

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00FF88;
  --primary-dark: #00CC6A;
  --primary-glow: rgba(0, 255, 136, 0.25);
  --secondary: #FF6B00;
  --secondary-glow: rgba(255, 107, 0, 0.25);
  --danger: #FF3366;
  --danger-glow: rgba(255, 51, 102, 0.2);
  --accent-blue: #00D4FF;
  --accent-purple: #9945FF;
  --bg-base: #040A0F;
  --bg-card: #070F17;
  --bg-card2: #0A1520;
  --bg-border: rgba(0, 255, 136, 0.12);
  --bg-border2: rgba(0, 255, 136, 0.06);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.65);
  --text-muted: rgba(255,255,255,0.35);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-green: 0 0 40px rgba(0, 255, 136, 0.15);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--secondary) 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LAYOUT
============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #040A0F;
  box-shadow: 0 4px 24px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,255,136,0.4);
  color: #040A0F;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(0,255,136,0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(0,255,136,0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
  color: var(--primary);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger) 0%, #CC0033 100%);
  color: white;
  box-shadow: 0 4px 24px var(--danger-glow);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,51,102,0.4);
  color: white;
}

.btn-orange {
  background: linear-gradient(135deg, var(--secondary) 0%, #FF9500 100%);
  color: white;
  box-shadow: 0 4px 24px var(--secondary-glow);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,107,0,0.4);
  color: white;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

/* ============================================
   CARDS
============================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,136,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover {
  border-color: rgba(0,255,136,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-green), var(--shadow-card);
}

/* ============================================
   HEADER / NAVIGATION
============================================ */
#masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#masthead.scrolled {
  background: rgba(4, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.site-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px var(--primary-glow);
}

.site-logo span.pump { color: var(--primary); }
.site-logo span.fun { color: var(--accent-blue); }

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-navigation ul li a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a {
  color: var(--primary);
  background: rgba(0,255,136,0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(153,69,255,0.08) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  animation-delay: -2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 0.05em;
  animation: slideDown 0.6s ease both;
}

.hero-badge .live-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  margin-bottom: 24px;
  animation: slideUp 0.7s ease 0.1s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
  animation: slideUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  animation: slideUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  animation: slideUp 0.7s ease 0.4s both;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero dashboard preview */
.hero-visual {
  position: relative;
  z-index: 1;
  animation: slideLeft 0.8s ease 0.3s both;
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-green), var(--shadow-card);
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-border2);
}

.dashboard-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--primary);
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--primary);
  animation: blink 1.5s infinite;
}

.trade-list { display: flex; flex-direction: column; gap: 10px; }

.trade-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card2);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.trade-token {
  display: flex;
  align-items: center;
  gap: 10px;
}

.token-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.trade-name { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600; }
.trade-time { font-size: 0.7rem; color: var(--text-muted); }

.trade-type {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 6px;
}

.trade-type.buy {
  background: rgba(0,255,136,0.15);
  color: var(--primary);
  border: 1px solid rgba(0,255,136,0.3);
}

.trade-type.sell {
  background: rgba(255,51,102,0.15);
  color: var(--danger);
  border: 1px solid rgba(255,51,102,0.3);
}

.trade-profit {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.trade-profit.positive { color: var(--primary); }
.trade-profit.negative { color: var(--danger); }

/* Chart mini */
.mini-chart {
  margin-top: 16px;
  padding: 12px;
  background: var(--bg-card2);
  border-radius: var(--radius);
  border: 1px solid var(--bg-border2);
}

.mini-chart canvas { width: 100% !important; height: 80px !important; }

/* ============================================
   TICKER BAR
============================================ */
.ticker-bar {
  background: rgba(0,255,136,0.05);
  border-top: 1px solid var(--bg-border2);
  border-bottom: 1px solid var(--bg-border2);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-name { color: var(--text-secondary); font-weight: 600; }
.ticker-price { color: var(--text-primary); }
.ticker-change.up { color: var(--primary); }
.ticker-change.down { color: var(--danger); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   FEATURES SECTION
============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(0,255,136,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-green), var(--shadow-card);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  position: relative;
}

.feature-icon-green {
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
  box-shadow: 0 0 20px rgba(0,255,136,0.1);
}

.feature-icon-blue {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 0 20px rgba(0,212,255,0.1);
}

.feature-icon-orange {
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  box-shadow: 0 0 20px rgba(255,107,0,0.1);
}

.feature-icon-purple {
  background: rgba(153,69,255,0.1);
  border: 1px solid rgba(153,69,255,0.2);
  box-shadow: 0 0 20px rgba(153,69,255,0.1);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   BOT PLANS / PRICING
============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 60px rgba(0,255,136,0.15), var(--shadow-card);
}

.plan-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-blue));
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  color: #040A0F;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.plan-price-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.plan-price-currency {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.plan-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-description {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  margin-top: 8px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.plan-feature-item .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,255,136,0.15);
  border: 1px solid rgba(0,255,136,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--primary);
  flex-shrink: 0;
}

.plan-feature-item .cross {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ============================================
   HOW IT WORKS
============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--bg-card2);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  margin: 0 auto 24px;
  box-shadow: 0 0 30px var(--primary-glow);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.step-card p {
  font-size: 0.875rem;
  margin: 0;
}

/* Connector line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-blue), var(--accent-purple));
  opacity: 0.3;
  z-index: 0;
}

/* ============================================
   STATS / COUNTER
============================================ */
.stats-section {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border2);
  border-bottom: 1px solid var(--bg-border2);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0,255,136,0.2);
  box-shadow: var(--shadow-green);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FFD700;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #040A0F;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.author-profit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--primary);
}

/* ============================================
   FAQ
============================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(0,255,136,0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(0,255,136,0.06) 0%, rgba(0,212,255,0.04) 100%);
  border-top: 1px solid var(--bg-border2);
  border-bottom: 1px solid var(--bg-border2);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--bg-border2);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {}

.footer-brand .site-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(0,255,136,0.1);
  border-color: rgba(0,255,136,0.3);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--bg-border2);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-disclaimer {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 32px;
  font-size: 0.78rem;
  color: rgba(255, 107, 0, 0.7);
  line-height: 1.6;
}

/* ============================================
   DASHBOARD PAGE
============================================ */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: 80px;
}

.sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--bg-border2);
  padding: 32px 20px;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  overflow-y: auto;
}

.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: pointer;
}

.sidebar-nav-item:hover,
.sidebar-nav-item.active {
  background: rgba(0,255,136,0.08);
  color: var(--primary);
}

.sidebar-nav-item .icon { font-size: 1rem; width: 20px; text-align: center; }

.dashboard-main { padding: 40px; }

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.metric-card:hover {
  border-color: rgba(0,255,136,0.2);
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.metric-change {
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.metric-change.up { color: var(--primary); }
.metric-change.down { color: var(--danger); }

/* ============================================
   BOT CONFIGURATION TABLE
============================================ */
.bot-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.bot-table {
  width: 100%;
  border-collapse: collapse;
}

.bot-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--bg-border2);
}

.bot-table td {
  padding: 16px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,255,136,0.04);
  vertical-align: middle;
}

.bot-table tr:last-child td { border-bottom: none; }

.bot-table tr:hover td { background: rgba(0,255,136,0.02); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.status-badge.running {
  background: rgba(0,255,136,0.1);
  color: var(--primary);
  border: 1px solid rgba(0,255,136,0.2);
}

.status-badge.paused {
  background: rgba(255,214,0,0.1);
  color: #FFD600;
  border: 1px solid rgba(255,214,0,0.2);
}

.status-badge.stopped {
  background: rgba(255,51,102,0.1);
  color: var(--danger);
  border: 1px solid rgba(255,51,102,0.2);
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: 0.4s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .toggle-slider {
  background: var(--primary);
}

input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

/* ============================================
   FORM STYLES
============================================ */
.form-group { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card2);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}

.form-input::placeholder { color: var(--text-muted); }

.form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card2);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
}

.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}

/* ============================================
   ALERTS & NOTIFICATIONS
============================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.alert-success {
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  color: var(--primary);
}

.alert-warning {
  background: rgba(255,214,0,0.08);
  border: 1px solid rgba(255,214,0,0.2);
  color: #FFD600;
}

.alert-danger {
  background: rgba(255,51,102,0.08);
  border: 1px solid rgba(255,51,102,0.2);
  color: var(--danger);
}

.alert-info {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent-blue);
}

/* ============================================
   MODAL
============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.modal-close:hover {
  background: rgba(255,51,102,0.1);
  border-color: rgba(255,51,102,0.3);
  color: var(--danger);
}

/* ============================================
   SCROLL TO TOP
============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #040A0F;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px var(--primary-glow);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* ============================================
   RISK DISCLAIMER BANNER
============================================ */
.risk-banner {
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(255,51,102,0.06));
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.risk-banner-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.risk-banner-text {
  font-size: 0.82rem;
  color: rgba(255,107,0,0.8);
  line-height: 1.6;
}

.risk-banner-text strong { color: rgba(255,107,0,1); }

/* ============================================
   PERFORMANCE CHART SECTION
============================================ */
.chart-section {
  background: var(--bg-card);
  border: 1px solid var(--bg-border2);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.chart-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.3);
  padding: 4px;
  border-radius: var(--radius);
}

.chart-tab {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-muted);
  transition: var(--transition);
}

.chart-tab.active {
  background: var(--primary);
  color: #040A0F;
}

/* ============================================
   PAGE TEMPLATES
============================================ */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}

.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* 404 */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 20vw, 12rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0,255,136,0.3);
  line-height: 1;
  margin-bottom: 24px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-section { text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .main-navigation { display: none; }
  .main-navigation.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: rgba(4,10,15,0.98); border-bottom: 1px solid var(--bg-border2); padding: 20px; }
  .main-navigation.open ul { flex-direction: column; }
  .menu-toggle { display: flex; }
  .header-cta .btn-secondary { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-desc { font-size: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 24px; }
  .btn-lg { padding: 14px 28px; }
  .plan-card { padding: 28px 24px; }
}

/* ============================================
   UTILITIES
============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-none { display: none; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.w-full { width: 100%; }

/* Animations for scroll */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
