/* ========================= */
/* CSS Variables - Purple/Black Apple-Inspired Theme */
/* ========================= */
:root {
  /* Colors - Purple/Black Apple theme */
  --primary-color: #8B5CF6;
  --primary-light: #A78BFA;
  --primary-dark: #7C3AED;
  --secondary-color: #C4B5FD;
  --accent-color: #DDD6FE;
  --purple-glow: rgba(139, 92, 246, 0.5);
  
  /* Backgrounds - Deep blacks with purple undertones */
  --bg-primary: #000000;
  --bg-secondary: #0a0a0f;
  --bg-tertiary: #121218;
  --bg-card: rgba(18, 18, 24, 0.7);
  --bg-glass: rgba(139, 92, 246, 0.05);
  
  /* Text colors */
  --text-primary: #ffffff;
  --text-secondary: #a8a8b3;
  --text-tertiary: #71717a;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(139, 92, 246, 0.15);
  
  /* Gradients - Apple-style smooth gradients */
  --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 50%, #6D28D9 100%);
  --gradient-secondary: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
  --gradient-accent: linear-gradient(135deg, #DDD6FE 0%, #C4B5FD 50%, #A78BFA 100%);
  --gradient-mesh: radial-gradient(at 40% 20%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
                   radial-gradient(at 80% 0%, rgba(167, 139, 250, 0.15) 0px, transparent 50%),
                   radial-gradient(at 0% 50%, rgba(124, 58, 237, 0.15) 0px, transparent 50%);
  
  /* Shadows - Soft Apple-style shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
  --shadow-glow-lg: 0 0 80px rgba(139, 92, 246, 0.4);
  
  /* Border radius - Apple's smooth curves */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --text-muted: #71717a;
  --green-glow: #00ff88;
  
  /* Typography - San Francisco inspired */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.5rem;
  
  /* Spacing - Apple's consistent spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Transitions - Smooth Apple-style animations */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ========================= */
/* Base Styles - Apple Premium Design */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Performance optimization: reduce animations during interaction */
.no-hover * {
  pointer-events: none !important;
}

.no-hover .nav-links a::after,
.no-hover .btn-discord {
  transition: none !important;
}

/* ========================= */
/* Scroll Animation Classes */
/* ========================= */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

[data-animate].animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  background-image: var(--gradient-mesh);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 80px;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* ========================= */
/* Particle Background - Purple Theme */
/* ========================= */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
}

/* Image Optimization */
.image-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.image-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.image-placeholder img:not([src=""]):not([src*="data:"]) + .image-skeleton {
  opacity: 0;
}

@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ========================= */
/* Advanced Animations & Effects */
/* ========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(139, 92, 246, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 30px rgba(139, 92, 246, 0.2);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backgroundShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
    filter: hue-rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -10px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -5px, 0);
  }
  90% {
    transform: translate3d(0,-2px,0);
  }
}

/* ========================= */
/* New Apple-Inspired Animations */
/* ========================= */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@keyframes purpleGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3),
                0 0 40px rgba(139, 92, 246, 0.2);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5),
                0 0 80px rgba(139, 92, 246, 0.3),
                0 0 120px rgba(139, 92, 246, 0.2);
    filter: brightness(1.1);
  }
}

@keyframes rotateHue {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(15deg);
  }
}

@keyframes shimmerPurple {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* ========================= */
/* Header & Navigation - Apple Glassmorphism */
/* ========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.3s var(--ease-out-expo);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-6);
  backdrop-filter: blur(10px);
  background: transparent;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.navbar.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.15);
}

.logo {
  font-size: var(--font-size-xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--transition-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.logo-icon {
  display: inline-block;
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
  font-size: 1.5rem;
  filter: drop-shadow(0 0 10px var(--purple-glow));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-8);
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-sm);
  transition: color 0.2s var(--ease-out-expo);
  position: relative;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s var(--ease-out-expo), left 0.3s var(--ease-out-expo);
    border-radius: var(--radius-full);
}

.nav-links a:hover::after {
    width: 80%;
    left: 10%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

/* ========================= */
/* Stats Section - Ultimate Tweaks Style */
/* ========================= */
.stats-section {
  padding: var(--space-24) 0;
  background: var(--bg-secondary);
  text-align: center;
}

.stats-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.stats-subtitle {
  font-size: var(--font-size-2xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.stat-number {
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--primary-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  font-weight: 500;
}
.btn:disabled {
    cursor: not-allowed;
    background: var(--text-muted);
    transform: none !important;
    box-shadow: none !important;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
  will-change: transform, box-shadow;
  transform: translateZ(0);
  backdrop-filter: blur(10px);
}

.btn::before {
  content: '';
  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.6s ease-out;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  color: white;
  box-shadow: var(--shadow-md), 0 0 30px rgba(139, 92, 246, 0.3);
  animation: gradientShift 3s ease infinite;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  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-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-lg);
  animation-play-state: paused;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid rgba(139, 92, 246, 0.3);
  position: relative;
}

.btn-secondary::before {
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
}

.btn-secondary:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-md), 0 0 25px rgba(139, 92, 246, 0.4);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-xl);
  font-weight: 700;
}

.btn-discord {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all 0.3s var(--ease-out-expo);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.btn-discord:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: var(--primary-color);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.discord-icon {
  font-size: 1.2rem;
}

/* ========================= */
/* Hero Section - Ultimate Tweaks Style */
/* ========================= */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(139,92,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  animation: grid-move 20s linear infinite;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
  animation: fadeInUp 1s ease-out;
}

.hero-dashboard {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-title {
  font-size: var(--font-size-7xl);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  color: var(--text-primary);
  animation: slideUp 1s var(--ease-out-expo);
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  z-index: -1;
  filter: blur(25px);
}

.hero-title:hover .gradient-text::after {
  opacity: 0.5;
}

.hero-description {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 600px;
  line-height: 1.7;
  animation: slideUp 1s var(--ease-out-expo) 0.2s both;
  font-weight: 400;
}

.hero-actions {
  margin-bottom: var(--space-12);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-preview {
  margin-top: var(--space-8);
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.preview-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: var(--transition-base);
  animation: float 6s ease-in-out infinite;
}

.preview-image:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 255, 136, 0.3);
}

/* ========================= */
/* App Preview */
/* ========================= */
.app-preview {
  animation: fadeInRight 1s ease-out 0.3s both;
}

.app-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 255, 136, 0.2);
  transition: var(--transition-base);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.app-image:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s infinite ease-in-out;
}

.hero-description {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.stat {
  text-align: center;
  padding: var(--space-4);
  background: var(--bg-glass);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  will-change: transform;
}

.stat:hover {
  transform: translateY(-4px) scale(1.05);
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: 800;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
  perspective: 1000px;
}

.performance-chart {
  background: rgba(26, 31, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-xl);
  animation: chart-float 6s infinite ease-in-out;
  width: 100%;
  max-width: 350px;
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.performance-chart:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.chart-container {
  display: flex;
  align-items: flex-end;
  height: 200px;
  gap: var(--space-4);
  padding-left: var(--space-6);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: absolute;
  left: -35px;
  top: 0;
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.bars {
    display: flex;
    gap: var(--space-8);
    align-items: flex-end;
    height: 100%;
    width: 100%;
    justify-content: space-around;
    padding: 0 var(--space-4);
}

.chart-bar {
  width: 50px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
  transition: height 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.chart-bar::after {
    content: attr(data-value) " FPS";
    position: absolute;
    top: -25px;
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::after {
    opacity: 1;
}


.chart-bar.active {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

.bar-label {
  position: absolute;
  bottom: -25px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

.chart-label {
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-6);
}

/* ========================= */
/* Sections - Enhanced */
/* ========================= */
.section {
  padding: var(--space-20) var(--space-6);
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  animation: slideUp 0.8s var(--ease-out-expo);
}

.section-title {
  font-size: var(--font-size-5xl);
  font-weight: 900;
  margin-bottom: var(--space-4);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ========================= */
/* Features Section - Enhanced */
/* ========================= */
.features-section {
  background: 
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  z-index: 0;
  border-radius: inherit;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  transition: all 0.6s var(--ease-out-expo);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-card:hover::after {
  width: 200px;
  height: 200px;
}

.feature-icon {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-4);
  display: block;
  transition: var(--transition-base);
  animation: float 4s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
  animation-play-state: paused;
}

.feature-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  transition: var(--transition-base);
}

.feature-card:hover h3 {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  transition: var(--transition-base);
}

.feature-card:hover p {
  color: var(--text-primary);
}

/* ========================= */
/* Showcase Section - Enhanced */
/* ========================= */
.showcase-section {
  background: rgba(26, 31, 46, 0.3);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.showcase-item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: var(--transition-base);
  will-change: transform;
  cursor: pointer;
  transform-style: preserve-3d;
}

.showcase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-base);
  z-index: 1;
}

.showcase-item:hover {
  transform: translateY(-15px) rotateX(10deg) rotateY(5deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.4);
  border-color: rgba(139, 92, 246, 0.5);
}

.showcase-item:hover::before {
  opacity: 0.1;
}

.showcase-item .image-placeholder {
  transition: var(--transition-base);
}

.showcase-item:hover .image-placeholder {
  transform: scale(1.1);
}

.showcase-item img {
  transition: var(--transition-base);
  filter: brightness(0.9);
}

.showcase-item:hover img {
  filter: brightness(1.1) contrast(1.1);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: var(--space-6);
  color: white;
  transform: translateY(100%);
  transition: var(--transition-base);
  z-index: 2;
}

.showcase-item:hover .showcase-overlay {
  transform: translateY(0);
  background: linear-gradient(transparent, rgba(139, 92, 246, 0.2), rgba(0, 0, 0, 0.9));
}

.showcase-overlay h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--primary-color);
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.showcase-overlay p {
  animation: fadeInUp 0.5s ease-out 0.4s both;
}

/* ========================= */
/* Scroll Animations & Stagger Effects */
/* ========================= */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

/* Stagger animations for grid items */
.features-grid .feature-card:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.4s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 0.5s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.6s; }

.showcase-grid .showcase-item:nth-child(1) { animation-delay: 0.1s; }
.showcase-grid .showcase-item:nth-child(2) { animation-delay: 0.3s; }
.showcase-grid .showcase-item:nth-child(3) { animation-delay: 0.5s; }

.pricing-grid .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-grid .pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-grid .pricing-card:nth-child(4) { animation-delay: 0.4s; }

/* ========================= */
/* Enhanced Loading States */
/* ========================= */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0) 0%,
    rgba(139, 92, 246, 0.2) 50%,
    rgba(139, 92, 246, 0) 100%
  );
  animation: shimmer 2s infinite;
}

/* ========================= */
/* Enhanced Mobile Interactions */
/* ========================= */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .showcase-item:hover,
  .pricing-card:hover {
    transform: none;
  }
  
  .feature-card:active,
  .showcase-item:active,
  .pricing-card:active {
    transform: scale(0.98);
  }
}

/* ========================= */
/* Animations - Enhanced */
/* ========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  }
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  }
}

@keyframes title-glow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
  }
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(10px, 10px);
  }
}

@keyframes chart-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bar-grow {
  from {
    height: 0;
  }
  to {
    height: var(--bar-height, 40%);
  }
}

@keyframes bar-pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  }
}

@keyframes icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ========================= */
/* Testimonials Section - Enhanced */
/* ========================= */
.testimonials-section {
  background: 
    radial-gradient(circle at 60% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(20px);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.testimonial-card:hover::before {
  opacity: 0.05;
}

.testimonial-content {
  margin-bottom: var(--space-6);
}

.testimonial-content p {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: white;
  box-shadow: var(--shadow-glow);
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}

.author-title {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

/* ========================= */
/* CTA Section - Enhanced */
/* ========================= */
.cta-section {
  background: 
    var(--gradient-primary),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  background-blend-mode: overlay;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: stars-twinkle 10s infinite ease-in-out;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: white;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes stars-twinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
  }
}

/* ========================= */
/* Contact Section - Enhanced */
/* ========================= */
.contact-section {
  background: rgba(26, 31, 46, 0.5);
  text-align: center;
}

.contact-content h2 {
  font-size: var(--font-size-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-content p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  will-change: transform;
}

.contact-link:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.contact-icon {
  font-size: var(--font-size-xl);
}

/* ========================= */
/* Footer - Enhanced */
/* ========================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  gap: var(--space-8);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
}

/* ========================= */
/* Buy Page Styles - Enhanced */
/* ========================= */
.buy-section {
  padding: var(--space-24) var(--space-6);
  text-align: center;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
}

.buy-section h1 {
  font-size: var(--font-size-5xl);
  font-weight: 800;
  margin-bottom: var(--space-6);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: title-glow 4s infinite ease-in-out;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
  perspective: 2000px;
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  z-index: -1;
  border-radius: inherit;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  transition: all 0.6s var(--ease-out-expo);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.pricing-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: translateY(-12px) scale(1.02);
}

.pricing-card:hover::before {
  opacity: 0.1;
}

.pricing-card:hover::after {
  width: 400px;
  height: 400px;
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-lg), var(--shadow-xl);
  animation: purpleGlow 4s ease-in-out infinite, floatSlow 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.pricing-card.featured::before {
  opacity: 0.15;
}

.premium-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  animation: rotateGlow 20s linear infinite;
  pointer-events: none;
  z-index: -1;
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-25px) rotateX(8deg) rotateY(-2deg);
  animation-play-state: paused;
}

.pricing-card.featured::before {
  opacity: 0.1;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  background-size: 200% 200%;
  color: white;
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  box-shadow: var(--shadow-glow), var(--shadow-md);
  animation: gradientShift 3s ease infinite;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.plan-badge.premium {
  background: var(--gradient-primary);
  animation: gradientShift 3s ease infinite, purpleGlow 2s ease-in-out infinite;
  box-shadow: var(--shadow-glow-lg), var(--shadow-md);
}

.plan-name {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.plan-price {
  font-size: var(--font-size-6xl);
  font-weight: 900;
  margin-bottom: var(--space-4);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.price-value {
  display: block;
  font-size: var(--font-size-6xl);
  font-weight: 900;
}

.price-period {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: var(--space-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-description {
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  line-height: 1.7;
  font-size: var(--font-size-sm);
  position: relative;
  z-index: 1;
}

.plan-features {
  list-style: none;
  margin-bottom: var(--space-8);
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.plan-features li:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.plan-features li::before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
}

/* FAQ Section - Enhanced */
.faq-section {
  padding: var(--space-20) var(--space-6);
  background: rgba(26, 31, 46, 0.3);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-8);
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(20px);
  transition: var(--transition-normal);
  will-change: transform;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-4);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Trust Section - Enhanced */
.trust-section {
  padding: var(--space-16) var(--space-6);
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  text-align: center;
  padding: var(--space-6);
  background: var(--bg-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  will-change: transform;
}

.trust-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.trust-icon {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-3);
  display: block;
  animation: icon-bounce 3s infinite ease-in-out;
}

.trust-item h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.trust-item p {
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

/* ========================= */
/* TOS Page Styles - Enhanced */
/* ========================= */
.tos-page {
    padding-top: 150px;
    padding-bottom: var(--space-20);
}

.tos-content {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.tos-content h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tos-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.tos-list {
    list-style: none;
    padding-left: 0;
}

.tos-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.7;
}

.tos-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tos-list a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.tos-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ========================= */
/* Responsive Design - Enhanced */
/* ========================= */
/* ========================= */
/* Responsive Design */
/* ========================= */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .dashboard-content {
    grid-template-columns: 150px 1fr 100px;
    height: 300px;
  }
  
  .dashboard-mockup {
    transform: none;
  }
  
  .dashboard-mockup:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .dashboard-content {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .dashboard-sidebar {
    display: none;
  }
  
  .dashboard-stats {
    border-left: none;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .hero-title {
    font-size: var(--font-size-4xl);
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .nav-links {
    display: none;
  }
  
  .section {
    padding: var(--space-16) var(--space-4);
  }
  
  .features-grid,
  .showcase-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================= */
/* Performance Optimizations */
/* ========================= */
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-animate {
    animation: none;
  }
}

/* GPU acceleration for smooth animations */
.btn,
.feature-card,
.showcase-item,
.testimonial-card,
.pricing-card,
.trust-item,
.contact-link,
.stat,
.faq-item {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}
