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

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --accent-green: #00ff88;
    --accent-cyan: #00ffff;
    --accent-pink: #ff1b8d;
    --accent-purple: #8b5cf6;
    --neon-green: #39ff14;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --card-bg: rgba(17, 17, 17, 0.95);
    --border-glow: rgba(0, 255, 136, 0.4);
    --shadow-green: 0 0 20px rgba(0, 255, 136, 0.3);
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    position: relative;
    line-height: 1.7;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 27, 141, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-green);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

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

.vision-page {
    padding: 60px 0;
    min-height: 100vh;
}

.back-nav {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--card-bg);
    color: var(--accent-green);
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 14px;
    border-radius: 25px;
    border: 2px solid var(--accent-green);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.back-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.1);
}

.back-btn:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

.doc-header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 40px;
    /* REMOVED ANIMATION PROPERTIES */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.doc-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--accent-green);
    text-shadow: 
        0 0 10px var(--accent-green),
        0 0 20px var(--accent-green),
        0 0 40px var(--accent-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px var(--accent-green),
            0 0 20px var(--accent-green),
            0 0 40px var(--accent-green);
    }
    50% { 
        text-shadow: 
            0 0 15px var(--accent-green),
            0 0 30px var(--accent-green),
            0 0 60px var(--accent-green);
    }
}

.doc-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--accent-cyan);
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 0 15px var(--accent-cyan);
}

.doc-content {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 60px;
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(20px);
    overflow: hidden;
    margin-bottom: 40px;
    /* REMOVED ANIMATION - ALWAYS VISIBLE */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.doc-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan), var(--accent-pink));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
    animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    margin: 50px 0;
    box-shadow: 0 0 10px var(--accent-green);
    animation: dividerGlow 2s ease-in-out infinite;
}

@keyframes dividerGlow {
    0%, 100% { 
        box-shadow: 0 0 10px var(--accent-green);
    }
    50% { 
        box-shadow: 0 0 20px var(--accent-green);
    }
}

h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--accent-green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 0 20px var(--accent-green);
}

h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: var(--accent-cyan);
    font-weight: 700;
    margin: 40px 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 15px var(--accent-cyan);
    transition: all 0.3s ease;
}

h2:hover {
    transform: translateX(10px);
    text-shadow: 0 0 25px var(--accent-cyan);
}

h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--accent-pink);
    font-weight: 700;
    margin: 30px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

h3:hover {
    transform: translateX(5px);
    text-shadow: 0 0 15px var(--accent-pink);
}

h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: var(--accent-purple);
    font-weight: 700;
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

h4:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px var(--accent-pink);
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

p:hover {
    color: rgba(255, 255, 255, 0.9);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--accent-green);
    font-weight: 700;
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    text-shadow: 0 0 10px var(--accent-green);
    animation: leadTextPulse 3s ease-in-out infinite;
}

@keyframes leadTextPulse {
    0%, 100% { 
        background: rgba(0, 255, 136, 0.1);
        border-color: var(--border-glow);
    }
    50% { 
        background: rgba(0, 255, 136, 0.15);
        border-color: var(--accent-green);
    }
}

.highlight-box {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: var(--shadow-green);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* REMOVED ANIMATION - ALWAYS VISIBLE */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    animation: highlightShimmer 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes highlightShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
    border-color: var(--accent-green);
}

.financial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.financial-item {
    background: var(--card-bg);
    border: 2px solid var(--border-glow);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    /* REMOVED ANIMATION - ALWAYS VISIBLE */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.financial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.financial-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
    border-color: var(--accent-green);
}

.financial-item:hover::before {
    opacity: 0.1;
}

.financial-item:hover .percentage {
    transform: scale(1.1);
    color: var(--neon-green);
}

.percentage {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: var(--accent-green);
    font-weight: 900;
    text-shadow: 0 0 20px var(--accent-green);
    transition: all 0.3s ease;
    animation: percentagePulse 2s ease-in-out infinite;
}

@keyframes percentagePulse {
    0%, 100% { 
        text-shadow: 0 0 20px var(--accent-green);
    }
    50% { 
        text-shadow: 0 0 30px var(--accent-green);
    }
}

.percentage-label {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--accent-cyan);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.financial-item:hover .percentage-label {
    color: var(--text-primary);
    text-shadow: 0 0 10px var(--accent-cyan);
}

ul {
    margin: 20px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-primary);
    position: relative;
    transition: all 0.3s ease;
}

li:hover {
    color: var(--accent-green);
    transform: translateX(10px);
}

li::marker {
    color: var(--accent-green);
}

.tech-spec {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--accent-purple);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* REMOVED ANIMATION - ALWAYS VISIBLE */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.tech-spec::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), transparent);
    transition: left 0.8s ease;
}

.tech-spec:hover::before {
    left: 100%;
}

.tech-spec:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    border-color: var(--accent-pink);
}

.final-message {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 25px;
    border: 2px solid var(--border-glow);
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    animation: finalMessageGlow 4s ease-in-out infinite;
    /* REMOVED ANIMATION - ALWAYS VISIBLE */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes finalMessageGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }
    50% { 
        box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    }
}

.final-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: finalShimmer 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes finalShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.final-message h2 {
    color: var(--accent-green);
    margin-bottom: 30px;
    animation: finalTitlePulse 3s ease-in-out infinite;
}

@keyframes finalTitlePulse {
    0%, 100% { 
        text-shadow: 0 0 15px var(--accent-cyan);
    }
    50% { 
        text-shadow: 0 0 30px var(--accent-cyan);
    }
}

.final-message p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.signature {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 900;
    text-align: center;
    margin: 50px 0 20px 0;
    text-shadow: 0 0 20px var(--accent-green);
    letter-spacing: 3px;
    animation: signaturePulse 2s ease-in-out infinite;
}

@keyframes signaturePulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px var(--accent-green);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 30px var(--accent-green);
    }
}

.doc-meta {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-glow);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.doc-meta:hover {
    opacity: 1;
    color: var(--accent-cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .doc-content {
        padding: 30px;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .back-nav {
        top: 20px;
        left: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .percentage {
        font-size: 2.5rem;
    }
    
    .final-message {
        padding: 30px 20px;
    }
    
    /* MOBILE FIXES - ENSURE EVERYTHING IS VISIBLE */
    .doc-content,
    .financial-item,
    .highlight-box,
    .tech-spec,
    .final-message {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
    }
    
    .doc-header {
        opacity: 1 !important;
        transform: translateY(0) !important;
        margin-bottom: 40px;
        padding-top: 80px;
    }
    
    .doc-title {
        font-size: 2.5rem !important;
        margin-bottom: 15px;
    }
    
    .doc-subtitle {
        font-size: 1.2rem !important;
    }
    
    .back-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: none !important;
        font-size: 12px;
        padding: 10px 16px;
    }
}

/* Additional fixes for very small screens */
@media (max-width: 480px) {
    .doc-title {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }
    
    .doc-subtitle {
        font-size: 1rem !important;
    }
    
    .doc-content {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .financial-item {
        padding: 15px;
    }
    
    .percentage {
        font-size: 2rem;
    }
    
    .back-btn {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .final-message {
        padding: 20px 15px;
    }
}