/*
Theme Name: WireWolf
Theme URI: https://wirewolf.ai
Author: WireWolf Security
Author URI: https://wirewolf.ai
Description: Next-Gen Autonomous Red Teaming - A cyberpunk themed website for WireWolf AI-powered penetration testing.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wirewolf
*/

/* =====================================================
   WIREWOLF - CYBERPUNK DESIGN SYSTEM
   ===================================================== */

:root {
  /* Void Colors */
  --bg-void: #000000;
  --bg-deep: #030608;
  --bg-dark: #0a0e14;
  --bg-card: #0d1219;
  --bg-elevated: #111820;

  /* Cyber Colors */
  --cyber-blue: #00f0ff;
  --cyber-blue-dim: #00a0aa;
  --cyber-purple: #bf00ff;
  --cyber-pink: #ff0080;
  --cyber-green: #00ff88;
  --cyber-orange: #ff6b00;
  --cyber-red: #ff0040;
  --cyber-yellow: #ffee00;

  /* Text Colors */
  --text-bright: #ffffff;
  --text-primary: #e0e6ed;
  --text-secondary: #7a8999;
  --text-muted: #4a5568;

  /* Glows */
  --glow-blue: 0 0 30px rgba(0, 240, 255, 0.5), 0 0 60px rgba(0, 240, 255, 0.3), 0 0 100px rgba(0, 240, 255, 0.1);
  --glow-purple: 0 0 30px rgba(191, 0, 255, 0.5), 0 0 60px rgba(191, 0, 255, 0.3);
  --glow-green: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 255, 136, 0.3);

  /* Fonts */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  background: var(--bg-void);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* =====================================================
   BACKGROUND EFFECTS
   ===================================================== */

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.scanline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
  z-index: 9999;
  opacity: 0.1;
  animation: scanline 8s linear infinite;
  pointer-events: none;
}

@keyframes scanline {
  0% { top: -4px; }
  100% { top: 100%; }
}

.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--cyber-blue);
  border-radius: 50%;
  animation: float 15s infinite;
  box-shadow: 0 0 10px var(--cyber-blue);
}

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--cyber-blue);
  top: -100px;
  right: -100px;
  opacity: 0.15;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--cyber-purple);
  bottom: -50px;
  left: -50px;
  opacity: 0.1;
  animation-delay: -5s;
}

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

/* =====================================================
   NAVIGATION
   ===================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(3, 6, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
  padding: 15px 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  position: relative;
}

.logo-icon svg,
.logo-icon img,
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--cyber-blue));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  text-transform: uppercase;
  position: relative;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyber-blue);
  transition: width 0.3s ease;
  box-shadow: var(--glow-blue);
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyber-blue);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 100%;
}

/* Start Hunting CTA Link - inside nav-links, styled as button on desktop */
.nav-cta-link {
  position: relative;
  padding: 14px 32px !important;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-void) !important;
  background: var(--cyber-blue);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
  margin-left: 20px;
}

.nav-cta-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.nav-cta-link:hover {
  box-shadow: var(--glow-blue);
  transform: translateY(-2px);
  color: var(--bg-void) !important;
}

.nav-cta-link:hover::before {
  left: 100%;
}

/* Mobile Nav Toggle - CSS Only (no JavaScript needed) */
.nav-toggle-checkbox {
  display: none !important;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  visibility: hidden;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--cyber-blue);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* =====================================================
   HERO SECTIONS
   ===================================================== */

.hero,
.page-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 60px;
  overflow: hidden;
}

.page-hero {
  min-height: 60vh;
  padding-top: 160px;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyber-blue);
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyber-blue);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--cyber-blue); }
  50% { opacity: 0.5; box-shadow: 0 0 0 10px transparent; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .gradient {
  background: linear-gradient(135deg, var(--cyber-blue) 0%, var(--cyber-purple) 50%, var(--cyber-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-title .glow-text {
  text-shadow: 0 0 40px rgba(0, 240, 255, 0.5), 0 0 80px rgba(0, 240, 255, 0.3);
}

.hero-description {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-void);
  background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-green));
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);
}

.btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyber-blue);
  background: transparent;
  border: 2px solid var(--cyber-blue);
  cursor: pointer;
  transition: all 0.4s ease;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.1), var(--glow-blue);
  transform: translateY(-4px);
}

/* =====================================================
   TERMINAL
   ===================================================== */

.terminal-container {
  position: relative;
  perspective: 1000px;
}

.terminal {
  background: rgba(13, 18, 25, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 240, 255, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    0 0 100px rgba(0, 240, 255, 0.1);
  transform: rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.terminal:hover {
  transform: rotateY(0) rotateX(0);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(0, 240, 255, 0.05);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.terminal-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.terminal-dot.red { background: var(--cyber-red); color: var(--cyber-red); }
.terminal-dot.yellow { background: var(--cyber-yellow); color: var(--cyber-yellow); }
.terminal-dot.green { background: var(--cyber-green); color: var(--cyber-green); }

.terminal-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.terminal-body {
  padding: 30px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 2;
  min-height: 400px;
}

.terminal-line {
  opacity: 0;
  animation: typeIn 0.5s ease forwards;
}

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

.prompt { color: var(--cyber-blue); }
.command { color: var(--text-bright); }
.success { color: var(--cyber-green); }
.warning { color: var(--cyber-orange); }
.error { color: var(--cyber-red); }
.info { color: var(--text-secondary); }
.highlight { color: var(--cyber-purple); }

.cursor-blink {
  display: inline-block;
  width: 10px;
  height: 20px;
  background: var(--cyber-blue);
  animation: blink 1s step-end infinite;
  vertical-align: middle;
  margin-left: 4px;
  box-shadow: 0 0 10px var(--cyber-blue);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* =====================================================
   STATS
   ===================================================== */

.stats-bar {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyber-blue), var(--cyber-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-transform: uppercase;
}

/* =====================================================
   SECTIONS
   ===================================================== */

.section {
  padding: 150px 60px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyber-blue);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.05);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =====================================================
   FEATURE CARDS
   ===================================================== */

.features-section {
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 50%, var(--bg-void) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  padding: 50px 40px;
  background: linear-gradient(135deg, rgba(13, 18, 25, 0.8) 0%, rgba(3, 6, 8, 0.9) 100%);
  border: 1px solid rgba(0, 240, 255, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-pink));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 240, 255, 0.1);
}

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

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

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.2);
  position: relative;
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--cyber-blue);
  filter: drop-shadow(0 0 10px var(--cyber-blue));
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 240, 255, 0.05);
  line-height: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =====================================================
   AGENT CARDS
   ===================================================== */

.agents-section {
  background: var(--bg-deep);
  overflow: hidden;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.agent-card {
  position: relative;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  transition: all 0.5s ease;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg, var(--agent-color), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.agent-card:hover::before {
  opacity: 1;
}

.agent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.agent-card.tracker { --agent-color: var(--cyber-blue); }
.agent-card.alpha { --agent-color: var(--cyber-green); }
.agent-card.hunter { --agent-color: var(--cyber-orange); }
.agent-card.guardian { --agent-color: var(--cyber-purple); }

.agent-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: all 0.5s ease;
  overflow: hidden;
}

.agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px var(--agent-color));
  transition: all 0.5s ease;
}

.agent-card:hover .agent-avatar {
  transform: scale(1.1);
}

.agent-card:hover .agent-avatar img {
  filter: drop-shadow(0 0 40px var(--agent-color));
}

.agent-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--agent-color);
  text-shadow: 0 0 20px var(--agent-color);
}

.agent-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.agent-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================================================
   PROCESS / TIMELINE
   ===================================================== */

.process-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-void) 100%);
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--cyber-blue), var(--cyber-purple), var(--cyber-pink), var(--cyber-green));
  box-shadow: 0 0 20px var(--cyber-blue);
}

.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
  text-align: right;
  padding-right: 80px;
  padding-left: 0;
}

.process-content {
  flex: 1;
  padding-left: 80px;
}

.process-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--bg-void);
  border: 2px solid var(--cyber-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cyber-blue);
  box-shadow: 0 0 30px var(--cyber-blue);
  z-index: 10;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1) 0%, rgba(191, 0, 255, 0.1) 100%);
  border-top: 1px solid rgba(0, 240, 255, 0.2);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--bg-deep);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo svg,
.footer-logo img,
.footer-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--cyber-blue));
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cyber-blue);
  letter-spacing: 0.15em;
}

.footer-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--cyber-blue);
  color: var(--cyber-blue);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-bright);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: var(--cyber-blue);
  padding-left: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 240, 255, 0.1);
  max-width: 1400px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--cyber-blue);
}

/* =====================================================
   VIDEO MODAL
   ===================================================== */

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 10001;
}

.video-modal-content video {
  width: 100%;
  border: 2px solid var(--cyber-blue);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.3);
  border-radius: 8px;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--cyber-blue);
  color: var(--cyber-blue);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.video-modal-close:hover {
  background: var(--cyber-blue);
  color: var(--bg-void);
  box-shadow: var(--glow-blue);
}

/* =====================================================
   WOLF THEMED ELEMENTS
   ===================================================== */

/* Wolf Claw Marks - Decorative scratches */
.claw-marks {
  position: absolute;
  width: 100px;
  height: 60px;
  opacity: 0.1;
  pointer-events: none;
}

.claw-marks::before,
.claw-marks::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 50px;
  background: linear-gradient(180deg, var(--cyber-blue), transparent);
  transform: rotate(-15deg);
  border-radius: 2px;
}

.claw-marks::before {
  left: 20px;
}

.claw-marks::after {
  left: 35px;
  height: 40px;
  top: 5px;
}

.claw-marks-right {
  right: 50px;
  top: 200px;
}

.claw-marks-left {
  left: 50px;
  bottom: 200px;
  transform: scaleX(-1);
}

/* Wolf Eye Glow Effect */
.wolf-eye {
  position: absolute;
  width: 20px;
  height: 10px;
  background: radial-gradient(ellipse, var(--cyber-blue) 0%, transparent 70%);
  border-radius: 50%;
  animation: wolfEyeGlow 3s ease-in-out infinite;
  pointer-events: none;
}

.wolf-eye::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--cyber-blue);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px var(--cyber-blue), 0 0 40px var(--cyber-blue);
}

@keyframes wolfEyeGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Howl Wave Effect - Sound wave decoration */
.howl-waves {
  position: absolute;
  width: 100px;
  height: 100px;
  pointer-events: none;
}

.howl-waves span {
  position: absolute;
  border: 2px solid var(--cyber-blue);
  border-radius: 50%;
  animation: howlExpand 2s ease-out infinite;
  opacity: 0;
}

.howl-waves span:nth-child(1) { width: 20px; height: 20px; animation-delay: 0s; }
.howl-waves span:nth-child(2) { width: 40px; height: 40px; animation-delay: 0.3s; }
.howl-waves span:nth-child(3) { width: 60px; height: 60px; animation-delay: 0.6s; }

@keyframes howlExpand {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}

/* Wolf Paw Print Trail */
.paw-trail {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
}

.paw-print {
  width: 30px;
  height: 35px;
  position: relative;
  margin: 20px;
}

.paw-print::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 14px;
  background: var(--cyber-blue);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.paw-print .toe {
  position: absolute;
  width: 8px;
  height: 10px;
  background: var(--cyber-blue);
  border-radius: 50%;
  top: 0;
}

.paw-print .toe:nth-child(1) { left: 3px; }
.paw-print .toe:nth-child(2) { left: 11px; top: -3px; }
.paw-print .toe:nth-child(3) { left: 19px; }

/* Wolf Pack Divider */
.wolf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0;
  opacity: 0.3;
}

.wolf-divider::before,
.wolf-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyber-blue), transparent);
}

.wolf-divider svg {
  width: 40px;
  height: 40px;
  fill: var(--cyber-blue);
}

/* Section Wolf Accents */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20 80 L30 50 L40 70 L50 30 L60 70 L70 50 L80 80' stroke='%2300f0ff' stroke-width='1' fill='none' opacity='0.05'/%3E%3C/svg%3E") no-repeat;
  pointer-events: none;
}

/* Feature Cards - Wolf claw corner */
.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 240, 255, 0.03) 50%);
  pointer-events: none;
}

/* Agent Cards - Glowing eyes effect on hover */
.agent-card::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: radial-gradient(ellipse at center, var(--agent-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  filter: blur(10px);
}

.agent-card:hover::after {
  opacity: 0.5;
}

/* Hunting Mode Badge */
.hunting-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 0, 64, 0.1);
  border: 1px solid rgba(255, 0, 64, 0.3);
  color: var(--cyber-red);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: huntingPulse 2s ease infinite;
}

.hunting-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyber-red);
  border-radius: 50%;
  animation: blink 1s step-end infinite;
}

@keyframes huntingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 64, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(255, 0, 64, 0.2); }
}

/* Territory Marker - Corner accents */
.territory-marker {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid var(--cyber-blue);
  opacity: 0.2;
}

.territory-marker.top-left {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.territory-marker.top-right {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.territory-marker.bottom-left {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.territory-marker.bottom-right {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* Wolf Moon Background */
.wolf-moon {
  position: absolute;
  top: 100px;
  right: 100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
  box-shadow: 0 0 100px 50px rgba(0, 240, 255, 0.05);
  pointer-events: none;
}

/* Pack Status Indicator */
.pack-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 240, 255, 0.2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.pack-status .status-dot {
  width: 10px;
  height: 10px;
  background: var(--cyber-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyber-green);
  animation: pulse 2s ease infinite;
}

.pack-status .status-text {
  color: var(--text-secondary);
}

.pack-status .pack-count {
  color: var(--cyber-blue);
  font-weight: 600;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .stats-grid {
    justify-content: center;
    gap: 60px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    display: none;
    z-index: 999;
  }

  .nav-links.active,
  .nav-toggle-checkbox:checked ~ .nav-links {
    display: flex !important;
  }

  .nav-links .nav-link {
    font-size: 1.2rem;
  }

  /* Start Hunting CTA link - mobile optimized */
  .nav-cta-link {
    padding: 16px 32px !important;
    /* Remove clip-path on mobile as it can cause touch issues */
    clip-path: none;
    border-radius: 4px;
    margin-left: 0;
    margin-top: 20px;
    /* Ensure touch target is at least 44px for mobile accessibility */
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav-toggle {
    display: flex !important;
    z-index: 1001;
    /* Mobile touch optimization */
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1),
  .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2),
  .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3),
  .nav-toggle-checkbox:checked + .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 80px 20px;
  }

  .hero,
  .page-hero {
    padding: 100px 20px;
  }

  .features-grid,
  .agents-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: column !important;
  }

  .process-content {
    padding: 0 0 0 80px !important;
    text-align: left !important;
  }

  .process-number {
    left: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
  }

  .pricing-card.featured {
    transform: none !important;
  }

  .stats-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 0.85rem;
  }
}

/* WordPress Specific Overrides */
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.entry-content {
  max-width: 100%;
}

/* Hide WordPress admin bar styling conflicts */
body.admin-bar .nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}
