/* Template 12 - Neon Cyberpunk / Dark Tech */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --neon-cyan: #00fff5;
    --neon-magenta: #ff00ff;
    --neon-yellow: #f0ff00;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: #12121a;
    --text-primary: #e0e0ff;
    --text-secondary: #8888aa;
    --border-glow: rgba(0, 255, 245, 0.3);
}

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

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

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

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(0, 255, 245, 0.03) 98%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 245, 0.03) 98%);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

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

/* Header - Cyberpunk Style */
.site-header {
    background: linear-gradient(180deg, var(--bg-darker) 0%, transparent 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 0 30px rgba(0, 255, 245, 0.1);
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

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

.site-logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    transition: all 0.3s ease;
}

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

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

.site-nav li {
    border-left: 1px solid var(--border-glow);
}

.site-nav li:last-child {
    border-right: 1px solid var(--border-glow);
}

.site-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a:hover {
    color: var(--neon-cyan);
    background: rgba(0, 255, 245, 0.1);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.site-nav a::before {
    content: '>';
    position: absolute;
    left: 0.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--neon-cyan);
}

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

/* Hero Section */
.section.head {
    padding: 8rem 0 6rem;
    text-align: left;
    position: relative;
    border-left: 3px solid var(--neon-cyan);
    margin-left: 2rem;
    padding-left: 3rem;
}

.section.head::before {
    content: '01';
    position: absolute;
    top: 2rem;
    left: -2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 255, 245, 0.1);
    line-height: 1;
}

.section.head h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
}

.section.head h1::first-letter {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.section.head p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    border-left: 2px solid var(--neon-magenta);
    padding-left: 1.5rem;
}

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

.section header {
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 2px solid var(--neon-magenta);
}

.section header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section header h2::before {
    content: '// ';
    color: var(--neon-cyan);
}

.section header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Footer - Terminal Style */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-glow);
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: 'SYSTEM.FOOTER';
    position: absolute;
    top: -12px;
    left: 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    background: var(--bg-darker);
    padding: 0 1rem;
    letter-spacing: 2px;
}

.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);
    font-size: 0.95rem;
    line-height: 1.8;
    font-family: 'Rajdhani', monospace;
}

.footer-tagline::before {
    content: '> ';
    color: var(--neon-cyan);
}

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

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

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

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

.copyright a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: 'Rajdhani', monospace;
}

/* Animations */
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.fade-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.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-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body:not(.faq) h3::before,
:not(section.faq) h3::before {
    content: '# ';
    color: var(--neon-magenta);
}
