/*
 * GoreKthron canonical design system. All --gore-* tokens, themes, and
 * primitive components live there. The local :root block below keeps the
 * legacy tokens for any rules in this file that still reference them; new
 * pages should consume --gore-* tokens directly.
 */
@import url('./gorekthron-design-system.css');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

/* QUICK FIX: Force text visibility */
body, p, h1, h2, h3, h4, h5, h6, span, a, li, td, th, label, button, input, textarea, select {
  color: #f0f0ff !important;
}

.section-label, .section-title, .section-desc,
.hero-title, .hero-subtitle, .hero-badge,
.step__title, .step__body,
.pc__name, .pc__num, .pc__per, .pc__list li,
.feature-card h3, .feature-card p,
.faq-q, .faq-a,
.stat-number, .stat-label {
  color: #f0f0ff !important;
}

/* Music Button */
.music-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 15, 25, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #8B5CF6;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-btn:hover {
  border-color: #A78BFA;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.4);
}

.music-btn.muted {
  color: #5a5a78;
  border-color: rgba(90, 90, 120, 0.3);
}

:root {
  /* === Master Design System v2 (premium spec) === */
  --bg-void: #050508;
  --bg-surface: #0c0c12;
  --bg-elevated: #111118;
  --bg-glass: rgba(255, 255, 255, 0.04);
  --accent-violet: #A855F7;
  --accent-violet-dim: #7C3AED;
  --accent-violet-glow: rgba(168, 85, 247, 0.25);
  --accent-gold: #F59E0B;
  --text-display: #FAFAFA;
  --text-body: #A1A1AA;
  --text-mute: #52525B;

  /* easing curves */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === Legacy tokens (kept for backward compatibility) === */
  --bg-primary: #050508;
  --bg-secondary: #0a0a10;
  --bg-card: rgba(15, 15, 25, 0.8);
  --purple-deep: #5B1A7A;
  --purple: #7B2D8E;
  --purple-bright: #9B30FF;
  --purple-neon: #B54CFF;
  --purple-glow: #D480FF;
  --text-primary: #F0E6FF;
  --text-secondary: #B8A9CC;
  --accent-cyan: #00E5FF;
  --gradient-main: linear-gradient(135deg, #5B1A7A, #9B30FF, #B54CFF);
  --gradient-card: linear-gradient(145deg, rgba(123,45,142,0.3), rgba(181,76,255,0.1));
  --glass-bg: rgba(15, 15, 25, 0.6);
  --glass-border: rgba(181, 76, 255, 0.2);
  --glow-sm: 0 0 10px rgba(181,76,255,0.4);
  --glow-md: 0 0 25px rgba(181,76,255,0.5), 0 0 50px rgba(181,76,255,0.2);
  --glow-lg: 0 0 40px rgba(181,76,255,0.6), 0 0 80px rgba(181,76,255,0.3), 0 0 120px rgba(181,76,255,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }

html { scroll-behavior: smooth; cursor: none !important; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none !important;
}

@media (pointer: coarse) {
  body { cursor: auto !important; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ── CUSTOM CURSOR — Dot + Ring (premium spec) ── */
#cursor-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: transform 80ms linear, opacity 200ms ease, width 200ms ease, height 200ms ease;
  box-shadow: 0 0 6px rgba(255,255,255,0.4);
  will-change: transform;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(168, 85, 247, 0.6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: width 300ms var(--ease-out-expo),
              height 300ms var(--ease-out-expo),
              border-color 300ms,
              opacity 200ms;
  will-change: transform;
}
body.cursor-hover #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--accent-violet);
  border-width: 2px;
}
body.cursor-hover #cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

/* Legacy single-cursor support — kept hidden so old markup doesn't break */
.custom-cursor { display: none !important; }

@media (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  *, *::before, *::after { cursor: auto !important; }
  body, html { cursor: auto !important; }
}

/* ── SOUND MUTE BUTTON ── */
.sound-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: rgba(123, 45, 142, 0.8);
  border: 2px solid #B54CFF;
  border-radius: 50%;
  color: #FFD700;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 9998;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sound-toggle:hover {
  background: rgba(181, 76, 255, 0.8);
  border-color: #FFD700;
  transform: scale(1.1);
}

.sound-toggle.muted {
  opacity: 0.5;
}

/* ── LOADING SCREEN ── */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #B54CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: loading-pulse 1.5s ease-in-out infinite;
}

@keyframes loading-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(181, 76, 255, 0.5));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.8));
  }
}

.loading-bar-container {
  width: 300px;
  height: 4px;
  background: rgba(181, 76, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.loading-bar {
  height: 100%;
  background: linear-gradient(90deg, #B54CFF, #FFD700);
  border-radius: 2px;
  animation: loading-progress 1.5s ease-in-out forwards;
}

@keyframes loading-progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.loading-text {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.loading-text::after {
  content: '';
  animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

/* ── SOCIAL PROOF POPUP ── */
.social-proof-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 15, 25, 0.9);
  border: 2px solid rgba(181, 76, 255, 0.3);
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9997;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 30px rgba(181, 76, 255, 0.3);
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
  max-width: 320px;
}

.social-proof-popup.show {
  opacity: 1;
  transform: translateX(0);
}

.social-proof-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #B54CFF, #FFD700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #050508;
  flex-shrink: 0;
}

.social-proof-content {
  flex: 1;
}

.social-proof-text {
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.social-proof-text strong {
  color: #FFD700;
}

.social-proof-time {
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* ── COUNTDOWN TIMER ── */
.countdown-section {
  padding: 4rem 2rem;
  text-align: center;
  margin: 4rem 0;
}

.countdown-header {
  margin-bottom: 2rem;
}

.countdown-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: #FFD700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.countdown-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.countdown-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.countdown-card {
  background: rgba(20, 20, 30, 0.6);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-unit {
  background: rgba(123, 45, 142, 0.3);
  border: 2px solid rgba(181, 76, 255, 0.3);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  min-width: 100px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 20px rgba(181, 76, 255, 0.3);
  transition: all 0.3s ease;
}

.countdown-unit:hover {
  border-color: #FFD700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
  transform: translateY(-5px);
}

.countdown-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFD700, #B54CFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(5,5,8,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(5,5,8,0.95);
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  text-decoration: none;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--purple-neon);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language Switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 0.3rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.3rem 0.5rem;
  backdrop-filter: blur(10px);
}

.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  transition: all 0.3s;
}

.lang-btn.active {
  background: var(--purple-bright);
  color: white;
  box-shadow: var(--glow-sm);
}

.nav-cta {
  background: var(--gradient-main);
  color: white; border: none; cursor: pointer;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--glow-sm);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-md);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}

#canvas-hero {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,26,122,0.25) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 20% 80%, rgba(155,48,255,0.1) 0%, transparent 60%),
              linear-gradient(to bottom, transparent 60%, var(--bg-primary) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--purple-glow);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple-neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--purple-neon);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--purple-glow) 50%, var(--purple-neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(181,76,255,0.5));
  animation: revealTitle 1.2s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

@keyframes revealTitle {
  from { opacity: 0; transform: translateY(40px) scale(0.95); filter: drop-shadow(0 0 0px rgba(181,76,255,0)); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 0 30px rgba(181,76,255,0.5)); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease 1s both;
}

.hero-subtitle span { color: var(--purple-glow); font-weight: 600; }

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 1.2s both;
}

.btn-primary {
  position: relative;
  background: var(--gradient-main);
  color: white; border: none; cursor: pointer;
  padding: 0.9rem 2.5rem;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute; inset: -2px;
  background: var(--gradient-main);
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
  filter: blur(12px);
  animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glow-md); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  padding: 0.9rem 2.5rem;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--purple-neon);
  color: var(--purple-glow);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255,255,255,0.3);
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  color: var(--text-secondary);
  font-size: 0.7rem; letter-spacing: 0.1em;
  animation: fadeInUp 1s ease 2s both;
}

.scroll-chevron {
  width: 24px; height: 24px;
  border-right: 2px solid var(--purple-neon);
  border-bottom: 2px solid var(--purple-neon);
  transform: rotate(45deg);
  animation: chevron-bounce 1.5s ease-in-out infinite;
}
@keyframes chevron-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ── SECTIONS COMMON ── */
section { padding: 6rem 2rem; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--purple-neon);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

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

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

/* ── FEATURES ── */
#features { background: var(--bg-secondary); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
  cursor: default;
  position: relative;
  overflow: hidden;
}

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

.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 20px;
}

.feature-card:hover {
  border-color: var(--purple-neon);
  box-shadow: var(--glow-md);
  transform: translateY(-8px) rotateX(4deg);
}

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

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(91,26,122,0.5), rgba(155,48,255,0.3));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  box-shadow: var(--glow-sm);
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  position: relative; z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  position: relative; z-index: 1;
}

/* Icon animations */
.icon-pulse { animation: icon-pulse 2s ease-in-out infinite; }
.icon-spin { animation: icon-spin 4s linear infinite; }
.icon-float { animation: icon-float 3s ease-in-out infinite; }
.icon-shake { animation: icon-shake 3s ease-in-out infinite; }
.icon-bounce { animation: icon-bounce 2s ease-in-out infinite; }
.icon-glow { animation: icon-glow 2s ease-in-out infinite; }
.icon-rotate { animation: icon-rotate 6s ease-in-out infinite; }
.icon-flicker { animation: icon-flicker 3s ease-in-out infinite; }

@keyframes icon-pulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.15)} }
@keyframes icon-spin { from{transform:rotate(0)}to{transform:rotate(360deg)} }
@keyframes icon-float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)} }
@keyframes icon-shake { 0%,100%{transform:rotate(0)}20%{transform:rotate(-5deg)}40%{transform:rotate(5deg)}60%{transform:rotate(-3deg)}80%{transform:rotate(3deg)} }
@keyframes icon-bounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(-8px)} }
@keyframes icon-glow { 0%,100%{filter:brightness(1)}50%{filter:brightness(1.5)} }
@keyframes icon-rotate { 0%{transform:rotateY(0)}100%{transform:rotateY(360deg)} }
@keyframes icon-flicker { 0%,100%{opacity:1}45%{opacity:1}50%{opacity:0.5}55%{opacity:1} }

/* ── STATS ── */
#stats { background: var(--bg-primary); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  animation: border-glow-cycle 4s ease-in-out infinite;
  transition: all 0.3s;
}

.stat-card:hover { transform: translateY(-5px); box-shadow: var(--glow-md); }

@keyframes border-glow-cycle {
  0%,100%{border-color:rgba(181,76,255,0.2)}
  50%{border-color:rgba(181,76,255,0.6)}
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SHOWCASE CAROUSEL ── */
#showcase { background: var(--bg-secondary); }

.carousel-wrapper {
  perspective: 1200px;
  max-width: 900px; margin: 0 auto;
  position: relative;
}

.carousel-3d {
  position: relative;
  width: 100%; height: 500px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

.slide-card {
  width: 600px; height: 380px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
  backdrop-filter: blur(20px);
}

.slide-card img, .slide-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
}

.slide-placeholder {
  background: linear-gradient(135deg, rgba(91,26,122,0.4) 0%, rgba(155,48,255,0.2) 50%, rgba(181,76,255,0.1) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}

.slide-placeholder .slide-icon { font-size: 4rem; opacity: 0.6; }
.slide-placeholder .slide-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  color: var(--purple-glow);
  letter-spacing: 0.1em;
}
.slide-placeholder .slide-sub {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,8,0.8) 0%, transparent 60%);
}

.slide-info {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
}

.slide-info h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.carousel-reflection {
  position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 60px;
  background: linear-gradient(to bottom, rgba(155,48,255,0.1), transparent);
  border-radius: 0 0 20px 20px;
  filter: blur(8px);
  transform: translateX(-50%) scaleY(-1);
}

.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 5rem;
}

.carousel-btn {
  width: 44px; height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  border-color: var(--purple-neon);
  box-shadow: var(--glow-sm);
  color: var(--purple-glow);
}

.carousel-dots {
  display: flex; gap: 0.5rem;
}

.carousel-dot {
  width: 8px; height: 8px;
  background: var(--glass-border);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--purple-neon);
  box-shadow: var(--glow-sm);
  width: 24px;
  border-radius: 4px;
}

/* ── PRICING ── */
#pricing { background: var(--bg-primary); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px; margin: 0 auto;
  align-items: center;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  text-align: center;
}

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

.pricing-card.popular {
  border-color: var(--purple-neon);
  box-shadow: var(--glow-md);
  transform: scale(1.05);
  background: linear-gradient(145deg, rgba(91,26,122,0.3), rgba(155,48,255,0.15));
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: var(--glow-lg);
}

.popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-main);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.3rem 1rem;
  border-radius: 0 0 12px 12px;
  font-family: 'Orbitron', monospace;
}

.pricing-plan {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--purple-glow);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.price-amount {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-currency {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  color: var(--text-secondary);
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.price-period {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(181,76,255,0.08);
}

.pricing-features li::before {
  content: '✦';
  color: var(--purple-neon);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.btn-buy {
  display: block;
  background: var(--gradient-main);
  color: white; border: none; cursor: pointer;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
  position: relative; overflow: hidden;
  box-shadow: var(--glow-sm);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-md);
}

.pricing-card:not(.popular) .btn-buy {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: none;
}

.pricing-card:not(.popular) .btn-buy:hover {
  border-color: var(--purple-neon);
  background: rgba(155,48,255,0.1);
  box-shadow: var(--glow-sm);
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--bg-secondary); overflow: hidden; }

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 200px; z-index: 2;
}

.testimonials-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.testimonials-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.testimonials-track {
  display: flex; gap: 1.5rem;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

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

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.75rem;
  width: 320px;
  flex-shrink: 0;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--purple-neon);
  box-shadow: var(--glow-sm);
}

.testimonial-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  color: white;
  flex-shrink: 0;
  border: 2px solid var(--purple-neon);
}

.testimonial-info h4 {
  font-size: 0.9rem; font-weight: 600;
  margin-bottom: 0.15rem;
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.testimonial-stars { color: #FFD700; font-size: 0.85rem; margin-bottom: 0.75rem; }

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  font-style: italic;
}

/* ── FAQ ── */
#faq { background: var(--bg-primary); }

.faq-list {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.75rem;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: border-color 0.3s;
}

.faq-item.open { border-color: var(--purple-neon); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.faq-item.open .faq-question { color: var(--purple-glow); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--purple-neon);
  flex-shrink: 0;
  transition: all 0.3s;
  background: rgba(155,48,255,0.1);
}

.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--purple-neon); }

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

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

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(155,48,255,0.3);
  padding: 3rem 2rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-main);
}

.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo { font-size: 1.6rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--purple-glow);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { color: var(--text-secondary); text-decoration: none; font-size: 0.875rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--purple-glow); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

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

.social-links { display: flex; gap: 0.75rem; }

.social-link {
  width: 36px; height: 36px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  border-color: var(--purple-neon);
  color: var(--purple-glow);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

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

/* ══════════════════════════════════════
   BUY PAGE
══════════════════════════════════════ */
.buy-page-wrap {
  min-height: 100vh;
  padding-top: 80px;
  background: var(--bg-primary);
}

.buy-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91,26,122,0.25), transparent);
}

.buy-hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.buy-hero p { color: var(--text-secondary); font-size: 1rem; }

.buy-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 2rem; padding: 2rem;
  align-items: start;
}

/* Plan Cards */
.plan-selection { margin-bottom: 2rem; }
.plan-selection h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
  color: var(--purple-glow);
}

.plan-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

.plan-card {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.plan-card:hover { border-color: rgba(181,76,255,0.4); }

.plan-card.selected {
  border-color: var(--purple-neon);
  box-shadow: var(--glow-md);
  transform: scale(1.04);
  background: linear-gradient(145deg, rgba(91,26,122,0.3), rgba(155,48,255,0.15));
}

.plan-card input[type="radio"] { display: none; }

.plan-name {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--text-secondary); margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.plan-price-big {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.plan-duration {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.plan-check {
  width: 22px; height: 22px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  transition: all 0.3s;
}

.plan-card.selected .plan-check {
  background: var(--purple-neon);
  border-color: var(--purple-neon);
  box-shadow: var(--glow-sm);
}

/* Checkout Form */
.checkout-section { margin-bottom: 1rem; }
.checkout-section h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
  color: var(--purple-glow);
}

.form-grid { display: grid; gap: 1.25rem; }
.form-grid-2 { grid-template-columns: 1fr 1fr; }

.form-field {
  position: relative;
}

.form-field input, .form-field select {
  width: 100%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all 0.3s;
  outline: none;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B54CFF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field input::placeholder { color: transparent; }

.form-field label {
  position: absolute;
  top: 50%; left: 1rem;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-size: 0.9rem;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

.form-field input:focus,
.form-field input:not(:placeholder-shown) { padding-top: 1.4rem; padding-bottom: 0.3rem; }

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label {
  top: 0.45rem; font-size: 0.7rem;
  color: var(--purple-neon);
  transform: none;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--purple-neon);
  box-shadow: var(--glow-sm);
}

.form-field input.error { border-color: #ff4466; animation: shake 0.4s cubic-bezier(0.36,0.07,0.19,0.97); }
@keyframes shake {
  0%,100%{transform:translateX(0)}
  20%{transform:translateX(-8px)}
  40%{transform:translateX(8px)}
  60%{transform:translateX(-5px)}
  80%{transform:translateX(5px)}
}

/* Coupon Field */
.coupon-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.coupon-field input {
  padding-right: 6rem !important;
}

.btn-apply-coupon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-main);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--glow-sm);
}

.btn-apply-coupon:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--glow-md);
}

.coupon-message {
  font-size: 0.75rem;
  min-height: 1.2rem;
  margin-top: 0.25rem;
}

.coupon-message.success {
  color: #00ff00;
}

.coupon-message.error {
  color: #ff4466;
}

.applied-coupon {
  margin-top: 0.5rem;
}

.coupon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 255, 0, 0.1);
  border: 1px solid #00ff00;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
}

.coupon-tag .coupon-code {
  color: #00ff00;
  font-weight: 600;
}

.coupon-tag .coupon-discount {
  color: #00ff00;
  font-size: 0.75rem;
}

.coupon-remove {
  background: none;
  border: none;
  color: #00ff00;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s;
}

.coupon-remove:hover {
  background: rgba(0, 255, 0, 0.2);
}

.form-field .field-hint {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.tooltip-btn {
  background: rgba(155,48,255,0.2);
  border: 1px solid var(--purple-neon);
  border-radius: 4px;
  color: var(--purple-glow);
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  cursor: pointer;
  transition: all 0.3s;
}

.tooltip-btn:hover { background: rgba(155,48,255,0.4); }

/* Payment Methods */
.payment-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

.payment-card {
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(20px);
}

.payment-card:hover { border-color: rgba(181,76,255,0.4); }

.payment-card.selected {
  border-color: var(--purple-neon);
  box-shadow: var(--glow-sm);
  background: linear-gradient(145deg, rgba(91,26,122,0.3), rgba(155,48,255,0.15));
}

.payment-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.payment-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem; }
.payment-sub { font-size: 0.7rem; color: var(--text-secondary); }

.crypto-details {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 1rem;
  display: none;
  backdrop-filter: blur(20px);
}

.crypto-details.show { display: block; }

.crypto-address {
  margin-bottom: 1rem;
}

.crypto-address label {
  font-size: 0.75rem;
  color: var(--purple-glow);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.address-row {
  display: flex; align-items: center; gap: 0.5rem;
}

.address-row code {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-family: monospace;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  background: rgba(155,48,255,0.2);
  border: 1px solid var(--purple-neon);
  border-radius: 8px;
  color: var(--purple-glow);
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
}

.copy-btn:hover { background: rgba(155,48,255,0.4); }
.copy-btn.copied { background: rgba(0,229,100,0.2); border-color: #00E564; color: #00E564; }

/* Order Summary Sidebar */
.order-sidebar {
  position: sticky; top: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
}

.order-sidebar h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--purple-glow);
  margin-bottom: 1.5rem;
}

.order-lines { margin-bottom: 1.5rem; }

.order-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0;
  font-size: 0.875rem;
}

.order-line .label { color: var(--text-secondary); }
.order-line .value { color: var(--text-primary); font-weight: 600; }

.order-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem;
  background: rgba(155,48,255,0.1);
  border: 1px solid rgba(155,48,255,0.3);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.order-total .label {
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.order-total .value {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-purchase {
  width: 100%;
  background: var(--gradient-main);
  color: white; border: none; cursor: pointer;
  padding: 1rem;
  border-radius: 14px;
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.12em;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  box-shadow: var(--glow-md);
}

.btn-purchase:hover { transform: translateY(-2px); box-shadow: var(--glow-lg); }

.btn-purchase.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-purchase .btn-loader {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto;
}

.btn-purchase.loading .btn-text { display: none; }
.btn-purchase.loading .btn-loader { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

.sidebar-trust {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 1.25rem;
}

.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.trust-item::before { font-size: 0.9rem; }

/* Plan Info Button */
.plan-info-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(181,76,255,0.2);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
}

.plan-info-btn:hover {
  background: rgba(181,76,255,0.4);
  border-color: var(--purple-neon);
}

/* Plan Info Modal */
.plan-info-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,8,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}

.plan-info-overlay.show { display: flex; }

.plan-info-box {
  background: var(--glass-bg);
  border: 1px solid var(--purple-neon);
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: var(--glow-lg);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}

.plan-info-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.plan-info-close:hover {
  background: rgba(181,76,255,0.2);
  color: var(--text-primary);
}

.plan-info-box h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.25rem;
  color: var(--purple-glow);
  margin-bottom: 1rem;
}

.plan-info-box p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Success State */
.success-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(5,5,8,0.9);
  z-index: 9999;
  align-items: center; justify-content: center;
  backdrop-filter: blur(20px);
}

.success-overlay.show { display: flex; }

.success-box {
  background: var(--glass-bg);
  border: 1px solid var(--purple-neon);
  border-radius: 28px;
  padding: 3rem;
  text-align: center;
  max-width: 480px; width: 90%;
  box-shadow: var(--glow-lg);
  animation: successPop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes successPop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(0,229,100,0.2), rgba(0,229,100,0.05));
  border: 2px solid #00E564;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  animation: checkmark-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
  box-shadow: 0 0 30px rgba(0,229,100,0.3);
}

@keyframes checkmark-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-box h2 {
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem; margin-bottom: 0.75rem;
  color: #00E564;
}

.success-box p { color: var(--text-secondary); margin-bottom: 1.5rem; }

.success-steps {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.success-steps ol { padding-left: 1.25rem; }
.success-steps li {
  color: var(--text-secondary); font-size: 0.875rem;
  margin-bottom: 0.5rem; line-height: 1.6;
}

.success-steps li:last-child { margin-bottom: 0; }

.success-close {
  background: var(--gradient-main);
  color: white; border: none; cursor: pointer;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}

.success-close:hover { box-shadow: var(--glow-md); }

/* ── TRUST BAR ── */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--bg-primary);
  padding: 5rem 2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}

.step-item:hover {
  border-color: var(--purple-neon);
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-item p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── FLOATING DISCORD BUTTON ── */
.discord-float {
  position: fixed;
  bottom: 2rem;
  right: 90px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #5865F2, #7B2D8E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(91, 26, 122, 0.5);
  animation: discord-pulse 2s ease-in-out infinite;
  transition: transform 0.3s;
}

.discord-float:hover {
  transform: scale(1.1);
}

@keyframes discord-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(91, 26, 122, 0.5); }
  50% { box-shadow: 0 0 35px rgba(91, 26, 122, 0.8), 0 0 50px rgba(181, 76, 255, 0.4); }
}

/* ── ONLINE USERS BADGE ── */
.online-badge {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(10px);
  z-index: 1000;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.online-dot {
  color: #00ff00;
  animation: online-pulse 1.5s ease-in-out infinite;
}

@keyframes online-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.online-count {
  font-weight: 500;
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--gradient-main);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: var(--glow-sm);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: var(--glow-md);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,8,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  backdrop-filter: blur(20px);
}

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

.mobile-menu a {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--purple-glow); }

.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: var(--text-primary);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.popular { transform: none; }
  .buy-layout { grid-template-columns: 1fr; }
  .order-sidebar { position: static; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.25rem; }
  .features-grid { grid-template-columns: 1fr; }
  .plan-cards { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .slide-card { width: 90%; height: 260px; }
  .carousel-3d { height: 320px; }
  .carousel-reflection { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .discord-float { right: 80px; bottom: 90px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; padding: 0 1rem; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; }
}
