/* Apex Agents - Cyber Industrial 2026 Aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --glow-primary: rgba(56, 214, 200, 0.6);
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #0A0F16;
  color: #94A3B8;
}

/* Glass & Bento Architecture */
.bento-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(56, 214, 200, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5), 0 0 40px -10px rgba(56, 214, 200, 0.15);
}

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

/* Glow Texts & Borders */
.text-glow {
  text-shadow: 0 0 20px rgba(56, 214, 200, 0.5);
}

.glow-icon-wrapper {
  background: linear-gradient(135deg, rgba(56, 214, 200, 0.2) 0%, rgba(56, 214, 200, 0.05) 100%);
  border: 1px solid rgba(56, 214, 200, 0.3);
  box-shadow: 0 0 20px rgba(56, 214, 200, 0.2) inset;
  color: #38d6c8;
}

/* Primary Button High-End 2026 */
.btn-primary-glow {
  background: linear-gradient(135deg, #38d6c8 0%, #2ab0a3 100%);
  color: #0A0F16;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 20px rgba(56, 214, 200, 0.4);
}

.btn-primary-glow:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(56, 214, 200, 0.6), 0 0 60px rgba(56, 214, 200, 0.2);
}

.btn-primary-glow::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: inherit;
  filter: blur(8px);
  opacity: 0;
  z-index: -1;
  border-radius: 9999px;
  transition: opacity 0.3s ease;
}

.btn-primary-glow:hover::after {
  opacity: 0.8;
}

/* Hero Background Integration */
.hero-image-overlay {
  background-image: linear-gradient(to bottom, rgba(10, 15, 22, 0.3) 0%, #0A0F16 100%), url('assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
}

/* Dark Navbar */
.glass-nav-dark {
  background-color: rgba(10, 15, 22, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Ambient Background Glows */
.ambient-glow-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 214, 200, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.ambient-glow-2 {
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(56, 214, 200, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
