/* ========================================
   NEXUS-Ω ULTRA GALACTIC CSS
   Bio-Hybrid AI Presentation
   ======================================== */

/* CSS Variables - LucyVerseX Color Palette - Vert/Violet/Rouge */
:root {
    --primary-cyan: #00ff66;
    --primary-magenta: #ff0040;
    --primary-purple: #9b30ff;
    --secondary-blue: #7b68ee;
    --secondary-pink: #ff1744;
    --accent-green: #39ff14;
    --accent-gold: #ff6600;
    --dark-bg: #050008;
    --darker-bg: #020005;
    --card-bg: rgba(20, 0, 30, 0.6);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --glow-cyan: 0 0 20px #00ff66, 0 0 40px #00ff66, 0 0 60px #00ff66;
    --glow-magenta: 0 0 20px #ff0040, 0 0 40px #ff0040, 0 0 60px #ff0040;
    --glow-purple: 0 0 20px #9b30ff, 0 0 40px #9b30ff, 0 0 60px #9b30ff;
    --lucy-green: #00ff66;
    --lucy-violet: #9b30ff;
    --lucy-red: #ff0040;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-magenta));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-magenta), var(--primary-cyan));
}

/* Selection */
::selection {
    background: var(--primary-magenta);
    color: var(--text-primary);
}

/* ========================================
   CURSOR EFFECTS
   ======================================== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    box-shadow: var(--glow-cyan);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-magenta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-cyan);
    background: rgba(0, 245, 255, 0.1);
}

/* ========================================
   BACKGROUND EFFECTS
   ======================================== */
#matrix-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.15;
}

#neural-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* DNA Helix */
.dna-container {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    height: 80vh;
    width: 100px;
    z-index: -1;
    opacity: 0.3;
}

.dna-helix {
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 0%, var(--primary-cyan) 2px, transparent 2px),
        radial-gradient(circle at 80% 5%, var(--primary-magenta) 2px, transparent 2px),
        radial-gradient(circle at 20% 10%, var(--primary-cyan) 2px, transparent 2px),
        radial-gradient(circle at 80% 15%, var(--primary-magenta) 2px, transparent 2px),
        radial-gradient(circle at 20% 20%, var(--primary-cyan) 2px, transparent 2px),
        radial-gradient(circle at 80% 25%, var(--primary-magenta) 2px, transparent 2px);
    background-size: 100% 30%;
    animation: dnaRotate 8s linear infinite;
}

@keyframes dnaRotate {
    0% { transform: rotateY(0deg) translateZ(0); }
    100% { transform: rotateY(360deg) translateZ(0); }
}

/* Floating Orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--lucy-green) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--lucy-red) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--lucy-violet) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation-delay: -10s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6600 0%, transparent 70%);
    bottom: 30%;
    left: 60%;
    animation-delay: -15s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(50px, -50px) scale(1.1); opacity: 0.5; }
    50% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.4; }
    75% { transform: translate(-50px, -30px) scale(1.05); opacity: 0.35; }
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-galactic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 20, 0.9) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-ring {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    animation: logoRing 3s linear infinite;
}

.logo-ring:nth-child(2) {
    border-color: var(--primary-magenta);
    animation-delay: -1s;
    animation-direction: reverse;
}

.logo-ring:nth-child(3) {
    border-color: var(--primary-purple);
    animation-delay: -2s;
}

@keyframes logoRing {
    0% { transform: rotate(0deg) scale(1); opacity: 1; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.5; }
    100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--lucy-green), var(--lucy-violet), var(--lucy-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 60px;
    text-shadow: 0 0 30px rgba(0, 255, 102, 0.5);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--primary-cyan);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: transparent;
}

.nav-link:hover::before {
    transform: translateY(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-green);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.status-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    color: var(--accent-green);
    letter-spacing: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    z-index: 10;
}

/* MEGA TITLE - LucyVerseX */
.mega-title-container {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.mega-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lucy-green) 0%, var(--lucy-violet) 40%, var(--lucy-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 10px;
    animation: megaTitleGlow 3s ease-in-out infinite, textShine 4s linear infinite;
    background-size: 300% auto;
    filter: drop-shadow(0 0 30px var(--lucy-green)) drop-shadow(0 0 60px var(--lucy-violet));
    position: relative;
}

.mega-title::before,
.mega-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lucy-green) 0%, var(--lucy-violet) 40%, var(--lucy-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mega-title::before {
    animation: glitch-1 1.5s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.mega-title::after {
    animation: glitch-2 2s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes megaTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 30px var(--lucy-green)) drop-shadow(0 0 60px var(--lucy-violet)); }
    33% { filter: drop-shadow(0 0 40px var(--lucy-violet)) drop-shadow(0 0 80px var(--lucy-red)); }
    66% { filter: drop-shadow(0 0 35px var(--lucy-red)) drop-shadow(0 0 70px var(--lucy-green)); }
}

.mega-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 20px;
    color: var(--lucy-violet);
    text-shadow: 0 0 20px var(--lucy-violet), 0 0 40px var(--lucy-red);
    margin-top: 15px;
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {
    0%, 100% { opacity: 1; letter-spacing: 20px; }
    50% { opacity: 0.7; letter-spacing: 25px; }
}

.glitch-container {
    position: relative;
    margin-bottom: 20px;
}

.title-main {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lucy-green) 0%, var(--lucy-violet) 50%, var(--lucy-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: textShine 3s linear infinite;
    background-size: 200% auto;
}

@keyframes textShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lucy-green) 0%, var(--lucy-violet) 50%, var(--lucy-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

.subtitle-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.subtitle-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 8px;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
    white-space: nowrap;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    min-height: 100px;
}

.typing-text {
    border-right: 2px solid var(--primary-cyan);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { border-color: var(--primary-cyan); }
    51%, 100% { border-color: transparent; }
}

/* Launch Counter */
.launch-counter {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.1) 0%, rgba(155, 48, 255, 0.1) 50%, rgba(255, 0, 64, 0.1) 100%);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.counter-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(180deg, var(--lucy-green), var(--lucy-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 102, 0.5);
}

.counter-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.counter-separator {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--lucy-red);
    align-self: flex-start;
    animation: pulse 1s ease-in-out infinite;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    gap: 20px;
}

.cta-button {
    position: relative;
    padding: 18px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--lucy-green), var(--lucy-violet), var(--lucy-red));
    color: var(--dark-bg);
    border-radius: 50px;
    background-size: 200% auto;
    animation: btnGradient 3s ease infinite;
}

@keyframes btnGradient {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 102, 0.4), 0 0 60px rgba(155, 48, 255, 0.3);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button.primary:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button.primary:hover .btn-icon {
    transform: translateX(5px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--lucy-green);
    border: 2px solid var(--lucy-green);
    border-radius: 50px;
}

.cta-button.secondary:hover {
    background: rgba(0, 255, 102, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 102, 0.3);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-core {
    position: relative;
    width: 400px;
    height: 400px;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: coreRing 4s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-color: var(--lucy-green);
    animation-duration: 8s;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-color: var(--lucy-violet);
    animation-duration: 6s;
    animation-direction: reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border-color: var(--lucy-red);
    animation-duration: 4s;
}

.ring-4 {
    width: 40%;
    height: 40%;
    border-color: var(--accent-green);
    animation-duration: 3s;
    animation-direction: reverse;
}

@keyframes coreRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--lucy-green) 0%, var(--lucy-violet) 50%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--lucy-green), transparent 70%);
    border-radius: 50%;
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 0; }
}

.core-eye {
    width: 30px;
    height: 30px;
    background: var(--dark-bg);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px var(--lucy-green), inset 0 0 10px var(--lucy-red);
}

.core-eye::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--lucy-red);
    border-radius: 50%;
    animation: eyePulse 1s ease-in-out infinite;
}

@keyframes eyePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
}

.core-data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 50%;
    background: linear-gradient(180deg, var(--primary-cyan), transparent);
    top: 50%;
    left: 50%;
    transform-origin: top center;
    animation: dataStream 3s linear infinite;
}

.data-stream:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.data-stream:nth-child(2) { transform: rotate(90deg); animation-delay: 0.75s; }
.data-stream:nth-child(3) { transform: rotate(180deg); animation-delay: 1.5s; }
.data-stream:nth-child(4) { transform: rotate(270deg); animation-delay: 2.25s; }

@keyframes dataStream {
    0% { opacity: 0; height: 0; }
    50% { opacity: 1; height: 50%; }
    100% { opacity: 0; height: 50%; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-cyan);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-cyan);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 1.5s ease-in-out infinite;
}

@keyframes wheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator span {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--primary-cyan);
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
.section {
    min-height: 100vh;
    padding: 120px 100px;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
}

.section-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary-magenta);
    letter-spacing: 3px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-magenta), transparent);
}

/* ========================================
   VISION SECTION
   ======================================== */
.vision-content {
    display: flex;
    gap: 100px;
    align-items: center;
}

.vision-text {
    flex: 1;
}

.vision-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-description {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

.vision-stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.2);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-cyan);
    text-shadow: var(--glow-cyan);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Vision Visual */
.vision-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brain-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.brain-hemisphere {
    position: absolute;
    width: 45%;
    height: 70%;
    top: 15%;
    border-radius: 50% 50% 50% 50%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 2px solid rgba(0, 245, 255, 0.5);
    overflow: hidden;
}

.brain-hemisphere.left {
    left: 5%;
    border-radius: 50% 30% 30% 50%;
}

.brain-hemisphere.right {
    right: 5%;
    border-radius: 30% 50% 50% 30%;
}

.synapse {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: synapseFlash 2s ease-in-out infinite;
    box-shadow: var(--glow-cyan);
}

.brain-hemisphere.left .synapse:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.brain-hemisphere.left .synapse:nth-child(2) { top: 50%; left: 50%; animation-delay: 0.5s; }
.brain-hemisphere.left .synapse:nth-child(3) { top: 70%; left: 20%; animation-delay: 1s; }
.brain-hemisphere.right .synapse:nth-child(1) { top: 30%; right: 30%; animation-delay: 0.3s; }
.brain-hemisphere.right .synapse:nth-child(2) { top: 60%; right: 50%; animation-delay: 0.8s; }
.brain-hemisphere.right .synapse:nth-child(3) { top: 80%; right: 20%; animation-delay: 1.3s; }

@keyframes synapseFlash {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(2); opacity: 1; }
}

.brain-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary-magenta), var(--primary-purple));
    border-radius: 50%;
    animation: brainPulse 3s ease-in-out infinite;
    box-shadow: var(--glow-magenta);
}

@keyframes brainPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* ========================================
   TECHNOLOGY SECTION
   ======================================== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.tech-card {
    position: relative;
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid rgba(139, 0, 255, 0.3);
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--primary-cyan);
    box-shadow: 0 30px 60px rgba(0, 245, 255, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.icon-circle {
    fill: none;
    stroke: var(--primary-cyan);
    stroke-width: 2;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-inner {
    fill: var(--primary-magenta);
    opacity: 0.5;
}

.icon-check {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-triangle {
    fill: none;
    stroke: var(--primary-purple);
    stroke-width: 2;
}

.icon-square {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 2;
}

@keyframes iconPulse {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 10; }
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 15px;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), var(--primary-magenta), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-card:hover .card-glow {
    opacity: 1;
}

/* Hologram Showcase */
.tech-showcase {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.hologram {
    position: relative;
    width: 300px;
    height: 400px;
}

.hologram-content {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    perspective: 1000px;
}

.holo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: holoRing 4s linear infinite;
}

.holo-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    border-color: rgba(0, 245, 255, 0.8);
    transform: translate(-50%, -50%) rotateX(70deg);
}

.holo-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    border-color: rgba(255, 0, 255, 0.6);
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(45deg);
    animation-delay: -1s;
}

.holo-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    border-color: rgba(139, 0, 255, 0.4);
    transform: translate(-50%, -50%) rotateX(70deg) rotateZ(90deg);
    animation-delay: -2s;
}

@keyframes holoRing {
    0% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}

.holo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, var(--primary-cyan), transparent);
    border-radius: 50%;
    animation: holoCore 2s ease-in-out infinite;
}

@keyframes holoCore {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

.hologram-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 20px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), var(--primary-magenta), transparent);
    border-radius: 50%;
    filter: blur(5px);
}

.hologram-rays {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
    background: linear-gradient(180deg, rgba(0, 245, 255, 0.3), transparent);
    clip-path: polygon(20% 100%, 50% 0%, 80% 100%);
    animation: holoRays 3s ease-in-out infinite;
}

@keyframes holoRays {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ========================================
   EVOLUTION SECTION
   ======================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-cyan), var(--primary-magenta), var(--primary-purple));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 50px;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.timeline-item.active,
.timeline-item:hover {
    opacity: 1;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--dark-bg);
    border: 3px solid var(--primary-cyan);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker,
.timeline-item.active .timeline-marker {
    background: var(--primary-cyan);
    box-shadow: var(--glow-cyan);
    transform: scale(1.3);
}

.timeline-content {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content,
.timeline-item.active .timeline-content {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2);
}

.timeline-date {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--primary-magenta);
    letter-spacing: 3px;
}

.timeline-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin: 15px 0;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.contact-form {
    margin-bottom: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 245, 255, 0.3);
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--primary-cyan);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -10px;
    left: 0;
    font-size: 0.75rem;
    color: var(--primary-cyan);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-line {
    width: 100%;
}

.submit-btn {
    position: relative;
    padding: 20px 60px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-magenta));
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-bg);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.4);
}

.btn-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
}

.submit-btn.loading .btn-loader {
    animation: btnLoad 1s linear infinite;
}

@keyframes btnLoad {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.access-level {
    padding: 20px;
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid var(--secondary-pink);
    border-radius: 10px;
    display: inline-flex;
    gap: 15px;
    align-items: center;
}

.level-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.level-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: var(--secondary-pink);
    animation: levelBlink 2s ease-in-out infinite;
}

@keyframes levelBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    padding: 60px 100px;
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-cyan), var(--primary-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.footer-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-visual {
        margin-top: 50px;
    }
    
    .ai-core {
        width: 300px;
        height: 300px;
    }
    
    .vision-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-galactic {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .section {
        padding: 80px 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .launch-counter {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .counter-value {
        font-size: 2rem;
    }
    
    .vision-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .cursor-dot, .cursor-outline {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

/* ========================================
   LOADING SCREEN
   ======================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary-cyan);
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: var(--primary-magenta);
    animation-duration: 0.8s;
    animation-direction: reverse;
}

.loader-ring:nth-child(3) {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    border-top-color: var(--primary-purple);
    animation-duration: 0.6s;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scanline Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9998;
    opacity: 0.3;
}

/* Noise Texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9997;
}
