/* Template 24 - Electric Lime / Energetic Tech */
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600&display=swap');

:root {
  --lime: #c8ff00;
  --lime-dark: #a3d100;
  --electric-blue: #00d4ff;
  --hot-pink: #ff0080;
  --bg-dark: #0d0d0d;
  --bg-darker: #050505;
  --bg-card: #141414;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --text-dim: #666666;
}

* {
  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.65;
  color: var(--text-white);
  background: var(--bg-dark);
  font-weight: 400;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 0% 0%, rgba(200, 255, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

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

/* Header - Tech Dashboard */
.site-header {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(200, 255, 0, 0.2);
}

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

.site-logo a {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo a::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--bg-card);
  padding: 0.35rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}

.site-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.site-nav a:hover {
  color: var(--bg-dark);
  background: var(--lime);
}

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

.section.head::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 255, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section.head h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  position: relative;
}

.section.head h1 span {
  color: var(--lime);
}

.section.head p {
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

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

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

.section header::before {
  content: '//';
  display: block;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.25rem;
  color: var(--lime);
  margin-bottom: 0.75rem;
  letter-spacing: 0.3em;
}

.section header h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

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

/* Footer - Control Panel */
.footer {
  background: var(--bg-darker);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 2px solid var(--lime);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(200, 255, 0, 0.02) 50px,
      rgba(200, 255, 0, 0.02) 51px
    );
  pointer-events: none;
}

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

.footer-about {
  flex: 0 0 45%;
}

.footer-about .site-logo a {
  font-size: 1.5rem;
}

.footer-tagline {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 1rem;
}

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

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--text-dim);
  border-radius: 4px;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 15px rgba(200, 255, 0, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.copyright, .copyright a {
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(200, 255, 0, 0.3); }
  50% { box-shadow: 0 0 20px rgba(200, 255, 0, 0.5); }
}

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

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

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: 'Chakra Petch', sans-serif;
  font-size: 1.4rem;
  color: var(--lime);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: left;
  text-transform: uppercase;
}
