/* Template 43 - Holographic Future / Iridescent Tech */
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600&display=swap');

:root {
  --holo-bg: #0a0a12;
  --holo-surface: #12121f;
  --holo-card: #1a1a2e;
  --holo-border: rgba(255, 255, 255, 0.08);
  
  --holo-cyan: #00f5ff;
  --holo-magenta: #ff00ff;
  --holo-yellow: #ffff00;
  --holo-green: #00ff88;
  --holo-pink: #ff6ec7;
  --holo-blue: #00aaff;
  
  --text-white: #ffffff;
  --text-gray: #a8a8c0;
  --text-dim: #6a6a8a;
}

* {
  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.7;
  color: var(--text-white);
  background: var(--holo-bg);
  font-weight: 400;
  font-size: 1rem;
  overflow-x: hidden;
}

/* Holographic shimmer background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(125deg, 
      rgba(0, 245, 255, 0.03) 0%, 
      transparent 30%,
      rgba(255, 0, 255, 0.03) 50%,
      transparent 70%,
      rgba(0, 255, 136, 0.03) 100%);
  animation: holoShimmer 15s ease infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes holoShimmer {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(-5%); }
}

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

/* Header - Holographic Panel */
.site-header {
  background: linear-gradient(180deg, var(--holo-surface) 0%, rgba(18, 18, 31, 0.95) 100%);
  border-bottom: 1px solid var(--holo-border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--holo-cyan), 
    var(--holo-magenta), 
    var(--holo-yellow), 
    var(--holo-green), 
    var(--holo-cyan));
  background-size: 200% 100%;
  animation: rainbowSlide 4s linear infinite;
}

@keyframes rainbowSlide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

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

.site-logo a {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, var(--holo-cyan), var(--holo-magenta), var(--holo-yellow));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holoText 5s ease infinite;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes holoText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.site-nav a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg, var(--holo-cyan), var(--holo-magenta), var(--holo-yellow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-nav a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}

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

/* Hero Section */
.section.head {
  padding: 7rem 0;
  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(0, 245, 255, 0.1) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.section.head h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--holo-cyan), var(--text-white), var(--holo-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 750px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: var(--holo-card);
  border: 1px solid var(--holo-border);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}

.section header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--holo-cyan), var(--holo-magenta), transparent);
}

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

body:not(.faq) h3,
:not(section.faq) h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.5rem;
  color: var(--holo-cyan);
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer - Tech Panel */
.footer {
  background: var(--holo-surface);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid var(--holo-border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--holo-cyan) 20%, 
    var(--holo-magenta) 50%, 
    var(--holo-yellow) 80%, 
    transparent 100%);
}

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

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

.footer-tagline {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 1px solid var(--holo-border);
  border-radius: 4px;
}

.footer-links a:hover {
  color: var(--text-white);
  border-color: var(--holo-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

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

.copyright,
.copyright a {
  color: var(--text-dim);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

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

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s 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;
}
