.material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
        .ambient-glow-sm { box-shadow: 0 0 20px rgba(75, 226, 119, 0.05); }
        
        /* Fixed Falling Pattern Background */
        .falling-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            background: rgb(var(--rr-background));
            overflow: hidden;
        }
        .falling-pattern::before {
            content: "";
            position: absolute;
            inset: -100% 0;
            background-image: 
                linear-gradient(to bottom, transparent 95%, rgba(75, 226, 119, 0.08) 100%),
                linear-gradient(to right, transparent 95%, rgba(75, 226, 119, 0.05) 100%);
            background-size: 40px 40px;
            transform: perspective(500px) rotateX(60deg);
            animation: grid-fall 20s linear infinite;
        }
        @keyframes grid-fall {
            from { transform: perspective(500px) rotateX(60deg) translateY(0); }
            to { transform: perspective(500px) rotateX(60deg) translateY(40px); }
        }

        .status-pulse {
            display: inline-block;
            width: 8px;
            height: 8px;
            background-color: #4be277;
            border-radius: 50%;
            margin-right: 8px;
            box-shadow: 0 0 0 rgba(75, 226, 119, 0.4);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(75, 226, 119, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(75, 226, 119, 0); }
            100% { box-shadow: 0 0 0 0 rgba(75, 226, 119, 0); }
        }

        .chart-bar {
            height: 0%;
            transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .active .chart-bar {
            height: var(--bar-height);
        }

        /* Obsidian Nexus Hover Effects */
        .hover-glow {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .hover-glow:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(75, 226, 119, 0.15);
            border-color: rgba(75, 226, 119, 0.4) !important;
        }
        .hover-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(75, 226, 119, 0.05), transparent);
            transition: 0.5s;
        }
        .hover-glow:hover::before {
            left: 100%;
        }
        
        .mastry-pulse {
            animation: icon-glow 3s infinite ease-in-out;
        }
        @keyframes icon-glow {
            0%, 100% { filter: drop-shadow(0 0 2px rgba(75, 226, 119, 0.2)); transform: scale(1); }
            50% { filter: drop-shadow(0 0 12px rgba(75, 226, 119, 0.6)); transform: scale(1.05); }
        }

        nav a { position: relative; }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #4be277;
            transition: width 0.3s ease;
        }
        nav a:hover::after { width: 100%; }
        
        .footer-link { transition: all 0.3s ease; }
        .footer-link:hover { padding-left: 8px; color: #4be277; }

        .tech-accent {
            font-family: monospace;
            font-size: 10px;
            opacity: 0.3;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .micro-interact:active {
            transform: scale(0.96);
        }

        .hardware-hero-panel {
            min-height: 440px;
            background:
                linear-gradient(145deg, rgba(7, 13, 31, 0.28), rgba(21, 27, 45, 0.92)),
                radial-gradient(circle at 76% 24%, rgba(75, 226, 119, 0.18), transparent 28%),
                rgb(var(--rr-surface-container-highest));
        }

        .hardware-hero-panel::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(75, 226, 119, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(75, 226, 119, 0.08) 1px, transparent 1px);
            background-size: 44px 44px;
            -webkit-mask-image: linear-gradient(120deg, transparent 0%, black 28%, black 78%, transparent 100%);
            mask-image: linear-gradient(120deg, transparent 0%, black 28%, black 78%, transparent 100%);
            opacity: 0.28;
            pointer-events: none;
        }

        .hardware-hero-image {
            filter: grayscale(0.25) contrast(1.12) brightness(0.72);
        }

        .rack-unit {
            background: linear-gradient(90deg, rgba(12, 19, 36, 0.88), rgba(46, 52, 71, 0.7), rgba(12, 19, 36, 0.92));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(0, 0, 0, 0.38);
        }

        .status-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: rgb(var(--rr-primary));
            box-shadow: 0 0 12px rgba(75, 226, 119, 0.5);
            flex: 0 0 auto;
        }

        .mini-terminal {
            background: rgba(7, 13, 31, 0.82);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .mini-terminal::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                transparent 0%,
                rgba(75, 226, 119, 0.08) 48%,
                transparent 100%
            );
            height: 42%;
            transform: translateY(-100%);
            animation: terminal-scan 4.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
            pointer-events: none;
            opacity: 0.55;
        }

        .mini-terminal::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
            background-size: 100% 5px;
            opacity: 0.24;
            pointer-events: none;
        }

        .terminal-title {
            display: inline-block;
            max-width: 19ch;
            overflow: hidden;
            white-space: nowrap;
            vertical-align: bottom;
            animation: terminal-type 2.6s steps(19, end) both;
        }

        .terminal-cursor {
            display: inline-block;
            width: 7px;
            height: 1em;
            margin-left: 4px;
            background: rgb(var(--rr-primary));
            vertical-align: -0.15em;
            animation: terminal-cursor-blink 1s steps(1, end) infinite;
        }

        .terminal-row {
            opacity: 0;
            transform: translateY(4px);
            animation: terminal-row-in 0.45s ease forwards;
        }

        .terminal-row:nth-child(1) { animation-delay: 0.55s; }
        .terminal-row:nth-child(2) { animation-delay: 1.05s; }
        .terminal-row:nth-child(3) { animation-delay: 1.55s; }
        .terminal-row:nth-child(4) { animation-delay: 2.05s; }

        .terminal-progress {
            position: relative;
            height: 3px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.08);
        }

        .terminal-progress::before {
            content: "";
            position: absolute;
            inset: 0;
            width: 38%;
            background: linear-gradient(90deg, transparent, rgb(var(--rr-primary)), transparent);
            animation: terminal-progress-pass 2.8s ease-in-out infinite;
            box-shadow: 0 0 14px rgba(75, 226, 119, 0.45);
        }

        .terminal-chip {
            opacity: 0;
            animation: terminal-row-in 0.45s ease forwards;
        }

        .terminal-chip:nth-child(1) { animation-delay: 0.35s; }
        .terminal-chip:nth-child(2) { animation-delay: 0.7s; }
        .terminal-chip:nth-child(3) { animation-delay: 1.05s; }

        @keyframes terminal-type {
            from { max-width: 0; }
            to { max-width: 19ch; }
        }

        @keyframes terminal-cursor-blink {
            0%, 48% { opacity: 1; }
            49%, 100% { opacity: 0; }
        }

        @keyframes terminal-row-in {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes terminal-scan {
            0%, 18% { transform: translateY(-100%); }
            58%, 100% { transform: translateY(240%); }
        }

        @keyframes terminal-progress-pass {
            0% { transform: translateX(-120%); }
            52%, 100% { transform: translateX(260%); }
        }

        .standard-marker {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(75, 226, 119, 0.08);
            border: 1px solid rgba(75, 226, 119, 0.22);
            color: rgb(var(--rr-primary));
        }
