/*
Theme Name: Symmetrik Solutions
Theme URI: https://symmetrik.ca
Author: Symmetrik Solutions Inc.
Author URI: https://symmetrik.ca
Description: Enterprise AI platform theme - 100% offline, air-gapped AI solutions. Modern one-page design with glassmorphism effects.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: symmetrik
Tags: one-page, custom-header, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout, modern
*/

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #050B14; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #00D4FF; }

/* Grid Background */
.cyber-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 212, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
}

/* Glass Panel */
.glass-panel {
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

/* Glow Text */
.text-glow {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

/* Gradient Text Animation */
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Scan Line */
@keyframes scan {
    0% { top: 0%; opacity: 0; }
    50% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}
.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00D4FF, transparent);
    animation: scan 4s linear infinite;
}

/* Mobile Menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
.mobile-menu.active {
    transform: translateX(0);
}