/*
Theme Name: PromisNexus
Theme URI: https://promis.tech
Author: Andrei Nicu
Author URI: https://promis.tech
Description: A futuristic industrial manufacturing theme featuring an embedded factory simulation game, ROI calculators, and a glassmorphism design system. Built for PrOMIS.
Version: 1.0.0
License: ISC
Text Domain: promis-nexus
Tags: one-column, dark, futuristic, manufacturing
*/

/* 
   Core styles are loaded from assets/css/main.css 
   This file is primarily for WordPress theme recognition.
*/
body {
    background-color: #0a0a0a;
    color: #e0e0e0;
}

/* INJECTED STYLES FROM HTML */

        :root {
            --bg-deep: #0f0c29;
            --bg-gradient: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-highlight: rgba(255, 255, 255, 0.2);
            --neon-cyan: #00f2ff;
            --neon-violet: #bc13fe;
            --text-primary: #ffffff;
            --text-secondary: #a9a9c2;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            position: relative;
            width: 100vw;
            min-height: 100vh;
            background-color: var(--bg-deep); /* Fallback */
            color: var(--text-primary);
            overflow-x: hidden;
        }

        /* Fixed Background Layer */
        .fixed-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: var(--bg-gradient);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
        }

        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: -1;
            opacity: 0.3; /* Lowered from 0.6 for better contrast */
            animation: float 10s infinite ease-in-out;
        }

        .orb-1 {
            width: 400px;
            height: 400px;
            background: var(--neon-violet);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 500px;
            height: 500px;
            background: var(--neon-cyan);
            bottom: -150px;
            right: -150px;
            animation-delay: -5s;
        }

        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes float {
            0% { transform: translate(0, 0); }
            50% { transform: translate(30px, 50px); }
            100% { transform: translate(0, 0); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        /* Glass Components */
        .glass {
            background: rgba(15, 12, 41, 0.6); /* Darker glass background */
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5); /* Stronger shadow */
        }

        .glass:hover {
            border-color: var(--glass-highlight);
            box-shadow: 0 8px 32px 0 rgba(0, 242, 255, 0.1);
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 4rem 0;
            position: relative;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(to right, #ffffff, #e0e0e0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5); /* Added Shadow */
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); /* Extra legibility */
        }

        .hero p {
            font-size: 1.25rem;
            color: #d0d0d0; /* Brighter secondary text */
            max-width: 600px;
            margin-bottom: 3rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8); /* Added Shadow */
        }

        .hero-media {
            width: 100%;
            max-width: 900px;
            aspect-ratio: 16/9;
            margin: 0 auto 3rem;
            position: relative;
            overflow: hidden;
        }

        .hero-media iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            width: 100%;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--neon-cyan);
            color: #000;
            box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
        }

        .btn-ghost {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Value Grid */
        .value-section {
            padding: 6rem 0;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .value-card {
            padding: 2.5rem;
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .value-card i {
            color: var(--neon-cyan);
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Roadmap */
        .roadmap-section {
            padding: 6rem 0;
            position: relative;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, var(--neon-cyan), transparent);
            box-shadow: 0 0 15px var(--neon-cyan);
        }

        .timeline-node {
            margin-bottom: 4rem;
            position: relative;
            width: 50%;
            padding: 0 2rem;
        }

        .timeline-node:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-node:nth-child(even) {
            left: 50%;
            text-align: left;
        }

        .timeline-content {
            padding: 1.5rem;
        }

        .node-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--neon-cyan);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            box-shadow: 0 0 15px var(--neon-cyan);
        }

        .timeline-node:nth-child(odd) .node-dot {
            right: -10px;
        }

        .timeline-node:nth-child(even) .node-dot {
            left: -10px;
        }

        /* Demo Hub (Gated) */
        .demo-section {
            padding: 6rem 0;
        }

        .terminal-block {
            background: rgba(0, 0, 0, 0.8);
            border: 1px solid #333;
            border-radius: 12px;
            padding: 2rem;
            font-family: 'Fira Code', monospace;
            max-width: 600px;
            margin: 0 auto 3rem auto;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }

        .terminal-text {
            color: #00ff00;
            margin-bottom: 0.5rem;
        }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .download-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            text-decoration: none;
            color: white;
            transition: all 0.3s;
        }

        .download-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        /* Documentation Preview */
        .docs-section {
            padding: 6rem 0;
        }

        .docs-container {
            display: flex;
            gap: 2rem;
        }

        .docs-nav {
            flex: 1;
            padding: 2rem;
        }

        .docs-nav ul {
            list-style: none;
        }

        .docs-nav li {
            margin-bottom: 1rem;
        }

        .docs-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .docs-nav a:hover {
            color: var(--neon-cyan);
        }

        .docs-content {
            flex: 2;
            padding: 2rem;
        }

        /* Footer / Contact */
        .footer {
            padding: 4rem 0;
            border-top: 1px solid var(--glass-border);
            text-align: center;
        }

        .contact-info p {
            margin: 0.5rem 0;
            color: var(--text-secondary);
        }

        .contact-highlight {
            color: var(--neon-cyan);
            font-weight: 600;
        }

        /* NDA Modal */
        .nda-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            overflow-y: auto;
            padding: 2rem;
        }

        .nda-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nda-content {
            background: rgba(10, 10, 10, 0.95);
            border: 1px solid var(--neon-cyan);
            border-radius: 16px;
            padding: 2.5rem;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
        }

        .nda-content h2 {
            color: var(--neon-cyan);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nda-agreement {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            max-height: 300px;
            overflow-y: auto;
            margin-bottom: 2rem;
            text-align: left;
        }

        .nda-agreement::-webkit-scrollbar {
            width: 8px;
        }

        .nda-agreement::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
        }

        .nda-agreement::-webkit-scrollbar-thumb {
            background: var(--neon-cyan);
            border-radius: 4px;
        }

        .nda-agreement h4 {
            color: var(--neon-cyan);
            margin-top: 1rem;
            margin-bottom: 0.5rem;
        }

        .nda-agreement p, .nda-agreement li {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .nda-form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .nda-form-group label {
            display: block;
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .nda-form-group input {
            width: 100%;
            padding: 0.85rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .nda-form-group input:focus {
            outline: none;
            border-color: var(--neon-cyan);
            box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.1);
        }

        .nda-checkbox-group {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            margin: 1.5rem 0;
            text-align: left;
        }

        .nda-checkbox-group input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .nda-checkbox-group label {
            color: var(--text-secondary);
            line-height: 1.6;
            cursor: pointer;
        }

    
