/* ============================================
   TRADINGBOSS - Premium Trading Systems
   Color Scheme: White + Green (#00FF88)
   ============================================ */

/* CSS Variables - Premium Design System */
:root {
  /* Primary Colors */
  --primary-green: #00FF88;
  --primary-green-dark: #00E07A;
  --primary-green-darker: #00CC6A;
  --primary-green-glow: rgba(0, 255, 136, 0.4);
  --primary-green-subtle: rgba(0, 255, 136, 0.08);
  --primary-green-border: rgba(0, 255, 136, 0.25);
  
  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-primary);
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  
  /* Transitions - Cubic Bezier for Premium Feel */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.15s var(--ease-out-expo);
  --transition-base: 0.3s var(--ease-out-expo);
  --transition-slow: 0.5s var(--ease-out-expo);
  --transition-slower: 0.8s var(--ease-out-expo);
  
  /* Shadows - Layered for Depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 60px rgba(0, 255, 136, 0.15), 0 0 100px rgba(0, 255, 136, 0.1);
  --shadow-glow-intense: 0 0 80px rgba(0, 255, 136, 0.25), 0 0 120px rgba(0, 255, 136, 0.15);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.08);
  
  /* Border Radius */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Spacing Scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  width: 100%;
  max-width: 100vw;
}

/* Selection */
::selection {
  background: var(--primary-green);
  color: var(--gray-900);
}

::-moz-selection {
  background: var(--primary-green);
  color: var(--gray-900);
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
}

/* Three.js Canvas Background */
#three-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Section Base */
section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-green-darker);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-green-subtle), rgba(0, 255, 136, 0.12));
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-green-border);
  box-shadow: 0 2px 8px rgba(0, 255, 136, 0.1);
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: labelShine 3s infinite;
}

@keyframes labelShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.section-title {
  margin-bottom: 24px;
}

.section-subtitle {
  max-width: 600px;
  margin-bottom: 48px;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
  background: transparent;
}


.navbar .nav-link {
  color: var(--gray-300);
}

.navbar .nav-link:hover {
  color: var(--primary-green);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo span {
  color: var(--gray-900);
}

.navbar.scrolled .nav-link {
  color: var(--gray-600);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary-green-dark);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

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

.logo-text strong {
  font-weight: 800;
  color: var(--primary-green);
  margin-left: 2px;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.5));
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo:hover .logo-icon {
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.7));
  transform: scale(1.05);
}

.navbar.scrolled .logo {
  color: var(--gray-900);
}

.navbar.scrolled .logo-text strong {
  color: var(--primary-green-dark);
}

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

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--gray-900);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons - Premium 3D Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--gray-900);
  box-shadow: 
    0 2px 4px rgba(0, 255, 136, 0.2),
    0 8px 16px rgba(0, 255, 136, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 4px 8px rgba(0, 255, 136, 0.3),
    0 12px 24px rgba(0, 255, 136, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-green-border);
  background: var(--primary-green-subtle);
  color: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(0, 255, 136, 0.1);
}

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

.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border: 2px solid var(--gray-300);
}

.btn-outline:hover {
  border-color: var(--primary-green);
  color: var(--gray-900);
  background: var(--primary-green-subtle);
  transform: translateY(-2px);
}

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

.btn-large {
  padding: 20px 40px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* Button Icon Animation */
.btn svg,
.btn .btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover svg,
.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* ============================================
   HERO SECTION - MONEY MAKING MACHINE
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, #0A0F14 0%, #0F1419 50%, #0A0F14 100%);
}

/* Dark theme for hero */
.hero .hero-title .line-1 {
  color: var(--white);
}

.hero .hero-description {
  color: var(--gray-400);
}

.hero .hero-notice {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
}

.hero .hero-notice svg {
  color: var(--primary-green);
}

/* Money Particles */
.money-particle {
  position: absolute;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  opacity: 0.15;
  animation: floatMoney 8s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.money-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 3rem; }
.money-2 { top: 25%; right: 15%; animation-delay: -1.5s; font-size: 2.5rem; }
.money-3 { top: 60%; left: 8%; animation-delay: -3s; font-size: 2rem; }
.money-4 { top: 70%; right: 12%; animation-delay: -4.5s; font-size: 2.5rem; }
.money-5 { top: 40%; left: 5%; animation-delay: -2s; font-size: 1.5rem; }
.money-6 { top: 80%; right: 8%; animation-delay: -5.5s; font-size: 2rem; }

@keyframes floatMoney {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
    opacity: 0.1;
  }
  50% { 
    transform: translateY(-30px) rotate(10deg); 
    opacity: 0.25;
  }
}

/* Candlestick Background */
.candlestick-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  opacity: 0.08;
  mask-image: linear-gradient(180deg, transparent 20%, black 80%);
  -webkit-mask-image: linear-gradient(180deg, transparent 20%, black 80%);
  z-index: 0;
}

.candle {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: var(--height);
  border-radius: 2px;
  animation: candleGrow 3s ease-out var(--delay) both;
}

.candle::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(var(--height) * 0.3);
  bottom: 100%;
  background: inherit;
  border-radius: 1px;
}

.candle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(var(--height) * 0.2);
  top: 100%;
  background: inherit;
  border-radius: 1px;
}

.candle.green {
  background: var(--primary-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.candle.red {
  background: #EF4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

@keyframes candleGrow {
  0% { 
    height: 0;
    opacity: 0;
  }
  100% { 
    height: var(--height);
    opacity: 1;
  }
}

/* Profit Ticker */
.profit-ticker {
  display: none;
}

.ticker-content {
  display: flex;
  gap: 60px;
  animation: tickerScroll 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary-green);
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.ticker-item small {
  font-weight: 500;
  color: var(--gray-500);
  margin-left: 8px;
}

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

/* Floating Trading Cards */
.hero-trading-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  display: none;
}

@media (min-width: 1200px) {
  .hero-trading-cards {
    display: block;
  }
}

.trading-card {
  position: absolute;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(0, 255, 136, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: floatCard 6s ease-in-out infinite;
}

.trading-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
}

/* Profit Card */
.profit-card {
  top: 20%;
  left: 2%;
  min-width: 160px;
  animation-delay: 0s;
  transform: scale(0.9);
}

.profit-card .card-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.profit-card .currency {
  font-size: 1.5rem;
  color: var(--primary-green);
  font-weight: 600;
}

.profit-card .amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-500);
}

.card-dot.live {
  background: var(--primary-green);
  box-shadow: 0 0 10px var(--primary-green);
  animation: pulse 2s infinite;
}

.card-dot.executing {
  background: #FFBD2E;
  box-shadow: 0 0 10px #FFBD2E;
  animation: pulse 1s infinite;
}

.card-change {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.card-change.positive {
  color: var(--primary-green);
}

/* Win Rate Card */
.winrate-card {
  top: 20%;
  right: 2%;
  min-width: 140px;
  animation-delay: -2s;
  transform: scale(0.9);
}

.winrate-card .card-value {
  display: flex;
  align-items: baseline;
}

.winrate-card .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
}

.winrate-card .percent {
  font-size: 1.5rem;
  color: var(--primary-green);
  font-weight: 600;
}

.card-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}

.card-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
  border-radius: 3px;
  animation: fillBar 2s ease-out 1s forwards;
}

@keyframes fillBar {
  to { width: var(--target-width); }
}

/* Execution Card */
.execution-card {
  bottom: 15%;
  left: 2%;
  min-width: 180px;
  animation-delay: -4s;
  transform: scale(0.9);
}

.execution-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.execution-row:last-child {
  border-bottom: none;
}

.ticker {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 4px;
}

.action {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.action.buy {
  background: rgba(0, 255, 136, 0.2);
  color: var(--primary-green);
}

.action.sell {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

.execution-row .price {
  margin-left: auto;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--primary-green);
}

/* Chart Card */
.chart-card {
  bottom: 15%;
  right: 2%;
  min-width: 160px;
  padding: 14px;
  animation-delay: -1s;
  transform: scale(0.9);
}

.mini-chart {
  height: 50px;
  margin-bottom: 8px;
}

.mini-chart svg {
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawChart 2s ease-out 0.5s forwards;
}

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

.chart-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-align: center;
}

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
  }
  50% { 
    transform: translateY(-15px) rotate(1deg); 
  }
}

/* Hero Dashboard */
.hero-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 24px auto 20px;
  padding: 20px 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  max-width: 680px;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.7s both;
}

.dashboard-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary-green);
}

.stat-icon svg {
  width: 20px;
  height: 20px;
}

.stat-content {
  text-align: left;
}

.stat-content .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.stat-content .stat-value.counter {
  color: var(--primary-green);
}

.stat-content .stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.dashboard-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Highlight word */
.hero-title .word.highlight {
  position: relative;
  color: var(--primary-green);
  text-shadow: 0 0 60px rgba(0, 255, 136, 0.5);
}

/* Glow Button */
.btn-glow {
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.3),
    0 0 40px rgba(0, 255, 136, 0.2),
    0 0 60px rgba(0, 255, 136, 0.1);
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { 
    box-shadow: 
      0 0 20px rgba(0, 255, 136, 0.3),
      0 0 40px rgba(0, 255, 136, 0.2),
      0 0 60px rgba(0, 255, 136, 0.1);
  }
  50% { 
    box-shadow: 
      0 0 30px rgba(0, 255, 136, 0.5),
      0 0 60px rgba(0, 255, 136, 0.3),
      0 0 90px rgba(0, 255, 136, 0.2);
  }
}

/* Animated Background Elements Container */
.hero-bg-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Animated Glow Orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: glowFloat 8s ease-in-out infinite;
}

.hero-glow-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 60%);
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  bottom: 10%;
  left: 10%;
  animation-delay: -2s;
  animation-duration: 10s;
}

.hero-glow-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 136, 0.15) 0%, transparent 70%);
  top: 30%;
  right: -5%;
  animation-delay: -4s;
  animation-duration: 12s;
}

@keyframes glowFloat {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) scale(1); 
    opacity: 0.4;
  }
  50% { 
    transform: translateX(-50%) translateY(-30px) scale(1.1); 
    opacity: 0.6;
  }
}

/* Subtle Grid Pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

/* Floating Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--primary-green-border);
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 100%);
  animation: orbFloat 6s ease-in-out infinite;
}

.hero-orb-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: -2s;
}

.hero-orb-3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translateY(0) rotate(0deg); 
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg); 
    opacity: 1;
  }
}

/* Hero Content */
.hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 24px;
  text-align: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--primary-green-border);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 0;
  margin-bottom: 20px;
  box-shadow: 
    0 4px 24px rgba(0, 255, 136, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: badgeIn 0.8s var(--ease-out-expo) both;
  position: relative;
  letter-spacing: 0.05em;
}

@keyframes badgeIn {
  0% { 
    opacity: 0; 
    transform: translateY(20px) scale(0.9); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  background: var(--primary-green);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--primary-green);
}

@keyframes dotPulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 0 12px var(--primary-green);
  }
  50% { 
    transform: scale(1.2); 
    box-shadow: 0 0 24px var(--primary-green), 0 0 48px rgba(0, 255, 136, 0.4);
  }
}

.badge-pulse {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid var(--primary-green);
  animation: badgePulse 2s ease-out infinite;
  pointer-events: none;
}

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

/* Hero Title */
.hero-title {
  font-size: clamp(2.75rem, 8vw, 5rem);
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

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

.hero-title .word {
  display: inline-block;
  animation: wordReveal 1s var(--ease-out-expo) both;
}

.hero-title .line-1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line-1 .word:nth-child(2) { animation-delay: 0.2s; }
.hero-title .line-2 .word:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line-2 .word:nth-child(2) { animation-delay: 0.4s; }

@keyframes wordReveal {
  0% { 
    opacity: 0; 
    transform: translateY(100%) rotateX(-80deg); 
    filter: blur(10px);
  }
  100% { 
    opacity: 1; 
    transform: translateY(0) rotateX(0deg); 
    filter: blur(0);
  }
}

.hero-title .line-1 {
  color: var(--gray-900);
}

.hero-title .line-2 {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 50%, var(--primary-green) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  position: relative;
}

.hero-title .line-2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
  border-radius: var(--radius-full);
  animation: lineGrow 1s var(--ease-out-expo) 0.6s both;
}

@keyframes lineGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 120px; opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Hero Description */
.hero-description {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--gray-300);
  margin: 0 auto 32px;
  max-width: 560px;
  line-height: 1.7;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.5s both;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.6s both;
  margin-bottom: 40px;
}

.hero-buttons .btn-primary {
  position: relative;
  overflow: hidden;
  gap: 12px;
}

.hero-buttons .btn-primary svg {
  transition: transform var(--transition-base);
}

.hero-buttons .btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-buttons .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s var(--ease-out-expo) 0.7s both;
}

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

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gray-300), transparent);
}

/* Hero Notice */
.hero-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 14px 24px;
  background: rgba(0, 255, 136, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-300);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.8s both;
  box-shadow: var(--shadow-sm);
}

.hero-notice svg {
  color: var(--primary-green);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.8s var(--ease-out-expo) 1s both;
}

.hero-scroll span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gray-300), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 3px;
  height: 12px;
  background: var(--primary-green);
  border-radius: var(--radius-full);
  position: absolute;
  left: -1px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 0; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */
.social-proof-bar {
  background: linear-gradient(180deg, #0A0F14 0%, #0F1419 100%);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
}

.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  line-height: 1.2;
}

.proof-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .social-proof-bar {
    padding: 30px 0;
  }
  
  .proof-stats {
    gap: 24px;
  }
  
  .proof-divider {
    display: none;
  }
  
  .proof-stat {
    flex: 0 0 45%;
  }
  
  .proof-number {
    font-size: 1.5rem;
  }
  
  .proof-label {
    font-size: 0.625rem;
  }
}

/* ============================================
   VIDEO SECTION - PREMIUM
   ============================================ */
.video-section {
  background: linear-gradient(180deg, #0A0F14 0%, #0F1419 15%, #1a2332 40%, var(--gray-100) 70%, var(--white) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.video-section .section-label {
  background: rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.3);
}

.video-section .section-title {
  color: var(--white);
}

.video-section .section-subtitle {
  color: var(--gray-400);
}

.video-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: videoBgPulse 6s ease-in-out infinite;
}

@keyframes videoBgPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Video Frame - Browser Style */
.video-frame {
  background: var(--gray-900);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 100px rgba(0, 255, 136, 0.1);
  transition: all var(--transition-slow);
}

.video-frame-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.video-frame-dots {
  display: flex;
  gap: 8px;
}

.video-frame-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.video-frame-dots span:first-child {
  background: #FF5F57;
}

.video-frame-dots span:nth-child(2) {
  background: #FFBD2E;
}

.video-frame-dots span:last-child {
  background: #28CA41;
}

.video-frame-title {
  flex: 1;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--gray-900);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(0, 255, 136, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.4;
  transition: opacity var(--transition-slow);
}

.video-reflection {
  position: absolute;
  bottom: -60%;
  left: 5%;
  right: 5%;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
  transform: scaleY(-1);
  filter: blur(20px);
  opacity: 0.3;
  pointer-events: none;
  border-radius: var(--radius-2xl);
}

.video-wrapper:hover .video-glow {
  opacity: 0.7;
}

.video-wrapper:hover .video-frame {
  box-shadow: 
    0 0 0 1px rgba(0, 255, 136, 0.3),
    0 30px 60px -12px rgba(0, 0, 0, 0.3),
    0 0 120px rgba(0, 255, 136, 0.15);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .video-section {
    padding: 80px 0;
  }
  
  .video-frame {
    border-radius: var(--radius-xl);
  }
  
  .video-frame-header {
    padding: 12px 16px;
  }
  
  .video-frame-dots span {
    width: 10px;
    height: 10px;
  }
  
  .video-frame-title {
    font-size: 0.75rem;
  }
}

/* ============================================
   GLASS CARDS
   ============================================ */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-base);
}

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

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  background: var(--gray-50);
}

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

/* Why Section Background */
.why-section {
  position: relative;
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.why-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

/* Text Gradient Helper */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  border-color: var(--primary-green-border);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  transform: translateY(-8px);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  transition: color var(--transition-base);
}

.feature-card:hover .feature-number {
  color: var(--primary-green-subtle);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-green-subtle), rgba(0, 255, 136, 0.15));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-base);
  border: 1px solid var(--primary-green-border);
  color: var(--primary-green-darker);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.25);
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: var(--gray-900);
}

.feature-card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.feature-card p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green-darker);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.feature-link svg {
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-link {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover .feature-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   MODELS SECTION
   ============================================ */
.models-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  padding: 80px 0;
}

.models-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.model-tab {
  padding: 12px 24px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-base);
}

.model-tab:hover {
  background: var(--gray-200);
}

.model-tab.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--gray-900);
}

.model-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.model-info h3 {
  margin-bottom: 8px;
}

.model-type {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--primary-green-dark);
  margin-bottom: 16px;
}

.model-period {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.model-description {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-green);
}

.model-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-green-subtle), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-item:hover {
  border-color: var(--primary-green-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  position: relative;
  letter-spacing: -0.02em;
}

.stat-value.highlight {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-darker) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
}

.model-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary-green-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary-green-dark);
}

.tag svg {
  width: 14px;
  height: 14px;
}

.model-visual {
  position: relative;
}

.model-card-3d {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  border-radius: var(--radius-xl);
  padding: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.model-card-3d::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.replay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.replay-title {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--gray-400);
}

.replay-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 255, 136, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-green);
}

.replay-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
}

/* Live Stats Display */
.live-stats-display {
  text-align: center;
  margin-bottom: 24px;
}

.live-stat-big {
  margin-bottom: 20px;
}

.live-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-green);
  line-height: 1;
  text-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
  animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
  0%, 100% { text-shadow: 0 0 40px rgba(0, 255, 136, 0.5); }
  50% { text-shadow: 0 0 60px rgba(0, 255, 136, 0.8); }
}

.live-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
}

.live-stat-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.live-stat-small {
  text-align: center;
}

.live-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.live-stat-txt {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Animated Chart */
.chart-container {
  height: 120px;
  margin-bottom: 20px;
  position: relative;
}

.animated-chart {
  width: 100%;
  height: 100%;
}

.chart-line-animated {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 2s ease-out forwards;
}

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

.chart-area {
  opacity: 0;
  animation: fadeInArea 1s ease-out 1s forwards;
}

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

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

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

.chart-dot-pulse {
  opacity: 0;
  animation: dotPulse 2s ease-out 2s infinite;
}

@keyframes dotPulse {
  0% { r: 6; opacity: 0.8; }
  100% { r: 20; opacity: 0; }
}

.model-session {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

.model-session svg {
  color: var(--primary-green);
}

.chart-placeholder {
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.chart-line {
  position: absolute;
  bottom: 30%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

/* ============================================
   EDGE SECTION
   ============================================ */
.edge-section {
  background: var(--gray-50);
  padding: 80px 0;
}

.edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Edge Section Background */
.edge-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
  pointer-events: none;
}

.edge-card {
  padding: 48px;
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.edge-card-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.problem-badge {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.solution-badge {
  background: rgba(0, 255, 136, 0.15);
  color: var(--primary-green);
  border: 1px solid var(--primary-green-border);
}

.edge-card.problem {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.edge-card.problem:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.edge-card.solution {
  background: linear-gradient(145deg, var(--gray-900) 0%, #0A0F14 100%);
  color: var(--white);
  box-shadow: 
    var(--shadow-2xl),
    0 0 80px rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.edge-card.solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.edge-card-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.edge-card.solution:hover {
  transform: translateY(-6px);
  box-shadow: 
    var(--shadow-2xl),
    0 0 120px rgba(0, 255, 136, 0.2);
}

.edge-description {
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
}

.edge-card.solution .edge-description {
  color: var(--gray-400);
}

.edge-card h3 {
  margin-bottom: 24px;
}

.edge-card.solution h3 {
  color: var(--white);
}

.edge-list {
  list-style: none;
}

.edge-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.edge-list li:hover {
  padding-left: 8px;
}

.edge-card.solution .edge-list li {
  border-color: rgba(255, 255, 255, 0.08);
}

.edge-list li:last-child {
  border-bottom: none;
}

.edge-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.problem-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.edge-list li:hover .problem-icon {
  background: rgba(239, 68, 68, 0.15);
}

.solution-icon {
  background: rgba(0, 255, 136, 0.15);
  color: var(--primary-green);
}

.edge-list li:hover .solution-icon {
  background: rgba(0, 255, 136, 0.25);
  transform: scale(1.1);
}

/* ============================================
   WORKFLOW SECTION - PREMIUM
   ============================================ */
.workflow-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.workflow-bg-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, transparent 49.5%, var(--gray-200) 49.5%, var(--gray-200) 50.5%, transparent 50.5%);
  background-size: 100px 100%;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}

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

.workflow-step {
  text-align: center;
  position: relative;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.workflow-step:hover {
  border-color: var(--primary-green-border);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  transform: translateY(-8px);
}

.step-connector {
  position: absolute;
  top: 50%;
  right: -24px;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--gray-300));
  z-index: 1;
}

.workflow-step:last-child .step-connector {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  position: relative;
  z-index: 2;
  box-shadow: 
    0 4px 16px rgba(0, 255, 136, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
}

.step-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary-green);
  animation: stepPulse 2s ease-out infinite;
  opacity: 0;
}

.workflow-step:hover .step-pulse {
  opacity: 1;
}

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

.workflow-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 
    0 8px 24px rgba(0, 255, 136, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.step-content h4 {
  margin-bottom: 12px;
  color: var(--gray-900);
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.step-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  color: var(--gray-400);
  transition: all var(--transition-base);
}

.workflow-step:hover .step-icon {
  background: var(--primary-green-subtle);
  color: var(--primary-green-darker);
}

/* ============================================
   SUCCESS STORIES
   ============================================ */
.success-section {
  background: var(--gray-50);
  overflow: hidden;
}

.success-scroll {
  display: flex;
  gap: 24px;
  animation: scroll 30s linear infinite;
}

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

.success-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  transition: all var(--transition-base);
}

.success-card:hover {
  border-color: var(--primary-green-border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px) scale(1.02);
}

.success-card::before {
  content: 'VERIFIED';
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--primary-green-subtle), rgba(0, 255, 136, 0.15));
  border: 1px solid var(--primary-green-border);
  border-radius: var(--radius-full);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--primary-green-darker);
  letter-spacing: 0.08em;
}

.success-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.trader-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--gray-600);
}

.trader-info h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 2px;
}

.trader-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

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

.success-stat {
  text-align: center;
  padding: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.success-stat .value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.success-stat .value.profit {
  color: var(--primary-green-dark);
}

.success-stat .label {
  font-size: 0.6875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   DEPLOYMENT GROUPS
   ============================================ */
.groups-section {
  background: var(--white);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.groups-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--gray-200) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.group-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
}

.group-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
  border-radius: 0 0 var(--radius-full) var(--radius-full);
  opacity: 0;
  transition: all var(--transition-base);
}

.group-card:hover {
  border-color: var(--primary-green-border);
  background: var(--white);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  transform: translateY(-8px);
}

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

.group-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-green-subtle), rgba(0, 255, 136, 0.15));
  border: 1px solid var(--primary-green-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-green-darker);
  transition: all var(--transition-base);
}

.group-card:hover .group-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: var(--gray-900);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.3);
}

.group-card h4 {
  margin-bottom: 12px;
  font-size: 1.125rem;
  color: var(--gray-900);
}

.group-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   WHAT YOU GET
   ============================================ */
.benefits-section {
  background: var(--gray-50);
}

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

.benefit-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.benefit-card:hover {
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-green-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-green-dark);
  font-size: 1.25rem;
}

.benefit-content h4 {
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

.benefit-content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.pricing-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  position: relative;
  transition: all var(--transition-base);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gray-200), var(--gray-300));
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--primary-green-border);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  transform: translateY(-8px);
}

.pricing-card:hover::before {
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--gray-900) 0%, #0D1117 100%);
  border-color: var(--primary-green);
  color: var(--white);
  box-shadow: 
    0 0 0 1px var(--primary-green-border),
    var(--shadow-2xl),
    var(--shadow-glow);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
  height: 4px;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--primary-green);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.pricing-card.featured .pricing-header {
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-label {
  color: var(--primary-green);
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-card.featured .pricing-name {
  color: var(--white);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-600);
}

.pricing-card.featured .pricing-price .currency {
  color: var(--gray-400);
}

.pricing-price .amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-card.featured .pricing-price .amount {
  color: var(--white);
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--gray-400);
}

.pricing-save {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--primary-green);
  font-weight: 500;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card.featured .pricing-features li {
  color: var(--gray-300);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check {
  width: 20px;
  height: 20px;
  background: var(--primary-green-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-dark);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features .check {
  background: var(--primary-green);
  color: var(--gray-900);
}

.pricing-card .btn {
  width: 100%;
}

/* ============================================
   FAQ SECTION - PREMIUM
   ============================================ */
.faq-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--primary-green-border);
  box-shadow: var(--shadow-md), 0 0 20px rgba(0, 255, 136, 0.05);
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-green-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  flex-shrink: 0;
}

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

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

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

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 1rem;
  color: var(--gray-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--gray-900) 0%, #0A0F14 100%);
  color: var(--white);
  padding: 100px 0 48px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green-border), transparent);
}

.footer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand > p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--gray-400);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--gray-900);
  transform: translateY(-2px);
}

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

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

.footer-nav-col h5 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-nav-col a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--primary-green);
}

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

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.footer-disclaimer h5 {
  color: var(--gray-300);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.footer-disclaimer p {
  color: var(--gray-500);
  font-size: 0.75rem;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 0.8125rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 0.8125rem;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary-green);
}

/* ============================================
   RESPONSIVE - LARGE SCREENS
   ============================================ */
@media (min-width: 1400px) {
  .profit-card {
    left: 5%;
    top: 22%;
    transform: scale(1);
  }
  
  .winrate-card {
    right: 5%;
    top: 22%;
    transform: scale(1);
  }
  
  .execution-card {
    left: 4%;
    bottom: 18%;
    transform: scale(1);
  }
  
  .chart-card {
    right: 4%;
    bottom: 18%;
    transform: scale(1);
  }
  
  .hero-dashboard {
    max-width: 800px;
    padding: 28px 48px;
  }
}

@media (min-width: 1600px) {
  .profit-card {
    left: 8%;
  }
  
  .winrate-card {
    right: 8%;
  }
  
  .execution-card {
    left: 6%;
  }
  
  .chart-card {
    right: 6%;
  }
}

/* ============================================
   RESPONSIVE - MOBILE FIRST
   ============================================ */
@media (max-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

@media (max-width: 1024px) {
  .model-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .model-visual {
    order: -1;
  }
  
  .model-info {
    text-align: center;
  }
  
  .model-tags {
    justify-content: center;
  }
  
  .model-info .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .edge-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .workflow-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .step-connector {
    display: none;
  }
  
  .workflow-step {
    padding: 32px 20px;
  }
  
  .step-icon {
    display: none;
  }
  
  .groups-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero::before {
    width: 600px;
    height: 600px;
  }
  
  /* Dashboard Tablet */
  .hero-dashboard {
    gap: 24px;
    padding: 20px 28px;
    max-width: 600px;
  }
  
  .stat-content .stat-value {
    font-size: 1.375rem;
  }
  
  .stat-content .stat-label {
    font-size: 0.75rem;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  /* Navigation Mobile */
  .navbar {
    padding: 16px 0;
  }
  
  .navbar .container {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .nav-links {
    display: none;
  }
  
  .navbar .btn {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
  
  /* Hero Mobile */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero .container {
    width: 100%;
    padding: 0 20px;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 100%;
    padding: 0;
  }
  
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .hero-title .line {
    display: block;
  }
  
  .hero-title .line-2::after {
    width: 60px;
    height: 2px;
  }
  
  .hero-description {
    font-size: 0.9375rem;
    padding: 0 10px;
    margin: 0 auto 20px;
    line-height: 1.6;
    max-width: 320px;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 0.9375rem;
    justify-content: center;
  }
  
  .hero-notice {
    padding: 14px 16px;
    font-size: 0.6875rem;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin: 16px auto 0;
    max-width: 320px;
    line-height: 1.5;
  }
  
  .hero-notice svg {
    display: none;
  }
  
  /* Hide decorative elements on mobile */
  .hero-glow-1 {
    width: 300px;
    height: 300px;
    opacity: 0.5;
  }
  
  .hero-glow-2,
  .hero-glow-3,
  .hero-orb,
  .hero-grid {
    display: none;
  }
  
  /* Trading Cards Mobile - Hide */
  .hero-trading-cards {
    display: none;
  }
  
  .money-particle {
    display: none;
  }
  
  /* Candlestick and Ticker Mobile */
  .candlestick-bg {
    display: none;
  }
  
  .profit-ticker {
    display: none;
  }
  
  /* Dashboard Mobile */
  .hero-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    margin: 20px auto 0;
    border-radius: 12px;
    max-width: 280px;
    width: 100%;
  }
  
  .dashboard-divider {
    display: none;
  }
  
  .dashboard-stat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
  }
  
  .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
  }
  
  .stat-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .stat-content {
    text-align: left;
  }
  
  .stat-content .stat-value {
    font-size: 1.125rem;
    display: block;
  }
  
  .stat-content .stat-label {
    font-size: 0.6875rem;
  }
  
  .hero-scroll {
    display: none;
  }
  
  /* Sections Mobile */
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .section-label {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .feature-card {
    padding: 24px;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 16px;
  }
  
  /* Model Stats Mobile */
  .model-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .stat-item {
    padding: 16px 12px;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  /* Groups Mobile */
  .groups-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .group-card {
    padding: 24px 20px;
  }
  
  /* Benefits Mobile */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  /* Pricing Mobile */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .pricing-price .amount {
    font-size: 2.75rem;
  }
  
  /* FAQ Mobile */
  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }
  
  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 0.9375rem;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 60px 0 32px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-brand > p {
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-nav {
    gap: 48px;
    justify-content: center;
  }
  
  .footer-nav-col {
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Success Cards Mobile */
  .success-card {
    width: 280px;
  }
  
  .success-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-description {
    font-size: 0.875rem;
  }
  
  .hero-buttons .btn {
    max-width: 240px;
    padding: 12px 18px;
    font-size: 0.8125rem;
  }
  
  .hero-dashboard {
    max-width: 280px;
    padding: 14px;
    gap: 12px;
  }
  
  .stat-content .stat-value {
    font-size: 1rem;
  }
  
  .stat-content .stat-label {
    font-size: 0.625rem;
  }
  
  .hero-notice {
    font-size: 0.5625rem;
    padding: 10px 12px;
  }
  
  .model-stats {
    grid-template-columns: 1fr;
  }
  
  .model-card-3d {
    padding: 24px 20px;
  }
  
  .edge-card {
    padding: 28px 20px;
  }
  
  .workflow-step .step-number {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
  }
}

/* ============================================
   ANIMATIONS - Premium Easing
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children - Premium timing */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Scale In Animation */
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-back);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Blur In Animation */
.blur-in {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: all 0.8s var(--ease-out-expo);
}

.blur-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 4s ease-in-out infinite;
}

/* Pulse Glow */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.2); }
  50% { box-shadow: 0 0 40px rgba(0, 255, 136, 0.4); }
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite;
}
