        :root {
            --primary: #00f3ff;
            --secondary: #7b00ff;
            --dark: #0a0a1a;
            --darker: #050510;
            --light: #f0f8ff;
            --transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
            --glow: 0 0 60px rgba(0, 243, 255, 0.05);
            --radius: 20px;
            --border-subtle: rgba(0, 243, 255, 0.05);
            --content-width: 820px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background: var(--darker);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 30%, rgba(123, 0, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 243, 255, 0.06) 0%, transparent 40%);
            min-height: 100vh;
        }

        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: 0;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .page-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 2.5rem 4rem;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .page-wrap {
                padding: 1.5rem 1.5rem 3rem;
            }
        }
        @media (max-width: 480px) {
            .page-wrap {
                padding: 1rem 1rem 2.5rem;
            }
        }

        /* ----- HEADER ----- */
        .site-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            padding: 0.6rem 0 1.8rem;
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 2.5rem;
        }

        .logo {
            font-family: 'Share Tech Mono', monospace;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: var(--transition);
        }
        .logo:hover {
            text-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
        }

        .logo-dot {
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--primary);
            animation: pulse-dot 2.4s infinite;
            flex-shrink: 0;
        }
        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 0.5;
                transform: scale(0.9);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            font-weight: 600;
            font-size: 0.95rem;
        }
        .nav-links a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.35;
            transition: var(--transition);
            letter-spacing: 0.5px;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover,
        .nav-links a.active {
            opacity: 1;
            color: var(--primary);
            border-bottom-color: var(--primary);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0.3rem;
            z-index: 10;
        }
        .hamburger span {
            width: 26px;
            height: 2px;
            background: var(--light);
            border-radius: 4px;
            transition: var(--transition);
            transform-origin: center;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(5, 5, 16, 0.96);
            backdrop-filter: blur(16px);
            z-index: 9;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 2.5rem;
            padding: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
        .nav-overlay.open {
            display: flex;
            opacity: 1;
            pointer-events: all;
            animation: fadeIn 0.3s ease;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.98);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .nav-overlay a {
            color: var(--light);
            text-decoration: none;
            font-size: 1.8rem;
            font-weight: 600;
            opacity: 0.5;
            transition: var(--transition);
            letter-spacing: 1px;
        }
        .nav-overlay a:hover,
        .nav-overlay a.active {
            opacity: 1;
            color: var(--primary);
            transform: translateX(6px);
        }

        @media (max-width: 700px) {
            .nav-links {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .site-header {
                padding: 0.4rem 0 1.2rem;
                margin-bottom: 1.8rem;
            }
        }

        /* ----- CONTENT ----- */
        .content-block {
            max-width: var(--content-width);
            margin-left: auto;
            margin-right: auto;
            width: 100%;
        }

        /* ----- MANIFESTO HERO ----- */
        .manifesto-hero {
            padding: 2rem 0 4rem;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 3rem;
        }

        .manifesto-eyebrow {
            font-family: 'Share Tech Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary);
            opacity: 0.4;
            margin-bottom: 1rem;
            display: block;
        }

        .manifesto-hero h1 {
            font-size: clamp(3.2rem, 10vw, 6rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #fff 20%, var(--primary) 60%, var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
            background-size: 200% 200%;
            animation: shimmer 7s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%,
            100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        .manifesto-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            color: var(--primary);
            opacity: 0.6;
            font-weight: 300;
            letter-spacing: 2px;
            font-family: 'Share Tech Mono', monospace;
            margin-top: 0.5rem;
        }

        /* ----- SHARE BUTTONS ----- */
        .share-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin: 2rem 0 1rem;
            flex-wrap: wrap;
        }

        .share-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--light);
            opacity: 0.3;
            font-family: 'Share Tech Mono', monospace;
        }

        .share-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            border: 1px solid var(--border-subtle);
            background: rgba(0, 243, 255, 0.03);
            color: var(--light);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
            cursor: pointer;
            font-family: 'Exo 2', sans-serif;
            font-weight: 500;
        }

        .share-btn:hover {
            border-color: rgba(0, 243, 255, 0.2);
            background: rgba(0, 243, 255, 0.06);
            transform: translateY(-2px);
            box-shadow: var(--glow);
        }

        .share-btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
            opacity: 0.6;
        }

        .share-btn-twitter:hover {
            border-color: #1DA1F2;
            color: #1DA1F2;
        }

        .share-btn-linkedin:hover {
            border-color: #0A66C2;
            color: #0A66C2;
        }

        .share-btn-copy:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* ----- MANIFESTO BODY ----- */
        .manifesto-body {
            padding: 1rem 0 3rem;
        }

        .manifesto-body p {
            font-size: clamp(1rem, 1.3vw, 1.1rem);
            line-height: 1.9;
            margin-bottom: 1.2rem;
            opacity: 0.85;
        }

        .manifesto-body .lead {
            font-size: clamp(1.15rem, 1.6vw, 1.3rem);
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--primary);
        }

        .manifesto-section-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            margin: 2.5rem 0 1rem;
            letter-spacing: -0.01em;
            color: var(--primary);
            opacity: 0.8;
        }

        .manifesto-highlight {
            background: rgba(0, 243, 255, 0.03);
            border-left: 3px solid var(--primary);
            padding: 1.2rem 1.8rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
            font-size: clamp(1rem, 1.3vw, 1.1rem);
            font-weight: 400;
            line-height: 1.8;
        }

        .manifesto-highlight strong {
            color: var(--primary);
        }

        .manifesto-highlight p {
            margin-bottom: 0;
        }

        .manifesto-highlight-secondary {
            border-left-color: var(--secondary);
        }

        .manifesto-highlight-secondary strong {
            color: var(--secondary);
        }

        .manifesto-list {
            margin: 1rem 0 1.5rem 1.5rem;
            list-style: none;
        }

        .manifesto-list li {
            padding: 0.4rem 0 0.4rem 1.5rem;
            position: relative;
            font-size: clamp(0.95rem, 1.2vw, 1.05rem);
            opacity: 0.85;
            line-height: 1.7;
        }

        .manifesto-list li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--primary);
            opacity: 0.3;
            font-size: 0.6rem;
            top: 0.7rem;
        }

        .manifesto-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            margin: 2.5rem 0;
            opacity: 0.2;
        }

        .manifesto-mission {
            font-size: clamp(1.3rem, 2vw, 1.6rem);
            font-weight: 700;
            text-align: center;
            padding: 2.5rem 2rem;
            background: radial-gradient(circle at 30% 40%, rgba(0, 243, 255, 0.04), transparent 70%);
            border: 1px solid var(--border-subtle);
            border-radius: 32px;
            margin: 2.5rem 0;
            line-height: 1.4;
            color: var(--light);
        }

        .manifesto-mission .highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .manifesto-closing {
            font-size: clamp(1.1rem, 1.4vw, 1.2rem);
            font-weight: 600;
            margin-top: 2rem;
            color: var(--primary);
            opacity: 0.7;
            text-align: center;
        }

        /* ----- CTA BLOCK ----- */
        .cta-block {
            text-align: center;
            padding: 3rem 2.5rem;
            border-radius: 32px;
            background: radial-gradient(circle at 30% 40%, rgba(0, 243, 255, 0.04), transparent 70%);
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            margin-top: 3rem;
        }

        .cta-block:hover {
            border-color: rgba(0, 243, 255, 0.08);
            box-shadow: var(--glow);
        }

        .cta-block h2 {
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .cta-block p {
            opacity: 0.5;
            max-width: 480px;
            margin: 0 auto 1.6rem;
            font-size: clamp(0.95rem, 1.5vw, 1.1rem);
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .btn-cta-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--darker);
            font-weight: 700;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            text-decoration: none;
            box-shadow: 0 4px 30px rgba(0, 243, 255, 0.12);
            transition: var(--transition);
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            border: none;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .btn-cta-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
            opacity: 0;
            transition: var(--transition);
        }

        .btn-cta-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 40px rgba(0, 243, 255, 0.25);
        }

        .btn-cta-primary:hover::after {
            opacity: 1;
        }

        .btn-cta-secondary {
            display: inline-block;
            background: transparent;
            color: var(--light);
            font-weight: 700;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            cursor: pointer;
        }

        .btn-cta-secondary:hover {
            border-color: rgba(0, 243, 255, 0.2);
            background: rgba(0, 243, 255, 0.04);
            transform: translateY(-3px);
        }

        /* ----- RESPONSIVE ----- */
        @media (max-width: 600px) {
            .share-section {
                flex-wrap: wrap;
                justify-content: center;
            }

            .share-btn {
                padding: 0.4rem 1rem;
                font-size: 0.75rem;
            }

            .manifesto-highlight {
                padding: 1rem 1.2rem;
            }

            .manifesto-list {
                margin-left: 0.5rem;
            }

            .manifesto-mission {
                padding: 1.8rem 1.2rem;
                font-size: clamp(1.1rem, 2vw, 1.3rem);
            }

            .cta-block {
                padding: 2rem 1.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-cta-primary,
            .btn-cta-secondary {
                width: 100%;
                text-align: center;
                padding: 0.8rem 1.5rem;
            }
        }

        /* ----- FOOTER ----- */
        .site-footer {
            margin-top: 4rem;
            padding-top: 2.5rem;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1.8rem;
            max-width: var(--content-width);
            margin: 0 auto;
        }

        .footer-brand p {
            opacity: 0.3;
            font-size: 0.8rem;
            max-width: 300px;
            margin-top: 0.2rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            align-items: center;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            opacity: 0.2;
            transition: var(--transition);
            font-size: 0.85rem;
        }
        .footer-links a:hover {
            opacity: 0.6;
            color: var(--primary);
        }

        .footer-copy {
            margin-top: 1.8rem;
            text-align: center;
            font-size: 0.7rem;
            opacity: 0.12;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 1.5rem;
            }
            .footer-brand {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .footer-brand p {
                max-width: 100%;
                margin: 0.2rem auto 0;
            }
            .footer-links {
                justify-content: center;
                gap: 1.2rem 2rem;
                flex-wrap: wrap;
            }
        }

        /* REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.96);
            transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }
        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ----- LOGO STYLES (moved from inline) ----- */
        .logo-small {
            font-size: 1.3rem;
        }

        .logo-dot-small {
            width: 10px;
            height: 10px;
        }

        .cta-margin-top {
            margin-top: 3rem;
        }