/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #000000;
  --accent: #ff1a1a;
  --accent-dim: #cc0000;
  --accent-glow: rgba(255, 26, 26, 0.3);
  --accent-glow-strong: rgba(255, 26, 26, 0.5);
  --text: #f0f0f0;
  --text-muted: #999;
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 26, 26, 0.2);
  --glass: rgba(15, 15, 15, 0.6);
  --glass-hover: rgba(20, 20, 20, 0.7);
  --glass-strong: rgba(10, 10, 10, 0.8);
  --radius: 16px;
  --radius-lg: 20px;
  --neon-red: 0 0 20px rgba(255, 26, 26, 0.5), 0 0 40px rgba(255, 26, 26, 0.3), 0 0 60px rgba(255, 26, 26, 0.1);
  --neon-red-strong: 0 0 30px rgba(255, 26, 26, 0.8), 0 0 60px rgba(255, 26, 26, 0.5), 0 0 90px rgba(255, 26, 26, 0.3);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

nav, main, footer, .nav-wrapper {
  position: relative;
  z-index: 2;
}

.hero-inner,
.hero-text,
.hero-logo-wrap {
  position: relative;
  z-index: 2;
}

a { text-decoration: none; color: inherit; }

.red-glow {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow-strong), 0 0 20px var(--accent-glow);
  filter: brightness(1.1);
}

/* ===== FLOATING NAV ===== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}

.navbar {
  width: 90%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-radius: 100px;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 16px 48px rgba(0,0,0,0.5), 0 0 60px rgba(255,26,26,0.08);
  transition: all 0.3s ease;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-x { color: var(--text); }
.logo-fent { color: var(--accent); }

.version-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(255,26,26,0.15);
  border: 1px solid rgba(255,26,26,0.3);
  border-radius: 4px;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0,255,0,0.05);
  border: 1px solid rgba(0,255,0,0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff00;
  box-shadow: 0 0 10px rgba(0,255,0,0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.status-text {
  color: #00ff00;
  text-shadow: 0 0 10px rgba(0,255,0,0.3);
}

/* Info Bar */
.info-bar {
  width: 90%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 20px;
  margin-top: 8px;
  border-radius: 100px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.info-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2;
  flex-shrink: 0;
}

.live-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #00ff00;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff00;
  box-shadow: 0 0 10px rgba(0,255,0,0.8);
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0,255,0,0.8);
  }
  50% { 
    opacity: 0.6; 
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(0,255,0,1);
  }
}

.live-text {
  text-shadow: 0 0 10px rgba(0,255,0,0.3);
}

.info-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.hero-logo-wrap {
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
  background-image: url('logo-small.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 40px rgba(255, 26, 26, 0.5)) drop-shadow(0 0 80px rgba(255, 26, 26, 0.3));
  animation: logo-float 3s ease-in-out infinite;
  /* Fallback if logo doesn't exist */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 60px rgba(255,26,26,0.8);
}

.hero-logo-wrap::before {
  content: 'X';
  color: #fff;
}

.hero-logo-wrap::after {
  content: 'Fent';
  color: #ff1a1a;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 26, 26, 0.3));
}

.footer-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-link {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.nav-discord {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.nav-discord:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,26,26,0.1);
  box-shadow: 0 0 20px var(--accent-glow), inset 0 0 20px rgba(255,26,26,0.1);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  margin-left: 8px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 90%;
  max-width: 1100px;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 12px 16px 16px;
  overflow: visible;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-discord.mobile {
  margin-top: 8px;
  justify-content: center;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-discord:not(.mobile) { display: none; }
  .nav-hamburger { display: flex; align-items: center; }
  .status-indicator { display: none; }
  
  .info-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 16px;
  }
  
  .info-item {
    padding: 0 12px;
    font-size: 0.7rem;
  }
  
  .info-divider {
    display: none;
  }
  
  .version-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }
}

@media (max-width: 480px) {
  .info-bar {
    width: 95%;
  }
  
  .info-item span {
    display: none;
  }
  
  .info-item {
    padding: 8px;
  }
  
  .info-item::after {
    content: attr(data-label);
    font-size: 0.65rem;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,26,26,0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* Dot grid now on body globally */

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,26,26,0.08);
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255,26,26,0.15), inset 0 0 20px rgba(255,26,26,0.1);
  transform: translateY(-2px);
}

.btn-outline.full { display: block; text-align: center; width: 100%; }

.btn-outline.btn-outline-ghost {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.45);
}

.btn-outline.btn-outline-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
  box-shadow: none;
}

.btn-ghost {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

/* ===== BENTO SECTION ===== */
.bento-section {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-header {
  text-align: center;
  margin-bottom: 56px;
}

.bento-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.bento-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Row 1: ESP (4) + Aimbot (2) */
.bento-card:nth-child(1) { grid-column: span 4; }
.bento-card:nth-child(2) { grid-column: span 2; }
/* Row 2: Silent Aim (2) + Gun Mods (2) + Adv UI (2) + Config (2) — wraps to 2 rows of 3 */
.bento-card:nth-child(3) { grid-column: span 2; }
.bento-card:nth-child(4) { grid-column: span 2; }
.bento-card:nth-child(5) { grid-column: span 2; }
.bento-card:nth-child(6) { grid-column: span 2; }
.bento-card:nth-child(7) { grid-column: span 2; }
.bento-card:nth-child(8) { grid-column: span 2; }
.bento-card:nth-child(9) { grid-column: span 2; }
.bento-card:nth-child(10) { grid-column: span 2; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card:nth-child(n) { grid-column: span 2; }
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .bento-card:nth-child(6),
  .bento-card:nth-child(7),
  .bento-card:nth-child(8),
  .bento-card:nth-child(9),
  .bento-card:nth-child(10) { grid-column: span 1; }
}

@media (max-width: 600px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card:nth-child(n) { grid-column: span 1; }
}

.bento-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
  border-color: var(--border-glow);
  background: var(--glass-hover);
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255,26,26,0.15), 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.bento-card-inner {
  padding: 28px;
  position: relative;
  z-index: 1;
  height: 100%;
}

.bento-bg-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,26,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.bento-icon.red { color: rgba(255,255,255,0.3); }

.bento-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
}

.bento-card:hover .bento-icon,
.bento-card:hover .bento-icon.red {
  color: var(--accent);
  background: rgba(255,26,26,0.08);
  border-color: rgba(255,26,26,0.25);
}

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Stat row inside aimbot card */
.bento-stat-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.bento-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 16px;
  flex: 1;
  min-width: 80px;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.stat-val.red { color: var(--accent); }

/* Performance bars */
.perf-bars {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.perf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.perf-row span { width: 60px; flex-shrink: 0; }

.bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 100px;
}

/* Two-col inside big card */
.bento-two-col {
  display: flex;
  gap: 24px;
  height: 100%;
}

.bento-half { flex: 1; }

.bento-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* Key badges */
.key-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}

.badge.red {
  border-color: rgba(255,26,26,0.4);
  color: var(--accent);
  background: rgba(255,26,26,0.06);
}

/* Update list */
.update-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.update-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.update-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2.5;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 80px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  border-color: var(--border-glow);
  background: var(--glass-hover);
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255,26,26,0.2), 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.pricing-card.featured {
  border-color: rgba(255,26,26,0.5);
  background: rgba(255,26,26,0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(255,26,26,0.25), 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 0 80px var(--accent-glow-strong), 0 20px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 0 30px var(--accent-glow-strong), 0 4px 12px rgba(255,26,26,0.4);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 30px var(--accent-glow-strong), 0 4px 12px rgba(255,26,26,0.4); }
  50% { box-shadow: 0 0 50px var(--accent-glow-strong), 0 4px 20px rgba(255,26,26,0.6); }
}

.plan-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
  text-shadow: 0 2px 20px rgba(255,255,255,0.1);
}

.plan-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  font-style: italic;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.plan-features li svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  stroke-width: 2.5;
  flex-shrink: 0;
}

.plan-features li:has(svg[data-lucide="x"]) {
  opacity: 0.4;
}

.plan-features li:has(svg[data-lucide="x"]) svg {
  stroke: var(--text-muted);
}

.plan-savings {
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(255,26,26,0.15);
  border: 1px solid rgba(255,26,26,0.3);
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 80px 24px 100px;
  text-align: center;
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,26,26,0.1), 0 20px 60px rgba(0,0,0,0.3);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,26,26,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right { justify-content: center; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-tagline {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.footer-links a:hover { color: #fff; }
.footer-links a:hover::after { transform: scaleX(1); }

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.footer-icon {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-icon:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 16px 24px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ===== ANIMATED BORDER SWEEP BUTTON ===== */
.btn-sweep {
  position: relative;
  overflow: hidden;
}

.btn-sweep::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: conic-gradient(from var(--angle, 0deg), transparent 20%, var(--accent) 40%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: spin-border 2.5s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-sweep:hover::before { opacity: 1; }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-border {
  to { --angle: 360deg; }
}

/* ===== MOUSE SPOTLIGHT ON BENTO CARDS ===== */
.bento-card.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 26, 26, 0.06),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.bento-card:nth-child(1).reveal { transition-delay: 0s; }
.bento-card:nth-child(2).reveal { transition-delay: 0.07s; }
.bento-card:nth-child(3).reveal { transition-delay: 0.14s; }
.bento-card:nth-child(4).reveal { transition-delay: 0.21s; }
.bento-card:nth-child(5).reveal { transition-delay: 0.28s; }
.bento-card:nth-child(6).reveal { transition-delay: 0.35s; }
.bento-card:nth-child(7).reveal { transition-delay: 0.42s; }
.bento-card:nth-child(8).reveal { transition-delay: 0.49s; }
.bento-card:nth-child(9).reveal { transition-delay: 0.56s; }
.pricing-card:nth-child(1).reveal { transition-delay: 0s; }
.pricing-card:nth-child(2).reveal { transition-delay: 0.08s; }
.pricing-card:nth-child(3).reveal { transition-delay: 0.16s; }
.pricing-card:nth-child(4).reveal { transition-delay: 0.24s; }

/* ===== TYPING CURSOR ===== */
.typing-word::after {
  content: '|';
  color: var(--accent);
  animation: blink 0.75s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 24px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 40px;
  flex: 1;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-pct {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
}

.stat-period {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}

.stats-period {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 60px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ===== SPARK PARTICLES ===== */
.btn-sparks {
  position: relative;
  overflow: visible;
}

.spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  animation: spark-fly 0.6s ease-out forwards;
  transform-origin: center;
  box-shadow: 0 0 6px var(--accent);
}

@keyframes spark-fly {
  0% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--dist));
    opacity: 0;
  }
}

/* ===== PULSING RING ON FEATURED PRICING CARD ===== */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  border: 1px solid var(--accent);
  opacity: 0.4;
  animation: pulse-ring 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.15; transform: scale(1.015); }
}

/* ===== BENTO CARD ICON BOUNCE ON HOVER ===== */
.bento-card:hover .bento-icon {
  animation: icon-bounce 0.4s ease;
}

@keyframes icon-bounce {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-5px); }
  70%  { transform: translateY(2px); }
  100% { transform: translateY(0); }
}

/* ===== NAV ACTIVE INDICATOR ===== */
.nav-link.active {
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== CURSOR TRAIL ===== */
#cursorTrail {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.trail-dot {
  position: fixed;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 0 6px var(--accent);
  will-change: left, top;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  opacity: 0.4;
  animation: fade-bob 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-line-grow 2s ease-in-out infinite;
}

@keyframes fade-bob {
  0%, 100% { opacity: 0.4; transform: translateY(0); }
  50%       { opacity: 0.7; transform: translateY(6px); }
}

@keyframes scroll-line-grow {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,26,26,0.25), transparent);
  margin: 0;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

/* ===== NAVBAR SCROLLED STATE ===== */
.navbar.scrolled {
  padding: 8px 20px;
  background: rgba(5, 5, 5, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

/* ===== PRICING CARD SPOTLIGHT ===== */
.pricing-card.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    250px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,26,26,0.06),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius);
}

/* ===== STATS BAR GLASS CARD ===== */
.stats-bar {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  box-shadow: 0 0 40px rgba(255,26,26,0.08), 0 10px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .stats-bar {
    max-width: 100%;
    margin: 0 16px;
  }
  
  .stat-pill {
    padding: 20px 16px;
  }
  
  .stat-num {
    font-size: 1.8rem;
  }
  
  .stat-desc {
    font-size: 0.7rem;
  }
  
  .stat-divider {
    height: 40px;
  }
}

/* ===== HERO GLOW PULSE ===== */
.hero::before {
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== BENTO CARD BORDER GLOW ON HOVER ===== */


/* ===== PLAN PRICE RED ACCENT ON FEATURED ===== */
.pricing-card.featured .plan-price {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow-strong), 0 0 20px var(--accent-glow), 0 2px 10px rgba(255,26,26,0.4);
}

/* ===== FOOTER BRAND RED GLOW ===== */
.footer-brand .logo-fent {
  text-shadow: 0 0 20px rgba(255,26,26,0.4);
}

/* ===== SMOOTH CARD PERSPECTIVE ===== */
.bento-card, .pricing-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ===== ENHANCED NEON GLOW EFFECTS ===== */
.hero h1 {
  text-shadow: 0 2px 40px rgba(255,255,255,0.1);
}

.bento-card h3 {
  transition: color 0.3s, text-shadow 0.3s;
}

.bento-card:hover h3 {
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* ===== STAT NUMBER GLOW ===== */
.stat-num {
  transition: all 0.3s ease;
}

.stat-pill:hover .stat-num {
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow-strong), 0 0 15px var(--accent-glow);
  transform: scale(1.05);
}

/* ===== ENHANCED BUTTON TRANSITIONS ===== */
.btn-outline {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-outline:hover::after {
  opacity: 0.3;
}

/* ===== FOOTER GLOW ===== */
.footer-brand .logo-fent {
  text-shadow: 0 0 25px rgba(255,26,26,0.5), 0 0 50px rgba(255,26,26,0.2);
  transition: text-shadow 0.3s;
}

.footer-brand:hover .logo-fent {
  text-shadow: 0 0 35px rgba(255,26,26,0.7), 0 0 70px rgba(255,26,26,0.3);
}

/* ===== ENHANCED SECTION DIVIDER ===== */
.section-divider::after {
  animation: divider-pulse 2s ease-in-out infinite;
}

@keyframes divider-pulse {
  0%, 100% { 
    box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent-glow);
    transform: translate(-50%, -50%) scale(1);
  }
  50% { 
    box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent-glow-strong);
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* ===== ENHANCED ICON GLOW ===== */
.bento-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover .bento-icon,
.bento-card:hover .bento-icon.red {
  color: var(--accent);
  background: rgba(255,26,26,0.12);
  border-color: rgba(255,26,26,0.4);
  box-shadow: 0 0 20px var(--accent-glow), inset 0 0 20px rgba(255,26,26,0.1);
}

/* ===== PRICING CARD ENHANCED GLOW ===== */
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--accent), transparent, var(--accent));
  opacity: 0.15;
  z-index: -1;
  animation: rotate-gradient 4s linear infinite;
}

@keyframes rotate-gradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== ENHANCED SPOTLIGHT EFFECT ===== */
.bento-card.spotlight::after {
  background: radial-gradient(
    350px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 26, 26, 0.12),
    rgba(255, 26, 26, 0.04) 40%,
    transparent 70%
  );
}

.pricing-card.spotlight::after {
  background: radial-gradient(
    300px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,26,26,0.15),
    rgba(255,26,26,0.06) 40%,
    transparent 70%
  );
}

/* ===== ENHANCED NAV LINK ACTIVE STATE ===== */
.nav-link.active::after {
  box-shadow: 0 0 8px var(--accent), 0 0 16px var(--accent-glow);
  animation: active-dot-pulse 2s ease-in-out infinite;
}

@keyframes active-dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== GLASS MORPHISM ENHANCEMENTS ===== */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover::before {
  opacity: 1;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.pricing-card:hover::before {
  opacity: 1;
}

/* ===== ENHANCED CTA GLOW ===== */
.cta-inner::before {
  animation: cta-glow-pulse 3s ease-in-out infinite;
}

@keyframes cta-glow-pulse {
  0%, 100% { 
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: translateX(-50%) scale(1.2);
  }
}

/* ===== ENHANCED BADGE STYLES ===== */
.badge {
  transition: all 0.3s ease;
}

.badge:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-2px);
}

.badge.red:hover {
  border-color: var(--accent);
  background: rgba(255,26,26,0.15);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ===== PERFORMANCE BAR GLOW ===== */
.bar-fill {
  box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent-glow);
  transition: box-shadow 0.3s;
}

.bento-card:hover .bar-fill {
  box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent-glow-strong);
}

/* ===== ENHANCED SCROLL INDICATOR ===== */
.scroll-indicator {
  transition: opacity 0.3s;
}

.scroll-indicator:hover {
  opacity: 1 !important;
}

.scroll-indicator:hover .scroll-line {
  background: linear-gradient(to bottom, var(--accent), var(--accent-glow));
}

/* ===== STAT DIVIDER GLOW ===== */
.stat-divider {
  transition: background 0.3s, box-shadow 0.3s;
}

.stats-bar:hover .stat-divider {
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  box-shadow: 0 0 10px var(--accent-glow);
}

/* ===== ENHANCED HERO BUTTON EFFECTS ===== */
.hero-btns .btn-outline:first-child {
  position: relative;
}

.hero-btns .btn-outline:first-child::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--accent), transparent, var(--accent));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  animation: rotate-border 3s linear infinite;
}

.hero-btns .btn-outline:first-child:hover::before {
  opacity: 0.3;
}

@keyframes rotate-border {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
  .bento-card:hover {
    transform: translateY(-4px);
  }
  
  .pricing-card:hover {
    transform: translateY(-6px);
  }
  
  .hero-logo-wrap {
    width: 180px;
    height: 180px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 8px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2;
}

.trust-badge:hover {
  border-color: rgba(255,26,26,0.3);
  background: rgba(255,26,26,0.06);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255,26,26,0.15);
}

/* ===== VIDEO SHOWCASE SECTION ===== */
.video-section {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .video-container {
    grid-template-columns: 1fr;
  }
}

.video-wrapper {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-wrapper:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 40px rgba(255,26,26,0.2), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* YouTube Embed Styles */
.youtube-embed {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.youtube-embed:hover .video-thumbnail {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,26,26,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px var(--accent-glow-strong), 0 4px 20px rgba(0,0,0,0.5);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
  box-shadow: 0 0 50px var(--accent-glow-strong), 0 4px 30px rgba(0,0,0,0.6);
}

.play-button svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: #fff;
  stroke-width: 0;
  margin-left: 4px;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,26,26,0.05), rgba(0,0,0,0.3));
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      rgba(255,26,26,0.03) 0px,
      transparent 2px,
      transparent 4px,
      rgba(255,26,26,0.03) 6px
    );
  pointer-events: none;
}

.video-placeholder svg {
  width: 80px;
  height: 80px;
  stroke: var(--accent);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 20px var(--accent-glow));
  transition: all 0.3s ease;
}

.video-wrapper:hover .video-placeholder svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 30px var(--accent-glow-strong));
}

.video-placeholder p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.video-placeholder span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-feature {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-feature:hover {
  border-color: var(--border-glow);
  background: var(--glass-hover);
  transform: translateX(8px);
  box-shadow: 0 0 30px rgba(255,26,26,0.15);
}

.video-feature svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  stroke-width: 2;
  flex-shrink: 0;
}

.video-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px 0;
}

.video-feature p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-section {
  padding: 80px 24px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  border-color: var(--border-glow);
  background: var(--glass-hover);
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255,26,26,0.2), 0 20px 60px rgba(0,0,0,0.4);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,26,26,0.08);
  border: 1px solid rgba(255,26,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.why-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
  stroke-width: 2;
}

.why-card:hover .why-icon {
  background: rgba(255,26,26,0.15);
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: scale(1.1) rotateY(10deg);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 80px 24px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: var(--border-glow);
  background: var(--glass-hover);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-question svg:first-child {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 2;
  flex-shrink: 0;
}

.faq-question h3 {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 56px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== SMOOTH TRANSITIONS FOR ALL INTERACTIVE ELEMENTS ===== */
* {
  -webkit-tap-highlight-color: transparent;
}

a, button, .btn-outline, .nav-link, .bento-card, .pricing-card {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent);
  background: rgba(255,26,26,0.15);
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 30px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ===== LOADING ANIMATION ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner {
  animation: fadeInUp 0.8s ease-out;
}

.navbar {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== ENHANCED HOVER STATES ===== */
.nav-discord svg {
  transition: transform 0.3s ease;
}

.nav-discord:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.footer-icon svg {
  transition: transform 0.3s ease;
}

.footer-icon:hover svg {
  transform: scale(1.15);
}

/* ===== SELECTION STYLING ===== */
::selection {
  background: var(--accent);
  color: #fff;
}

::-moz-selection {
  background: var(--accent);
  color: #fff;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: rgba(255,26,26,0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,26,26,0.5);
}

/* ===== IMPROVED MOBILE MENU ===== */
@media (max-width: 768px) {
  .mobile-menu .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.bento-card,
.pricing-card,
.testimonial-card,
.faq-item {
  will-change: transform;
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.nav-link:focus,
.btn-outline:focus,
.faq-question:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== REDUCED MOTION SUPPORT ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== SCRIPT BOX ===== */
.script-box {
  max-width: 700px;
  margin: 32px auto 0;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,26,26,0.1), 0 10px 40px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.script-box:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 50px rgba(255,26,26,0.2), 0 10px 50px rgba(0,0,0,0.4);
}

.script-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.script-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.script-label svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  stroke-width: 2;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,26,26,0.1);
  border: 1px solid rgba(255,26,26,0.3);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: rgba(255,26,26,0.2);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

.copy-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2;
}

.script-code {
  display: block;
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #fff;
  word-break: break-all;
  white-space: pre-wrap;
  user-select: all;
}

/* ===== YOUTUBE EMBED ===== */
.youtube-embed {
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: brightness(0.4);
}

.youtube-embed:hover .video-thumbnail {
  transform: scale(1.05);
  filter: brightness(0.5);
}

.custom-thumbnail-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,26,26,0.15), rgba(0,0,0,0.3));
  pointer-events: none;
}

.custom-thumbnail-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,26,26,0.05) 2px,
      rgba(255,26,26,0.05) 4px
    );
}

.thumbnail-content {
  text-align: center;
  z-index: 1;
}

.thumbnail-logo {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px rgba(255,26,26,0.8));
}

.thumbnail-logo .logo-x {
  color: #fff;
  text-shadow: 0 0 40px rgba(255,255,255,0.5);
}

.thumbnail-logo .logo-fent {
  color: #ff1a1a;
  text-shadow: 0 0 60px rgba(255,26,26,0.9), 0 0 100px rgba(255,26,26,0.6);
}

.thumbnail-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 4px 20px rgba(0,0,0,0.8);
}

.thumbnail-features {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(255,26,26,0.8);
}

.thumbnail-features span:nth-child(even) {
  color: rgba(255,255,255,0.5);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255,26,26,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px var(--accent-glow-strong), 0 4px 20px rgba(0,0,0,0.5);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
  box-shadow: 0 0 50px var(--accent-glow-strong), 0 4px 30px rgba(0,0,0,0.6);
}

.play-button svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: #fff;
  stroke-width: 0;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .script-box {
    margin: 24px 16px 0;
  }
  
  .script-code {
    font-size: 0.75rem;
    padding: 16px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button svg {
    width: 24px;
    height: 24px;
  }
}
