/* Template 44 - Electric Teal Tech */
@import url("https://fonts.googleapis.com/css2?family=Audiowide&family=Share+Tech+Mono&display=swap");

:root {
  --gradient-1: linear-gradient(135deg, #00f5ff 0%, #00c6ff 100%);
  --gradient-2: linear-gradient(135deg, #00ff88 0%, #00d4aa 100%);
  --gradient-3: linear-gradient(135deg, #0066ff 0%, #00ccff 100%);
  --gradient-4: linear-gradient(135deg, #00ffaa 0%, #00eeff 100%);
  --gradient-5: linear-gradient(135deg, #00ddff 0%, #00ffcc 100%);

  --bg-primary: #000d14;
  --bg-secondary: #001a29;
  --glass-bg: rgba(0, 245, 255, 0.05);
  --glass-border: rgba(0, 245, 255, 0.2);

  --text-primary: #00f5ff;
  --text-secondary: #00c6ff;
  --text-muted: #0088aa;
}

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

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

body {
  font-family: "Share Tech Mono", monospace;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 20px,
      rgba(0, 245, 255, 0.03) 20px,
      rgba(0, 245, 255, 0.03) 21px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 20px,
      rgba(0, 245, 255, 0.03) 20px,
      rgba(0, 245, 255, 0.03) 21px
    );
  animation: scanlines 8s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(20px);
  }
}

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

/* Header - Tech Grid Style */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--glass-border);
  border-top: 2px solid var(--glass-border);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

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

.site-logo a {
  font-family: "Audiowide", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.8), 0 0 20px rgba(0, 245, 255, 0.5);
  transition: all 0.3s ease;
}

.site-logo a:hover {
  text-shadow: 0 0 20px rgba(0, 245, 255, 1), 0 0 40px rgba(0, 245, 255, 0.7);
  letter-spacing: 5px;
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--glass-border);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  position: relative;
}

.site-nav a::before {
  content: ">";
  position: absolute;
  left: 8px;
  opacity: 0;
  transition: all 0.3s ease;
}

.site-nav a:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.site-nav a:hover::before {
  opacity: 1;
  left: 12px;
}

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

.section.head h1 {
  font-family: "Audiowide", sans-serif;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(0, 245, 255, 1), 0 0 40px rgba(0, 198, 255, 0.7);
  animation: digitalPulse 2s ease-in-out infinite alternate;
}

@keyframes digitalPulse {
  0% {
    text-shadow: 0 0 20px rgba(0, 245, 255, 1), 0 0 40px rgba(0, 198, 255, 0.7);
  }
  100% {
    text-shadow: 0 0 30px rgba(0, 245, 255, 1), 0 0 60px rgba(0, 198, 255, 0.9), 0 0 80px rgba(0, 255, 136, 0.5);
  }
}

.section.head p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 1000px;
  margin: 0 auto;
  letter-spacing: 1px;
}

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

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

.section header::before {
  content: "[ SECTION ]";
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

.section header h2 {
  font-family: "Audiowide", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.6);
}

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

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--glass-border);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  box-shadow: 0 -10px 30px rgba(0, 245, 255, 0.1);
}

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

.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-secondary);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.8);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

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

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s 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.7rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Audiowide", sans-serif;
  letter-spacing: 2px;
}
