/* ==============================================================================
   AXI-SERIAL: AXI-WEB-CSS-BASE-2026-001
   PROPRIETARY ASSET: AxiNexus MindCore | Director: Mario Valfredi
   ============================================================================== */

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

html {
  scroll-behavior: smooth;
}

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

/* Atmospheric Multi-Color Neon Mesh Glow */
.bg-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: 
    radial-gradient(circle at 10% 10%, rgba(168, 85, 247, 0.22) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(217, 70, 239, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 60%, rgba(0, 240, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(107, 33, 168, 0.25) 0%, transparent 50%),
    linear-gradient(to bottom, transparent, rgba(6, 6, 12, 0.8));
  pointer-events: none;
  z-index: 0;
}

/* Cyber Grid Background Lines */
.bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: 100px 0;
}

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

.section-tag {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--cyan-electric);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: inline-block;
  background: rgba(0, 240, 255, 0.1);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 40%, var(--neon-violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mono {
  font-family: var(--font-mono);
}
