        :root {
            --toxic-green: #28a745;
            --neon-purple: #8a2be2;
            --border-light: #e0e0e0;
            --dark-text: #1a1a1a;
            --mid-text: #2a2a2a;
            --card-light: #ffffff;
            --light-bg: #f5f5f5;
        }

        * {
            box-sizing: border-box;
            border-color: var(--border-light);
        }

        body {
            font-family: 'Manrope', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        .font-art {
            font-family: 'Syne', sans-serif;
        }

        .grain-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
            pointer-events: none !important;
            z-index: -1;
        }

        .animated-gradient-text {
            background: linear-gradient(90deg, #1a1a1a, #555555, #1a1a1a);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-shift 3s ease infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .section-divider {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .section-number {
            font-family: 'Syne', sans-serif;
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--toxic-green);
            background: rgba(40, 167, 69, 0.1);
            padding: 4px 12px;
            border-radius: 4px;
            letter-spacing: 0.1em;
        }

        .section-label {
            font-family: 'Syne', sans-serif;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            color: var(--dark-text);
            opacity: 0.9;
        }

        .bg-dark-text { background-color: #0a0a0a !important; }
        .text-dark-text { color: #1a1a1a !important; }
        .bg-toxic-green { background-color: #28a745 !important; }
        .text-toxic-green { color: #28a745 !important; }
        .bg-neon-purple { background-color: #8a2be2 !important; }
        .text-neon-purple { color: #8a2be2 !important; }
        .border-toxic-green { border-color: #28a745 !important; }
        .text-white-pure { color: #ffffff !important; }
