/* ============================================================
   CORXOR WEBSITE THEME v3.0 - "STRIKE" Edition
   CrowdStrike-inspired Dynamic & Energetic Design
   
   Theme: Dark with Vibrant Neon Accents
   Energy: Dynamic, Bold, Futuristic
   Target: Gaming, Fintech, Blockchain, Security
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES - STRIKE PALETTE
   ============================================================ */
:root {
  /* ========== CORE COLORS - Strike Palette ========== */
  
  /* Background - Deep Space */
  --strike-bg-darker: #030712;
  --strike-bg-dark: #0a0f1a;
  --strike-bg-main: #0f172a;
  --strike-bg-elevated: #1e293b;
  --strike-bg-card: rgba(15, 23, 42, 0.8);
  
  /* Primary Accent - Electric Red (CrowdStrike vibe) */
  --strike-red: #ff3d57;
  --strike-red-glow: rgba(255, 61, 87, 0.5);
  --strike-red-soft: rgba(255, 61, 87, 0.15);
  
  /* Secondary - Cyber Cyan */
  --strike-cyan: #00e5ff;
  --strike-cyan-glow: rgba(0, 229, 255, 0.5);
  --strike-cyan-soft: rgba(0, 229, 255, 0.1);
  
  /* Tertiary - Electric Purple */
  --strike-purple: #a855f7;
  --strike-purple-glow: rgba(168, 85, 247, 0.5);
  --strike-purple-soft: rgba(168, 85, 247, 0.1);
  
  /* Quaternary - Neon Green (for success/gaming) */
  --strike-green: #22c55e;
  --strike-green-glow: rgba(34, 197, 94, 0.5);
  
  /* Accent - Electric Orange (for warnings/fintech) */
  --strike-orange: #ff9500;
  --strike-orange-glow: rgba(255, 149, 0, 0.5);
  
  /* Gradient Presets */
  --strike-gradient-hero: linear-gradient(135deg, var(--strike-red) 0%, var(--strike-purple) 50%, var(--strike-cyan) 100%);
  --strike-gradient-red: linear-gradient(135deg, #ff3d57 0%, #ff6b81 100%);
  --strike-gradient-cyan: linear-gradient(135deg, #00e5ff 0%, #00b8d4 100%);
  --strike-gradient-purple: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  --strike-gradient-mesh: 
    radial-gradient(at 40% 20%, rgba(255, 61, 87, 0.15) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(168, 85, 247, 0.15) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(0, 229, 255, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(255, 149, 0, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(168, 85, 247, 0.15) 0px, transparent 50%);
  
  /* Text Colors */
  --strike-text-primary: #f8fafc;
  --strike-text-secondary: #cbd5e1;
  --strike-text-muted: #64748b;
  --strike-text-accent: var(--strike-cyan);
  
  /* Borders */
  --strike-border-subtle: rgba(255, 255, 255, 0.06);
  --strike-border-default: rgba(255, 255, 255, 0.1);
  --strike-border-accent: rgba(255, 61, 87, 0.3);
  
  /* ========== TYPOGRAPHY ========== */
  --strike-font-display: 'Orbitron', 'Rajdhani', system-ui, sans-serif;
  --strike-font-heading: 'Rajdhani', 'Inter', system-ui, sans-serif;
  --strike-font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --strike-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Font Sizes */
  --strike-text-xs: 0.75rem;
  --strike-text-sm: 0.875rem;
  --strike-text-base: 1rem;
  --strike-text-lg: 1.125rem;
  --strike-text-xl: 1.25rem;
  --strike-text-2xl: 1.5rem;
  --strike-text-3xl: 2rem;
  --strike-text-4xl: 2.5rem;
  --strike-text-5xl: 3.5rem;
  --strike-text-6xl: 4.5rem;
  --strike-text-hero: clamp(3rem, 8vw, 6rem);
  
  /* ========== SPACING ========== */
  --strike-space-1: 0.25rem;
  --strike-space-2: 0.5rem;
  --strike-space-3: 0.75rem;
  --strike-space-4: 1rem;
  --strike-space-6: 1.5rem;
  --strike-space-8: 2rem;
  --strike-space-10: 2.5rem;
  --strike-space-12: 3rem;
  --strike-space-16: 4rem;
  --strike-space-20: 5rem;
  --strike-space-24: 6rem;
  --strike-space-32: 8rem;
  
  /* ========== EFFECTS ========== */
  --strike-radius-sm: 0.375rem;
  --strike-radius-md: 0.5rem;
  --strike-radius-lg: 0.75rem;
  --strike-radius-xl: 1rem;
  --strike-radius-2xl: 1.5rem;
  --strike-radius-full: 9999px;
  
  --strike-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.5);
  --strike-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --strike-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --strike-shadow-glow-red: 0 0 60px var(--strike-red-glow);
  --strike-shadow-glow-cyan: 0 0 60px var(--strike-cyan-glow);
  --strike-shadow-glow-purple: 0 0 60px var(--strike-purple-glow);
  
  --strike-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --strike-transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --strike-transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.strike-theme {
  background: var(--strike-bg-darker);
  color: var(--strike-text-primary);
  font-family: var(--strike-font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ============================================================
   ANIMATED BACKGROUND - MESH GRADIENT
   ============================================================ */
.strike-bg {
  position: fixed;
  inset: 0;
  background: var(--strike-bg-darker);
  z-index: -2;
}

.strike-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--strike-gradient-mesh);
  animation: meshMove 20s ease-in-out infinite;
}

.strike-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 61, 87, 0.02) 2px,
      rgba(255, 61, 87, 0.02) 4px
    );
  pointer-events: none;
}

@keyframes meshMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-10px); }
  50% { transform: translateX(-5px) translateY(5px); }
  75% { transform: translateX(-10px) translateY(-5px); }
}

/* Grid Pattern Overlay */
.strike-grid-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 61, 87, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 61, 87, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
}

/* Animated Particles (pseudo) */
.strike-particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.strike-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.strike-container-narrow {
  max-width: 900px;
}

.strike-container-wide {
  max-width: 1600px;
}

/* ============================================================
   HEADER / NAVIGATION - Floating Glass Style
   ============================================================ */
.strike-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--strike-space-3) 0;
  transition: all var(--strike-transition-base);
}

.strike-header.scrolled {
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--strike-border-subtle);
}

.strike-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.strike-logo {
  display: flex;
  align-items: center;
  gap: var(--strike-space-3);
  text-decoration: none;
}

.strike-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--strike-gradient-red);
  border-radius: var(--strike-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--strike-shadow-glow-red);
}

.strike-logo-text {
  font-family: var(--strike-font-display);
  font-size: var(--strike-text-xl);
  font-weight: 700;
  color: var(--strike-text-primary);
  letter-spacing: 0.1em;
}

.strike-nav {
  display: flex;
  align-items: center;
  gap: var(--strike-space-1);
}

.strike-nav-link {
  padding: var(--strike-space-2) var(--strike-space-4);
  color: var(--strike-text-secondary);
  text-decoration: none;
  font-size: var(--strike-text-sm);
  font-weight: 500;
  border-radius: var(--strike-radius-md);
  transition: all var(--strike-transition-fast);
  position: relative;
}

.strike-nav-link:hover {
  color: var(--strike-text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.strike-nav-link.active {
  color: var(--strike-red);
}

.strike-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--strike-red);
  border-radius: 1px;
}

.strike-nav-cta {
  margin-left: var(--strike-space-4);
}

/* ============================================================
   HERO SECTION - DYNAMIC & POWERFUL
   ============================================================ */
.strike-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--strike-space-32) 0 var(--strike-space-24);
  overflow: hidden;
}

/* Animated gradient orbs */
.strike-hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.strike-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: orbFloat 15s ease-in-out infinite;
}

.strike-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--strike-red-soft);
  top: -20%;
  left: -10%;
  animation-delay: 0s;
}

.strike-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--strike-purple-soft);
  top: 20%;
  right: -15%;
  animation-delay: -5s;
}

.strike-orb-3 {
  width: 400px;
  height: 400px;
  background: var(--strike-cyan-soft);
  bottom: -10%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.strike-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--strike-space-4);
}

/* Hero Badge */
.strike-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--strike-space-2);
  padding: var(--strike-space-2) var(--strike-space-4);
  background: var(--strike-red-soft);
  border: 1px solid rgba(255, 61, 87, 0.3);
  border-radius: var(--strike-radius-full);
  font-size: var(--strike-text-sm);
  font-weight: 600;
  color: var(--strike-red);
  margin-bottom: var(--strike-space-8);
  animation: badgePulse 3s ease-in-out infinite;
}

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

@keyframes badgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Hero Title */
.strike-hero-title {
  font-family: var(--strike-font-display);
  font-size: var(--strike-text-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--strike-space-6);
  letter-spacing: -0.02em;
}

.strike-text-gradient {
  background: var(--strike-gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strike-text-gradient-red {
  background: var(--strike-gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.strike-text-gradient-cyan {
  background: var(--strike-gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Description */
.strike-hero-desc {
  font-size: var(--strike-text-xl);
  color: var(--strike-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--strike-space-10);
  line-height: 1.7;
}

/* Hero CTA Buttons */
.strike-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--strike-space-4);
  flex-wrap: wrap;
}

/* Hero Stats */
.strike-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--strike-space-16);
  margin-top: var(--strike-space-16);
  padding-top: var(--strike-space-10);
  border-top: 1px solid var(--strike-border-subtle);
}

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

.strike-hero-stat-value {
  font-family: var(--strike-font-display);
  font-size: var(--strike-text-4xl);
  font-weight: 700;
  color: var(--strike-text-primary);
  line-height: 1;
  margin-bottom: var(--strike-space-2);
}

.strike-hero-stat-value .accent {
  color: var(--strike-red);
}

.strike-hero-stat-label {
  font-size: var(--strike-text-sm);
  color: var(--strike-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.strike-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--strike-space-2);
  padding: var(--strike-space-4) var(--strike-space-8);
  font-family: var(--strike-font-heading);
  font-size: var(--strike-text-sm);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--strike-radius-md);
  cursor: pointer;
  transition: all var(--strike-transition-base);
  position: relative;
  overflow: hidden;
}

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

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

/* Primary Button - Red Glow */
.strike-btn-primary {
  background: var(--strike-gradient-red);
  color: white;
  box-shadow: 0 4px 20px var(--strike-red-glow);
}

.strike-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--strike-red-glow);
}

/* Secondary Button - Ghost */
.strike-btn-secondary {
  background: transparent;
  color: var(--strike-text-primary);
  border: 1px solid var(--strike-border-default);
}

.strike-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--strike-red);
  color: var(--strike-red);
}

/* Cyan Button */
.strike-btn-cyan {
  background: var(--strike-gradient-cyan);
  color: var(--strike-bg-dark);
  box-shadow: 0 4px 20px var(--strike-cyan-glow);
}

.strike-btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--strike-cyan-glow);
}

/* Large Button */
.strike-btn-lg {
  padding: var(--strike-space-5) var(--strike-space-10);
  font-size: var(--strike-text-base);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.strike-section {
  padding: var(--strike-space-24) 0;
  position: relative;
}

.strike-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--strike-space-16);
}

.strike-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--strike-space-2);
  padding: var(--strike-space-1) var(--strike-space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--strike-border-subtle);
  border-radius: var(--strike-radius-full);
  font-size: var(--strike-text-xs);
  font-weight: 600;
  color: var(--strike-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--strike-space-4);
}

.strike-section-title {
  font-family: var(--strike-font-heading);
  font-size: var(--strike-text-4xl);
  font-weight: 700;
  margin-bottom: var(--strike-space-4);
  line-height: 1.2;
}

.strike-section-subtitle {
  font-size: var(--strike-text-lg);
  color: var(--strike-text-secondary);
}

/* ============================================================
   PRODUCT/FEATURE CARDS - GLASS MORPHISM
   ============================================================ */
.strike-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--strike-space-6);
}

.strike-card {
  background: var(--strike-bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--strike-border-subtle);
  border-radius: var(--strike-radius-xl);
  padding: var(--strike-space-8);
  position: relative;
  overflow: hidden;
  transition: all var(--strike-transition-base);
}

.strike-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--card-accent, var(--strike-gradient-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--strike-transition-base);
}

.strike-card:hover {
  transform: translateY(-8px);
  border-color: var(--strike-border-accent);
  box-shadow: var(--strike-shadow-lg);
}

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

/* Card with specific accent colors */
.strike-card[data-accent="red"] { --card-accent: var(--strike-gradient-red); }
.strike-card[data-accent="cyan"] { --card-accent: var(--strike-gradient-cyan); }
.strike-card[data-accent="purple"] { --card-accent: var(--strike-gradient-purple); }
.strike-card[data-accent="green"] { --card-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); }
.strike-card[data-accent="orange"] { --card-accent: linear-gradient(135deg, #ff9500 0%, #f97316 100%); }

.strike-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 61, 87, 0.1);
  border-radius: var(--strike-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--strike-space-6);
  transition: all var(--strike-transition-base);
}

.strike-card:hover .strike-card-icon {
  background: rgba(255, 61, 87, 0.2);
  transform: scale(1.05);
}

.strike-card[data-accent="cyan"] .strike-card-icon { background: var(--strike-cyan-soft); }
.strike-card[data-accent="purple"] .strike-card-icon { background: var(--strike-purple-soft); }
.strike-card[data-accent="green"] .strike-card-icon { background: rgba(34, 197, 94, 0.1); }
.strike-card[data-accent="orange"] .strike-card-icon { background: rgba(255, 149, 0, 0.1); }

.strike-card-badge {
  display: inline-block;
  padding: var(--strike-space-1) var(--strike-space-3);
  background: var(--strike-red-soft);
  color: var(--strike-red);
  font-size: var(--strike-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--strike-radius-sm);
  margin-bottom: var(--strike-space-4);
}

.strike-card-title {
  font-family: var(--strike-font-heading);
  font-size: var(--strike-text-2xl);
  font-weight: 700;
  margin-bottom: var(--strike-space-3);
  color: var(--strike-text-primary);
}

.strike-card-desc {
  font-size: var(--strike-text-base);
  color: var(--strike-text-secondary);
  margin-bottom: var(--strike-space-6);
  line-height: 1.7;
}

.strike-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--strike-space-2);
  margin-bottom: var(--strike-space-6);
}

.strike-card-tag {
  padding: var(--strike-space-1) var(--strike-space-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--strike-border-subtle);
  border-radius: var(--strike-radius-full);
  font-size: var(--strike-text-xs);
  font-weight: 500;
  color: var(--strike-text-muted);
}

.strike-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--strike-space-2);
  color: var(--strike-red);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--strike-text-sm);
  transition: all var(--strike-transition-fast);
}

.strike-card-link:hover {
  gap: var(--strike-space-3);
}

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

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

/* Featured Card (larger) */
.strike-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--strike-space-8);
  align-items: center;
}

.strike-card-featured .strike-card-visual {
  aspect-ratio: 1;
  background: radial-gradient(circle at center, var(--strike-red-soft), transparent 70%);
  border-radius: var(--strike-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.strike-cta-section {
  position: relative;
  padding: var(--strike-space-24) 0;
  overflow: hidden;
}

.strike-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 61, 87, 0.1) 0%, transparent 50%),
              linear-gradient(225deg, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.strike-cta-box {
  position: relative;
  background: var(--strike-bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--strike-border-subtle);
  border-radius: var(--strike-radius-2xl);
  padding: var(--strike-space-16);
  text-align: center;
  overflow: hidden;
}

.strike-cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--strike-red), transparent);
}

.strike-cta-title {
  font-family: var(--strike-font-heading);
  font-size: var(--strike-text-4xl);
  font-weight: 700;
  margin-bottom: var(--strike-space-4);
}

.strike-cta-desc {
  font-size: var(--strike-text-lg);
  color: var(--strike-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--strike-space-8);
}

.strike-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--strike-space-4);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.strike-footer {
  background: var(--strike-bg-main);
  border-top: 1px solid var(--strike-border-subtle);
  padding: var(--strike-space-16) 0 var(--strike-space-8);
}

.strike-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--strike-space-12);
  margin-bottom: var(--strike-space-12);
}

.strike-footer-brand p {
  color: var(--strike-text-secondary);
  margin-top: var(--strike-space-4);
  max-width: 300px;
}

.strike-footer-title {
  font-family: var(--strike-font-heading);
  font-size: var(--strike-text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--strike-text-primary);
  margin-bottom: var(--strike-space-4);
}

.strike-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strike-footer-links li {
  margin-bottom: var(--strike-space-2);
}

.strike-footer-links a {
  color: var(--strike-text-muted);
  text-decoration: none;
  font-size: var(--strike-text-sm);
  transition: color var(--strike-transition-fast);
}

.strike-footer-links a:hover {
  color: var(--strike-red);
}

.strike-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--strike-space-8);
  border-top: 1px solid var(--strike-border-subtle);
  font-size: var(--strike-text-sm);
  color: var(--strike-text-muted);
}

.strike-footer-social {
  display: flex;
  gap: var(--strike-space-4);
}

.strike-footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--strike-border-subtle);
  border-radius: var(--strike-radius-md);
  color: var(--strike-text-muted);
  transition: all var(--strike-transition-fast);
}

.strike-footer-social a:hover {
  background: var(--strike-red-soft);
  border-color: var(--strike-red);
  color: var(--strike-red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .strike-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .strike-card-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  
  .strike-hero-stats {
    gap: var(--strike-space-8);
    flex-wrap: wrap;
  }
  
  .strike-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strike-hero {
    padding: var(--strike-space-24) 0 var(--strike-space-16);
  }
  
  .strike-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .strike-hero-desc {
    font-size: var(--strike-text-base);
    padding: 0 16px;
  }
  
  .strike-hero-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
  }
  
  .strike-hero-cta .strike-btn {
    width: 100%;
    justify-content: center;
  }
  
  .strike-cards-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
  
  .strike-card-featured {
    grid-column: span 1;
  }
  
  .strike-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--strike-space-6);
    padding: 0 20px;
  }
  
  .strike-hero-stat-value {
    font-size: var(--strike-text-2xl);
  }
  
  .strike-section {
    padding: var(--strike-space-12) 0;
  }
  
  .strike-section-title {
    font-size: var(--strike-text-2xl);
  }
  
  .strike-nav {
    display: none;
  }
  
  .strike-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--strike-space-8);
  }
  
  .strike-footer-bottom {
    flex-direction: column;
    gap: var(--strike-space-4);
    text-align: center;
  }
  
  .strike-cta-box {
    padding: var(--strike-space-8) var(--strike-space-4);
  }
  
  .strike-cta-title {
    font-size: var(--strike-text-2xl);
  }
  
  .strike-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .strike-cta-actions .strike-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .strike-container {
    padding: 0 16px;
  }
  
  .strike-hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .strike-hero-stat-value {
    font-size: var(--strike-text-xl);
  }
  
  .strike-hero-stat-label {
    font-size: var(--strike-text-xs);
  }
  
  .strike-card {
    padding: var(--strike-space-4);
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.strike-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: strikeFadeIn 0.8s ease-out forwards;
}

.strike-fade-in-delay-1 { animation-delay: 0.1s; }
.strike-fade-in-delay-2 { animation-delay: 0.2s; }
.strike-fade-in-delay-3 { animation-delay: 0.3s; }
.strike-fade-in-delay-4 { animation-delay: 0.4s; }

@keyframes strikeFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered animations */
.strike-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.strike-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Glowing text animation */
.strike-glow-text {
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 10px var(--strike-red-glow); }
  50% { text-shadow: 0 0 20px var(--strike-red-glow), 0 0 30px var(--strike-red-glow); }
}

/* ============================================================
   ADDITIONAL UTILITY CLASSES
   ============================================================ */

/* Prevent horizontal scroll on all pages */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Container improvements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Flex utilities */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

/* Spacing utilities */
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

/* Width utilities */
.w-full { width: 100%; }

/* ============================================================
   RESPONSIVE GRID SYSTEM
   ============================================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row > [class*="col-"] {
  padding: 0 15px;
  box-sizing: border-box;
}

.col-12 { width: 100%; }
.col-lg-4 { width: 100%; }
.col-lg-5 { width: 100%; }
.col-lg-6 { width: 100%; }
.col-lg-7 { width: 100%; }
.col-md-4 { width: 100%; }
.col-md-6 { width: 100%; }

@media (min-width: 768px) {
  .col-md-4 { width: 33.333333%; }
  .col-md-6 { width: 50%; }
}

@media (min-width: 992px) {
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.333333%; }
}

/* ============================================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================================ */
@media (max-width: 768px) {
  /* Prevent any horizontal overflow */
  .strike-container,
  .container {
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden;
  }
  
  /* Hero adjustments */
  .strike-hero {
    padding: var(--strike-space-24) 0 var(--strike-space-16);
  }
  
  .strike-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .strike-hero-desc {
    font-size: var(--strike-text-base);
    padding: 0 10px;
  }
  
  /* Stats responsive */
  .strike-hero-stats {
    flex-direction: column;
    align-items: center;
    gap: var(--strike-space-4);
    padding-top: var(--strike-space-6);
  }
  
  .strike-hero-stat-value {
    font-size: var(--strike-text-3xl);
  }
  
  /* Cards responsive */
  .strike-cards-grid {
    grid-template-columns: 1fr;
    gap: var(--strike-space-4);
  }
  
  .strike-card {
    padding: var(--strike-space-6);
  }
  
  .strike-card-featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  
  .strike-card-featured .strike-card-visual {
    display: none;
  }
  
  /* Buttons responsive */
  .strike-hero-cta {
    flex-direction: column;
    gap: var(--strike-space-3);
  }
  
  .strike-btn-lg {
    width: 100%;
    justify-content: center;
  }
  
  /* Section adjustments */
  .strike-section {
    padding: var(--strike-space-16) 0;
  }
  
  .strike-section-title {
    font-size: var(--strike-text-2xl);
  }
  
  /* CTA responsive */
  .strike-cta-box {
    padding: var(--strike-space-8);
  }
  
  .strike-cta-title {
    font-size: var(--strike-text-2xl);
  }
  
  .strike-cta-actions {
    flex-direction: column;
    gap: var(--strike-space-3);
  }
  
  .strike-cta-actions .strike-btn {
    width: 100%;
  }
  
  /* Footer responsive */
  .strike-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--strike-space-8);
    text-align: center;
  }
  
  .strike-footer-brand {
    text-align: center;
  }
  
  .strike-footer-brand p {
    max-width: 100%;
    margin: var(--strike-space-4) auto 0;
  }
  
  .strike-footer-bottom {
    flex-direction: column;
    gap: var(--strike-space-4);
    text-align: center;
  }
  
  .strike-footer-social {
    justify-content: center;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .strike-hero-title {
    font-size: 1.75rem;
  }
  
  .strike-section-title {
    font-size: 1.5rem;
  }
  
  .strike-btn {
    padding: var(--strike-space-3) var(--strike-space-6);
    font-size: var(--strike-text-xs);
  }
}

/* ============================================================
   PAGE-SPECIFIC DARK BACKGROUNDS
   ============================================================ */
/* Ensure all pages have consistent dark background */
.strike-theme main {
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Ensure proper spacing for fixed header */
.strike-theme main > section:first-child,
.strike-theme main > div:first-child {
  padding-top: 80px;
}
