/* ═══════════════════════════════════════════════
   ZONA TRAUMÁTICA — Design System
   Paleta: Rojo + Negro + Dorado
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@700;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --primary: #DC2626;
  --primary-rgb: 220, 38, 38;
  --primary-dark: #991B1B;
  --primary-light: #EF4444;
  --accent: #D4A017;
  --accent-rgb: 212, 160, 23;
  --accent-light: #F0C040;
  --bg-primary: #0A0A0F;
  --bg-secondary: #111118;
  --bg-tertiary: #1A1A24;
  --text: #F5F5F5;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(220, 38, 38, 0.3);
  --glass-bg: rgba(10, 10, 15, 0.7);
  --glass-border: rgba(220, 38, 38, 0.12);
  --glass-blur: 20px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --archetype-color: var(--primary);
  --archetype-rgb: var(--primary-rgb);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Orbitron', sans-serif; font-weight: 700; line-height: 1.1; letter-spacing: 0.02em; }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1rem, 2vw, 1.4rem); }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ═══ PROMO BAR ═══ */
.promo-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 10px 40px 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  animation: promoGlow 3s ease-in-out infinite;
}
@keyframes promoGlow {
  0%, 100% { box-shadow: 0 2px 20px rgba(var(--primary-rgb), 0.3); }
  50% { box-shadow: 0 2px 30px rgba(var(--primary-rgb), 0.5); }
}
.promo-bar strong { color: var(--accent); }
.promo-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer;
  font-size: 1rem; padding: 4px;
}
.promo-close:hover { color: #fff; }

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
  padding: 0 20px;
}
.nav.has-promo { top: 0; }
.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-icon { color: var(--primary); font-size: 1.5rem; }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a {
  color: var(--text-muted); font-size: 0.9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600; font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--primary-light); transform: scale(1.05); box-shadow: var(--shadow-glow); }
.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  z-index: 999;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--text); font-size: 1.2rem; font-weight: 500; }

/* ═══ HERO ═══ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 20px 80px;
  background: var(--bg-primary);
}
/* 🎬 HERO VIDEO BACKGROUND */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
  filter: brightness(0.6) saturate(1.3);
}

/* Scan-line grid overlay */
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 200%; height: 200%;
  background:
    linear-gradient(rgba(var(--primary-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
  animation: gridScroll 25s linear infinite;
}
@keyframes gridScroll {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, -60px); }
}
/* Vignette */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10,10,15,0.8) 100%);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
/* VCSkate-style hero text slide-in from LEFT */
.hero-text {
  max-width: 600px;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out 0.3s forwards;
}
@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}
/* Authority badge */
.hero-authority {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem; letter-spacing: 5px;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
  margin-bottom: 16px;
}
.hero-authority::before {
  content: '';
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; color: var(--primary-light);
  margin-bottom: 16px;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px; background: var(--primary);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
.hero h1 { margin-bottom: 16px; }
#heroCanvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* ═══ NEON HERO TITLE ═══ */
.hero-title-neon {
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 5px;
  line-height: 1.05;
}
.hero-title-static {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1.4rem, 3.5vw, 2.5rem);
  text-shadow:
    0 0 10px rgba(255,255,255,0.1),
    0 0 40px rgba(var(--primary-rgb), 0.08);
  margin-bottom: 0;
}
.hero-title-typing {
  display: inline-block;
  color: var(--primary);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  position: relative;
  text-shadow:
    0 0 10px rgba(var(--primary-rgb), 0.8),
    0 0 30px rgba(var(--primary-rgb), 0.5),
    0 0 60px rgba(var(--primary-rgb), 0.3),
    0 0 100px rgba(var(--primary-rgb), 0.15);
  animation: neonPulse 3s ease-in-out infinite;
  border-right: 3px solid var(--primary);
  padding-right: 6px;
  min-height: 1.2em;
}
.hero-title-typing.blink {
  animation: neonPulse 3s ease-in-out infinite, cursorBlink 0.7s step-end infinite;
}
@keyframes cursorBlink {
  50% { border-color: transparent; }
}
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 10px rgba(var(--primary-rgb), 0.8),
      0 0 30px rgba(var(--primary-rgb), 0.5),
      0 0 60px rgba(var(--primary-rgb), 0.3),
      0 0 100px rgba(var(--primary-rgb), 0.15);
  }
  50% {
    text-shadow:
      0 0 15px rgba(var(--primary-rgb), 1),
      0 0 40px rgba(var(--primary-rgb), 0.7),
      0 0 80px rgba(var(--primary-rgb), 0.4),
      0 0 120px rgba(var(--primary-rgb), 0.2),
      0 0 180px rgba(var(--accent-rgb), 0.1);
  }
}
.hero-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 24px; max-width: 500px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  flex: 1;
  z-index: 5;
  opacity: 0;
  transform: translateX(50px) scale(0.9);
  animation: slideInRight 1.2s ease-out 0.5s forwards;
}
@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0) scale(1); }
}
/* Energy rings — VCSkate EXACT */
.energy-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 120%; height: 120%;
  border: 1px solid rgba(var(--primary-rgb), 0.5);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 3s ease-out infinite;
}
.energy-ring:nth-child(1) { animation-delay: 0s; }
.energy-ring:nth-child(2) { animation-delay: 1s; }
.energy-ring:nth-child(3) { animation-delay: 2s; }
@keyframes pulseRing {
  0%   { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}
.hero-visual img {
  width: 100%; max-width: 600px; height: auto;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 60px rgba(var(--primary-rgb), 0.6))
         drop-shadow(0 0 120px rgba(var(--primary-rgb), 0.25));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}
/* Floating particles */
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  animation: floatParticle 8s ease-in-out infinite;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
  50% { transform: translateY(-80px) translateX(15px); opacity: 0.1; }
}
.hero-particles {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-avatars { display: flex; }
.hero-avatars .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 2px solid var(--bg-primary);
  margin-left: -10px; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}
.hero-avatars .avatar:first-child { margin-left: 0; }
.hero-social-text { font-size: 0.85rem; color: var(--text-muted); }
.hero-social-text strong { color: var(--accent); }
.hero-stars { color: var(--accent); }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 1rem; border: none; cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--primary-light); color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-glow);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-secondary:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px);
}

/* ═══ SECTION HEADERS ═══ */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .tag {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-light);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ═══ TRUST BAR ═══ */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 20px;
}
.trust-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.trust-item { padding: 16px; }
.trust-num {
  font-family: 'Orbitron', sans-serif; font-size: 2.5rem; font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.trust-label { color: var(--text-muted); font-size: 0.85rem; font-weight: 500; }

/* ═══ PRODUCTS GRID ═══ */
.products-section { padding: 80px 20px; }
.filter-bar {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(var(--primary-rgb), 0.1);
  border-color: var(--primary);
  color: var(--primary-light);
}
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.product-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.product-card .card-img-wrap {
  position: relative; overflow: hidden; height: 220px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb),0.03), rgba(var(--accent-rgb),0.03));
}
.product-card .card-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; background: linear-gradient(transparent, var(--bg-secondary));
  pointer-events: none;
}
.product-card .card-img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-card .card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card .card-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary-light);
  margin-bottom: 8px;
}
.product-card .card-brand { color: var(--text-dim); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.product-card .card-title { font-family: 'Outfit'; font-weight: 600; font-size: 1.05rem; margin: 4px 0 8px; }
.product-card .card-desc { color: var(--text-muted); font-size: 0.8rem; margin-bottom: 12px; line-height: 1.5; }
.product-card .card-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.product-card .spec {
  font-size: 0.7rem; color: var(--text-dim);
  background: rgba(255,255,255,0.03); padding: 3px 8px; border-radius: 4px;
}
.product-card .card-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.product-card .card-price { font-family: 'Outfit'; font-weight: 700; font-size: 1.2rem; color: var(--accent); }
.product-card .card-price-old { font-size: 0.8rem; color: var(--text-dim); text-decoration: line-through; }
.product-card .card-scarcity { font-size: 0.75rem; color: var(--primary); font-weight: 600; }
.product-card .card-highlights { list-style: none; margin-bottom: 12px; }
.product-card .card-highlights li { font-size: 0.78rem; color: var(--text-muted); padding: 3px 0; }
.product-card .card-highlights li::before { content: "✓ "; color: var(--primary); font-weight: 700; }
.product-card .card-cta {
  display: block; width: 100%; text-align: center; margin-top: auto;
  background: var(--primary); color: #fff;
  padding: 10px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.85rem;
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.product-card .card-cta:hover { background: var(--primary-light); color: #fff; }

/* ═══ SOLD OUT ═══ */
.product-card.sold-out { opacity: 0.6; }
.product-card.sold-out .card-img { filter: grayscale(60%); }
.product-card.sold-out .card-cta {
  background: var(--bg-tertiary); color: var(--text-dim);
  cursor: default; pointer-events: none;
}
.product-card .card-tag.tag-sold {
  background: rgba(220, 38, 38, 0.15);
  color: #F87171; border: 1px solid rgba(220, 38, 38, 0.3);
}
.product-card.sold-out .card-price { color: var(--text-dim); }

/* ═══ WHY / LEGAL SECTION (HUD STYLE) ═══ */
.why-section { padding: 80px 20px; background: var(--bg-secondary); position: relative; overflow: hidden; }
.why-section::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 200%; height: 200%;
  background:
    linear-gradient(rgba(var(--primary-rgb), 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* Tactical section tag */
.section-tag-line {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.tag-line-bar {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}
.tag-neon {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem; letter-spacing: 5px;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.4);
}

/* Section title tactical */
.section-title-tactical {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  line-height: 1.05;
  color: var(--text);
}
.section-title-tactical .neon-accent {
  color: var(--primary);
  text-shadow:
    0 0 10px rgba(var(--primary-rgb), 0.6),
    0 0 30px rgba(var(--primary-rgb), 0.3),
    0 0 60px rgba(var(--primary-rgb), 0.15);
}

/* Highlight box */
.hud-highlight {
  max-width: 900px; margin: 24px auto 40px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--primary-rgb), 0.02));
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 12px;
  padding: 32px;
  position: relative; z-index: 1;
}
.hud-highlight-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  padding: 4px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  float: right;
}
.hud-highlight-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 12px;
}
.hud-highlight p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* HUD Cards Grid */
.hud-grid {
  max-width: 900px; margin: 0 auto 40px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; z-index: 1;
}
.hud-card {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  background: rgba(var(--bg-tertiary-rgb, 30,30,40), 0.5);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-left: 3px solid rgba(var(--primary-rgb), 0.4);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.hud-card:hover {
  border-left-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.08),
              inset 0 0 20px rgba(var(--primary-rgb), 0.03);
  transform: translateX(4px);
}
.hud-card-icon {
  font-size: 1.6rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 8px;
  flex-shrink: 0;
}
.hud-card-content h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 2px;
}
.hud-card-content p {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Status Bar */
.status-bar {
  display: flex; justify-content: center; gap: 0;
  max-width: 700px; margin: 0 auto;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 8px;
  overflow: hidden;
  position: relative; z-index: 1;
}
.status-item {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  background: rgba(var(--bg-tertiary-rgb, 30,30,40), 0.4);
  border-right: 1px solid rgba(var(--primary-rgb), 0.1);
}
.status-item:last-child { border-right: none; }
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.6);
  animation: statusPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.6); }
  50% { box-shadow: 0 0 16px rgba(var(--primary-rgb), 0.9), 0 0 30px rgba(var(--primary-rgb), 0.3); }
}
.status-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--primary);
}
.status-value {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══ STEPS ═══ */
.steps-section { padding: 80px 20px; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.step-card {
  text-align: center; padding: 32px 24px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
  position: relative;
}
.step-card:hover { border-color: rgba(var(--primary-rgb), 0.3); }
.step-num {
  font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 900;
  color: rgba(var(--primary-rgb), 0.15); position: absolute; top: 12px; right: 20px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ═══ TESTIMONIALS ═══ */
.testimonials-section { padding: 80px 20px; background: var(--bg-secondary); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(var(--accent-rgb), 0.3); }
.testimonial-stars { color: var(--accent); margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-quote { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-loc { color: var(--text-dim); font-size: 0.8rem; }

/* ═══ URGENCY CTA ═══ */
.urgency-cta {
  padding: 80px 20px; text-align: center;
  background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%), var(--bg-primary);
}
.urgency-cta h2 { margin-bottom: 12px; }
.urgency-cta > p { color: var(--text-muted); margin-bottom: 32px; }
.countdown {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 32px;
}
.countdown-item {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px 20px; min-width: 70px;
}
.countdown-item .num {
  font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary);
  display: block;
}
.countdown-item .lbl { font-size: 0.7rem; color: var(--text-dim); text-transform: uppercase; }
.btn-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1.1rem;
  border: none; cursor: pointer; transition: all 0.3s ease;
  text-decoration: none;
  animation: urgencyPulse 2s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3); }
  50% { box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.5); }
}
.btn-urgency:hover { transform: scale(1.05); color: #fff; }
.urgency-micro { color: var(--text-muted); font-size: 0.85rem; margin-top: 16px; }

/* ═══ FAQ ═══ */
.faq-section { padding: 80px 20px; }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(var(--primary-rgb), 0.2); }
.faq-q {
  padding: 18px 20px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem;
  background: none; border: none; color: var(--text); width: 100%;
  text-align: left; font-family: inherit;
}
.faq-q .faq-arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--primary); }
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  padding: 0 20px;
}
.faq-item.active .faq-a { max-height: 500px; padding: 0 20px 18px; }
.faq-a p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ═══ SEO CONTENT BLOCK ═══ */
.seo-content {
  padding: 60px 20px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}
.seo-inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.seo-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-light);
  margin: 28px 0 12px;
  letter-spacing: 0;
}
.seo-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.seo-content strong {
  color: var(--text);
}

/* ═══ OPERACIÓN LEGÍTIMA DEFENSA — CTA SECTION ═══ */
.defensa-section {
  padding: 100px 20px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.defensa-section::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 200%; height: 200%;
  background:
    linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none; z-index: 0;
  animation: gridScroll 25s linear infinite;
}
.defensa-section::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(var(--primary-rgb), 0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.defensa-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.defensa-content { max-width: 560px; }
.defensa-desc {
  color: var(--text-muted); font-size: 1.05rem;
  line-height: 1.8; margin: 20px 0 28px;
}
.defensa-stats {
  display: flex; gap: 32px; margin-bottom: 28px;
}
.defensa-stat { text-align: center; }
.defensa-stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--primary);
  display: block;
  text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}
.defensa-stat-label {
  font-size: 0.75rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 1px;
}
.defensa-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.defensa-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted);
  padding: 8px 14px;
  background: rgba(var(--primary-rgb), 0.04);
  border-left: 2px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 0 6px 6px 0;
  transition: all 0.3s ease;
}
.defensa-feature:hover {
  background: rgba(var(--primary-rgb), 0.08);
  border-left-color: var(--primary);
  transform: translateX(4px);
}
.defensa-feature span { color: var(--text); }
.defensa-cta-group { margin-top: 8px; }
.btn-defensa-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary), #991B1B);
  color: #fff; padding: 16px 36px; border-radius: 50px;
  font-weight: 700; font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  border: none; cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.25);
  animation: urgencyPulse 2.5s ease-in-out infinite;
}
.btn-defensa-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 50px rgba(var(--primary-rgb), 0.4);
  color: #fff;
}
.defensa-micro {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem; color: var(--text-dim);
  letter-spacing: 1px; margin-top: 12px;
}

/* HUD Scenario Preview Card */
.defensa-visual { position: relative; }
.defensa-hud-card {
  background: rgba(10, 10, 15, 0.85);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 40px rgba(var(--primary-rgb), 0.08);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.defensa-hud-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.hud-scenario-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(var(--primary-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; color: var(--primary-light);
}
.hud-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
}
.hud-dot.live {
  box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.8);
  animation: pulse 2s infinite;
}
.hud-scenario-body { padding: 20px 18px; }
.hud-police-quote {
  background: rgba(var(--primary-rgb), 0.06);
  border-left: 3px solid rgba(var(--primary-rgb), 0.5);
  padding: 14px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem; color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hud-options-preview {
  display: flex; flex-direction: column; gap: 8px;
}
.hud-opt {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.hud-opt.correct {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.06);
  color: #4ADE80;
}
.hud-opt.wrong {
  border-color: rgba(var(--primary-rgb), 0.15);
  color: var(--text-dim);
}
.hud-scenario-footer {
  padding: 10px 18px;
  background: rgba(var(--primary-rgb), 0.04);
  border-top: 1px solid rgba(var(--primary-rgb), 0.1);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.7rem; color: var(--text-dim);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .defensa-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .defensa-stats { gap: 20px; }
  .defensa-stat-num { font-size: 1.6rem; }
  .defensa-hud-card {
    transform: none;
  }
  .defensa-hud-card:hover { transform: none; }
}

/* Defensa section scroll animation */
@keyframes defensa-slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.defensa-animate {
  opacity: 0;
  animation: defensa-slide-up 0.8s ease-out forwards;
}
.defensa-animate:nth-child(2) {
  animation-delay: 0.3s;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
.footer-brand .footer-logo {
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1.3rem;
  margin-bottom: 12px;
}
.footer-brand .footer-logo span { color: var(--primary); }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; max-width: 300px; line-height: 1.6; }
.footer-links h4 { color: var(--text); font-size: 0.9rem; margin-bottom: 12px; font-family: 'Outfit', sans-serif; }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.82rem; padding: 4px 0; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  text-align: center; padding-top: 24px; margin-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.75rem;
  max-width: 1200px; margin-left: auto; margin-right: auto;
  line-height: 1.8;
}
.footer-bottom a { color: var(--text-muted); }

/* ═══ LIVE NOTIFICATION ═══ */
.live-notification {
  position: fixed; bottom: 100px; left: 20px; z-index: 998;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  transform: translateX(-120%); opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
}
.live-notification.show { transform: translateX(0); opacity: 1; }
.notif-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.notif-text { font-size: 0.8rem; }
.notif-text strong { display: block; color: var(--text); }
.notif-text span { color: var(--text-muted); }
.notif-text small { color: var(--text-dim); display: block; margin-top: 2px; }

/* ═══ WHATSAPP FLOAT ═══ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 997;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }

/* ═══ SCROLL PROGRESS ═══ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 9999; transform-origin: left; transform: scaleX(0);
}

/* ═══ ARCHETYPE SELECTOR ═══ */

/* ARCHETYPE PROMPT HEADER */
.archetype-prompt-header {
  text-align: center;
  margin-bottom: 16px;
}
.archetype-prompt-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.archetype-prompt-sub {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.archetype-selector { display: flex; gap: 10px; flex-wrap: nowrap; margin-bottom: 12px; }
.archetype-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 14px 12px; cursor: pointer;
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  min-width: 80px; max-width: 120px;
  font-family: inherit; color: var(--text);
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.archetype-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%);
  pointer-events: none;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.archetype-card:hover::after { opacity: 1; }
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06); }
  50% { box-shadow: 0 2px 12px rgba(var(--archetype-rgb), 0.15), inset 0 1px 0 rgba(255,255,255,0.08); }
}
.archetype-card { animation: subtlePulse 3s ease-in-out infinite; }
.archetype-card:hover { border-color: var(--archetype-color); transform: translateY(-3px) scale(1.05); box-shadow: 0 4px 20px rgba(var(--archetype-rgb), 0.25); animation: none; }
.archetype-card.active {
  border-color: var(--archetype-color);
  background: rgba(var(--archetype-rgb), 0.15);
  box-shadow: 0 0 25px rgba(var(--archetype-rgb), 0.3), inset 0 0 15px rgba(var(--archetype-rgb), 0.05);
  transform: translateY(-2px) scale(1.03);
  animation: none;
}
.archetype-emoji { font-size: 1.4rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.archetype-label { font-weight: 700; font-size: 0.78rem; letter-spacing: 0.3px; }
.archetype-sub { font-size: 0.65rem; color: var(--text-dim); text-align: center; }
.archetype-check { display: none; color: var(--archetype-color); font-size: 12px; }
.archetype-card.active .archetype-check { display: block; }
.archetype-prompt {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted);
  animation: promptPulse 2s ease-in-out infinite;
}
@keyframes promptPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
.archetype-preview { min-height: 20px; font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }

/* ═══ PLAN SECTION ═══ */
.plan-section {
  background: var(--bg-secondary); padding: 80px 20px;
  border-top: 2px solid rgba(var(--archetype-rgb), 0.2);
}
.plan-inner { max-width: 900px; margin: 0 auto; }
.plan-header { text-align: center; margin-bottom: 40px; }
.plan-header .tag {
  display: inline-block;
  background: rgba(var(--archetype-rgb), 0.1);
  color: var(--archetype-color);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 12px;
  border: 1px solid rgba(var(--archetype-rgb), 0.2);
}
.plan-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-bottom: 32px;
}
.plan-product {
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 20px; text-align: center;
  animation: planFadeIn 0.5s ease forwards; opacity: 0;
  background: var(--bg-primary);
}
.plan-product:nth-child(1) { animation-delay: 0.1s; }
.plan-product:nth-child(2) { animation-delay: 0.2s; }
.plan-product:nth-child(3) { animation-delay: 0.3s; }
@keyframes planFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.plan-product img { height: 140px; object-fit: contain; margin: 0 auto 12px; }
.plan-product .plan-role { font-size: 0.75rem; color: var(--archetype-color); font-weight: 600; margin-bottom: 4px; }
.plan-product .plan-prod-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.plan-product .plan-prod-price { color: var(--accent); font-weight: 700; }
.plan-product .plan-prod-old { color: var(--text-dim); text-decoration: line-through; font-size: 0.8rem; }
.plan-total { text-align: center; margin-bottom: 24px; }
.plan-total .plan-total-price { font-family: 'Orbitron', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.plan-total .plan-total-save { color: var(--primary); font-size: 0.9rem; font-weight: 600; }
.plan-cta { display: block; max-width: 400px; margin: 0 auto 32px; text-align: center; }
.plan-testimonial {
  background: var(--bg-primary); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-top: 24px;
}

/* ═══ QUIZ ═══ */
.quiz-section { padding: 60px 20px; text-align: center; }
.quiz-inner { max-width: 500px; margin: 0 auto; }
.quiz-icon { font-size: 3rem; margin-bottom: 12px; }
.quiz-section h3 { margin-bottom: 8px; }
.quiz-section > .quiz-inner > p { color: var(--text-muted); margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; }
.quiz-opt {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px; cursor: pointer; transition: all 0.2s;
  font-family: inherit; font-size: 1rem; color: var(--text); text-align: left;
}
.quiz-opt:hover, .quiz-opt.selected {
  border-color: var(--primary); background: rgba(var(--primary-rgb), 0.1);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero-visual { order: -1; }
  .hero-desc { margin: 0 auto 24px; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual img { max-width: 100%; width: 100%; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .archetype-selector { justify-content: center; }
  .archetype-card { min-width: 65px; max-width: 85px; padding: 8px 6px; }
  .archetype-label { font-size: 0.7rem; }
  .countdown { gap: 8px; }
  .countdown-item { padding: 12px 14px; }
  .countdown-item .num { font-size: 1.5rem; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .product-card .card-img-wrap { height: 160px; }
  .product-card .card-body { padding: 12px; }
  .product-card .card-title { font-size: 0.9rem; }
  .product-card .card-desc { font-size: 0.75rem; }
  .plan-grid { grid-template-columns: 1fr; }
  .hud-highlight-badge { float: none; margin-bottom: 12px; }
  .status-bar { flex-direction: column; }
  .status-item { border-right: none; border-bottom: 1px solid rgba(var(--primary-rgb), 0.1); }
  .status-item:last-child { border-bottom: none; }
}

/* ═══ SIDE-ENTRY REVEAL ANIMATIONS ═══ */
.reveal-left, .reveal-right, .reveal-up {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-up { transform: translateY(50px); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
  opacity: 1;
  transform: translate(0);
}
/* Stagger delays for child elements */
.reveal-left.delay-1, .reveal-right.delay-1, .reveal-up.delay-1 { transition-delay: 0.1s; }
.reveal-left.delay-2, .reveal-right.delay-2, .reveal-up.delay-2 { transition-delay: 0.2s; }
.reveal-left.delay-3, .reveal-right.delay-3, .reveal-up.delay-3 { transition-delay: 0.3s; }
.reveal-left.delay-4, .reveal-right.delay-4, .reveal-up.delay-4 { transition-delay: 0.4s; }
.reveal-left.delay-5, .reveal-right.delay-5, .reveal-up.delay-5 { transition-delay: 0.5s; }
.reveal-left.delay-6, .reveal-right.delay-6, .reveal-up.delay-6 { transition-delay: 0.6s; }

/* Hero entry animation */
.hero-text { animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-visual { animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ═══ PRODUCT MODAL ═══ */
.product-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.product-modal-overlay.open { opacity: 1; visibility: visible; }
.product-modal-box {
  background: var(--bg-secondary);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 12px;
  max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.2), 0 20px 60px rgba(0,0,0,0.8);
}
.product-modal-overlay.open .product-modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  background: rgba(var(--primary-rgb), 0.15);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  color: var(--text-primary); font-size: 1.1rem;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--primary); color: #fff; }
.modal-img-col {
  background: rgba(var(--primary-rgb), 0.04);
  border-radius: 12px 0 0 12px;
  padding: 40px 30px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  position: relative; overflow: hidden;
}
.modal-img-col::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(var(--primary-rgb),0.12) 0%, transparent 70%);
  pointer-events: none;
}
.modal-img-wrap {
  position: relative; cursor: zoom-in;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.modal-img-wrap img {
  max-width: 100%; max-height: 320px; object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(var(--primary-rgb), 0.4));
  animation: heroFloat 6s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.modal-img-wrap:hover img { transform: scale(1.03); }
.modal-zoom-hint {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6); color: #fff;
  font-size: 0.72rem; padding: 4px 10px; border-radius: 12px;
  pointer-events: none; white-space: nowrap;
  opacity: 0; transition: opacity 0.2s;
}
.modal-img-wrap:hover .modal-zoom-hint { opacity: 1; }
/* Zoom lightbox */
.img-zoom-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out; padding: 20px;
}
.img-zoom-overlay.open { opacity: 1; visibility: visible; }
.img-zoom-overlay img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.4));
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.img-zoom-overlay.open img { transform: scale(1); }
.zoom-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 1.2rem;
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 1;
}
.zoom-close:hover { background: var(--primary); }
.modal-availability {
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600;
}
.modal-availability.available { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.modal-availability.sold-out { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
.modal-info-col { padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; }
.modal-brand { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.modal-title { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; line-height: 1; }
.modal-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.modal-specs { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-spec-tag {
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  color: var(--text-secondary); font-size: 0.8rem;
  padding: 4px 12px; border-radius: 20px;
}
.modal-highlights { display: flex; flex-direction: column; gap: 5px; max-height: 230px; overflow-y: auto; padding-right: 4px; }
.modal-includes-title {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 4px; padding-bottom: 6px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
}
.modal-highlight-item { font-size: 0.84rem; color: var(--text-secondary); display: flex; gap: 8px; align-items: flex-start; line-height: 1.4; }
.modal-highlight-item::before { content: '✓'; color: var(--primary); flex-shrink: 0; font-weight: 700; }
.modal-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 4px; }
.modal-price { font-family: 'Orbitron', sans-serif; font-size: 2rem; color: var(--primary); }
.modal-price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.modal-cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff;
  padding: 16px 24px; border-radius: 8px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: all 0.3s; margin-top: 4px;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.4);
}
.modal-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.6); }
.modal-cta.sold-out-cta { background: rgba(var(--primary-rgb),0.15); border: 1px solid rgba(var(--primary-rgb),0.3); color: var(--text-secondary); }
.modal-legal { font-size: 0.78rem; color: var(--text-muted); text-align: center; }
@media (max-width: 640px) {
  .product-modal-box { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-img-col { border-radius: 12px 12px 0 0; padding: 30px 20px; }
  .modal-img-col img { max-height: 220px; }
  .modal-info-col { padding: 24px 20px; }
  .modal-title { font-size: 1.8rem; }
}

/* --- HUD ACCORDION --- */
.hud-accordion { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.hud-acc-item {
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 10px;
  background: var(--bg-secondary);
  overflow: hidden;
  transition: border-color 0.3s;
}
.hud-acc-item:hover { border-color: rgba(var(--primary-rgb), 0.5); }
.hud-acc-item.open { border-color: rgba(var(--primary-rgb), 0.6); }
.hud-acc-header {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; background: none; border: none;
  cursor: pointer; text-align: left;
  transition: background 0.2s;
}
.hud-acc-header:hover { background: rgba(var(--primary-rgb), 0.05); }
.hud-acc-icon { font-size: 1.5rem; flex-shrink: 0; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: rgba(var(--primary-rgb), 0.1); border-radius: 8px; }
.hud-acc-title { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--text); flex: 1; }
.hud-acc-sub { font-size: 0.78rem; color: var(--text-muted); flex: 2; }
.hud-acc-chevron { font-size: 1.2rem; color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.hud-acc-item.open .hud-acc-chevron { transform: rotate(180deg); }
.hud-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 20px;
}
.hud-acc-item.open .hud-acc-body { max-height: 600px; padding: 0 20px 20px; }
.hud-acc-list { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; margin: 0; }
.hud-acc-list li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.hud-acc-list li strong { color: var(--text); }
.hud-acc-list li em { color: var(--accent); font-style: normal; }
.hud-acc-note { margin-top: 16px; font-size: 0.82rem; color: var(--primary); background: rgba(var(--primary-rgb), 0.08); border-left: 3px solid var(--primary); padding: 10px 14px; border-radius: 0 6px 6px 0; }
@media (max-width: 640px) {
  .hud-acc-sub { display: none; }
  .hud-acc-title { font-size: 0.78rem; }
  .hud-acc-header { padding: 14px 16px; gap: 10px; }
}





/* MOBILE: Touch-friendly archetype cards */
@media (hover: none) {
  .archetype-card {
    animation: mobileGlow 2.5s ease-in-out infinite;
    -webkit-tap-highlight-color: rgba(var(--archetype-rgb), 0.2);
    border-color: rgba(255,255,255,0.22);
    padding: 16px 14px;
  }
  @keyframes mobileGlow {
    0%, 100% { border-color: rgba(255,255,255,0.18); }
    50% { border-color: rgba(255,255,255,0.35); }
  }
  .archetype-card:active {
    transform: scale(0.93) !important;
    background: rgba(var(--archetype-rgb), 0.15) !important;
    border-color: var(--archetype-color) !important;
    transition: all 0.1s !important;
  }
  .archetype-card.active {
    animation: none;
  }
  .archetype-prompt-sub::after {
    content: ' 👇';
  }
}

/* ═══ SCROLL ANIMATIONS (VCSkate-style) ═══ */
[data-anim] { opacity: 0; transition: opacity 0.5s cubic-bezier(.16,1,.3,1), transform 0.5s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
[data-anim="up"] { transform: translateY(30px); }
[data-anim="down"] { transform: translateY(-30px); }
[data-anim="left"] { transform: translateX(-40px); }
[data-anim="right"] { transform: translateX(40px); }
[data-anim="scale"] { transform: scale(0.88); }
[data-anim].in { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
[data-anim].out { opacity: 0; }
[data-anim="up"].out { transform: translateY(-16px); }
[data-anim="down"].out { transform: translateY(16px); }
[data-anim="left"].out { transform: translateX(20px); }
[data-anim="right"].out { transform: translateX(-20px); }

/* ═══ COLOR SWITCHER (Modal) ═══ */
.modal-colors { display: flex; align-items: center; gap: 8px; margin: 12px 0; flex-wrap: wrap; }
.modal-color-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-right: 4px; }
.modal-color-btn {
  padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.7);
  font-size: 0.8rem; cursor: pointer; transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}
.modal-color-btn:hover { border-color: rgba(220,38,38,0.5); color: #fff; }
.modal-color-btn.active {
  background: rgba(220,38,38,0.15); border-color: #DC2626;
  color: #fff; font-weight: 600;
}
#modalImg { transition: opacity 0.15s ease; }

/* ═══ PLAN PLUS/PRO LABELS ═══ */
.card-plan-label {
  font-size: 0.65rem; font-weight: 600; color: #D4A017;
  background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.3);
  padding: 2px 8px; border-radius: 10px; letter-spacing: 0.5px;
}
.card-pro-upsell {
  font-size: 0.72rem; color: rgba(255,255,255,0.7);
  background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2);
  border-radius: 8px; padding: 6px 10px; margin-top: 6px;
}
.card-pro-upsell span { color: rgba(255,255,255,0.45); font-size: 0.65rem; }
.modal-plan-label {
  display: inline-block; font-size: 0.7rem; font-weight: 600; color: #D4A017;
  background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.3);
  padding: 3px 10px; border-radius: 12px; margin-bottom: 6px;
}
.modal-pro-upsell { margin: 8px 0 12px; }
.modal-pro-line {
  font-size: 0.8rem; color: rgba(255,255,255,0.8);
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(220,38,38,0.05));
  border: 1px solid rgba(59,130,246,0.25); border-radius: 10px;
  padding: 10px 14px; margin-top: 4px;
}

/* ═══ FLOATING MUSIC PLAYER ═══ */
.music-player {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
}
.music-toggle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(15,15,15,0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(220,38,38,0.3);
  color: #DC2626; font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.music-toggle:hover { border-color: #DC2626; transform: scale(1.08); }
.music-toggle.playing {
  border-color: #DC2626; box-shadow: 0 0 20px rgba(220,38,38,0.3);
  animation: musicPulse 2s ease infinite;
}
@keyframes musicPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(220,38,38,0.2); }
  50% { box-shadow: 0 0 24px rgba(220,38,38,0.45); }
}
.music-label {
  font-size: 0.65rem; font-family: 'Orbitron', monospace;
  color: rgba(255,255,255,0.4); letter-spacing: 1px;
  text-transform: uppercase; white-space: nowrap;
  background: rgba(15,15,15,0.7); backdrop-filter: blur(8px);
  padding: 4px 10px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.music-bars {
  display: flex; align-items: flex-end; gap: 2px; height: 16px;
}
.music-bars .bar {
  width: 3px; background: #DC2626; border-radius: 1px;
  animation: eqBar 0.8s ease-in-out infinite alternate;
}
.music-bars .bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.music-bars .bar:nth-child(2) { height: 12px; animation-delay: 0.15s; }
.music-bars .bar:nth-child(3) { height: 8px; animation-delay: 0.3s; }
.music-bars .bar:nth-child(4) { height: 14px; animation-delay: 0.45s; }
@keyframes eqBar {
  0% { height: 4px; }
  100% { height: 16px; }
}
@media (max-width: 600px) {
  .music-player { bottom: 16px; right: 16px; }
  .music-label { display: none; }
  .music-toggle { width: 42px; height: 42px; }
}
