        :root {
            --bg: #050508;
            --surface: #0d0d1a;
            --surface2: #111128;
            --border: #2a2a5a;
            --primary: #6c3bff;
            --primary-glow: #8b5cf6;
            --accent: #00ff88;
            --accent2: #ff3aff;
            --accent3: #ffcc00;
            --text: #c8c8e8;
            --text-dim: #5a5a8a;
            --scanline: rgba(0,255,136,0.03);
            --pixel-size: 4px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'VT323', monospace;
            background-color: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            cursor: crosshair;
        }

        /* ===== SCANLINE OVERLAY ===== */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0,0,0,0.15) 2px,
                rgba(0,0,0,0.15) 4px
            );
            pointer-events: none;
            z-index: 9999;
        }

        /* ===== STAR FIELD ===== */
        .starfield {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .star {
            position: absolute;
            background: white;
            border-radius: 0;
        }

        /* ===== PIXEL BORDER UTILITY ===== */
        .px-border {
            border: 2px solid var(--border);
            box-shadow:
                inset 0 0 0 2px var(--bg),
                4px 4px 0 var(--border);
        }
        .px-border-glow {
            border: 2px solid var(--primary);
            box-shadow:
                0 0 0 1px var(--bg),
                4px 4px 0 var(--primary),
                0 0 20px rgba(108,59,255,0.3),
                inset 0 0 20px rgba(108,59,255,0.05);
        }
        .px-border-accent {
            border: 2px solid var(--accent);
            box-shadow:
                0 0 0 1px var(--bg),
                4px 4px 0 var(--accent),
                0 0 20px rgba(0,255,136,0.2);
        }

        /* ===== PIXEL CORNERS ===== */
        .pixel-corners {
            clip-path: polygon(
                0 8px, 8px 8px, 8px 0,
                calc(100% - 8px) 0, calc(100% - 8px) 8px, 100% 8px,
                100% calc(100% - 8px), calc(100% - 8px) calc(100% - 8px), calc(100% - 8px) 100%,
                8px 100%, 8px calc(100% - 8px), 0 calc(100% - 8px)
            );
        }

        /* ===== NAVIGATION ===== */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(5,5,8,0.92);
            backdrop-filter: blur(8px);
            border-bottom: 2px solid var(--border);
            box-shadow: 0 2px 0 var(--primary), 0 4px 30px rgba(108,59,255,0.15);
        }
        .nav-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo-sprite {
            width: 40px;
            height: 40px;
            image-rendering: pixelated;
            position: relative;
        }
        .logo-sprite svg { width: 100%; height: 100%; }
        .logo-text {
            font-family: 'Press Start 2P', monospace;
            font-size: 11px;
            color: white;
            letter-spacing: 0.05em;
        }
        .logo-text span { color: var(--accent); }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            font-family: 'Silkscreen', monospace;
            font-size: 12px;
            color: var(--text-dim);
            text-decoration: none;
            transition: color 0.1s;
            letter-spacing: 0.08em;
        }
        .nav-links a:hover { color: var(--accent); text-shadow: 0 0 8px var(--accent); }
        .nav-btn {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            padding: 10px 18px;
            background: var(--primary);
            color: white;
            border: none;
            cursor: pointer;
            clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
            letter-spacing: 0.06em;
            transition: all 0.1s;
            text-decoration: none;
            display: inline-block;
        }
        .nav-btn:hover {
            background: var(--accent);
            color: var(--bg);
            box-shadow: 0 0 16px var(--accent);
        }

        /* ===== SECTION WRAPPER ===== */
        .section-wrap {
            position: relative;
            z-index: 1;
        }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 24px 60px;
            text-align: center;
            position: relative;
        }

        /* Grid floor perspective */
        .hero-grid {
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 55%;
            background-image:
                linear-gradient(rgba(108,59,255,0.15) 1px, transparent 1px),
                linear-gradient(90deg, rgba(108,59,255,0.15) 1px, transparent 1px);
            background-size: 60px 60px;
            transform: perspective(600px) rotateX(60deg);
            transform-origin: bottom center;
            pointer-events: none;
        }
        .hero-grid::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 40%;
            background: linear-gradient(to top, var(--bg), transparent);
        }

        /* Glow orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
        }
        .hero-orb-1 {
            width: 400px; height: 400px;
            background: rgba(108,59,255,0.25);
            top: 10%; left: 5%;
        }
        .hero-orb-2 {
            width: 350px; height: 350px;
            background: rgba(255,58,255,0.12);
            top: 20%; right: 5%;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(0,255,136,0.08);
            border: 1px solid rgba(0,255,136,0.3);
            margin-bottom: 32px;
        }
        .badge-dot {
            width: 8px; height: 8px;
            background: var(--accent);
            box-shadow: 0 0 8px var(--accent);
            animation: blink-dot 1.2s step-end infinite;
        }
        @keyframes blink-dot { 50% { opacity: 0; } }
        .hero-badge span {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            color: var(--accent);
            letter-spacing: 0.1em;
        }

        .hero-title {
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(20px, 4vw, 38px);
            line-height: 1.6;
            color: white;
            margin-bottom: 12px;
        }
        .hero-title .line2 {
            color: var(--accent);
            display: block;
            margin-top: 16px;
            text-shadow: 0 0 30px rgba(0,255,136,0.5);
        }
        .hero-title .line3 {
            color: var(--accent2);
            display: block;
            margin-top: 12px;
            font-size: 0.7em;
            text-shadow: 0 0 30px rgba(255,58,255,0.4);
        }

        .hero-sub {
            font-family: 'VT323', monospace;
            font-size: 22px;
            color: var(--text-dim);
            max-width: 560px;
            margin: 28px auto 40px;
            line-height: 1.5;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            font-family: 'Silkscreen', monospace;
            font-size: 13px;
            padding: 14px 28px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            letter-spacing: 0.08em;
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
            transition: all 0.1s;
            display: inline-block;
            position: relative;
        }
        .btn-primary::after {
            content: '';
            position: absolute;
            bottom: -5px; right: -5px;
            width: 100%; height: 100%;
            background: rgba(108,59,255,0.3);
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
            z-index: -1;
            transition: all 0.1s;
        }
        .btn-primary:hover {
            background: var(--primary-glow);
            box-shadow: 0 0 24px rgba(108,59,255,0.6);
            transform: translate(-2px,-2px);
        }
        .btn-primary:hover::after { bottom: -3px; right: -3px; }

        .btn-secondary {
            font-family: 'Silkscreen', monospace;
            font-size: 13px;
            padding: 12px 28px;
            background: transparent;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.08em;
            border: 2px solid var(--accent);
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
            transition: all 0.1s;
            display: inline-block;
        }
        .btn-secondary:hover {
            background: rgba(0,255,136,0.1);
            box-shadow: 0 0 20px rgba(0,255,136,0.3);
        }

        /* ===== SCROLL INDICATOR ===== */
        .scroll-ind {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            z-index: 2;
        }
        .scroll-arrow {
            width: 16px; height: 16px;
            border-right: 2px solid var(--primary);
            border-bottom: 2px solid var(--primary);
            transform: rotate(45deg);
            animation: bounce-arrow 1.4s ease-in-out infinite;
        }
        .scroll-arrow:nth-child(2) { animation-delay: 0.2s; opacity: 0.6; }
        @keyframes bounce-arrow {
            0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
            50% { transform: rotate(45deg) translateY(4px); opacity: 0.4; }
        }

        /* ===== SECTION HEADER ===== */
        .sec-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .sec-tag {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            color: var(--accent);
            letter-spacing: 0.15em;
            margin-bottom: 12px;
            display: block;
        }
        .sec-title {
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(16px, 2.5vw, 24px);
            color: white;
            line-height: 1.5;
        }
        .sec-title span { color: var(--primary-glow); }
        .sec-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            margin: 20px auto 0;
        }

        /* ===== APPS SECTION ===== */
        .apps-section {
            padding: 80px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .app-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            background: var(--surface);
            border: 2px solid var(--primary);
            box-shadow: 6px 6px 0 var(--primary), 0 0 40px rgba(108,59,255,0.15);
            position: relative;
            overflow: hidden;
        }
        .app-showcase::before {
            content: 'FEATURED APP';
            position: absolute;
            top: 0; left: 0;
            font-family: 'Silkscreen', monospace;
            font-size: 10px;
            background: var(--primary);
            color: white;
            padding: 6px 14px;
            letter-spacing: 0.1em;
            z-index: 3;
        }

        /* Corner decorations */
        .app-showcase::after {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 80px; height: 80px;
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 4px,
                rgba(108,59,255,0.1) 4px,
                rgba(108,59,255,0.1) 8px
            );
            pointer-events: none;
        }

        .app-info {
            padding: 48px 40px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .app-icon-row {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
        }
        .app-icon {
            width: 72px; height: 72px;
            background: var(--primary);
            border: 2px solid var(--primary-glow);
            box-shadow: 4px 4px 0 rgba(108,59,255,0.4), 0 0 20px rgba(108,59,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
        }
        .app-icon-inner {
            font-family: 'Press Start 2P', monospace;
            font-size: 18px;
            color: white;
        }
        .app-name {
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            color: white;
            line-height: 1.6;
        }
        .app-genre {
            font-family: 'Silkscreen', monospace;
            font-size: 12px;
            color: var(--accent);
            margin-top: 4px;
            letter-spacing: 0.08em;
        }

        .app-desc {
            font-family: 'VT323', monospace;
            font-size: 20px;
            color: var(--text-dim);
            line-height: 1.5;
            margin-bottom: 28px;
        }

        .store-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }
        .store-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 18px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            letter-spacing: 0.06em;
            transition: all 0.15s;
            clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
        }
        .store-btn:hover {
            background: rgba(255,255,255,0.12);
            border-color: rgba(255,255,255,0.5);
            box-shadow: 0 0 14px rgba(255,255,255,0.1);
        }
        .store-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

        .app-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }
        .stat-box {
            background: rgba(108,59,255,0.06);
            border: 1px solid rgba(108,59,255,0.2);
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stat-icon {
            width: 32px; height: 32px;
            background: rgba(108,59,255,0.15);
            border: 1px solid rgba(108,59,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }
        .stat-label {
            font-family: 'Press Start 2P', monospace;
            font-size: 8px;
            color: white;
            line-height: 1.8;
        }
        .stat-sub {
            font-family: 'VT323', monospace;
            font-size: 15px;
            color: var(--text-dim);
        }

        /* Phone mockup side */
        .app-visual {
            background: rgba(0,0,0,0.3);
            border-left: 2px solid rgba(108,59,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 32px;
            position: relative;
            overflow: hidden;
        }
        .app-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 30px,
                    rgba(108,59,255,0.03) 30px,
                    rgba(108,59,255,0.03) 31px
                ),
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 30px,
                    rgba(108,59,255,0.03) 30px,
                    rgba(108,59,255,0.03) 31px
                );
        }

        .phone-wrap {
            position: relative;
            width: 220px;
            z-index: 2;
        }
        .phone-body {
            background: #0a0a14;
            border: 3px solid #1a1a3a;
            box-shadow:
                0 0 0 1px #0d0d20,
                8px 8px 0 #1a1a3a,
                0 0 60px rgba(108,59,255,0.2);
            clip-path: polygon(
                0 12px, 12px 12px, 12px 0, calc(100% - 12px) 0, calc(100% - 12px) 12px, 100% 12px,
                100% calc(100% - 12px), calc(100% - 12px) calc(100% - 12px), calc(100% - 12px) 100%,
                12px 100%, 12px calc(100% - 12px), 0 calc(100% - 12px)
            );
            padding: 14px 10px;
        }
        .phone-screen {
            background: black;
            aspect-ratio: 9/19;
            overflow: hidden;
            position: relative;
        }
        .phone-screen video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CRT effect on screen */
        .phone-screen::after {
            content: '';
            position: absolute;
            inset: 0;
            background: repeating-linear-gradient(
                0deg,
                rgba(0,0,0,0.1),
                rgba(0,0,0,0.1) 1px,
                transparent 1px,
                transparent 3px
            );
            pointer-events: none;
            z-index: 2;
        }

        .video-controls {
            position: absolute;
            bottom: 0; left: 0; width: 100%;
            padding: 12px 8px 8px;
            background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
            z-index: 3;
        }
        .progress-bar {
            height: 3px;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 8px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background: var(--accent);
            width: 0%;
            box-shadow: 0 0 6px var(--accent);
            transition: width 0.1s linear;
        }
        .ctrl-row {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        .ctrl-btn {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            color: white;
            font-family: 'VT323', monospace;
            font-size: 14px;
            padding: 4px 10px;
            cursor: pointer;
            transition: all 0.1s;
        }
        .ctrl-btn:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        /* side buttons */
        .phone-btn-right {
            position: absolute;
            right: -8px; top: 30%;
            display: flex; flex-direction: column; gap: 8px;
        }
        .phone-btn {
            width: 6px;
            background: #1a1a3a;
            border: 1px solid #2a2a5a;
        }
        .phone-btn:nth-child(1) { height: 20px; }
        .phone-btn:nth-child(2) { height: 30px; }

        /* HUD corners on phone card */
        .hud-corner {
            position: absolute;
            width: 20px; height: 20px;
            pointer-events: none;
        }
        .hud-corner::before, .hud-corner::after {
            content: '';
            position: absolute;
            background: var(--accent);
        }
        .hud-corner::before { width: 100%; height: 2px; }
        .hud-corner::after { width: 2px; height: 100%; }
        .hud-tl { top: 16px; left: 16px; }
        .hud-tr { top: 16px; right: 16px; transform: scaleX(-1); }
        .hud-bl { bottom: 16px; left: 16px; transform: scaleY(-1); }
        .hud-br { bottom: 16px; right: 16px; transform: scale(-1); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .app-showcase { grid-template-columns: 1fr; }
            .app-visual { display: none; }
            .build-grid { grid-template-columns: 1fr 1fr; }
            .contact-cards { grid-template-columns: 1fr; }
            .legal-grid { grid-template-columns: 1fr; }
            .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
        }
        @media (max-width: 600px) {
            .nav-links { display: none; }
            .build-grid { grid-template-columns: 1fr; }
            .hero-title { font-size: 18px; }
            .contact-panel { padding: 28px 20px; }
        }

        /* ===== GLITCH TITLE EFFECT ===== */
        @keyframes glitch {
            0%, 90%, 100% { text-shadow: none; transform: none; }
            91% { text-shadow: -2px 0 var(--accent2), 2px 0 var(--accent); transform: skewX(-1deg); }
            93% { text-shadow: 2px 0 var(--accent2), -2px 0 var(--accent); transform: skewX(1deg); }
            95% { text-shadow: none; transform: none; }
        }
        .hero-title { animation: glitch 6s step-end infinite; }

        /* ===== HP BAR (fun hero element) ===== */
        .hp-bar-wrap {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }
        .hp-label {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            color: var(--text-dim);
        }
        .hp-bar {
            width: 140px;
            height: 12px;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(0,255,136,0.3);
            overflow: hidden;
        }
        .hp-fill {
            width: 88%;
            height: 100%;
            background: linear-gradient(90deg, #00aa55, var(--accent));
            box-shadow: 0 0 8px var(--accent);
            animation: hp-pulse 2s ease-in-out infinite;
        }
        @keyframes hp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.8; } }
        .hp-val {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            color: var(--accent);
        }

        /* XP bar */
        .xp-bar-wrap {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
        }
        .xp-label { font-family: 'Silkscreen', monospace; font-size: 11px; color: var(--text-dim); }
        .xp-bar {
            width: 140px; height: 12px;
            background: rgba(0,0,0,0.4);
            border: 1px solid rgba(255,204,0,0.3);
            overflow: hidden;
        }
        .xp-fill {
            width: 62%;
            height: 100%;
            background: linear-gradient(90deg, #aa8800, var(--accent3));
            box-shadow: 0 0 8px var(--accent3);
        }
        .xp-val { font-family: 'Silkscreen', monospace; font-size: 11px; color: var(--accent3); }

        /* ===== POLICY PAGE STYLES ===== */
        .policy-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 100px 24px 60px;
            position: relative;
            z-index: 1;
        }

        .legal-header {
            text-align: center;
            padding: 40px;
            background: var(--surface);
            border: 2px solid var(--primary);
            box-shadow: 4px 4px 0 var(--primary);
            margin-bottom: 40px;
            position: relative;
        }

        .legal-header .brand {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            color: var(--accent);
            letter-spacing: 0.1em;
            margin-bottom: 12px;
            display: block;
        }

        .legal-header h1 {
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(14px, 3vw, 20px);
            color: white;
            line-height: 1.6;
        }

        .policy-section {
            background: var(--surface);
            border: 2px solid var(--border);
            padding: 32px;
            margin-bottom: 24px;
            position: relative;
            transition: all 0.15s;
        }

        .policy-section:hover {
            border-color: var(--primary);
            box-shadow: 4px 4px 0 var(--primary);
        }

        .policy-section h2 {
            font-family: 'Press Start 2P', monospace;
            font-size: 13px;
            color: var(--accent);
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border);
        }

        .policy-section h3 {
            font-family: 'Silkscreen', monospace;
            font-size: 14px;
            color: white;
            margin: 20px 0 12px;
        }

        .policy-section p {
            font-family: 'VT323', monospace;
            font-size: 20px;
            color: var(--text);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .policy-section strong {
            color: white;
        }

        .policy-section ul, .policy-section ol {
            list-style: none;
            padding-left: 0;
            margin: 16px 0;
        }

        .policy-section li {
            font-family: 'VT323', monospace;
            font-size: 20px;
            color: var(--text);
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
            line-height: 1.5;
        }

        .policy-section li::before {
            content: '■';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 12px;
            top: 10px;
        }

        .policy-section a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.1s;
        }

        .policy-section a:hover {
            color: var(--accent);
            text-shadow: 0 0 8px var(--accent);
        }

        .alert-box {
            background: rgba(255, 58, 255, 0.08);
            border: 2px solid rgba(255, 58, 255, 0.3);
            padding: 20px 24px;
            margin: 20px 0;
            position: relative;
        }

        .alert-box::before {
            content: '!';
            position: absolute;
            top: 16px;
            left: 16px;
            font-family: 'Press Start 2P', monospace;
            font-size: 14px;
            color: var(--accent2);
        }

        .alert-box p {
            margin-left: 0;
            padding-left: 28px;
        }

        .policy-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .policy-intro p {
            font-family: 'VT323', monospace;
            font-size: 22px;
            color: var(--text-dim);
            line-height: 1.5;
        }

        .last-updated {
            font-family: 'Silkscreen', monospace;
            font-size: 12px;
            color: var(--text-dim);
            margin-bottom: 20px;
            display: block;
        }

        /* ===== PRODUCT CARDS ===== */
        .products-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .product-card {
            background: var(--surface);
            position: relative;
            overflow: hidden;
            transition: all 0.15s;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translate(-3px, -3px);
        }

        .product-card.rivclaw {
            border: 2px solid var(--accent);
            box-shadow: 4px 4px 0 var(--accent);
        }

        .product-card.rivclaw:hover {
            box-shadow: 6px 6px 0 var(--accent), 0 0 30px rgba(0, 255, 136, 0.15);
        }

        .product-card.backclaw {
            border: 2px solid var(--accent2);
            box-shadow: 4px 4px 0 var(--accent2);
        }

        .product-card.backclaw:hover {
            box-shadow: 6px 6px 0 var(--accent2), 0 0 30px rgba(255, 58, 255, 0.15);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            z-index: 2;
        }

        .product-card.rivclaw::before {
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            animation: scan-line 5s linear infinite;
        }

        .product-card.backclaw::before {
            background: linear-gradient(90deg, transparent, var(--accent2), transparent);
            animation: scan-line 4s linear infinite 1s;
        }

        @keyframes scan-line {
            0% { top: 0; }
            100% { top: 100%; }
        }

        .product-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            pointer-events: none;
            z-index: 1;
        }

        .product-card.rivclaw::after {
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 4px,
                rgba(0, 255, 136, 0.06) 4px,
                rgba(0, 255, 136, 0.06) 8px
            );
        }

        .product-card.backclaw::after {
            background: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 4px,
                rgba(255, 58, 255, 0.06) 4px,
                rgba(255, 58, 255, 0.06) 8px
            );
        }

        .product-card-header {
            padding: 28px 28px 0;
            position: relative;
            z-index: 2;
        }

        .product-type-badge {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            padding: 4px 10px;
            border: 1px solid;
            display: inline-block;
            margin-bottom: 18px;
            letter-spacing: 0.12em;
        }

        .rivclaw .product-type-badge {
            color: var(--accent);
            border-color: rgba(0, 255, 136, 0.35);
            background: rgba(0, 255, 136, 0.06);
        }

        .backclaw .product-type-badge {
            color: var(--accent2);
            border-color: rgba(255, 58, 255, 0.35);
            background: rgba(255, 58, 255, 0.06);
        }

        .product-icon-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .product-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        }

        .rivclaw .product-icon {
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid rgba(0, 255, 136, 0.4);
        }

        .backclaw .product-icon {
            background: rgba(255, 58, 255, 0.1);
            border: 2px solid rgba(255, 58, 255, 0.4);
        }

        .product-icon svg {
            width: 28px;
            height: 28px;
        }

        .product-name {
            font-family: 'Press Start 2P', monospace;
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .rivclaw .product-name { color: #e0ffe8; }
        .backclaw .product-name { color: #ffe0ff; }

        .product-tagline {
            font-family: 'Silkscreen', monospace;
            font-size: 13px;
            letter-spacing: 0.06em;
            line-height: 1.6;
        }

        .rivclaw .product-tagline { color: var(--accent); }
        .backclaw .product-tagline { color: var(--accent2); }

        .product-card-body {
            padding: 0 28px;
            flex: 1;
            position: relative;
            z-index: 2;
        }

        .product-signal {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .signal-dot {
            width: 6px;
            height: 6px;
            flex-shrink: 0;
            animation: blink-dot 1.4s step-end infinite;
        }

        .rivclaw .signal-dot {
            background: var(--accent);
            box-shadow: 0 0 6px var(--accent);
        }

        .backclaw .signal-dot {
            background: var(--accent2);
            box-shadow: 0 0 6px var(--accent2);
            animation-delay: 0.4s;
        }

        .signal-text {
            font-family: 'VT323', monospace;
            font-size: 20px;
            letter-spacing: 0.06em;
        }

        .rivclaw .signal-text { color: rgba(0, 255, 136, 0.7); }
        .backclaw .signal-text { color: rgba(255, 58, 255, 0.7); }

        .product-desc {
            font-family: 'VT323', monospace;
            font-size: 23px;
            color: var(--text-dim);
            line-height: 1.5;
            margin-bottom: 20px;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .feature-pill {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            padding: 5px 10px;
            letter-spacing: 0.08em;
        }

        .rivclaw .feature-pill {
            background: rgba(0, 255, 136, 0.05);
            border: 1px solid rgba(0, 255, 136, 0.2);
            color: rgba(0, 255, 136, 0.8);
        }

        .backclaw .feature-pill {
            background: rgba(255, 58, 255, 0.05);
            border: 1px solid rgba(255, 58, 255, 0.2);
            color: rgba(255, 58, 255, 0.8);
        }

        .product-card-footer {
            padding: 20px 28px 28px;
            border-top: 1px solid var(--border);
            position: relative;
            z-index: 2;
            margin-top: auto;
        }

        .product-cta {
            font-family: 'Silkscreen', monospace;
            font-size: 13px;
            padding: 12px 22px;
            text-decoration: none;
            letter-spacing: 0.08em;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.15s;
            clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
        }

        .rivclaw .product-cta {
            background: rgba(0, 255, 136, 0.1);
            border: 2px solid var(--accent);
            color: var(--accent);
        }

        .rivclaw .product-cta:hover {
            background: rgba(0, 255, 136, 0.18);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
            transform: translate(-2px, -2px);
        }

        .backclaw .product-cta {
            background: rgba(255, 58, 255, 0.1);
            border: 2px solid var(--accent2);
            color: var(--accent2);
        }

        .backclaw .product-cta:hover {
            background: rgba(255, 58, 255, 0.18);
            box-shadow: 0 0 20px rgba(255, 58, 255, 0.25);
            transform: translate(-2px, -2px);
        }

        .cta-arrow {
            font-size: 14px;
            transition: transform 0.15s;
        }

        .product-cta:hover .cta-arrow {
            transform: translateX(4px);
        }

        .product-status-bar {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: 14px;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .status-indicator {
            width: 6px;
            height: 6px;
            animation: blink-dot 2s step-end infinite;
        }

        .rivclaw .status-indicator { background: var(--accent); }
        .backclaw .status-indicator { background: var(--accent2); animation-delay: 0.6s; }

        .status-label {
            font-family: 'Silkscreen', monospace;
            font-size: 11px;
            color: var(--text-dim);
            letter-spacing: 0.08em;
        }

        /* ===== PIXEL CHARACTERS ===== */
        .px-char {
            position: absolute;
            image-rendering: pixelated;
            z-index: 1;
            pointer-events: none;
        }

        .px-char-hero-l {
            bottom: 80px;
            left: 5%;
            width: 64px;
            height: 64px;
            animation: char-idle-bob 0.8s steps(1) infinite;
        }

        .px-char-hero-r {
            bottom: 80px;
            right: 5%;
            width: 64px;
            height: 64px;
            animation: char-idle-bob 0.8s steps(1) infinite 0.4s;
            transform: scaleX(-1);
        }

        .px-char-bat {
            top: 140px;
            right: 8%;
            width: 40px;
            height: 40px;
            animation: bat-fly 1s steps(1) infinite;
        }

        .px-char-slime {
            top: 160px;
            left: 8%;
            width: 40px;
            height: 40px;
            animation: slime-bounce 1.2s steps(1) infinite;
        }

        .px-char-section {
            position: absolute;
            image-rendering: pixelated;
            pointer-events: none;
            z-index: 2;
        }

        .px-char-ghost {
            width: 48px;
            height: 48px;
            right: 32px;
            top: 32px;
            animation: ghost-float 1.4s steps(1) infinite;
        }

        .px-char-knight {
            width: 64px;
            height: 64px;
            left: 24px;
            bottom: 24px;
            animation: char-idle-bob 0.8s steps(1) infinite;
        }

        .px-char-wizard {
            width: 64px;
            height: 64px;
            right: 24px;
            bottom: 24px;
            animation: char-idle-bob 0.8s steps(1) infinite 0.3s;
            transform: scaleX(-1);
        }

        @keyframes char-idle-bob {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }

        @keyframes bat-fly {
            0%   { transform: translateY(0) scaleX(1); }
            25%  { transform: translateY(-8px) scaleX(1); }
            50%  { transform: translateY(-4px) scaleX(-1); }
            75%  { transform: translateY(-12px) scaleX(-1); }
            100% { transform: translateY(0) scaleX(1); }
        }

        @keyframes slime-bounce {
            0%,100% { transform: scaleY(1) translateY(0); }
            40%     { transform: scaleY(0.7) translateY(6px); }
            60%     { transform: scaleY(1.2) translateY(-8px); }
            80%     { transform: scaleY(0.9) translateY(2px); }
        }

        @keyframes ghost-float {
            0%,100% { transform: translateY(0) scaleX(1); opacity: 1; }
            30%     { transform: translateY(-6px) scaleX(1); opacity: 0.85; }
            60%     { transform: translateY(-10px) scaleX(-1); opacity: 0.7; }
            80%     { transform: translateY(-4px) scaleX(-1); opacity: 0.9; }
        }

        @media (max-width: 900px) {
            .products-grid { grid-template-columns: 1fr; }
            .px-char { display: none; }
        }
