/* ═══════════════════════════════════════════════════════════
   VESSAL — Premium Dark Theme Stylesheet v2
   Major upgrade: particles, chart animations, rotating
   gradient borders, shimmer effects, marquees, noise
   texture, smart navbar, scroll progress, back-to-top
   ═══════════════════════════════════════════════════════════ */

/* ─── @property for animated gradient border ─── */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ─── Design Tokens ─── */
:root {
  /* DARK MODE: Onyx / Charcoal Neutral + Emerald */
  --bg-primary: #09090b;
  --bg-secondary: #18181b;
  --bg-tertiary: #27272a;
  --bg-card: rgba(24, 24, 27, 0.6);
  --bg-card-hover: rgba(39, 39, 42, 0.4);
  
  --accent: #059669; /* Emerald Green */
  --accent-light: #34D399;
  --accent-dim: #047857;
  --accent-glow: rgba(5, 150, 105, 0.25);
  --accent-gradient: linear-gradient(135deg, #059669 0%, #10B981 100%);
  
  --text-primary: #FFFFFF;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --border-accent: rgba(5, 150, 105, 0.3);
  
  --glass-bg: rgba(9, 9, 11, 0.85);
  --glass-blur: 20px;
  
  --green: #059669;
  --red: #DC2626;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 50px rgba(5, 150, 105, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ─── Light Theme Tokens ─── */
body.light-theme {
  --bg-primary: #F8FAFC;
  --bg-secondary: #E8ECF1;
  --bg-tertiary: #E2E8F0;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  
  --accent: #059669; /* Consistent Emerald Lock */
  --accent-light: #34D399;
  --accent-dim: #047857;
  --accent-glow: rgba(5, 150, 105, 0.15);
  --accent-gradient: linear-gradient(135deg, #059669 0%, #10B981 100%);
  
  --text-primary: #020617;
  --text-secondary: #475569;
  --border-accent: rgba(5, 150, 105, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 30px rgba(5, 150, 105, 0.2);
}

body.light-theme::after {
  opacity: 0.03; /* Slightly darker noise for light theme */
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}


/* Noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─── Scroll Progress Bar ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-gradient);
  z-index: 10001;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
}

/* ─── Reveal Animations (blur + translate) ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ─── Section Shared ─── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(240, 185, 11, 0.06);
  border: 1px solid rgba(240, 185, 11, 0.12);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.title-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #0a0e1a;
  box-shadow: 0 4px 20px rgba(240, 185, 11, 0.25);
}

/* Shimmer sweep effect */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: shimmer 3.5s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 8px 35px rgba(240, 185, 11, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

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

.btn-outline-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.btn-outline-card:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(240, 185, 11, 0.05);
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.08);
}

.btn-card { display: block; width: 100%; text-align: center; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease, transform 0.35s ease;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 1px 0 var(--border);
}

.navbar.hidden { transform: translateY(-100%); }

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-icon { display: flex; align-items: center; }

.logo-accent {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--text-primary); }

.nav-link.active::after,
.nav-link:hover::after { width: 100%; }

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: var(--accent-gradient);
  color: #0a0e1a;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta-pulse {
  width: 6px;
  height: 6px;
  background: #0a0e1a;
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(240, 185, 11, 0.35);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 100%);
}

/* Glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-glow--1 {
  width: 700px; height: 700px;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 185, 11, 0.09) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero-glow--2 {
  width: 500px; height: 500px;
  bottom: 10%; right: -10%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  animation: pulseGlow 10s ease-in-out infinite reverse;
}

.hero-glow--3 {
  width: 400px; height: 400px;
  top: 60%; left: -5%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
  animation: pulseGlow 12s ease-in-out infinite 2s;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle var(--dur) ease-in-out var(--d) infinite;
}

/* Animated chart */
.hero-chart {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 90vw);
  opacity: 0.5;
  pointer-events: none;
  mask-image: linear-gradient(to top, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%, black 70%, transparent 100%);
}

.candle {
  opacity: 0;
  animation: candleGrow 0.6s ease-out forwards;
  animation-delay: calc(var(--i) * 0.12s + 0.5s);
}

.chart-line {
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: drawLine 2.5s ease-out 0.8s forwards;
}

.chart-area {
  opacity: 0;
  animation: fadeInSlow 1.5s ease-out 2.5s forwards;
}

.chart-dot {
  opacity: 0;
  animation: fadeInSlow 0.5s ease-out 3s forwards;
}

.chart-dot-pulse {
  opacity: 0;
  animation: fadeInSlow 0.5s ease-out 3s forwards, dotPulse 2s ease-in-out 3.5s infinite;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent-light);
  background: rgba(240, 185, 11, 0.05);
  border: 1px solid rgba(240, 185, 11, 0.1);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-subtitle strong { color: var(--text-primary); font-weight: 600; }

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 48px;
  backdrop-filter: blur(12px);
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}

.hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ═══════════════════════════════════════════════════════════
   LIVE PRICE TICKER
   ═══════════════════════════════════════════════════════════ */
.price-ticker {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 10px 0;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 0.82rem;
}

.ticker-pair {
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.ticker-price { font-weight: 500; font-variant-numeric: tabular-nums; }
.ticker-change { font-weight: 600; font-size: 0.75rem; font-variant-numeric: tabular-nums; }
.ticker-up { color: var(--green); }
.ticker-down { color: var(--red); }

/* ═══════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════ */
.stats-bar { padding: 80px 0; background: var(--bg-primary); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item { text-align: center; padding: 20px 16px; }

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-text { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   TRUST PARTNERS MARQUEE
   ═══════════════════════════════════════════════════════════ */
.trust-section {
  padding: 40px 0 60px;
  background: var(--bg-primary);
}

.trust-label {
  text-align: center;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 500;
}

.trust-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-track {
  display: flex;
  gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.trust-track:hover { animation-play-state: paused; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color var(--transition);
  cursor: default;
}

.trust-item:hover { color: var(--text-secondary); }
.trust-item svg { opacity: 0.5; }
.trust-item:hover svg { opacity: 0.8; }

/* ═══════════════════════════════════════════════════════════
   CHALLENGE PLANS
   ═══════════════════════════════════════════════════════════ */
.plans-section { padding: 120px 0; background: var(--bg-secondary); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Featured card with rotating gradient border */
.plan-card--featured {
  background: var(--bg-secondary);
  border: 2px solid transparent;
  background-clip: padding-box;
  transform: scale(1.04);
  z-index: 1;
}

.plan-card--featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from var(--border-angle), var(--accent) 0%, transparent 25%, transparent 75%, var(--accent) 100%);
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
}

.plan-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--bg-secondary);
  z-index: -1;
}

.plan-card--featured:hover {
  transform: scale(1.04) translateY(-10px);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.plan-glow-border {
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  opacity: 0.4;
  background: conic-gradient(from var(--border-angle), var(--accent) 0%, transparent 25%, transparent 75%, var(--accent) 100%);
  filter: blur(15px);
  z-index: -2;
  animation: rotateBorder 4s linear infinite;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 20px;
  background: var(--accent-gradient);
  color: #0a0e1a;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
}

.plan-header { margin-bottom: 20px; }

.plan-size {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plan-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-price-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price-note { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

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

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

.check-icon { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.how-section { padding: 120px 0; background: var(--bg-primary); }

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

/* Connecting line behind the steps */
.steps-line {
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.steps-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-gradient);
  transition: width 1.5s ease-out;
  border-radius: 2px;
}

.steps-line.animated::after { width: 100%; }

.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.step-card:hover { background: var(--bg-card); }

.step-number-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg-primary), 0 0 15px rgba(240, 185, 11, 0.25);
}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(240, 185, 11, 0.05);
  border: 1px solid rgba(240, 185, 11, 0.1);
  color: var(--accent);
  transition: all var(--transition);
}

.step-card:hover .step-icon {
  background: rgba(240, 185, 11, 0.1);
  border-color: rgba(240, 185, 11, 0.25);
  box-shadow: 0 0 30px rgba(240, 185, 11, 0.1);
  transform: scale(1.05);
}

.step-title { font-size: 1.2rem; margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

.step-connector { display: none; }

/* ═══════════════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════════════ */
.features-section { padding: 120px 0; background: var(--bg-secondary); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Hover glow */
.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(240, 185, 11, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

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

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(240, 185, 11, 0.05);
  border: 1px solid rgba(240, 185, 11, 0.08);
  color: var(--accent);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(240, 185, 11, 0.1);
  border-color: rgba(240, 185, 11, 0.2);
  box-shadow: 0 0 25px rgba(240, 185, 11, 0.1);
  transform: scale(1.08);
}

.feature-title { font-size: 1.08rem; margin-bottom: 8px; }
.feature-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   PAYOUTS — Auto-scrolling ticker
   ═══════════════════════════════════════════════════════════ */
.payouts-section { padding: 120px 0 100px; background: var(--bg-primary); }

.payout-ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
  margin-top: -10px;
}

.payout-ticker-track {
  display: flex;
  gap: 18px;
  animation: payoutScroll 50s linear infinite;
  width: max-content;
}

.payout-ticker:hover .payout-ticker-track {
  animation-play-state: paused;
}

.payout-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  transition: all var(--transition);
  min-width: 340px;
  flex-shrink: 0;
}

.payout-card:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-3px);
}

.payout-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--avatar-color, #6366f1);
  flex-shrink: 0;
}

.payout-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.payout-name { font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.payout-flag { font-size: 0.82rem; }
.payout-account { font-size: 0.75rem; color: var(--text-muted); }

.payout-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }

.payout-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.payout-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--green);
}

/* ═══════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════ */
.faq-section { padding: 120px 0; background: var(--bg-secondary); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.faq-item:hover { border-color: var(--border-hover); }

.faq-item.active {
  border-color: var(--border-accent);
  background: rgba(240, 185, 11, 0.015);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--accent-light); }

.faq-chevron {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: transform 0.35s ease, color 0.35s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer { max-height: 300px; }

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

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-section { padding: 20px 0 120px; background: var(--bg-secondary); }

.cta-card {
  position: relative;
  text-align: center;
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(240, 185, 11, 0.06) 0%, rgba(240, 185, 11, 0.015) 50%, rgba(59, 130, 246, 0.03) 100%);
  border: 1px solid var(--border-accent);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 450px; height: 450px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(240, 185, 11, 0.07), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.cta-avatars {
  display: flex;
}

.cta-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--c);
  border: 2px solid var(--bg-secondary);
  margin-left: -8px;
  position: relative;
  z-index: var(--z);
  font-family: 'Outfit', sans-serif;
}

.cta-av:first-child { margin-left: 0; }

.cta-trust-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cta-trust-text strong { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.2rem; }

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }

.social-link {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  background: rgba(240, 185, 11, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(240, 185, 11, 0.08);
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}

.footer-links a:hover { color: var(--text-primary); transform: translateX(3px); }

.footer-newsletter-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(240, 185, 11, 0.1);
}

.newsletter-input {
  flex: 1;
  padding: 12px 14px;
  background: var(--bg-card);
  border: none;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  min-width: 0;
}

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

.newsletter-btn {
  padding: 12px 16px;
  background: var(--accent-gradient);
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.newsletter-btn:hover { opacity: 0.85; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: rgba(240, 185, 11, 0.1);
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════════════════════ */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 99;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.mobile-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta-btn { width: 100%; justify-content: center; text-align: center; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(240, 185, 11, 0); }
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  20% { opacity: 0.5; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) translateX(30px); }
}

@keyframes candleGrow {
  from { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
  to { opacity: 1; transform: scaleY(1); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeInSlow {
  to { opacity: 1; }
}

@keyframes dotPulse {
  0%, 100% { r: 5; opacity: 0.8; }
  50% { r: 10; opacity: 0.3; }
}

@keyframes shimmer {
  0% { left: -60%; }
  50%, 100% { left: 130%; }
}

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

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

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

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}

/* ═══════════════════════════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════════════════════════ */
.promo-banner {
  background: var(--accent-gradient);
  color: #0a0e1a;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.promo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.promo-badge {
  background: #0a0e1a;
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-right: 12px;
  letter-spacing: 0.05em;
}

.promo-close {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #0a0e1a;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.promo-close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   DASHBOARD PREVIEW
   ═══════════════════════════════════════════════════════════ */
.dashboard-preview-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.dashboard-mockup {
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.mockup-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
}

.mockup-dots { display: flex; gap: 8px; }
.mdot { width: 12px; height: 12px; border-radius: 50%; background: var(--border-hover); }
.mdot:nth-child(1) { background: #ef4444; }
.mdot:nth-child(2) { background: #f59e0b; }
.mdot:nth-child(3) { background: #10b981; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
  padding: 6px 0;
  border-radius: 6px;
  max-width: 300px;
  margin: 0 auto;
}

.mockup-body {
  display: flex;
  height: 480px;
}

.mock-sidebar {
  width: 70px;
  border-right: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ms-item {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.ms-item.active { background: var(--accent); opacity: 0.8; }

.mock-main {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.mt-right { display: flex; gap: 16px; align-items: center; }
.mt-btn { width: 100px; height: 32px; border-radius: var(--radius-sm); background: var(--border); }
.mt-av { width: 36px; height: 36px; border-radius: 50%; background: var(--accent-gradient); }

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mock-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.msc-title { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.msc-val { font-size: 1.6rem; font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 12px; }
.msc-graph { height: 20px; }
.msc-btn { text-align: center; font-size: 0.75rem; padding: 6px; background: rgba(240, 185, 11, 0.1); color: var(--accent); border-radius: 4px; font-weight: 600; }
.msc-bar { height: 8px; background: rgba(255, 255, 255, 0.05); border-radius: 4px; margin-top: 10px; }

.mock-chart-area {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mca-header { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); margin-bottom: auto; }

/* ═══════════════════════════════════════════════════════════
   PROFIT CALCULATOR
   ═══════════════════════════════════════════════════════════ */
.calculator-section { padding: 120px 0; background: var(--bg-primary); }

.calc-box {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 340px;
  overflow: hidden;
}

.calc-controls { padding: 48px; display: flex; flex-direction: column; gap: 40px; }

.calc-group { display: flex; flex-direction: column; gap: 16px; }

.calc-label-row { display: flex; justify-content: space-between; align-items: flex-end; }
.calc-label-row label { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; }
.calc-value-display { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(240, 185, 11, 0.4);
  border: 4px solid var(--bg-primary);
  cursor: grab;
  transition: transform 0.1s;
}

.calc-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }

.calc-ticks { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }

.calc-results {
  background: var(--bg-secondary);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
}

.cr-title { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 8px; }
.cr-amount { font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 8px; }
.cr-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }

/* ═══════════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════════ */
.comparison-section { padding: 120px 0; background: var(--bg-primary); }

.comp-table-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.comp-table { width: 100%; border-collapse: collapse; text-align: left; }
.comp-table th, .comp-table td { padding: 24px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.comp-table th { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--text-primary); }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table td { color: var(--text-secondary); }

.highlight-col {
  background: rgba(240, 185, 11, 0.03);
  color: var(--text-primary) !important;
  font-weight: 500;
  border-left: 1px solid var(--border-accent);
  border-right: 1px solid var(--border-accent);
}

.comp-table th.highlight-col { background: rgba(240, 185, 11, 0.08); border-top: 2px solid var(--accent); }
.c-check { vertical-align: middle; margin-right: 6px; margin-top: -2px; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-section { padding: 120px 0; background: var(--bg-secondary); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testi-card:hover { transform: translateY(-5px); border-color: var(--border-hover); background: rgba(255, 255, 255, 0.04); }

.testi-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 20px; font-size: 1.1rem; }
.testi-text { font-size: 0.95rem; color: var(--text-primary); line-height: 1.7; flex: 1; margin-bottom: 24px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: var(--c); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: 0.9rem; }
.testi-info { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.8rem; color: var(--accent-light); }

/* ═══════════════════════════════════════════════════════════
   CHAT WIDGET
   ═══════════════════════════════════════════════════════════ */
.chat-widget {
  position: fixed;
  bottom: 32px;
  right: 90px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(240, 185, 11, 0.3);
  cursor: pointer;
  transition: all var(--transition);
}

.chat-widget:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(240, 185, 11, 0.4); }

/* ═══════════════════════════════════════════════════════════
   THEME TOGGLE
   ═══════════════════════════════════════════════════════════ */
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition);
}

.theme-toggle:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.theme-icon-sun { display: none; }
.light-theme .theme-icon-sun { display: block; }
.light-theme .theme-icon-moon { display: none; }

/* ═══════════════════════════════════════════════════════════
   MAGNETIC BUTTONS
   ═══════════════════════════════════════════════════════════ */
.magnetic {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}
.magnetic-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}

/* ═══════════════════════════════════════════════════════════
   LEADERBOARD PODIUM
   ═══════════════════════════════════════════════════════════ */
.leaderboard-section { padding: 120px 0; background: var(--bg-primary); position: relative; }

.podium-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin: 60px auto;
  height: 350px;
}

.podium-spot {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.podium-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--c);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff;
  border: 4px solid var(--bg-primary);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  margin-bottom: -40px;
  z-index: 2;
}

.podium-1 .podium-avatar { width: 100px; height: 100px; font-size: 2rem; margin-bottom: -50px; border-color: #f0b90b; }

.podium-block {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.podium-1 .podium-block { height: 280px; background: rgba(240, 185, 11, 0.05); border-color: var(--accent); box-shadow: 0 0 40px rgba(240,185,11,0.1); }
.podium-2 .podium-block { height: 220px; }
.podium-3 .podium-block { height: 180px; }

.podium-rank { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900; opacity: 0.1; position: absolute; bottom: -10px; }
.podium-1 .podium-rank { color: #f0b90b; opacity: 0.2; }
.podium-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.podium-payout { font-family: 'Outfit', sans-serif; color: var(--green); font-weight: 700; font-size: 1.2rem; }


/* ═══════════════════════════════════════════════════════════
   TRADING RULES VISUALIZER
   ═══════════════════════════════════════════════════════════ */
.rules-visualizer {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 60px;
}

.rules-tabs { display: flex; flex-direction: column; gap: 12px; }

.rule-tab {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  text-align: left;
  transition: all var(--transition);
}

.rule-tab.active { background: rgba(240, 185, 11, 0.1); border-color: var(--accent); }
.rule-tab h4 { font-size: 1.1rem; margin-bottom: 8px; color: var(--text-primary); }
.rule-tab p { font-size: 0.85rem; color: var(--text-secondary); }

.rules-display {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rule-explanation { display: none; width: 100%; animation: fadeUp 0.5s ease; }
.rule-explanation.active { display: block; }

.explain-math {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 24px;
}

.light-theme .explain-math { background: rgba(0, 0, 0, 0.02); }

.math-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 160px;
}

.math-step.danger { border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.05); }
.math-step.success { border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.05); }

.ms-val { font-family: 'Outfit'; font-size: 1.8rem; font-weight: 700; color: var(--text-primary); }
.math-step.danger .ms-val { color: var(--red); }
.math-step.success .ms-val { color: var(--green); }

.ms-lbl { font-size: 0.85rem; color: var(--text-secondary); text-align: center; }

.math-op {
  font-family: 'Outfit';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--bg-card);
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}

.explain-desc {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .plans-grid { 
    display: flex; 
    overflow-x: auto; 
    gap: 16px; 
    padding-bottom: 20px; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .plans-grid::-webkit-scrollbar { display: none; }
  .plan-card {
    min-width: 260px;
    max-width: 260px;
    padding: 24px 20px;
    flex-shrink: 0;
  }
  .plan-card--featured { transform: scale(1.02); }
  .plan-card--featured:hover { transform: scale(1.02) translateY(-5px); }
  .plan-size { font-size: 1.5rem; }
  .plan-price { font-size: 2.2rem; }
  .plan-price-block { margin-bottom: 16px; padding-bottom: 12px; }
  .plan-features { margin-bottom: 20px; }
  .plan-features li { padding: 4px 0; font-size: 0.85rem; gap: 8px; }
  .highlighted-feature { padding: 8px 12px !important; margin: 4px 0; }
  .plan-card .btn { padding: 12px 20px; font-size: 0.9rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .steps-container { gap: 20px; }
  .steps-line { display: none; }
  .calc-box { grid-template-columns: 1fr; }
  .calc-results { border-left: none; border-top: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .mock-stats { grid-template-columns: repeat(2, 1fr); }
  .rules-visualizer { grid-template-columns: 1fr; }
  .explain-math { flex-direction: column; gap: 10px; padding: 20px; }
  .math-op { width: 40px; height: 40px; font-size: 1.2rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: none;
    padding: 60px 24px;
    gap: 32px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
    z-index: 9999;
  }
  .nav-links .nav-link { font-size: 1.5rem; text-align: center; width: 100%; }
  .nav-links .nav-link::after { display: none; }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-cta { display: none; }
  .nav-actions { margin-left: auto; margin-right: 16px; }
  .hamburger { display: flex; }

  .mobile-cta { display: block; }

  .hero { min-height: auto; padding: 120px 20px 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-chart { width: 120vw; bottom: 8%; opacity: 0.3; }

  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .hero-stat-divider { width: 60px; height: 1px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .steps-container { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-line { display: none; }
  .step-connector { display: none; }

  .features-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  .cta-card { padding: 48px 24px; }
  .cta-trust { flex-direction: column; }

  .section-header { margin-bottom: 40px; }

  .plans-section, .how-section, .features-section, .payouts-section, .faq-section {
    padding: 80px 0;
  }

  .back-to-top { bottom: 80px; right: 20px; }
  .chat-widget { bottom: 80px; right: 80px; width: 48px; height: 48px; }
  .dashboard-preview-wrapper { margin-top: 40px; padding: 0 16px; }
  .mock-sidebar { display: none; }
  .mock-stats { grid-template-columns: 1fr; }
  .mock-body { height: auto; }
  .mock-main { padding: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .comp-table th, .comp-table td { padding: 16px 12px; font-size: 0.85rem; }
  .calc-controls { padding: 24px; }
  .calc-results { padding: 24px; }
  .podium-container { flex-direction: column; height: auto; gap: 40px; margin-top: 40px; align-items: center; }
  .podium-spot { width: 100%; max-width: 300px; }
  .podium-block { height: auto !important; padding: 60px 20px 30px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .stat-number { font-size: 1.8rem; }
  .plan-card { padding: 28px 22px; }
}

.highlighted-feature {
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.15) 0%, transparent 100%);
  padding: 8px 12px;
  border-radius: 6px;
  border-left: 3px solid var(--accent);
  margin: 4px 0;
}
.highlighted-feature > span {
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.feature-subtext {
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  color: var(--accent-light);
  margin-top: 2px;
}

