/* =====================================================
   HLP Analytics - Premium Landing Page Styles
   Interactive, Animated, Modern Dark Theme
   ===================================================== */

:root {
  /* Colors - Claude-like Clean Theme */
  --bg-primary: #1a1a1a;
  --bg-secondary: #212121;
  --bg-tertiary: #2a2a2a;
  --bg-card: #2a2a2a;
  --bg-card-hover: #333333;

  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #707070;

  --accent-primary: #d4a574;
  --accent-primary-rgb: 212, 165, 116;
  --accent-secondary: #4ade80;
  --accent-secondary-rgb: 74, 222, 128;
  --accent-purple: #a78bfa;
  --accent-orange: #fb923c;
  --accent-red: #f87171;
  --accent-cyan: #22d3ee;

  --gradient-primary: linear-gradient(135deg, #d4a574 0%, #c9956a 100%);
  --gradient-secondary: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(212, 165, 116, 0.15) 0%, transparent 70%);

  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.15);

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Spacing */
  --container-width: 1280px;
  --section-padding: 120px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Effects */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Selection */
::selection {
  background: rgba(99, 102, 241, 0.3);
  color: white;
}

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

/* =====================================================
   Cursor Glow Effect
   ===================================================== */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* =====================================================
   Layout
   ===================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--gradient-primary);
  opacity: 0;
  animation: logoPulse 2s ease-out infinite;
}

@keyframes logoPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 0; }
}

.logo-text {
  font-weight: 700;
}

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

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

.nav-link {
  padding: 10px 18px;
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(var(--accent-primary-rgb), 0.4);
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity var(--transition-normal);
}

.btn-glow:hover::before {
  opacity: 0.6;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover .btn-shine {
  left: 100%;
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

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

.btn-white {
  background: white;
  color: var(--bg-primary);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

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

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.15);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.1);
  bottom: -100px;
  left: -100px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.08);
  top: 50%;
  left: 30%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  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 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Live Badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-secondary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease forwards;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(var(--accent-secondary-rgb), 0.5);
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

.live-count {
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* AI Badge */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease forwards;
}

.ai-icon {
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* Hero Title */
.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

/* Hero Description Enhancement */
.hero-desc {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-desc .highlight {
  color: var(--accent-primary);
  font-weight: 700;
}

/* Prompt Examples */
.hero-prompt-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.prompt-tag {
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: default;
}

.prompt-tag:hover {
  background: rgba(212, 165, 116, 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.title-line {
  display: block;
  overflow: hidden;
}

.word {
  display: inline-block;
  animation: wordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: calc(var(--delay) * 0.15s);
  opacity: 0;
  transform: translateY(100%);
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease 1s forwards;
  opacity: 0;
}

.stat-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
}

.stat-icon.green {
  background: rgba(var(--accent-secondary-rgb), 0.1);
  color: var(--accent-secondary);
}

.stat-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-purple);
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-trend {
  position: absolute;
  top: 12px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 100px;
}

.stat-trend.up {
  color: var(--accent-secondary);
  background: rgba(var(--accent-secondary-rgb), 0.1);
}

.stat-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 4px 10px;
  background: var(--accent-secondary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 100px;
  animation: livePulse 1.5s ease-in-out infinite;
}

/* =====================================================
   Hero Visual - AI Chat Demo
   ===================================================== */
.hero-visual {
  position: relative;
  z-index: 10;
  animation: fadeInRight 1s ease 0.5s forwards;
  opacity: 0;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Chat Window */
.hero-chat-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(var(--accent-primary-rgb), 0.1);
  backdrop-filter: blur(20px);
}

.hero-chat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
}

.hero-chat-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-chat-info {
  flex: 1;
}

.hero-chat-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero-chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--accent-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

.hero-chat-body {
  padding: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-msg {
  display: flex;
  animation: heroMsgIn 0.5s ease forwards;
}

.hero-msg.user {
  justify-content: flex-end;
}

.hero-msg.bot {
  justify-content: flex-start;
}

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

.hero-msg-bubble {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-msg.user .hero-msg-bubble {
  background: var(--gradient-primary);
  color: white;
  border-bottom-right-radius: var(--radius-sm);
}

.hero-msg.bot .hero-msg-bubble {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-bottom-left-radius: var(--radius-sm);
}

.bot-response-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

.response-icon {
  font-size: 1.1rem;
}

.trader-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.trader-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
}

.trader-item .rank {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
}

.trader-item .rank.gold {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
}

.trader-item .rank.silver {
  background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
  color: #000;
}

.trader-item .rank.bronze {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: #fff;
}

.trader-item .addr {
  flex: 1;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trader-item .pnl {
  font-weight: 600;
  font-size: 0.9rem;
}

.trader-item .pnl.positive {
  color: var(--accent-secondary);
}

.subscribe-prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

.hero-subscribe-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(var(--accent-secondary-rgb), 0.1);
  border: 1px solid rgba(var(--accent-secondary-rgb), 0.3);
  color: var(--accent-secondary);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-subscribe-btn:hover {
  background: rgba(var(--accent-secondary-rgb), 0.2);
}

.subscribe-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-typing {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  border-bottom-left-radius: var(--radius-sm);
  width: fit-content;
}

.hero-typing span {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.hero-typing span:nth-child(2) { animation-delay: 0.2s; }
.hero-typing span:nth-child(3) { animation-delay: 0.4s; }

.hero-chat-input {
  display: flex;
  gap: 12px;
  padding: 16px 24px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-color);
}

.hero-chat-input input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
}

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

.hero-send-btn {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.hero-send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(var(--accent-primary-rgb), 0.4);
}

/* Floating Card Icons */
.floating-icon.telegram {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
}

.floating-icon.whale {
  background: rgba(99, 102, 241, 0.1);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   Hero Visual - Dashboard (Legacy)
   ===================================================== */
.dashboard-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(var(--accent-primary-rgb), 0.1);
  backdrop-filter: blur(20px);
}

.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca40; }

.window-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.window-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-secondary);
}

.live-indicator {
  width: 6px;
  height: 6px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: livePulse 1.5s ease-in-out infinite;
}

.dashboard-body {
  padding: 0;
}

.table-header {
  display: grid;
  grid-template-columns: 40px 1fr 100px 70px 90px;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.table-body {
  max-height: 300px;
  overflow: hidden;
}

.trader-row {
  display: grid;
  grid-template-columns: 40px 1fr 100px 70px 90px;
  gap: 12px;
  padding: 14px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-fast);
  animation: rowSlideIn 0.5s ease forwards;
  opacity: 0;
}

@keyframes rowSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.trader-row:hover {
  background: rgba(var(--accent-primary-rgb), 0.05);
}

.row-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
}

.row-rank.gold {
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
}

.row-rank.silver {
  background: linear-gradient(135deg, #e0e0e0, #a0a0a0);
  color: #000;
}

.row-rank.bronze {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
  color: #fff;
}

.row-rank.normal {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.row-address {
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.row-pnl {
  font-weight: 600;
  font-size: 0.9rem;
}

.row-pnl.positive { color: var(--accent-secondary); }
.row-pnl.negative { color: var(--accent-red); }

.row-winrate {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.row-volume {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.dashboard-footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--border-color);
}

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

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

.footer-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-value.live {
  color: var(--accent-secondary);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite;
}

.card-1 {
  top: 20%;
  right: -60px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -80px;
  animation-delay: -1.5s;
}

.card-3 {
  bottom: 10%;
  right: -40px;
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.floating-icon.green {
  background: rgba(var(--accent-secondary-rgb), 0.1);
  color: var(--accent-secondary);
}

.floating-icon.red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
}

.floating-content {
  display: flex;
  flex-direction: column;
}

.floating-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.floating-value {
  font-size: 0.9rem;
  font-weight: 600;
}

.floating-value.green { color: var(--accent-secondary); }
.floating-value.red { color: var(--accent-red); }

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 4px 8px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 1s ease 1.5s forwards, bounce 2s ease-in-out 2.5s infinite;
  opacity: 0;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

.scroll-indicator span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* =====================================================
   Section Common Styles
   ===================================================== */
section {
  position: relative;
  padding: var(--section-padding) 0;
  z-index: 10;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border: 1px solid rgba(var(--accent-primary-rgb), 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title span {
  display: block;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   Features Section
   ===================================================== */
.features {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

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

.feature-card {
  position: relative;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--accent-primary-rgb), 0.15) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.feature-glow.green { background: radial-gradient(circle, rgba(var(--accent-secondary-rgb), 0.15) 0%, transparent 70%); }
.feature-glow.purple { background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%); }
.feature-glow.orange { background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%); }
.feature-glow.red { background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%); }
.feature-glow.cyan { background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%); }

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: var(--radius-lg);
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.feature-icon.green { background: rgba(var(--accent-secondary-rgb), 0.1); color: var(--accent-secondary); }
.feature-icon.purple { background: rgba(168, 85, 247, 0.1); color: var(--accent-purple); }
.feature-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--accent-orange); }
.feature-icon.red { background: rgba(239, 68, 68, 0.1); color: var(--accent-red); }
.feature-icon.cyan { background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); }

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

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 4px 12px;
  background: rgba(var(--accent-primary-rgb), 0.1);
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-tag.green { background: rgba(var(--accent-secondary-rgb), 0.1); color: var(--accent-secondary); }
.feature-tag.purple { background: rgba(168, 85, 247, 0.1); color: var(--accent-purple); }
.feature-tag.orange { background: rgba(245, 158, 11, 0.1); color: var(--accent-orange); }
.feature-tag.red { background: rgba(239, 68, 68, 0.1); color: var(--accent-red); }
.feature-tag.cyan { background: rgba(6, 182, 212, 0.1); color: var(--accent-cyan); }

/* Feature Card Demos */
.feature-demo {
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
}

.demo-input {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 0.85rem;
}

.demo-prompt {
  color: var(--accent-primary);
}

.demo-text {
  color: var(--text-secondary);
}

.demo-text.typing::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--accent-primary);
}

.feature-chart {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 80px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
}

.chart-bar {
  position: relative;
  flex: 1;
  height: var(--height);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
  transition: height 1s ease;
}

.chart-bar.long {
  background: linear-gradient(180deg, var(--accent-secondary) 0%, rgba(var(--accent-secondary-rgb), 0.3) 100%);
}

.chart-bar.short {
  background: linear-gradient(180deg, var(--accent-red) 0%, rgba(239, 68, 68, 0.3) 100%);
}

.chart-label {
  position: absolute;
  bottom: -24px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.feature-notification {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-purple);
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.notif-icon {
  font-size: 1rem;
}

.notif-title {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 600;
}

.notif-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.notif-body {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feature-coins {
  display: flex;
  gap: 8px;
}

.coin {
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
}

.coin.btc { color: #f7931a; border: 1px solid rgba(247, 147, 26, 0.3); }
.coin.eth { color: #627eea; border: 1px solid rgba(98, 126, 234, 0.3); }
.coin.sol { color: #00ffa3; border: 1px solid rgba(0, 255, 163, 0.3); }
.coin.more { color: var(--text-muted); }

.feature-risk {
  padding: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
}

.risk-meter {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.risk-fill {
  height: 100%;
  width: var(--risk);
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-orange));
  border-radius: 100px;
  transition: width 1s ease;
}

.risk-label {
  position: absolute;
  right: 0;
  top: -24px;
  font-size: 0.75rem;
  color: var(--accent-secondary);
  font-weight: 600;
}

.feature-stats-mini {
  display: flex;
  gap: 16px;
}

.mini-stat {
  flex: 1;
  padding: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  text-align: center;
}

.mini-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mini-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* =====================================================
   Demo Section
   ===================================================== */
.demo-section {
  background: var(--bg-secondary);
}

.demo-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* Chat Window */
.chat-window {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.4);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-color);
}

.chat-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.avatar-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: var(--accent-secondary);
  border: 2px solid var(--bg-card);
  border-radius: 50%;
}

.chat-info {
  flex: 1;
}

.chat-name {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.typing-indicator {
  display: flex;
  gap: 3px;
}

.typing-indicator span {
  width: 4px;
  height: 4px;
  background: var(--accent-secondary);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-4px); }
}

.chat-menu {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.chat-menu:hover {
  background: var(--glass-bg);
  color: var(--text-primary);
}

.chat-body {
  min-height: 350px;
  max-height: 400px;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  display: flex;
  animation: messageIn 0.3s ease forwards;
}

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

.message.user {
  justify-content: flex-end;
}

.message-content {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  line-height: 1.5;
}

.message.user .message-content {
  background: var(--gradient-primary);
  color: white;
  border-bottom-right-radius: var(--radius-sm);
}

.message.bot .message-content {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-bottom-left-radius: var(--radius-sm);
}

.chat-input-area {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border-color);
}

.suggestion-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.chip {
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.chip:hover {
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.chat-input {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-input input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  color: var(--text-primary);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}

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

.chat-input input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.1);
}

.send-btn {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(var(--accent-primary-rgb), 0.4);
}

/* =====================================================
   Telegram Style Window
   ===================================================== */
.telegram-window {
  background: #0e1621;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 60px rgba(0, 0, 0, 0.5);
}

.telegram-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #17212b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.telegram-back {
  color: #6ab2f2;
  cursor: pointer;
  padding: 4px;
}

.telegram-avatar {
  width: 42px;
  height: 42px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.telegram-info {
  flex: 1;
}

.telegram-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.telegram-status {
  font-size: 0.8rem;
  color: #6ab2f2;
}

.telegram-actions {
  color: #6ab2f2;
  cursor: pointer;
  padding: 4px;
}

.telegram-body {
  min-height: 380px;
  max-height: 420px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background:
    linear-gradient(rgba(14, 22, 33, 0.95), rgba(14, 22, 33, 0.95)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.telegram-message {
  display: flex;
  animation: telegramMsgIn 0.4s ease forwards;
  opacity: 0;
}

.telegram-message.bot {
  justify-content: flex-start;
}

@keyframes telegramMsgIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.telegram-message .message-bubble {
  max-width: 85%;
  background: #182533;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: 10px 12px;
  position: relative;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Alert Header Styles */
.alert-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.alert-icon {
  font-size: 1.2rem;
}

.alert-title {
  flex: 1;
  font-weight: 600;
  font-size: 0.9rem;
}

.alert-header.whale .alert-title {
  color: #6ab2f2;
}

.alert-header.subscription .alert-title {
  color: #f5a623;
}

.alert-header.profit .alert-title {
  color: #4ecdc4;
}

.alert-badge {
  padding: 2px 8px;
  background: #ef4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 100px;
  animation: badgePulse 2s ease-in-out infinite;
}

/* Alert Content */
.alert-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alert-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.alert-label {
  color: #7a8b9a;
}

.alert-value {
  color: #fff;
  font-weight: 500;
}

.alert-value.address {
  font-family: 'SF Mono', Monaco, monospace;
  color: #6ab2f2;
  font-size: 0.8rem;
}

.alert-value.long {
  color: #4ecdc4;
  font-weight: 600;
}

.alert-value.short {
  color: #ef4444;
  font-weight: 600;
}

.alert-value.highlight {
  color: #f5a623;
  font-weight: 700;
  font-size: 0.95rem;
}

.alert-value.profit-value {
  color: #4ecdc4;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Alert Footer */
.alert-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 6px;
}

.alert-time {
  font-size: 0.7rem;
  color: #5a6a7a;
}

.message-check {
  font-size: 0.75rem;
  color: #6ab2f2;
}

/* Telegram Input Area */
.telegram-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #17212b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.telegram-attach,
.telegram-mic {
  background: none;
  border: none;
  color: #6ab2f2;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background var(--transition-fast);
}

.telegram-attach:hover,
.telegram-mic:hover {
  background: rgba(106, 178, 242, 0.1);
}

.telegram-input {
  flex: 1;
  padding: 10px 16px;
  background: #242f3d;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.telegram-input::placeholder {
  color: #5a6a7a;
}

/* Demo Info Cards */
.demo-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  transition: all var(--transition-normal);
}

.info-card:hover {
  border-color: var(--border-color-hover);
  transform: translateX(8px);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
  margin-bottom: 16px;
}

.info-icon.green { background: rgba(var(--accent-secondary-rgb), 0.1); color: var(--accent-secondary); }
.info-icon.purple { background: rgba(168, 85, 247, 0.1); color: var(--accent-purple); }

.info-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* =====================================================
   Pricing Section
   ===================================================== */
.pricing {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  border-color: var(--border-color-hover);
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--accent-primary);
  background: linear-gradient(180deg, rgba(var(--accent-primary-rgb), 0.1) 0%, var(--bg-card) 30%);
  transform: scale(1.05);
  z-index: 10;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.plan-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  flex-shrink: 0;
  color: var(--accent-secondary);
}

.pricing-features li.disabled {
  opacity: 0.5;
}

.pricing-features li.disabled svg {
  color: var(--text-muted);
}

.pricing-features li strong {
  color: var(--text-primary);
}

/* =====================================================
   Final CTA
   ===================================================== */
.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.9;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  top: -200px;
  right: -200px;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.2);
  bottom: -100px;
  left: -100px;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-content h2 span {
  display: block;
}

.cta-content h2 .gradient-text {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: var(--bg-primary);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: rgba(var(--accent-primary-rgb), 0.1);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  text-align: center;
}

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

.footer-bottom .disclaimer {
  margin-top: 12px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* =====================================================
   3D Interactions & Transform Styles
   ===================================================== */

/* Preserve 3D transforms */
[data-tilt],
.hero-chat-window,
.chat-window,
.feature-card,
.pricing-card,
.stat-card,
.floating-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* 3D Tilt Cards */
[data-tilt] {
  transform: perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

[data-tilt]:hover {
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(var(--accent-primary-rgb), 0.15);
}

/* Card Inner Depth Effect */
[data-tilt] .feature-icon,
[data-tilt] .stat-icon,
[data-tilt] h3,
[data-tilt] .stat-value {
  transform: translateZ(30px);
  transition: transform 0.4s ease;
}

[data-tilt]:hover .feature-icon,
[data-tilt]:hover .stat-icon {
  transform: translateZ(50px);
}

/* Hero Chat Window 3D */
.hero-chat-window {
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
}

.hero-chat-window:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(var(--accent-primary-rgb), 0.2);
}

/* Floating Cards Enhanced */
.floating-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}

@keyframes float3d {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  25% {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg) rotateZ(1deg);
  }
  50% {
    transform: translateY(-15px) rotateX(-1deg) rotateY(2deg) rotateZ(-1deg);
  }
  75% {
    transform: translateY(-8px) rotateX(1deg) rotateY(-1deg) rotateZ(0.5deg);
  }
}

.floating-card {
  animation: float3d 6s ease-in-out infinite;
}

.floating-card.card-1 { animation-delay: 0s; }
.floating-card.card-2 { animation-delay: -2s; }
.floating-card.card-3 { animation-delay: -4s; }

/* Feature Card 3D Hover */
.feature-card {
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.feature-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.4),
    0 15px 30px rgba(var(--accent-primary-rgb), 0.1);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

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

/* Stat Card 3D */
.stat-card {
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.stat-card:hover {
  transform: translateY(-8px) rotateX(3deg) rotateY(-2deg);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(var(--accent-primary-rgb), 0.15);
}

/* Pricing Card 3D */
.pricing-card {
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.pricing-card:hover {
  transform: translateY(-12px) rotateX(2deg);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(var(--accent-primary-rgb), 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-12px) rotateX(2deg);
}

/* Button 3D Effect */
.btn {
  transform-style: preserve-3d;
  transition: all 0.3s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.btn-primary:hover {
  transform: translateY(-4px) rotateX(5deg);
  box-shadow:
    0 15px 30px rgba(var(--accent-primary-rgb), 0.5),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(-2px) rotateX(2deg);
}

/* Scroll Animation Classes */
.animate-ready {
  opacity: 0;
  transform: translateY(40px) rotateX(-5deg);
  transition: all 0.8s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.animate-in {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

/* Staggered Animation */
.feature-card.animate-ready:nth-child(1) { transition-delay: 0.1s; }
.feature-card.animate-ready:nth-child(2) { transition-delay: 0.2s; }
.feature-card.animate-ready:nth-child(3) { transition-delay: 0.3s; }
.feature-card.animate-ready:nth-child(4) { transition-delay: 0.4s; }
.feature-card.animate-ready:nth-child(5) { transition-delay: 0.5s; }
.feature-card.animate-ready:nth-child(6) { transition-delay: 0.6s; }

/* Glowing Edges on Hover */
.hero-chat-window::after,
.chat-window::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(var(--accent-primary-rgb), 0.3) 50%,
    transparent 100%
  );
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(8px);
}

.hero-chat-window:hover::after,
.chat-window:hover::after {
  opacity: 1;
}

/* Enhanced Cursor Glow */
.cursor-glow {
  background: radial-gradient(
    circle,
    rgba(var(--accent-primary-rgb), 0.12) 0%,
    rgba(var(--accent-primary-rgb), 0.05) 30%,
    transparent 70%
  );
  mix-blend-mode: screen;
}

/* Particle Connection Glow */
#particles {
  mix-blend-mode: screen;
}

/* Hero Orb Enhancement */
.hero-orb {
  animation: orbFloat3d 8s ease-in-out infinite;
}

@keyframes orbFloat3d {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotateZ(0deg);
  }
  25% {
    transform: translate(20px, -20px) scale(1.03) rotateZ(5deg);
  }
  50% {
    transform: translate(30px, -30px) scale(1.05) rotateZ(-5deg);
  }
  75% {
    transform: translate(-20px, 20px) scale(0.97) rotateZ(3deg);
  }
}

/* Interactive Logo */
.logo-icon {
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.logo:hover .logo-icon {
  transform: rotateY(180deg);
}

/* Shimmer Effect for Cards */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.feature-card:hover .feature-icon,
.stat-card:hover .stat-icon {
  position: relative;
}

.feature-card:hover .feature-icon::after,
.stat-card:hover .stat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out;
  border-radius: inherit;
}

/* Nav Link Hover 3D */
.nav-link {
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--gradient-primary);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Input Focus 3D */
.chat-input input:focus,
.hero-chat-input input:focus {
  transform: translateZ(5px);
  box-shadow:
    0 0 0 3px rgba(var(--accent-primary-rgb), 0.15),
    0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Glass Morphism Enhancement */
.navbar.scrolled {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Info Card 3D */
.info-card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.info-card:hover {
  transform: translateX(8px) translateY(-4px) rotateY(-3deg);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(var(--accent-primary-rgb), 0.1);
}

.info-card .info-icon {
  transition: transform 0.4s ease;
}

.info-card:hover .info-icon {
  transform: translateZ(20px) scale(1.1);
}

/* Glow Trail Dots */
.glow-trail-dot {
  box-shadow: 0 0 10px rgba(var(--accent-primary-rgb), 0.5);
}

/* Hero Visual 3D Scene */
.hero-visual {
  perspective: 2000px;
  transform-style: preserve-3d;
}

/* Enhanced Section Badge Hover */
.section-badge {
  transition: all 0.3s ease;
}

.section-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(var(--accent-primary-rgb), 0.2);
}

/* Prompt Tag 3D Hover */
.prompt-tag {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.prompt-tag:hover {
  transform: translateY(-4px) rotateX(5deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Chip 3D Effect */
.chip {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.chip:hover {
  transform: translateY(-3px) rotateX(5deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Live Badge Pulse 3D */
.live-badge {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.live-badge:hover {
  transform: translateY(-2px) scale(1.02);
}

/* AI Badge Animation */
.ai-badge {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.ai-badge:hover {
  transform: translateY(-2px) rotateY(5deg);
}

/* Send Button 3D Press */
.send-btn,
.hero-send-btn {
  transform-style: preserve-3d;
  transition: all 0.2s ease;
}

.send-btn:active,
.hero-send-btn:active {
  transform: scale(0.95) translateZ(-5px);
}

/* Footer Social Links 3D */
.social-links a {
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-4px) rotateY(10deg);
}

/* Scroll Indicator 3D */
.scroll-indicator {
  transform-style: preserve-3d;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

/* Hero Title Word Depth */
.word {
  transform-style: preserve-3d;
}

.word:hover {
  transform: translateZ(10px);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient Text Shimmer on Hover */
.gradient-text {
  background-size: 200% auto;
  transition: background-position 0.5s ease;
}

.gradient-text:hover {
  background-position: right center;
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1200px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-visual {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-content {
    order: 1;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .demo-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1;
    min-width: 200px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .footer-main {
    flex-direction: column;
    gap: 48px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 350px;
  }

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

  .section-title {
    font-size: 2.2rem;
  }

  .table-header,
  .trader-row {
    grid-template-columns: 32px 1fr 80px;
  }

  .col-winrate,
  .col-volume,
  .row-winrate,
  .row-volume {
    display: none;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .suggestion-chips {
    justify-content: center;
  }

  .chip {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}
