/* ================================================
   RAPTORZ RANGE THEORY — Main Stylesheet
   Dark Trading Premium Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary:    #020810;
  --bg-secondary:  #050d1a;
  --bg-card:       #081220;
  --bg-card-hover: #0d1f35;
  --neon-cyan:     #00f5ff;
  --neon-blue:     #0080ff;
  --neon-green:    #00ff88;
  --neon-orange:   #ff6b00;
  --gold:          #ffd700;
  --text-primary:  #e8f4ff;
  --text-secondary:#8aabcc;
  --text-muted:    #4a6a8a;
  --border:        rgba(0,245,255,0.15);
  --border-bright: rgba(0,245,255,0.4);
  --glow-cyan:     0 0 20px rgba(0,245,255,0.5), 0 0 60px rgba(0,245,255,0.2);
  --glow-blue:     0 0 20px rgba(0,128,255,0.5);
  --glow-green:    0 0 20px rgba(0,255,136,0.4);
  --gradient-main: linear-gradient(135deg, #00f5ff 0%, #0080ff 50%, #7b2fff 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700, #ff8c00);
  --gradient-dark: linear-gradient(180deg, #020810 0%, #050d1a 100%);
  --font-display:  'Orbitron', sans-serif;
  --font-body:     'Rajdhani', sans-serif;
  --font-text:     'Inter', sans-serif;
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(0,128,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 30% at 80% 80%, rgba(0,245,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h6, .label { font-family: var(--font-body); font-weight: 600; }
p { font-family: var(--font-text); color: var(--text-secondary); }
a { color: var(--neon-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; }

/* ── Grid Container ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  background: linear-gradient(135deg, #fff 0%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 30px rgba(0,128,255,0.4);
}
.btn-primary:hover {
  box-shadow: 0 6px 40px rgba(0,245,255,0.6);
  transform: translateY(-2px);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--border-bright);
}
.btn-outline:hover {
  background: rgba(0,245,255,0.1);
  box-shadow: var(--glow-cyan);
  color: var(--neon-cyan);
}

.btn-gold {
  background: var(--gradient-gold);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 30px rgba(255,215,0,0.4);
}
.btn-gold:hover {
  box-shadow: 0 6px 50px rgba(255,215,0,0.7);
  transform: translateY(-2px);
  color: #000;
}

.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

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

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(0,245,255,0.1);
}
.card:hover::before { opacity: 1; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(2, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0,245,255,0.5));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text span { display: block; font-size: 9px; letter-spacing: 4px; color: var(--neon-cyan); -webkit-text-fill-color: var(--neon-cyan); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--neon-cyan);
  background: rgba(0,245,255,0.08);
}

.nav-cta {
  background: var(--gradient-main) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 20px rgba(0,128,255,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.12) saturate(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(2,8,16,0.95) 0%, rgba(5,13,26,0.7) 50%, rgba(2,8,16,0.9) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(0,128,255,0.15) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,245,255,0.1);
  border: 1px solid rgba(0,245,255,0.3);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 28px;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,245,255,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(0,245,255,0); }
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 .line1 { display: block; color: #fff; }
.hero h1 .line2 {
  display: block;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .line3 { display: block; color: var(--gold); }

.hero-desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { position: relative; }
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}
.stat::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%; transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--border);
}
.stat:last-child::after { display: none; }

/* Floating Chart Visual */
.hero-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.7;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,245,255,0.08);
}
.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: rgba(0,245,255,0.08);
  border: 1px solid rgba(0,245,255,0.15);
}
.feature-icon.blue { background: rgba(0,128,255,0.1); border-color: rgba(0,128,255,0.2); color: var(--neon-blue); }
.feature-icon.cyan { color: var(--neon-cyan); }
.feature-icon.green { background: rgba(0,255,136,0.08); border-color: rgba(0,255,136,0.15); color: var(--neon-green); }
.feature-icon.gold { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.2); color: var(--gold); }
.feature-icon.orange { background: rgba(255,107,0,0.08); border-color: rgba(255,107,0,0.2); color: var(--neon-orange); }

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0,245,255,0.1);
}

.stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.author-name { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: #fff; }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ── Pricing Card ── */
.pricing-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  width: 380px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 60px rgba(0,245,255,0.15), inset 0 0 60px rgba(0,245,255,0.03);
}
.pricing-badge {
  position: absolute;
  top: 20px; right: -28px;
  background: var(--gradient-gold);
  color: #000;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 44px;
  transform: rotate(45deg);
  transform-origin: center;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 16px 0;
}
.pricing-price sup { font-size: 24px; vertical-align: top; margin-top: 10px; color: var(--text-secondary); }
.pricing-price span { font-size: 16px; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 32px; }
.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  color: var(--text-secondary);
}
.pricing-features li i { color: var(--neon-green); font-size: 13px; }

/* ── FAQ ── */
.faq-list { margin-top: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-bright); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { color: var(--neon-cyan); }
.faq-question i { color: var(--neon-cyan); transition: transform 0.3s; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(5,13,26,0.5);
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 20px 24px;
}
.faq-answer p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 60px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}
.step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px rgba(0,128,255,0.4);
}
.step h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--text-secondary); }

/* ── Table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comparison-table th {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--neon-cyan);
  background: rgba(0,245,255,0.04);
  text-transform: uppercase;
}
.comparison-table td { color: var(--text-secondary); }
.comparison-table tr:hover td { background: rgba(255,255,255,0.02); }
.check-yes { color: var(--neon-green); }
.check-no { color: #ff4444; }

/* ── Form ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-text);
  font-size: 15px;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(0,245,255,0.1);
  background: rgba(0,245,255,0.03);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: var(--bg-card); }

/* ── Alert / Notification ── */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.alert-success { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.3); color: var(--neon-green); }
.alert-error { background: rgba(255,68,68,0.1); border: 1px solid rgba(255,68,68,0.3); color: #ff6666; }
.alert-info { background: rgba(0,245,255,0.08); border: 1px solid rgba(0,245,255,0.2); color: var(--neon-cyan); }
.alert-warning { background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.2); color: var(--gold); }

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--neon-cyan); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(0,245,255,0.1);
  border-color: var(--border-bright);
  color: var(--neon-cyan);
}

/* ── Page Header ── */
.page-header {
  background: linear-gradient(180deg, rgba(0,128,255,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header h1 { font-size: clamp(32px, 5vw, 56px); color: #fff; position: relative; }
.page-header p { font-size: 17px; color: var(--text-secondary); margin-top: 12px; position: relative; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--neon-cyan); }
.breadcrumb i { font-size: 10px; }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
  margin: 60px 0;
}

/* ── Badge / Tag ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tag-cyan { background: rgba(0,245,255,0.1); border: 1px solid rgba(0,245,255,0.3); color: var(--neon-cyan); }
.tag-green { background: rgba(0,255,136,0.1); border: 1px solid rgba(0,255,136,0.3); color: var(--neon-green); }
.tag-gold { background: rgba(255,215,0,0.1); border: 1px solid rgba(255,215,0,0.3); color: var(--gold); }
.tag-orange { background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.3); color: var(--neon-orange); }

/* ── Ticker Bar ── */
.ticker-bar {
  background: rgba(0,245,255,0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content {
  display: inline-flex;
  gap: 60px;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
}
.ticker-item .sym { color: var(--neon-cyan); }
.ticker-item .price { color: #fff; }
.ticker-item .change { font-size: 12px; }
.up { color: var(--neon-green); }
.down { color: #ff4444; }

/* ── Glow Orbs (bg decoration) ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-blue { width: 400px; height: 400px; background: rgba(0,128,255,0.08); }
.orb-cyan { width: 300px; height: 300px; background: rgba(0,245,255,0.06); }

/* ── Download Page ── */
.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.download-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-main);
}
.download-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-cyan); }
.download-icon { font-size: 48px; margin-bottom: 20px; }
.download-card h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.download-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; position: fixed; inset: 0; background: rgba(2,8,16,0.98); flex-direction: column; justify-content: center; align-items: center; z-index: 999; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; }
  .hamburger { display: flex; z-index: 1000; }
  .hero h1 { font-size: 36px; }
  .hero-stats { gap: 24px; }
  .hero-cta { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-card { width: 100%; max-width: 400px; }
  .steps-grid::before { display: none; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-cyan { color: var(--neon-cyan); }
.text-green { color: var(--neon-green); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-40 { margin-bottom: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media(max-width:768px){ .grid-2,.grid-3 { grid-template-columns: 1fr; } }

/* PayPal Button Wrapper */
#paypal-button-container {
  margin: 24px auto;
  max-width: 400px;
}
.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}
.secure-badge i { color: var(--neon-green); }

/* Admin Panel */
.admin-sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  min-height: 100vh;
  padding: 24px;
  position: fixed;
  left: 0; top: 0;
}
.admin-main {
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-box-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: rgba(0,245,255,0.1);
  color: var(--neon-cyan);
}
.stat-box-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-box-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

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

/* Chart Placeholder */
.chart-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.chart-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  opacity: 0.8;
  filter: saturate(0.7) brightness(0.9);
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: slideIn 0.3s ease;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.toast.success { border-color: rgba(0,255,136,0.4); }
.toast.success i { color: var(--neon-green); }
.toast.error { border-color: rgba(255,68,68,0.4); }
.toast.error i { color: #ff4444; }
