/* Template 15 - Brutalist Tech */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600;700&family=Archivo+Black&display=swap");

:root {
  --neon-green: #39ff14;
  --electric-blue: #00d9ff;
  --hot-pink: #ff006e;
  --cyber-yellow: #ffff00;

  --bg-primary: #000000;
  --bg-secondary: #0d0d0d;
  --bg-tertiary: #1a1a1a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #808080;
}

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

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

body {
  font-family: "IBM Plex 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-image: linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Brutalist Tech */
.site-header {
  background: var(--bg-primary);
  border: 2px solid var(--neon-green);
  border-left: none;
  border-right: none;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

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

.site-logo a {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--neon-green);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid var(--neon-green);
  background: var(--bg-primary);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}

.site-logo a:hover {
  background: var(--neon-green);
  color: var(--bg-primary);
  text-shadow: none;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.8);
}

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

.site-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--electric-blue);
  border-right: none;
  background: var(--bg-primary);
  display: inline-block;
}

.site-nav li:last-child a {
  border-right: 2px solid var(--electric-blue);
}

.site-nav a:hover {
  background: var(--electric-blue);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
}

/* Hero Section */
.section.head {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: var(--bg-primary);
  border: 4px solid var(--hot-pink);
  margin: 2rem 0;
  box-shadow: inset 0 0 30px rgba(255, 0, 110, 0.2), 0 0 30px rgba(255, 0, 110, 0.3);
}

.section.head::before {
  content: "[ SYSTEM ONLINE ]";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  color: var(--neon-green);
  letter-spacing: 2px;
  opacity: 0.6;
}

.section.head h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 0, 110, 0.6);
  animation: glitchText 5s infinite;
}

@keyframes glitchText {
  0%,
  90%,
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 0, 110, 0.6);
  }
  91% {
    text-shadow: 2px 0 10px rgba(57, 255, 20, 0.8), -2px 0 20px rgba(0, 217, 255, 0.6);
  }
  92% {
    text-shadow: -2px 0 10px rgba(0, 217, 255, 0.8), 2px 0 20px rgba(255, 0, 110, 0.6);
  }
  93% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 0, 110, 0.6);
  }
}

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

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

.section header {
  text-align: left;
  margin-bottom: 4rem;
  padding-left: 2rem;
  border-left: 4px solid var(--cyber-yellow);
}

.section header h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  letter-spacing: 0.5px;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  border: 2px solid var(--electric-blue);
  border-left: none;
  border-right: none;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  box-shadow: 0 -10px 30px rgba(0, 217, 255, 0.2);
}

.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;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border: 1px solid var(--neon-green);
  display: inline-block;
  transition: all 0.2s ease;
  margin: 0.25rem;
}

.footer-links a:hover {
  background: var(--neon-green);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
}

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

.copyright a {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
}

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

.fade-in {
  opacity: 0;
  animation: slideInFromLeft 0.5s 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.5rem;
  color: var(--neon-green);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
