/* Template 98 - Electric Storm / High Energy */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Electrolize&family=Exo+2:wght@300;400;500;600&display=swap');

:root {
  --storm-dark: #0a0a12;
  --storm-deep: #12121f;
  --storm-mid: #1e1e32;
  --cloud-gray: #3a3a52;
  --lightning-white: #f0f0ff;
  --lightning-blue: #00d4ff;
  --lightning-purple: #9d4edd;
  --lightning-yellow: #fff01f;
  --electric-pink: #ff2d95;
  --text-primary: #e8e8f0;
  --text-muted: #8888a0;
}

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

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

body {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--storm-dark);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(157, 78, 221, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header */
.site-header {
  background: linear-gradient(180deg, var(--storm-deep) 0%, transparent 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--lightning-blue);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.site-header::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--lightning-blue) 0%, 
    var(--lightning-purple) 50%, 
    var(--electric-pink) 100%);
  animation: electricPulse 2s ease-in-out infinite;
}

@keyframes electricPulse {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.7; filter: brightness(1.5); }
}

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

.site-logo a {
  font-family: 'Teko', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--lightning-white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  text-shadow: 
    0 0 10px var(--lightning-blue),
    0 0 20px var(--lightning-blue),
    0 0 40px var(--lightning-blue);
  animation: logoFlicker 4s ease-in-out infinite;
}

@keyframes logoFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.8; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

.site-logo a:hover {
  color: var(--lightning-yellow);
  text-shadow: 
    0 0 10px var(--lightning-yellow),
    0 0 20px var(--lightning-yellow),
    0 0 40px var(--lightning-yellow);
}

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

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Electrolize', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  padding: 0.75rem 1.25rem;
  position: relative;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  background: transparent;
}

.site-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lightning-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  z-index: -1;
}

.site-nav a:hover {
  color: var(--storm-dark);
}

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

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

.section.head::before {
  content: 'HIGH VOLTAGE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Teko', sans-serif;
  font-size: 15rem;
  font-weight: 700;
  color: rgba(0, 212, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.section.head h1 {
  font-family: 'Teko', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--lightning-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  text-shadow: 
    0 0 20px rgba(0, 212, 255, 0.5),
    0 0 40px rgba(0, 212, 255, 0.3);
}

.section.head p {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 1.5rem 2rem;
  background: rgba(30, 30, 50, 0.5);
  border-left: 3px solid var(--lightning-blue);
  border-right: 3px solid var(--lightning-purple);
}

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

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

.section header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--lightning-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

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

/* Footer */
.footer {
  background: linear-gradient(0deg, var(--storm-deep) 0%, var(--storm-dark) 100%);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--lightning-purple);
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--electric-pink) 0%, 
    var(--lightning-purple) 50%, 
    var(--lightning-blue) 100%);
  animation: electricPulse 2s ease-in-out infinite reverse;
}

.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-muted);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Electrolize', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 1px solid var(--cloud-gray);
}

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

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

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

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

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-family: 'Teko', sans-serif;
  font-size: 1.75rem;
  color: var(--lightning-white);
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
}
