@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

:root {
  --neon-cyan: #00fff5;
  --neon-blue: #3b82f6;
  --neon-silver: #e2e8f0;
  --dark-bg: #060609;
  --dark-card: rgba(15, 15, 25, 0.9);
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --gradient-cyber: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-silver));

  /* SVG Textures */
  --noise-texture: url('#noiseFilter');
  --circuit-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 L90 10 L90 90 L10 90 Z' fill='none' stroke='rgba(0, 255, 245, 0.05)' stroke-width='0.5'/%3E%3Cpath d='M0 50 L10 50 M90 50 L100 50 M50 0 L50 10 M50 90 L50 100' stroke='rgba(0, 255, 245, 0.1)' stroke-width='1'/%3E%3Ccircle cx='10' cy='10' r='1' fill='rgba(0, 255, 245, 0.2)'/%3E%3Ccircle cx='90' cy='10' r='1' fill='rgba(0, 255, 245, 0.2)'/%3E%3Ccircle cx='90' cy='90' r='1' fill='rgba(0, 255, 245, 0.2)'/%3E%3Ccircle cx='10' cy='90' r='1' fill='rgba(0, 255, 245, 0.2)'/%3E%3C/svg%3E");
}

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

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* Matrix Background */
.matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(0, 255, 245, 0.03) 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 255, 245, 0.03) 2px, transparent 2px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
  animation: gridMove 30s linear infinite;
  transform: perspective(1000px) rotateX(45deg);
  transform-origin: top;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 50px;
  }
}

/* Glowing Orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--neon-blue);
  top: -200px;
  left: -200px;
  animation: float 20s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--neon-cyan);
  bottom: -150px;
  right: -150px;
  animation: float 25s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--neon-blue);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 30s ease-in-out infinite;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  75% {
    transform: translate(20px, 30px) scale(1.05);
  }
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 245, 0.1);
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
}

.logo i {
  font-size: 2rem;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 10px var(--neon-cyan));
  }
  50% {
    filter: drop-shadow(0 0 20px var(--neon-blue));
  }
}

.logo-text {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.logo-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: glitch 3s infinite;
}

@keyframes glitch {
  0%,
  90%,
  100% {
    opacity: 0;
    transform: translate(0);
  }
  91% {
    opacity: 0.8;
    transform: translate(-2px, 2px);
  }
  92% {
    opacity: 0.8;
    transform: translate(2px, -2px);
  }
  93% {
    opacity: 0;
    transform: translate(0);
  }
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
}

.nav-link-highlight {
  color: var(--neon-pink);
  font-weight: 700;
}

.nav-link-highlight:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 20px var(--neon-pink);
}

.nav-link-highlight i {
  margin-right: 5px;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 30px;
  height: 3px;
  background: var(--neon-cyan);
  transition: all 0.3s ease;
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Professional SVG Decorations */
.feature-card::before,
.hero-terminal::before,
.code-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: var(--noise-texture);
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}

.feature-card {
  background-image: var(--circuit-bg);
  background-position: center;
  border: 1px solid rgba(0, 255, 245, 0.15);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 0 20px rgba(0, 255, 245, 0.05);
  backdrop-filter: blur(10px) var(--noise-texture);
}

.feature-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 255, 245, 0.2);
  transform: translateY(-10px) scale(1.02);
}

/* Scanner Effect (SVG Gradient Animation) */
.feature-card::after,
.hero-terminal::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 245, 0.03) 45%,
    rgba(0, 255, 245, 0.15) 50%,
    rgba(0, 255, 245, 0.03) 55%,
    transparent 100%
  );
  transition: 0s;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}

.feature-card:hover::after,
.hero-terminal:hover::after {
  opacity: 1;
  top: 100%;
  transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Animated SVG Pulse Border */
.elite-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--dark-bg), var(--dark-bg)) padding-box,
    var(--gradient-cyber) border-box;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.5;
  transition: 0.3s;
}

.btn:hover::after {
  opacity: 1;
  animation: borderRotate 2s linear infinite;
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  position: relative;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.hero-content {
  animation: fadeInUp 1s ease;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 255, 245, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 50px;
  margin-bottom: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 20px rgba(0, 255, 245, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 245, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 245, 0.6);
  }
}

.hero-badge i {
  color: var(--neon-cyan);
  animation: spin 3s linear infinite;
}

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

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.glitch {
  position: relative;
  color: var(--text-primary);
  display: inline-block;
  white-space: nowrap;
}

.glitch:hover {
  filter: url('#cyber-glitch');
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-blue);
  clip: rect(24px, 550px, 90px, 0);
  animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip: rect(85px, 550px, 140px, 0);
  animation: glitch-anim 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% {
    clip: rect(61px, 9999px, 83px, 0);
  }
  20% {
    clip: rect(54px, 9999px, 16px, 0);
  }
  40% {
    clip: rect(23px, 9999px, 98px, 0);
  }
  60% {
    clip: rect(76px, 9999px, 5px, 0);
  }
  80% {
    clip: rect(35px, 9999px, 67px, 0);
  }
  100% {
    clip: rect(92px, 9999px, 44px, 0);
  }
}

.gradient-text {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  background-size: 200% 200%;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
}

.system-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 40px auto;
  padding: 12px 20px;
  background: rgba(59, 130, 246, 0.05);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 4px;
  max-width: 600px;
  line-height: 1.5;
  backdrop-filter: blur(5px);
}

.system-note i {
  color: var(--neon-cyan);
}

.system-note strong {
  color: var(--neon-cyan);
  font-weight: 700;
}

/* Terminal Hero */
.hero-terminal {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 255, 245, 0.2);
  border-radius: 8px;
  max-width: 440px;
  margin-bottom: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  animation: slideInLeft 1s ease;
  position: relative;
}

.hero-terminal::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 255, 245, 0.5);
  box-shadow: 0 0 15px var(--neon-cyan);
  animation: scanning 3s linear infinite;
  pointer-events: none;
}

@keyframes scanning {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

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

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

.terminal-header .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.terminal-header .dot:nth-child(1) {
  background: #3b82f6;
}
.terminal-header .dot:nth-child(2) {
  background: #60a5fa;
}
.terminal-header .dot:nth-child(3) {
  background: #00fff5;
}

.terminal-title {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-left: 10px;
  letter-spacing: 1px;
}

.terminal-body {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fira Code', monospace;
}

.terminal-body .prompt {
  color: var(--neon-cyan);
  font-weight: 700;
}

.terminal-body .command {
  color: #e2e8f0;
  font-size: 1rem;
}

.terminal-copy {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.terminal-copy:hover {
  color: var(--neon-cyan);
  transform: scale(1.1);
}

/* Premium Buttons Upgrade */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: transparent;
  cursor: pointer;
  z-index: 1;
  clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0% 30%);
}

.btn-primary {
  color: #fff;
  background: var(--neon-cyan);
  border: none;
  box-shadow: 0 0 20px rgba(0, 255, 245, 0.3);
}

.btn-primary::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: 0.5s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 40px var(--neon-cyan),
    0 0 80px rgba(0, 255, 245, 0.2);
  letter-spacing: 4px;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
}

.btn-primary:hover::after {
  top: 100%;
  left: 100%;
}

.btn-secondary {
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 255, 245, 0.5);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--neon-cyan);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

.btn-secondary:hover {
  color: #fff;
  border-color: var(--neon-cyan);
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 245, 0.4);
}

.btn-secondary:hover::after {
  opacity: 1;
}

.hero-stats {
  display: flex;
  gap: 60px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0, 255, 245, 0.4);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Hero Visual - Orchestration Cortex */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.orchestration-cortex {
  position: relative;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 1/1;
  transform-style: preserve-3d;
  margin: 0 auto;
}

.cortex-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow:
    0 0 30px rgba(0, 255, 245, 0.2),
    inset 0 0 20px var(--neon-cyan);
  transform-origin: center center;
  animation: corePulse 4s ease-in-out infinite;
}

.cortex-core i {
  font-size: 3rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
  animation: coreGlitch 3s infinite;
}

@keyframes corePulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 30px var(--neon-cyan);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 60px var(--neon-cyan);
  }
}

@keyframes coreGlitch {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  92% {
    opacity: 1;
    transform: scale(1);
  }
  93% {
    opacity: 0.5;
    transform: scale(1.1) skew(5deg);
  }
  94% {
    opacity: 1;
    transform: scale(1);
  }
}

.core-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 255, 245, 0.3);
  border-radius: 50%;
}

.ring-1 {
  width: 160px;
  height: 160px;
  border-style: dashed;
  animation: rotate 10s linear infinite;
}
.ring-2 {
  width: 200px;
  height: 200px;
  border-width: 2px;
  border-color: rgba(59, 130, 246, 0.2);
  animation: rotate 15s linear infinite reverse;
}
.ring-3 {
  width: 240px;
  height: 240px;
  border-style: double;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Agent Fleet */
.agent-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  z-index: 5;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.4s ease;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.4;
}

.agent-node.active {
  background: var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-blue);
  scale: 1.5;
}

.data-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 6;
  box-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes linkPulse {
  0% {
    stroke-width: 1;
    opacity: 0.3;
  }
  50% {
    stroke-width: 3;
    opacity: 1;
    filter: drop-shadow(0 0 10px var(--neon-cyan));
  }
  100% {
    stroke-width: 2;
    opacity: 0.8;
  }
}

.link-line {
  stroke: var(--neon-cyan);
  stroke-width: 0.5;
  opacity: 0.1;
  transition:
    stroke-width 0.3s ease,
    opacity 0.5s ease;
}

.link-line.active {
  stroke-width: 1.5;
  opacity: 0.6;
  filter: drop-shadow(0 0 3px var(--neon-cyan));
}

.link-line.active {
  stroke: var(--neon-blue);
  stroke-width: 2;
  stroke-dashoffset: 0;
  opacity: 1;
  filter: drop-shadow(0 0 8px var(--neon-blue)) drop-shadow(0 0 15px var(--neon-cyan));
  animation: linkPulse 0.5s ease-in-out;
}

@keyframes linkPulse {
  0% {
    stroke-width: 1;
    opacity: 0.5;
  }
  50% {
    stroke-width: 4;
    opacity: 1;
  }
  100% {
    stroke-width: 2;
    opacity: 1;
  }
}

/* Hologram Data */
.hologram-data {
  position: absolute;
  bottom: 10%;
  right: -5%;
  background: rgba(0, 255, 245, 0.05);
  border-left: 2px solid var(--neon-cyan);
  padding: 10px 20px;
  font-family: 'Fira Code', monospace;
  font-size: 0.8rem;
  color: var(--neon-cyan);
  pointer-events: none;
  animation: hologramFade 4s infinite;
  z-index: 20;
}

@media (max-width: 768px) {
  .hologram-data {
    right: 0;
    bottom: 0;
    font-size: 0.7rem;
    padding: 5px 10px;
  }
}

.data-line {
  margin-bottom: 5px;
  white-space: nowrap;
}

@keyframes hologramFade {
  0%,
  100% {
    opacity: 0.8;
    transform: skewX(-5deg);
  }
  50% {
    opacity: 0.4;
    transform: skewX(-2deg);
  }
}

/* Domination Stats */
.domination-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.domination-stat .stat-value {
  color: var(--neon-blue);
  text-shadow: 0 0 15px var(--neon-blue);
}

.ring-1 {
  width: 250px;
  height: 250px;
  border-color: var(--neon-cyan);
  animation: rotateRing 20s linear infinite;
}

.ring-2 {
  width: 350px;
  height: 350px;
  border-color: var(--neon-blue);
  animation: rotateRing 30s linear infinite reverse;
}

.ring-3 {
  width: 450px;
  height: 450px;
  border-color: var(--neon-silver);
  animation: rotateRing 40s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.brain-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.brain-particles::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 10px;
  height: 10px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--neon-cyan);
  animation: orbit 5s linear infinite;
}

.brain-particles::after {
  content: '';
  position: absolute;
  top: 60%;
  right: 20%;
  width: 15px;
  height: 15px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--neon-pink);
  animation: orbit 7s linear infinite reverse;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

/* Section Styles */
section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-title i {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px var(--neon-cyan);
}

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

/* Features Section */
.features {
  background: rgba(20, 20, 30, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid rgba(0, 255, 245, 0.1);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-cyber);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 60px rgba(0, 255, 245, 0.3);
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--neon-cyan);
  z-index: 2;
  position: relative;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--gradient-cyber);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(20px);
}

.feature-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.feature-border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--gradient-cyber);
  transition: width 0.3s ease;
}

.feature-card:hover .feature-border {
  width: 100%;
}

/* Installation Section */
.install-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  justify-content: center;
}

.tab-btn {
  padding: 15px 30px;
  background: var(--dark-card);
  border: 2px solid rgba(0, 255, 245, 0.2);
  border-radius: 10px;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tab-btn:hover,
.tab-btn.active {
  background: rgba(0, 255, 245, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 255, 245, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.code-container {
  background: var(--dark-card);
  border: 1px solid rgba(0, 255, 245, 0.2);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.code-container.large {
  max-width: 900px;
  margin: 0 auto;
}

.code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 255, 245, 0.1);
}

.code-title {
  font-weight: 600;
  color: var(--neon-cyan);
}

.code-actions {
  display: flex;
  gap: 10px;
}

.copy-btn {
  width: 35px;
  height: 35px;
  background: rgba(0, 255, 245, 0.1);
  border: 1px solid rgba(0, 255, 245, 0.3);
  border-radius: 8px;
  color: var(--neon-cyan);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(0, 255, 245, 0.2);
  box-shadow: 0 0 15px rgba(0, 255, 245, 0.4);
}

.code-container pre {
  padding: 30px;
  overflow-x: auto;
}

.code-container code {
  font-family: 'Fira Code', monospace;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #e2e8f0;
}

/* Library Section */
.library {
  background: rgba(20, 20, 30, 0.5);
}

/* Structure Section */
.structure-tree {
  max-width: 700px;
  margin: 0 auto;
}

.tree-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: var(--dark-card);
  border: 1px solid rgba(0, 255, 245, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.tree-item:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px rgba(0, 255, 245, 0.2);
  transform: translateX(10px);
}

.tree-item i {
  font-size: 1.5rem;
  color: var(--neon-cyan);
  width: 30px;
}

.tree-item span:first-of-type {
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.tree-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: rgba(10, 10, 15, 0.95);
  border-top: 1px solid rgba(0, 255, 245, 0.1);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo i {
  color: var(--neon-cyan);
}

.footer-logo span {
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 10px;
}

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

.footer-social a {
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 245, 0.1);
  border: 1px solid rgba(0, 255, 245, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--neon-cyan);
  color: var(--dark-bg);
  box-shadow: 0 0 30px rgba(0, 255, 245, 0.5);
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 255, 245, 0.1);
}

.footer-bottom p {
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .brain-container {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

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

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

  .install-tabs {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

.highlight-model {
  color: var(--neon-cyan);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 245, 0.3);
}

.rebel-model {
  color: var(--neon-blue);
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
  animation: rebelFlicker 2s infinite;
}

@keyframes rebelFlicker {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 25px var(--neon-blue);
  }
  52% {
    opacity: 0.5;
  }
  54% {
    opacity: 1;
  }
}
