/* Template 45 - Electric Blue Tech */
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --blue-dark: #0a1929;
  --blue-medium: #1e3a5f;
  --blue-electric: #00d4ff;
  --blue-neon: #00ffff;
  --purple-neon: #b24bf3;
  --text-primary: #ffffff;
  --text-secondary: #b0c9e8;
  --text-muted: #6d8aae;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--blue-dark);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(178, 75, 243, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Tech Style */
.site-header {
  background: rgba(10, 25, 41, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--blue-electric);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

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

.site-logo a {
  font-family: "Orbitron", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--blue-electric);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

.site-logo a:hover {
  color: var(--blue-neon);
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
}

.site-nav a:hover {
  color: var(--blue-electric);
  border-color: var(--blue-electric);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* Hero Section */
.section.head {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

.section.head h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: 3px;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  animation: electricPulse 2s ease-in-out infinite;
}

@keyframes electricPulse {
  0%,
  100% {
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
  }
  50% {
    text-shadow: 0 0 60px rgba(0, 255, 255, 0.9), 0 0 80px rgba(178, 75, 243, 0.5);
  }
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Section Styling */
.section {
  padding: 6rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
}

.section header h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--blue-electric);
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.section header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: rgba(10, 25, 41, 0.95);
  border-top: 1px solid var(--blue-electric);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
  box-shadow: 0 -10px 40px rgba(0, 212, 255, 0.1);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--blue-electric);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations */
@keyframes techSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: techSlide 0.7s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.6rem;
  color: var(--blue-electric);
  margin-top: 20px;
  margin-bottom: 12px;
  text-align: left;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}
