 :root {
            --cyan: #00f6ff;
            --violet: #8b8dff;
            --bg: #000;
            --mono: 'JetBrains Mono', monospace;
            --safe-area: 6%;
            --border: rgba(255, 255, 255, 0.1);
        }

        /* --- GLOBAL RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        
        body { 
            background: var(--bg); 
            font-family: 'Space Grotesk', sans-serif; 
            color: #ffffff; 
            overflow-x: hidden; 
            line-height: 1.6;
        }

        /* --- PRIVACY BANNER --- */
        #privacy-manifest {
            position: fixed;
            bottom: 0; left: 0; width: 100%;
            background: #050505;
            border-top: 1px solid var(--border);
            padding: 30px var(--safe-area);
            z-index: 20000;
            display: none;
            opacity: 0;
            transform: translateY(100%);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        #privacy-manifest.active { opacity: 1; transform: translateY(0); display: grid; }

        .manifest-grid {
            display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1400px; margin: 0 auto;
        }

        @media (min-width: 992px) {
            .manifest-grid { grid-template-columns: 2fr 1fr; align-items: center; }
        }

        .manifest-text h3 {
            font-family: var(--mono); font-size: 0.65rem; letter-spacing: 3px;
            text-transform: uppercase; color: #666; margin-bottom: 10px;
        }

        .manifest-text p { font-size: 0.85rem; font-weight: 300; opacity: 0.7; }

        .manifest-btns { display: flex; gap: 10px; }
        
        .btn-core {
            flex: 1; padding: 16px; font-family: var(--mono); font-size: 0.65rem;
            letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
            transition: 0.3s; border: 1px solid var(--border);
        }

        .btn-accept { background: #fff; color: #000; border: none; }
        .btn-decline { background: transparent; color: #fff; }
        .btn-accept:hover { background: #ccc; }

        /* --- RESTRICTED ATOM BACKGROUND --- */
        #particle-canvas { 
            position: absolute; /* Changed from fixed to stay within hero */
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            z-index: 1; 
            pointer-events: none; 
        }

        /* --- UNIFIED HEADER --- */
        nav { 
            position: fixed; top: 0; width: 100%; padding: 30px var(--safe-area); 
            display: flex; justify-content: space-between; align-items: center; 
            z-index: 10000; background: rgba(0,0,0,0.85); 
        }
        .logo-img { height: 55px; width: auto; transition: 0.3s; }
        .nav-links { display: flex; gap: 40px; list-style: none; }
        .nav-links a { 
            text-decoration: none; color: #fff; font-size: 0.9rem; letter-spacing: 2px; 
            text-transform: uppercase; font-family: var(--mono); opacity: 0.8; transition: 0.3s;
            position: relative; padding: 5px 0;
        }
        .nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }
        .nav-links a::after { 
            content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; 
            background: var(--cyan); transition: 0.3s; box-shadow: 0 0 8px var(--cyan); 
        }
        .nav-links a:hover::after { width: 100%; }

        .menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10002; }
        .menu-toggle span { width: 28px; height: 2px; background: var(--cyan); transition: 0.3s; }

        /* --- CONTENT STYLING --- */
        .hero { 
            min-height: 100svh; 
            display: flex; 
            align-items: center; 
            position: relative; 
            z-index: 10; 
            padding-top: 80px;
            overflow: hidden; /* Added to contain particles */
        }
        .hero-content { width: 100%; padding: 0 var(--safe-area); position: relative; z-index: 2; }
        .hero-content h1 { font-weight: 300; line-height: 1.1; font-size: clamp(2.4rem, 9vw, 5.5rem); margin-bottom: 25px; }
        .hero-content p { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; font-family: var(--mono); }

        .vision-section, .founder-section { padding: 100px var(--safe-area); position: relative; z-index: 10; background: var(--bg); }
        .vision-container, .founder-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; }
        
        .vision-badge { 
            color: var(--cyan); 
            text-shadow: 0 0 15px var(--cyan);
            font-size: 0.65rem; 
            letter-spacing: 4px; 
            text-transform: uppercase; 
            margin-bottom: 15px; 
            display: block; 
            font-family: var(--mono); 
            font-weight: 700;
        }
        
        .vision-text h2 { font-size: clamp(1.8rem, 5vw, 3.5rem); line-height: 1.2; font-weight: 300; margin-bottom: 25px; }
        .vision-text p { font-size: 1.05rem; line-height: 1.8; opacity: 0.9; }
        
        .vision-visual, .founder-image-wrap { 
            position: relative; 
            overflow: hidden; 
            background: #111; 
            border: 1px solid rgba(255,255,255,0.05); 
            height: 350px; 
            border-radius: 30px; 
        }
        .vision-visual img, .founder-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

        .founder-name { font-size: clamp(2.2rem, 6vw, 4rem); text-transform: uppercase; font-weight: 700; line-height: 1; margin-bottom: 10px; }
        .founder-title { color: var(--cyan); font-size: 0.75rem; letter-spacing: 3px; font-family: var(--mono); text-transform: uppercase; display: block; }
        .founder-bio { margin-top: 20px; font-size: 1.1rem; font-weight: 300; }

        .origin-story {
            margin-top: 40px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.02);
            border-left: 2px solid var(--violet);
        }
        .origin-text {
            font-size: 1.05rem;
            line-height: 1.8;
            opacity: 0.8;
            font-weight: 300;
        }

        @keyframes pulse-cyan {
            0% { text-shadow: 0 0 2px var(--cyan); }
            50% { text-shadow: 0 0 12px var(--cyan); }
            100% { text-shadow: 0 0 2px var(--cyan); }
        }

        .inline-link {
            color: var(--cyan);
            text-decoration: none;
            font-family: var(--mono);
            font-weight: 700;
            position: relative;
            cursor: pointer;
            padding: 0 2px;
            border-bottom: 1px dotted var(--cyan); 
            animation: pulse-cyan 3s infinite ease-in-out; 
            transition: 0.3s ease;
        }

        .inline-link::before { content: '['; opacity: 0.4; margin-right: 2px; }
        .inline-link::after { content: ']'; opacity: 0.4; margin-left: 2px; }

        .inline-link:hover {
            background: rgba(0, 246, 255, 0.1);
            text-shadow: 0 0 15px var(--cyan);
            border-bottom: 1px solid var(--cyan); 
        }

        footer { padding: 80px var(--safe-area); text-align: center; border-top: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 10; background: #000; }
        .footer-logo { height: 45px; margin-bottom: 20px; }
        .copyright { font-family: var(--mono); font-size: 0.7rem; opacity: 0.5; letter-spacing: 2px; }

        @media (min-width: 769px) {
            .vision-container { grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
            .founder-grid { grid-template-columns: 1fr 1fr; gap: 100px; align-items: stretch; }
            .founder-image-wrap { height: 600px; order: 1; }
            .founder-info { order: 2; display: flex; flex-direction: column; justify-content: space-between; padding: 10px 0; }
            .vision-visual, .founder-image-wrap { height: 600px; }
        }
        @media (max-width: 992px) {
            .menu-toggle { display: flex; }
            .nav-links { position: fixed; top: 0; right: -100%; height: 100vh; width: 100%; background: #000; flex-direction: column; justify-content: center; align-items: center; transition: 0.5s; }
            .nav-links.active { right: 0; }
        }
        .vision-container, .founder-grid { 
            align-items: flex-start; 
        }
        .vision-text h2, .founder-name { 
            margin-top: 0; 
        }
        @media (min-width: 769px) {
            .vision-visual, .founder-image-wrap { 
                height: 100%; 
            }
            .vision-visual img, .founder-image-wrap img { 
                height: 100%; 
                width: 100%; 
                object-fit: cover; 
            }
        }