        :root {
            --orange: #F79A19;
            --pink: #F2AEBB;
            --white: #FFFFFF;
            --black: #000000;
        }

        body {
            font-family: 'VT323', monospace;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            font-size: 1.35rem;
            line-height: 1.2;
        }

        /* Typography */
        h1, h2, h3, h4 { text-transform: uppercase; line-height: 0.9; }
        .text-accent { color: var(--orange); }

        /* Typewriter Effect */
        .typewriter {
            display: inline-block;
            overflow: hidden;
            border-right: .15em solid var(--orange);
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: .05em;
            animation: typing 3s steps(30, end), blink-caret .75s step-end infinite;
        }

        @keyframes typing { from { width: 0 } to { width: 100% } }
        @keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: var(--orange); } }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.17, 0.55, 0.55, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .img-zoom {
            transition: transform 1.5s ease-out;
        }
        .img-zoom:hover {
            transform: scale(1.05);
        }

        /* Custom UI Elements */
        .btn-tech {
            background: var(--black);
            color: var(--white);
            padding: 12px 28px;
            border: 2px solid var(--black);
            transition: all 0.3s;
            display: inline-block;
            cursor: pointer;
            text-align: center;
        }
        .btn-tech:hover {
            background: var(--orange);
            color: var(--white);
            border-color: var(--orange);
        }

        .product-card {
            background: white;
            border: 2px solid var(--black);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .product-card:hover {
            transform: translate(-8px, -8px);
            box-shadow: 12px 12px 0px var(--black);
        }

        /* Sections */
        .page-view { display: none; min-height: 100vh; }
        .page-view.active { display: block; }
        
        .sticky-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--black);
        }

        /* Inputs */
        input, textarea, select {
            border: 2px solid var(--black) !important;
            padding: 12px !important;
            background: white !important;
            width: 100%;
            font-family: 'VT323', monospace;
            font-size: 1.2rem;
        }

        /* Hero Background Anim */
        .hero-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            background-image: radial-gradient(var(--orange) 2px, transparent 2px);
            background-size: 40px 40px;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--white); }
        ::-webkit-scrollbar-thumb { background: var(--black); }
    