    <style>
        /* ============================================
           NEAL AEROSPACE - BLEEDING EDGE DESIGN SYSTEM
           ============================================ */
        
        @font-face {
            font-family: 'Orbitron';
            src: url("/assets/fonts/orbitron-600.woff2") format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'Orbitron';
            src: url("/assets/fonts/orbitron-700.woff2") format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'Orbitron';
            src: url("/assets/fonts/orbitron-800.woff2") format('woff2');
            font-weight: 800;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'Rajdhani';
            src: url("/assets/fonts/rajdhani-400.woff2") format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'Rajdhani';
            src: url("/assets/fonts/rajdhani-500.woff2") format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'Rajdhani';
            src: url("/assets/fonts/rajdhani-600.woff2") format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'Rajdhani';
            src: url("/assets/fonts/rajdhani-700.woff2") format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'JetBrains Mono';
            src: url("/assets/fonts/jetbrains-mono-400.woff2") format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'JetBrains Mono';
            src: url("/assets/fonts/jetbrains-mono-700.woff2") format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: block;
        }

        @font-face {
            font-family: 'Apestron Trial Version';
            src: url("/assets/fonts/Apestron Trial Version.ttf") format('truetype');
            font-weight: normal;
            font-style: normal;
            font-display: block;
        }

        html.fonts-loading body {
            visibility: hidden;
        }

        :root {
            --neal-gold: #ffb00b;
            --neal-gold-dim: rgba(255, 176, 11, 0.6);
            --neal-gold-glow: rgba(255, 176, 11, 0.3);
            --neal-purple: #4c1d95;
            --neal-purple-glow: rgba(76, 29, 149, 0.4);
            --bg-dark: #000;
            --bg-darker: #050505;
            --grid-color: rgba(255, 176, 11, 0.03);
        }

        /* Base styles */
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--bg-dark);
            color: #fff;
            font-weight: 500;
            font-size: 1.1rem;
            letter-spacing: 0.02em;
        }

        /* Headings use Orbitron for that futuristic aerospace feel */
        h1, h2, h3, .font-extrabold {
            font-family: 'Orbitron', sans-serif;
        }

        /* Monospace elements for technical data */
        .mono, code, .tech-data {
            font-family: 'JetBrains Mono', monospace;
        }

        .apestron-font {
            font-family: 'Apestron Trial Version', 'Orbitron', sans-serif;
        }

        .brand-lockup {
            line-height: 0.9;
        }

        .brand-mark {
            font-size: 1.35rem;
            letter-spacing: 0.02em;
        }

        .brand-wordmark {
            font-size: 1.95rem;
            letter-spacing: 0.08em;
            line-height: 0.9;
        }

        .brand-submark {
            font-size: 0.585rem;
            letter-spacing: 0.24em;
            line-height: 1;
        }

        /* Tech grid background overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(var(--grid-color) 1px, transparent 1px),
                linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.8;
        }

        /* Scanline effect overlay */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 0, 0, 0.03) 2px,
                rgba(0, 0, 0, 0.03) 4px
            );
            pointer-events: none;
            z-index: 9999;
        }

        /* Smooth scrolling */
        html.smooth-scroll {
            scroll-behavior: smooth;
        }

        /* ============================================
           HIGH-TECH BUTTON STYLES
           ============================================ */
        .explore-btn {
            position: relative;
            border: 1px solid var(--neal-gold);
            padding: 0.875rem 2.5rem;
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: inline-block;
            background: transparent;
            color: var(--neal-gold);
            overflow: hidden;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
        }

        .explore-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, var(--neal-gold-glow), transparent);
            transition: left 0.5s ease;
        }

        .explore-btn::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            border: 1px solid rgba(255, 176, 11, 0.2);
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            pointer-events: none;
        }

        .explore-btn:hover {
            background: var(--neal-gold);
            color: black;
            transform: translateY(-2px);
            box-shadow: 
                0 0 30px var(--neal-gold-glow),
                0 0 60px rgba(255, 176, 11, 0.15),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
        }

        .explore-btn:hover::before {
            left: 100%;
        }

        /* Custom styles for the mobile menu overlay */
        .mobile-menu {
            transition: transform 0.3s ease-in-out;
        }

        /* ============================================
           HERO & FULL SECTION STYLES
           ============================================ */
        .full-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Tech overlay for hero sections */
        .full-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%),
                radial-gradient(ellipse at bottom right, var(--neal-gold-glow) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }

        /* Geometric accent lines */
        .full-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(0deg, rgba(0,0,0,1) 0%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }

        .full-section > * {
            position: relative;
            z-index: 2;
        }

        /* Side accent bars */
        .hero-accent-left,
        .hero-accent-right {
            position: absolute;
            width: 2px;
            height: 40%;
            background: linear-gradient(180deg, transparent, var(--neal-gold-dim), transparent);
            z-index: 3;
        }

        .hero-accent-left { left: 5%; top: 30%; }
        .hero-accent-right { right: 5%; top: 30%; }

        /* Styling for background videos */
        .bg-video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: -2;
        }

        /* Overlay for video readability */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: -1;
        }

        /* Hero title styling */
        .hero-title {
            font-family: 'Orbitron', sans-serif;
            font-weight: 800;
            letter-spacing: 0.05em;
            line-height: 1.1;
        }

        .hero-title span {
            color: var(--neal-gold);
            text-shadow: 0 0 30px var(--neal-gold-glow);
        }

        /* Hero subtitle */
        .hero-subtitle {
            font-family: 'Rajdhani', sans-serif;
            font-weight: 400;
            font-size: 1.25rem;
            line-height: 1.7;
            letter-spacing: 0.03em;
            color: rgba(255, 255, 255, 0.75);
        }

        @media (min-width: 1024px) {
            .hero-subtitle {
                font-size: 1.35rem;
            }
        }

        /* Body text paragraphs */
        .text-gray-400 {
            font-size: 1.05rem;
            line-height: 1.7;
        }

        .text-gray-300 {
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Data readout style */
        .data-readout {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: var(--neal-gold-dim);
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .data-readout::before {
            content: '[ ';
        }

        .data-readout::after {
            content: ' ]';
        }

        /* Fade-in animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Apply fade-in to page sections */
        .animate-on-load {
            animation: fadeIn 0.8s ease-out forwards;
        }

        .animate-scale {
            animation: fadeInScale 0.6s ease-out forwards;
        }

        /* Stagger children animations */
        .stagger-children > * {
            opacity: 0;
            animation: fadeIn 0.6s ease-out forwards;
        }

        .stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
        .stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
        .stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
        .stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
        .stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
        .stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

        /* ============================================
           TECH SECTION DIVIDERS
           ============================================ */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                var(--neal-gold-dim) 20%, 
                var(--neal-gold) 50%, 
                var(--neal-gold-dim) 80%, 
                transparent
            );
            position: relative;
            z-index: 1;
            opacity: 0.5;
        }

        .section-divider::before,
        .section-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 8px;
            height: 8px;
            background: var(--neal-gold);
            transform: translateY(-50%) rotate(45deg);
        }

        .section-divider::before { left: 20%; }
        .section-divider::after { right: 20%; }

        /* ============================================
           NAVIGATION STYLES
           ============================================ */
        .nav-link {
            position: relative;
            border-bottom: none;
            transition: color 0.3s ease;
            font-family: 'Orbitron', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 0.1em;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--neal-gold);
            box-shadow: 0 0 10px var(--neal-gold-glow);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--neal-gold);
        }

        /* ============================================
           FUTURISTIC CARD EFFECTS
           ============================================ */
        .hover-lift {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .hover-lift::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid transparent;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            pointer-events: none;
        }

        .hover-lift:hover {
            transform: translateY(-8px) scale(1.02);
        }

        .hover-lift:hover::before {
            border-color: var(--neal-gold-dim);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 30px var(--neal-gold-glow),
                inset 0 1px 0 rgba(255, 176, 11, 0.1);
        }

                /* Tech card style */
        .tech-card {
            background: linear-gradient(135deg, rgba(255, 176, 11, 0.03) 0%, transparent 50%);
            border: 1px solid rgba(255, 176, 11, 0.1);
            position: relative;
            overflow: hidden;
            transition: box-shadow 0.35s ease;
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--neal-gold), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .tech-card:hover {
            box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 176, 11, 0.10);
        }

        .tech-card:hover::before {
            opacity: 1;
        }

        /* Reusable panel card — gallery, quick-links, latest (replaces flat gray) */
        .panel-card {
            background: linear-gradient(135deg, rgba(255, 176, 11, 0.025) 0%, rgba(0, 0, 0, 0) 60%);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        }
        .panel-card:hover {
            border-color: rgba(255, 176, 11, 0.35);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(255, 176, 11, 0.08);
            transform: translateY(-4px);
        }

                /* Gallery image zoom-on-hover */
        .panel-card.group img {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform;
        }
        .panel-card.group:hover img {
            transform: scale(1.06);
        }

        /* Icon box for feature cards (replaces emoji) */
        .icon-box {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neal-gold);
            border: 1px solid rgba(255, 176, 11, 0.3);
            border-radius: 12px;
            background: rgba(255, 176, 11, 0.05);
        }
        .icon-box svg {
            width: 24px;
            height: 24px;
        }

        /* On-brand "Coming Soon" status badge (replaces generic violet) */
        .soon-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1.25rem;
            border: 1px solid rgba(255, 176, 11, 0.4);
            color: var(--neal-gold);
            background: rgba(255, 176, 11, 0.06);
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }
        .soon-badge--cut {
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
        }
        .soon-badge--pill {
            border-radius: 9999px;
        }
        .soon-badge .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--neal-gold);
            box-shadow: 0 0 8px var(--neal-gold-glow);
            animation: pulseDot 1.8s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(0.8); }
        }

        /* Corner accents for cards */
        .corner-accent {
            position: relative;
        }

        .corner-accent::before,
        .corner-accent::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-color: var(--neal-gold);
            border-style: solid;
            border-width: 0;
            opacity: 0.5;
        }

        .corner-accent::before {
            top: -1px;
            left: -1px;
            border-top-width: 2px;
            border-left-width: 2px;
        }

        .corner-accent::after {
            bottom: -1px;
            right: -1px;
            border-bottom-width: 2px;
            border-right-width: 2px;
        }

        /* ============================================
           ANIMATIONS & EFFECTS
           ============================================ */
        
        /* Data stream animation */
        @keyframes dataStream {
            0% { transform: translateY(-100%); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(100vh); opacity: 0; }
        }

        /* Pulse glow animation */
        @keyframes pulseGlow {
            0%, 100% { 
                box-shadow: 0 0 20px var(--neal-gold-glow);
                opacity: 1;
            }
            50% { 
                box-shadow: 0 0 40px var(--neal-gold-glow), 0 0 60px rgba(255, 176, 11, 0.1);
                opacity: 0.8;
            }
        }

        /* Tech flicker animation */
        @keyframes techFlicker {
            0%, 100% { opacity: 1; }
            92% { opacity: 1; }
            93% { opacity: 0.8; }
            94% { opacity: 1; }
            96% { opacity: 0.9; }
            97% { opacity: 1; }
        }

        /* Scroll indicator */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .scroll-indicator {
            animation: bounce 2s infinite;
        }

        /* Glow text effect */
        .glow-text {
            color: var(--neal-gold);
            text-shadow: 
                0 0 10px var(--neal-gold-glow),
                0 0 20px var(--neal-gold-glow),
                0 0 40px rgba(255, 176, 11, 0.2);
            animation: techFlicker 4s ease-in-out infinite;
        }

        /* Animated border */
        @keyframes borderGlow {
            0%, 100% { border-color: rgba(255, 176, 11, 0.2); }
            50% { border-color: rgba(255, 176, 11, 0.5); }
        }

        .animated-border {
            animation: borderGlow 3s ease-in-out infinite;
        }

        /* Page transition */
        .page-transition {
            animation: fadeInScale 0.5s ease-out;
        }

        /* Link hover effects */
        a {
            transition: all 0.3s ease;
        }

        /* Tech input styling */
        button, input, select, textarea {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        input:focus, select:focus, textarea:focus {
            transform: scale(1.01);
            border-color: var(--neal-gold) !important;
            box-shadow: 0 0 20px var(--neal-gold-glow);
        }

        /* Status indicator */
        .status-online {
            position: relative;
        }

        .status-online::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -16px;
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            transform: translateY(-50%);
            animation: pulseGlow 2s ease-in-out infinite;
        }

        /* Typing cursor effect */
        .typing-cursor::after {
            content: '|';
            animation: techFlicker 1s step-end infinite;
            color: var(--neal-gold);
        }

        /* Tech stat number */
        .tech-stat {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            color: var(--neal-gold);
            text-shadow: 0 0 20px var(--neal-gold-glow);
        }

        /* ============================================
           NEAL CASINO - Premium Styles
           ============================================ */
        
        /* Casino Background */
        .casino-bg {
            background: radial-gradient(ellipse at top, #1a1a2e 0%, #0f0f1a 50%, #000 100%);
            position: relative;
        }
        .casino-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffb00b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        /* Glassmorphism Card */
        .casino-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 176, 11, 0.15);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
        }
        .casino-card:hover {
            border-color: rgba(255, 176, 11, 0.3);
            box-shadow: 0 12px 48px rgba(255, 176, 11, 0.15), inset 0 1px 0 rgba(255,255,255,0.1);
        }

        /* Game Card Hover Effect */
        .game-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }
        .game-card:hover {
            transform: translateY(-8px) scale(1.02);
        }
        .game-card:hover .game-card-glow {
            opacity: 1;
        }
        .game-card-glow {
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #ffb00b 0%, #ff6b00 50%, #ffb00b 100%);
            border-radius: 22px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
            filter: blur(8px);
        }

        /* Premium Button */
        .casino-btn {
            background: linear-gradient(135deg, #ffb00b 0%, #ff8c00 50%, #ffb00b 100%);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
            color: #000;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border-radius: 12px;
            padding: 16px 32px;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 176, 11, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }
        .casino-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 176, 11, 0.5), inset 0 1px 0 rgba(255,255,255,0.3);
        }
        .casino-btn:active {
            transform: translateY(0);
        }
        .casino-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Secondary Button */
        .casino-btn-secondary {
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            border: 1px solid rgba(255, 176, 11, 0.3);
            color: #ffb00b;
            font-weight: 700;
            border-radius: 10px;
            padding: 12px 24px;
            transition: all 0.3s ease;
        }
        .casino-btn-secondary:hover {
            background: rgba(255, 176, 11, 0.1);
            border-color: #ffb00b;
        }

        /* Input Styling */
        .casino-input {
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 176, 11, 0.2);
            border-radius: 10px;
            padding: 14px 18px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .casino-input:focus {
            outline: none;
            border-color: #ffb00b;
            box-shadow: 0 0 20px rgba(255, 176, 11, 0.2);
        }
        .casino-input:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(50, 50, 50, 0.4);
            border-color: rgba(100, 100, 100, 0.3);
        }

        /* Balance Display */
        .balance-display {
            background: linear-gradient(135deg, rgba(255, 176, 11, 0.1) 0%, rgba(255, 136, 0, 0.05) 100%);
            border: 1px solid rgba(255, 176, 11, 0.3);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
        }
        .balance-display::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255, 176, 11, 0.1), transparent);
            animation: rotateBg 10s linear infinite;
        }
        @keyframes rotateBg {
            100% { transform: rotate(360deg); }
        }

        /* Dice slider */
        .dice-slider {
            -webkit-appearance: none;
            appearance: none;
            height: 12px;
            background: linear-gradient(90deg, #ef4444 0%, #ef4444 50%, #22c55e 50%, #22c55e 100%);
            border-radius: 6px;
            outline: none;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
        }
        .dice-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            border: 3px solid #ffb00b;
        }
        .dice-slider::-moz-range-thumb {
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
            border-radius: 50%;
            cursor: pointer;
            border: 3px solid #ffb00b;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        /* Mode Toggle */
        .mode-toggle-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .mode-toggle-btn.active {
            background: linear-gradient(135deg, rgba(255, 176, 11, 0.2) 0%, rgba(255, 136, 0, 0.1) 100%);
            border-color: #ffb00b;
            color: #ffb00b;
            box-shadow: 0 0 20px rgba(255, 176, 11, 0.2);
        }

        /* Slot Reels */
        .slot-reel-container {
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            border: 3px solid rgba(255, 176, 11, 0.3);
            border-radius: 16px;
            box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 176, 11, 0.1);
        }
        .slot-reel {
            overflow: hidden;
        }
        .slot-reel.spinning .slot-symbol {
            animation: slotSpin 0.08s linear infinite;
        }
        @keyframes slotSpin {
            0% { transform: translateY(-100%) rotateX(20deg); }
            100% { transform: translateY(100%) rotateX(-20deg); }
        }

        /* Win Animation */
        @keyframes winPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.08); }
        }
        @keyframes winGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 176, 11, 0.5); }
            50% { box-shadow: 0 0 40px rgba(255, 176, 11, 0.8), 0 0 60px rgba(255, 176, 11, 0.4); }
        }
        .win-animation {
            animation: winPulse 0.3s ease-in-out 3, winGlow 0.3s ease-in-out 3;
        }

        /* History Badge */
        .history-badge {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            backdrop-filter: blur(10px);
        }
        .history-badge.win {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 100%);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.5);
        }
        .history-badge.lose {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.1) 100%);
            color: #f87171;
            border: 1px solid rgba(239, 68, 68, 0.5);
        }

        /* Crash Graph */
        .crash-graph {
            background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
            border: 1px solid rgba(255, 176, 11, 0.2);
            border-radius: 16px;
        }

        /* Mines Grid */
        .mine-cell {
            background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
            border: 1px solid rgba(255, 176, 11, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .mine-cell:hover:not(.revealed) {
            background: rgba(255, 176, 11, 0.15);
            border-color: #ffb00b;
            transform: scale(1.05);
        }
        .mine-cell.revealed.gem {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 100%);
            border-color: #22c55e;
        }
        .mine-cell.revealed.mine {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.3) 0%, rgba(239, 68, 68, 0.1) 100%);
            border-color: #ef4444;
        }

        /* Blackjack Cards */
        .playing-card {
            background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            transition: all 0.3s ease;
        }
        .playing-card.face-down {
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
            border: 2px solid #ffb00b;
        }

        /* Roulette Wheel */
        .roulette-number {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .roulette-number:hover {
            transform: scale(1.1);
            z-index: 10;
        }
        .roulette-number.selected {
            box-shadow: 0 0 15px rgba(255, 176, 11, 0.8);
            border: 2px solid #ffb00b;
        }
        .roulette-red { background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%); }
        .roulette-black { background: linear-gradient(135deg, #1f2937 0%, #111827 100%); }
        .roulette-green { background: linear-gradient(135deg, #16a34a 0%, #15803d 100%); }

        /* HiLo Cards */
        .hilo-card {
            perspective: 1000px;
        }
        .hilo-card-inner {
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        .hilo-card.flipping .hilo-card-inner {
            transform: rotateY(180deg);
        }

        /* Scrollbar styling */
        .casino-scroll::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        .casino-scroll::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.3);
            border-radius: 4px;
        }
        .casino-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 176, 11, 0.4);
            border-radius: 4px;
        }
        .casino-scroll::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 176, 11, 0.6);
        }

        /* Sidebar Navigation */
        .sidebar-nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .sidebar-nav-item:hover {
            background: rgba(255, 176, 11, 0.1);
        }
        .sidebar-nav-item.active {
            background: linear-gradient(135deg, rgba(255, 176, 11, 0.2) 0%, rgba(255, 136, 0, 0.1) 100%);
            border-left: 3px solid #ffb00b;
        }

        /* Poker chip stack effect */
        .chip-stack {
            position: relative;
        }
        .chip-stack::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 2px;
            right: 2px;
            height: 4px;
            background: rgba(255, 176, 11, 0.3);
            border-radius: 50%;
            filter: blur(2px);
        }

        /* Neon text effect */
        .neon-text {
            text-shadow: 0 0 10px rgba(255, 176, 11, 0.8), 0 0 20px rgba(255, 176, 11, 0.6), 0 0 30px rgba(255, 176, 11, 0.4);
        }

        /* Crash multiplier */
        @keyframes crashPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .crash-multiplier {
            font-variant-numeric: tabular-nums;
        }
        .crash-multiplier.rising {
            animation: crashPulse 0.5s ease-in-out infinite;
        }

        /* Video poker hand indicator */
        .poker-hold-badge {
            background: linear-gradient(135deg, #ffb00b 0%, #ff8c00 100%);
            color: black;
            font-size: 10px;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 4px;
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* Form field focus glow (contact form only) */
        #contact-form input:focus,
        #contact-form select:focus,
        #contact-form textarea:focus {
            box-shadow: 0 0 0 1px rgba(255, 176, 11, 0.35), 0 0 18px rgba(255, 176, 11, 0.15);
        }

        /* Respect reduced-motion preferences */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
            .scroll-indicator, .glow-text, .animated-border, .soon-badge .dot {
                animation: none !important;
            }
        }

        /* ============================================
           MEDIA: HERO VIDEO / RENDER BACKGROUNDS
           ============================================ */
        .hero-media {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
            pointer-events: none;
        }
        .hero-media.mirror { transform: scaleX(-1); }
        .full-section.has-media::before {
            background:
                linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.12) 75%, rgba(0,0,0,0.25) 100%),
                linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 35%),
                linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 25%);
        }
        @media (max-width: 767px) {
            .full-section.has-media::before {
                background:
                    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.9) 100%);
            }
            .hero-media.mobile-right { object-position: 70% center; }
        }

        /* Render figure with caption */
        .render-figure {
            position: relative;
            border: 1px solid rgba(255, 176, 11, 0.15);
            background: #050505;
            overflow: hidden;
            cursor: zoom-in;
            margin: 0;
        }
        .render-figure img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .render-figure:hover img { transform: scale(1.04); }
        .render-figure figcaption {
            position: absolute;
            left: 0; right: 0; bottom: 0;
            padding: 0.9rem 1.1rem;
            background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.8);
            pointer-events: none;
        }
        .render-figure figcaption .data-readout { display: block; margin-bottom: 0.15rem; font-size: 0.65rem; }

        /* ============================================
           3D CAD VIEWER
           ============================================ */
        .cad-viewer {
            position: relative;
            width: 100%;
            height: 78vh;
            min-height: 480px;
            max-height: 860px;
            background: radial-gradient(ellipse at 50% 60%, #14120c 0%, #050504 60%, #000 100%);
            border: 1px solid rgba(255, 176, 11, 0.18);
            overflow: hidden;
            user-select: none;
            -webkit-user-select: none;
        }
        .cad-viewer.is-fullscreen { height: 100vh; max-height: none; border: 0; }
        .cad-stage { position: absolute; inset: 0; }
        .cad-stage canvas { display: block; width: 100% !important; height: 100% !important; outline: none; }
        .cad-viewer::after {
            content: '';
            position: absolute; inset: 0; pointer-events: none;
            background: radial-gradient(ellipse 85% 75% at 50% 45%, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%);
        }
        .cad-progress {
            position: absolute; top: 0; left: 0; height: 2px; width: 0%; z-index: 6;
            background: linear-gradient(90deg, rgba(255,176,11,0.3), var(--neal-gold));
            transition: width 0.25s ease, opacity 0.6s ease;
        }
        .cad-progress.done { opacity: 0; }
        .cad-progress.indeterminate { width: 30% !important; animation: cadSlide 1.2s ease-in-out infinite; }
        @keyframes cadSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(400%); } }

        .cad-hud { position: absolute; z-index: 5; pointer-events: none; }
        .cad-hud > * { pointer-events: auto; }
        .cad-hud-top {
            top: 0; left: 0; right: 0;
            padding: 1.1rem 1.25rem 0;
            display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
        }
        .cad-brand { min-width: 0; pointer-events: none; }
        .cad-title { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.06em; margin-top: 0.35rem; text-transform: uppercase; }
        .cad-caption { font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.55); max-width: 40ch; line-height: 1.45; margin-top: 0.2rem; }
        .cad-meta { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-top: 0.35rem; }
        .cad-select { position: relative; flex: none; }
        .cad-select select {
            appearance: none; -webkit-appearance: none;
            background: rgba(0,0,0,0.6); color: #fff;
            border: 1px solid rgba(255,176,11,0.3);
            padding: 0.55rem 2.2rem 0.55rem 0.9rem;
            font-family: 'Orbitron', sans-serif; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            cursor: pointer; outline: none; max-width: 52vw;
        }
        .cad-select::after {
            content: ''; position: absolute; right: 0.9rem; top: 50%; width: 6px; height: 6px;
            border-right: 1px solid var(--neal-gold); border-bottom: 1px solid var(--neal-gold);
            transform: translateY(-70%) rotate(45deg); pointer-events: none;
        }
        .cad-select option { background: #0a0a0a; color: #fff; }
        .cad-hint {
            position: absolute; right: 1.25rem; bottom: 5.4rem; z-index: 5;
            font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
            color: rgba(255,176,11,0.45); pointer-events: none; text-align: right;
        }
        .cad-viewer.is-engaged { box-shadow: inset 0 0 0 1px rgba(255,176,11,0.45), 0 0 30px rgba(255,176,11,0.08); }
        .cad-hud-bottom {
            left: 0; right: 0; bottom: 0;
            padding: 0 1rem 1rem;
            display: flex; justify-content: center;
        }
        .cad-panel {
            display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; justify-content: center;
            background: rgba(5,5,5,0.72);
            border: 1px solid rgba(255,176,11,0.2);
            padding: 0.4rem 0.5rem;
            backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.6);
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            max-width: 100%;
        }
        .cad-explode {
            display: flex; align-items: center; gap: 0.6rem;
            padding: 0.25rem 0.6rem 0.25rem 0.75rem;
            border-right: 1px solid rgba(255,176,11,0.2); margin-right: 0.25rem;
        }
        .cad-explode span { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--neal-gold-dim); white-space: nowrap; }
        .cad-explode output { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: rgba(255,255,255,0.5); width: 3.5ch; text-align: right; }
        .cad-explode input[type=range] {
            -webkit-appearance: none; appearance: none; width: 140px; height: 20px; background: transparent; margin: 0; cursor: pointer;
        }
        .cad-explode input[type=range]::-webkit-slider-runnable-track { height: 1px; background: rgba(255,176,11,0.4); }
        .cad-explode input[type=range]::-moz-range-track { height: 1px; background: rgba(255,176,11,0.4); }
        .cad-explode input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none; width: 12px; height: 12px; margin-top: -5.5px; border-radius: 0;
            background: var(--neal-gold); transform: rotate(45deg); box-shadow: 0 0 10px var(--neal-gold-glow);
        }
        .cad-explode input[type=range]::-moz-range-thumb { width: 12px; height: 12px; border-radius: 0; background: var(--neal-gold); border: 0; transform: rotate(45deg); }
        .cad-explode input[type=range]:focus { transform: none; box-shadow: none; }
        .cad-btn {
            display: inline-flex; align-items: center; gap: 0.4rem;
            background: transparent; color: rgba(255,255,255,0.65); border: 1px solid transparent;
            padding: 0.5rem 0.7rem; cursor: pointer;
            font-family: 'Orbitron', sans-serif; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
            white-space: nowrap;
        }
        .cad-btn:hover { color: #fff; background: rgba(255,176,11,0.08); }
        .cad-btn[aria-pressed="true"] { color: #000; background: var(--neal-gold); }
        .cad-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
        .cad-label {
            position: absolute; left: 0; top: 0; z-index: 7; pointer-events: none;
            opacity: 0; transition: opacity 0.12s ease;
            background: rgba(5,5,5,0.85); border: 1px solid rgba(255,176,11,0.35);
            padding: 0.5rem 0.75rem; max-width: 260px;
            backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        }
        .cad-label.on { opacity: 1; }
        .cad-label-name { font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.95rem; }
        .cad-label-mat { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neal-gold-dim); margin-top: 0.1rem; }
        .cad-label-mat:empty { display: none; }
        .cad-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; padding: 2rem; text-align: center; color: rgba(255,255,255,0.6); }
        @media (max-width: 720px) {
            .cad-viewer { height: 70vh; min-height: 420px; }
            .cad-caption, .cad-hint { display: none; }
            .cad-hud-top { flex-direction: column-reverse; align-items: flex-start; gap: 0.5rem; padding: 0.9rem 1rem 0; }
            .cad-select select { max-width: none; }
            .cad-title { font-size: 0.8rem; }
            .cad-explode { width: 100%; justify-content: center; border-right: 0; margin-right: 0; padding-bottom: 0.4rem; margin-bottom: 0.2rem; border-bottom: 1px solid rgba(255,176,11,0.2); }
            .cad-explode input[type=range] { width: min(200px, 50vw); }
            .cad-btn span { display: none; }
            .cad-btn { padding: 0.55rem 0.65rem; }
            .cad-btn svg { width: 16px; height: 16px; }
        }

        /* ============================================
           LIGHTBOX
           ============================================ */
        .lightbox {
            position: fixed; inset: 0; z-index: 10000;
            display: flex; align-items: center; justify-content: center;
            background: rgba(0,0,0,0.94);
            opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
            padding: 1rem;
        }
        .lightbox.open { opacity: 1; visibility: visible; }
        .lightbox-figure { max-width: min(96vw, 1600px); max-height: 92vh; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
        .lightbox-media img, .lightbox-media video { display: block; max-width: min(96vw, 1600px); max-height: 82vh; width: auto; height: auto; border: 1px solid rgba(255,176,11,0.2); background: #000; }
        .lightbox-caption { display: flex; flex-direction: column; gap: 0.15rem; font-family: 'Rajdhani', sans-serif; color: rgba(255,255,255,0.8); font-size: 1rem; }
        .lightbox-close, .lightbox-nav {
            position: absolute; z-index: 2;
            background: rgba(0,0,0,0.5); color: var(--neal-gold); border: 1px solid rgba(255,176,11,0.3);
            width: 48px; height: 48px; font-size: 2rem; line-height: 1; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
        }
        .lightbox-close:hover, .lightbox-nav:hover { background: var(--neal-gold); color: #000; }
        .lightbox-close { top: 1rem; right: 1rem; }
        .lightbox-nav { top: 50%; transform: translateY(-50%); }
        .lightbox-prev { left: 1rem; }
        .lightbox-next { right: 1rem; }

        /* ============================================
           GALLERY TILES & FILTERS
           ============================================ */
        .filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
        .filter-btn {
            font-family: 'Orbitron', sans-serif; font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
            color: rgba(255,255,255,0.6); border: 1px solid rgba(255,176,11,0.2); background: transparent;
            padding: 0.55rem 1.1rem; cursor: pointer;
            clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
        }
        .filter-btn:hover { color: #fff; border-color: rgba(255,176,11,0.5); }
        .filter-btn.active { background: var(--neal-gold); color: #000; border-color: var(--neal-gold); }
        .media-tile {
            position: relative; overflow: hidden; cursor: zoom-in;
            border: 1px solid rgba(255,255,255,0.06); background: #050505;
            aspect-ratio: 16 / 9;
            transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }
        .media-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
        .media-tile:hover { border-color: rgba(255,176,11,0.4); transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.5), 0 0 22px rgba(255,176,11,0.08); }
        .media-tile:hover img { transform: scale(1.05); }
        .media-tile .tile-caption {
            position: absolute; left: 0; right: 0; bottom: 0; padding: 0.7rem 0.9rem;
            background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
            font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.85);
            opacity: 0; transform: translateY(6px); transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .media-tile:hover .tile-caption, .media-tile:focus .tile-caption { opacity: 1; transform: translateY(0); }
        .media-tile.is-video::after {
            content: ''; position: absolute; left: 50%; top: 50%; width: 56px; height: 56px;
            transform: translate(-50%, -50%);
            border: 1px solid rgba(255,176,11,0.7); border-radius: 50%;
            background: rgba(0,0,0,0.45) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffb00b'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/22px no-repeat;
            pointer-events: none;
        }
        .media-tile.is-video { cursor: pointer; }

        /* Home "explore" cards */
        .explore-card {
            position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3;
            border: 1px solid rgba(255,176,11,0.12); background: #000; cursor: pointer; text-align: left;
            padding: 0; width: 100%;
        }
        .explore-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease; }
        .explore-card:hover img { transform: scale(1.06); opacity: 1; }
        .explore-card .explore-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, transparent 100%); }
        .explore-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; margin: 0.4rem 0 0.35rem; letter-spacing: 0.05em; text-transform: uppercase; }
        .explore-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.5; margin: 0; }
        .explore-card .explore-arrow { position: absolute; top: 1rem; right: 1rem; color: var(--neal-gold); font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; letter-spacing: 0.15em; opacity: 0.7; transition: opacity 0.3s ease, transform 0.3s ease; }
        .explore-card:hover .explore-arrow { opacity: 1; transform: translateX(3px); }

        /* Part list for exploded view */
        .part-list { counter-reset: part; display: grid; gap: 0.4rem; }
        .part-list li { display: flex; gap: 0.9rem; align-items: baseline; padding: 0.55rem 0; border-bottom: 1px solid rgba(255,176,11,0.08); }
        .part-list li::before { counter-increment: part; content: counter(part, decimal-leading-zero); font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--neal-gold); letter-spacing: 0.1em; flex: none; width: 2ch; }
        .part-list .part-name { font-family: 'Orbitron', sans-serif; font-size: 0.8rem; letter-spacing: 0.04em; }
        .part-list .part-mat { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-left: auto; text-align: right; }

        /* ============================================
           ANALYSIS EXPLORER (CFD / FEA)
           ============================================ */
        .ax { --ax-line: rgba(255,176,11,0.18); }
        .ax-rail {
            display: flex; gap: 1px; overflow-x: auto; scrollbar-width: none;
            border: 1px solid var(--ax-line); background: var(--ax-line);
        }
        .ax-rail::-webkit-scrollbar { display: none; }
        .ax-tab {
            flex: 1 0 auto; min-width: 8.5rem; background: #000; padding: 0.85rem 1rem; text-align: left; cursor: pointer;
            border: 0; color: rgba(255,255,255,0.55); position: relative; transition: background 0.3s ease, color 0.3s ease;
        }
        .ax-tab:hover { background: rgba(255,176,11,0.04); color: rgba(255,255,255,0.85); }
        .ax-tab[aria-selected="true"] { background: rgba(255,176,11,0.08); color: #fff; }
        .ax-tab-n { display: block; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.3); }
        .ax-tab[aria-selected="true"] .ax-tab-n { color: var(--neal-gold); }
        .ax-tab-name { display: block; margin-top: 0.2rem; font-family: 'Orbitron', sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
        .ax-tab::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--neal-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
        .ax-tab[aria-selected="true"]::after { transform: scaleX(1); }

        .ax-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 1.25rem; align-items: start; }
        @media (min-width: 1024px) { .ax-grid { grid-template-columns: minmax(0, 1fr) 26rem; } .ax-stagewrap { position: sticky; top: 6rem; } }
        @media (min-width: 1280px) { .ax-grid { grid-template-columns: minmax(0, 1fr) 30rem; } }
        .ax-stage {
            position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden;
            border: 1px solid var(--ax-line); background: #000;
        }
        @media (min-width: 640px) { .ax-stage { aspect-ratio: 4 / 3; } }
        @media (min-width: 1024px) { .ax-stage { aspect-ratio: auto; height: min(70vh, 46rem); } }
        .ax-note { margin-top: 0.75rem; min-height: 2.5em; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; line-height: 1.7; color: rgba(255,255,255,0.35); }

        .ax-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; }
        .ax-chips-stages { position: absolute; left: 0.75rem; right: 0.75rem; top: 0.75rem; z-index: 4; }
        .ax-chips-top { position: absolute; left: 0.75rem; right: 0.75rem; top: 3.1rem; z-index: 3; }
        .ax-chips-views { justify-content: flex-end; }
        .ax-chip {
            padding: 0.4rem 0.7rem; border: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.55);
            font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; cursor: pointer;
            transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }
        .ax-chip:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
        .ax-chip[aria-pressed="true"] { border-color: rgba(255,176,11,0.7); background: rgba(255,176,11,0.12); color: #fff; }
        .ax-bottom { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 3; display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; pointer-events: none; }
        .ax-bottom > * { pointer-events: auto; }
        .ax-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
        .ax-hint { position: absolute; right: 0.75rem; top: 5.6rem; z-index: 3; font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,176,11,0.45); pointer-events: none; }

        /* Legend */
        .ax-legend { width: min(17rem, 70vw); padding: 0.6rem 0.75rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
        .ax-legend-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
        .ax-legend-label { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
        .ax-legend-label span { color: rgba(255,255,255,0.3); }
        .ax-legend-probe { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #fff; font-variant-numeric: tabular-nums; min-height: 1em; }
        .ax-legend-bar { position: relative; height: 8px; margin-top: 0.5rem; border-radius: 2px; }
        .ax-legend-tick { position: absolute; top: -4px; bottom: -4px; width: 1px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,0.6); }
        .ax-legend-ticks { display: flex; justify-content: space-between; margin-top: 0.35rem; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: rgba(255,255,255,0.4); font-variant-numeric: tabular-nums; }

        /* Field viewer */
        .ax-field, .ax-stress, .ax-chart, .ax-video, .ax-image { position: absolute; inset: 0; }
        .ax-field-host { position: absolute; left: 0; right: 0; top: 5.6rem; bottom: 5.4rem; display: flex; align-items: center; justify-content: center; }
        @media (max-width: 639px) { .ax-field-host { top: 6.4rem; bottom: 7.2rem; } }
        .ax-field-box { position: relative; cursor: crosshair; touch-action: none; user-select: none; -webkit-user-select: none; }
        .ax-field-box img { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 0.5s ease; }
        .ax-field-box img.on { opacity: 1; }
        .ax-field-box svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
        .ax-anno { position: absolute; width: 1px; background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.1)); pointer-events: none; }
        .ax-anno span { position: absolute; bottom: 100%; left: 0; transform: translateX(-50%); padding-bottom: 0.2rem; font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); white-space: nowrap; }
        @media (max-width: 767px) { .ax-anno { display: none; } }
        .ax-cross-x { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,0.25); pointer-events: none; }
        .ax-cross-y { position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.25); pointer-events: none; }
        .ax-tip { position: absolute; z-index: 2; pointer-events: none; padding: 0.4rem 0.6rem; border: 1px solid rgba(255,176,11,0.35); background: rgba(5,5,5,0.88); white-space: nowrap; transform: translate(12px, 12px); }
        .ax-tip.flip-x { transform: translate(calc(-100% - 12px), 12px); }
        .ax-tip.flip-y { transform: translate(12px, calc(-100% - 12px)); }
        .ax-tip.flip-x.flip-y { transform: translate(calc(-100% - 12px), calc(-100% - 12px)); }
        .ax-tip b { display: block; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.95rem; color: #fff; font-variant-numeric: tabular-nums; }
        .ax-tip b span { color: rgba(255,255,255,0.5); }
        .ax-tip i { display: block; font-style: normal; font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

        /* Stress viewer */
        .ax-stress-host { position: absolute; left: 0; right: 0; top: 5.2rem; bottom: 4.8rem; }
        .ax-stress-host canvas { display: block; width: 100% !important; height: 100% !important; outline: none; }
        .ax-stress.is-engaged { box-shadow: inset 0 0 0 1px rgba(255,176,11,0.45); }
        .ax-deform { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.75); }
        .ax-deform span { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); white-space: nowrap; }
        .ax-deform b { color: rgba(255,255,255,0.85); font-weight: 400; font-variant-numeric: tabular-nums; }
        .ax-deform input[type=range] { -webkit-appearance: none; appearance: none; width: 110px; height: 18px; background: transparent; margin: 0; cursor: pointer; }
        .ax-deform input[type=range]::-webkit-slider-runnable-track { height: 1px; background: rgba(255,176,11,0.4); }
        .ax-deform input[type=range]::-moz-range-track { height: 1px; background: rgba(255,176,11,0.4); }
        .ax-deform input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 11px; height: 11px; margin-top: -5px; background: var(--neal-gold); transform: rotate(45deg); }
        .ax-deform input[type=range]::-moz-range-thumb { width: 11px; height: 11px; border: 0; border-radius: 0; background: var(--neal-gold); transform: rotate(45deg); }
        .ax-deform input[type=range]:focus { transform: none; box-shadow: none; }
        .ax-peak { position: absolute; z-index: 3; display: flex; align-items: center; gap: 0.4rem; transform: translateY(-50%); pointer-events: none; white-space: nowrap; transition: opacity 0.2s ease; }
        .ax-peak-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid #fff; background: #000; }
        .ax-peak-label { padding: 0.15rem 0.4rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.8); font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

        /* Chart */
        .ax-chart { user-select: none; -webkit-user-select: none; }
        .ax-chart svg { display: block; }
        .ax-chart .ax-grid { stroke: rgba(255,255,255,0.07); }
        .ax-chart .ax-axis { stroke: rgba(255,255,255,0.25); }
        .ax-chart .ax-tick { fill: rgba(255,255,255,0.4); font-family: 'JetBrains Mono', monospace; font-size: 10px; }
        .ax-chart .ax-axlabel { fill: rgba(255,255,255,0.4); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
        .ax-chart .ax-ref { stroke: rgba(255,176,11,0.55); stroke-dasharray: 4 4; }
        .ax-chart .ax-reflabel { fill: rgba(255,176,11,0.8); font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
        .ax-chart .ax-cursor { stroke: rgba(255,255,255,0.3); }
        .ax-chart-legend { position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.7); font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
        .ax-chart-legend b { color: #fff; font-weight: 400; font-variant-numeric: tabular-nums; }
        .ax-chart-series { display: inline-flex; align-items: center; gap: 0.5rem; }
        .ax-chart-series i { display: inline-block; width: 16px; height: 2px; }
        .ax-chart-x { color: rgba(255,255,255,0.4); }

        /* Video / image */
        .ax-video { display: flex; align-items: center; justify-content: center; background: #000; }
        .ax-video video { width: 100%; max-height: 100%; }
        .ax-image img { width: 100%; height: 100%; object-fit: contain; }

        /* Panel */
        .ax-panel { border: 1px solid var(--ax-line); background: linear-gradient(135deg, rgba(255,176,11,0.03) 0%, transparent 50%); padding: 1.5rem; }
        @media (min-width: 768px) { .ax-panel { padding: 2rem; } }
        .ax-panel.is-in { animation: fadeIn 0.5s ease-out; }
        .ax-panel-head { display: flex; justify-content: space-between; align-items: center; }
        .ax-panel-nav { display: flex; gap: 0.35rem; }
        .ax-panel-nav button { width: 2rem; height: 2rem; border: 1px solid rgba(255,255,255,0.12); background: transparent; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 0.9rem; }
        .ax-panel-nav button:hover { color: var(--neal-gold); border-color: rgba(255,176,11,0.5); }
        .ax-panel-title { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1.5rem; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 0.75rem; line-height: 1.1; }
        .ax-panel-kicker { margin-top: 0.5rem; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--neal-gold-dim); line-height: 1.6; }
        .ax-panel-summary { margin-top: 1rem; color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.65; }
        .ax-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; margin-top: 1.5rem; }
        .ax-stats > div { border-top: 1px solid rgba(255,176,11,0.2); padding-top: 0.6rem; }
        .ax-stats dd { font-size: 1.9rem; line-height: 1; font-variant-numeric: tabular-nums; }
        .ax-stats dd span { margin-left: 0.3rem; font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.45); text-shadow: none; }
        .ax-stats dt { margin-top: 0.45rem; font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1.5; }
        .ax-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 1.5rem; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.08); }
        .ax-specs > div { background: #000; padding: 0.65rem 0.85rem; }
        .ax-specs > div:last-child:nth-child(odd) { grid-column: span 2; }
        .ax-specs dt { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
        .ax-specs dd { margin-top: 0.2rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
        .ax-panel-h4 { margin-top: 1.75rem; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--neal-gold-dim); }
        .ax-findings { margin-top: 0.85rem; display: grid; gap: 0.7rem; }
        .ax-findings li { position: relative; padding-left: 1.1rem; font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.7); }
        .ax-findings li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 5px; height: 5px; background: var(--neal-gold); transform: rotate(45deg); }

        /* ============================================
           SCROLL-DRIVEN HARDWARE WALKTHROUGH
           ============================================ */
        .tour-section { position: relative; min-height: 100vh; background: radial-gradient(ellipse at 60% 50%, #100e08 0%, #050504 55%, #000 100%); }
        .tour-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
        .tour-stage { position: absolute; inset: 0; }
        .tour-stage canvas { display: block; width: 100% !important; height: 100% !important; }
        .tour-grid { position: absolute; inset: 0; opacity: 0.2; pointer-events: none;
            background-image: linear-gradient(rgba(255,176,11,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,176,11,0.12) 1px, transparent 1px);
            background-size: 80px 80px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%); }
        .tour-loading { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 1; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,176,11,0.45); transition: opacity 0.5s ease; pointer-events: none; }
        .tour-section.is-loaded .tour-loading { opacity: 0; }
        .tour-section.is-failed .tour-loading { color: rgba(255,255,255,0.4); }
        .tour-copy { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 4.5rem; z-index: 2; pointer-events: none; }
        .tour-card {
            position: absolute; left: 0; right: 0; bottom: 0; max-width: 26rem;
            padding: 1.25rem 1.4rem; border: 1px solid rgba(255,176,11,0.2); background: rgba(5,5,5,0.78);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
            opacity: 0; transform: translateY(16px); transition: opacity 0.45s ease, transform 0.45s ease;
        }
        .tour-card.is-on { opacity: 1; transform: translateY(0); }
        .tour-card h3 { font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.05em; text-transform: uppercase; margin: 0.45rem 0 0.55rem; line-height: 1.2; }
        .tour-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.6; margin: 0; }
        .tour-spec { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; margin-top: 0.85rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,176,11,0.15); }
        .tour-spec span { font-family: 'Rajdhani', sans-serif; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
        .tour-spec i { display: block; font-style: normal; font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--neal-gold-dim); }
        .tour-hint { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 2; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--neal-gold-dim); pointer-events: none; }
        @media (min-width: 900px) {
            .tour-copy { left: 6%; right: auto; bottom: auto; top: 50%; width: 26rem; transform: translateY(-50%); }
            .tour-card { top: 50%; bottom: auto; transform: translate(0, calc(-50% + 16px)); padding: 1.75rem 1.9rem; }
            .tour-card.is-on { transform: translate(0, -50%); }
            .tour-card h3 { font-size: 1.4rem; }
        }
        @media (max-width: 899px) {
            .tour-hint { display: none; }
            .tour-card p { font-size: 0.88rem; }
        }

        /* ============================================
           CALMER CHROME — fewer decorations competing for attention
           ============================================ */
        body::after { display: none; }                       /* scanlines off */
        body::before { opacity: 0.35; }                      /* fainter background grid */
        .hero-accent-left, .hero-accent-right { display: none; }
        .section-divider { opacity: 0.25; }
        .section-divider::before, .section-divider::after { display: none; }
        .corner-accent::before, .corner-accent::after { opacity: 0.3; }
        .glow-text { animation: none; }
        .hero-title span { text-shadow: 0 0 18px rgba(255,176,11,0.2); }

        /* Walkthrough as page opener */
        .tour-hero { border: 0; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; clip-path: none; padding: 0; max-width: 34rem; }
        .tour-hero .hero-title { font-size: 2.6rem; line-height: 1.05; margin: 0.6rem 0 0.9rem; text-transform: uppercase; }
        .tour-hero p { font-family: 'Rajdhani', sans-serif; font-size: 1.15rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
        .tour-hero .tour-spec { border-top-color: rgba(255,176,11,0.25); }
        @media (min-width: 900px) {
            .tour-copy:has(.tour-hero.is-on) { width: 34rem; }
            .tour-hero .hero-title { font-size: 3.6rem; }
        }
        @media (min-width: 1280px) { .tour-hero .hero-title { font-size: 4.2rem; } }
        .tour-hint { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; opacity: 0; transition: opacity 0.4s ease; }
        .tour-section.is-start .tour-hint { opacity: 1; }
        @media (max-width: 899px) { .tour-hint { display: none; } }

        /* Hero titles must fit a phone width */
        @media (max-width: 767px) {
            h1.hero-title { font-size: 2.35rem !important; letter-spacing: 0.03em; }
            .tour-hero .hero-title { font-size: 2.2rem; }
        }

        /* ============================================
           SHARP PALETTE — black, #ffb00b, white. No glows, no gradients, no glass.
           (Appended last so it wins over everything above.)
           ============================================ */
        :root { --neal-gold-dim: #ffb00b; --neal-gold-glow: transparent; --line: rgba(255,255,255,0.14); }
        body::before { display: none; }
        .hero-title span, .glow-text, .tech-stat, .ax-stats dd { text-shadow: none !important; animation: none !important; }
        .data-readout { color: var(--neal-gold); }

        /* Buttons */
        .explore-btn::before, .explore-btn::after { display: none; }
        .explore-btn:hover { transform: none; box-shadow: none; }
        .filter-btn, .cad-btn, .ax-chip, .ax-tab { transition: none; }

        /* Cards and panels: flat black, thin white line, gold only when active */
        .tech-card, .panel-card, .media-tile, .render-figure, .explore-card, .cad-viewer, .ax-stage, .ax-panel, .ax-rail, .ax-specs, .ax-legend, .ax-deform, .ax-chart-legend, .cad-panel, .cad-label, .tour-card, .icon-box, .soon-badge {
            background: #000; border-color: var(--line); box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none;
        }
        .tech-card::before { display: none; }
        .tech-card:hover, .panel-card:hover, .media-tile:hover, .explore-card:hover { box-shadow: none; transform: none; border-color: var(--neal-gold); }
        .corner-accent::before, .corner-accent::after { display: none; }
        .section-divider { background: var(--neal-gold); opacity: 0.5; }
        .ax-rail { background: var(--line); }
        .ax-tab { background: #000; }
        .ax-tab[aria-selected="true"] { background: #000; color: #fff; }
        .ax-tab:hover { background: #000; }
        .ax-chip[aria-pressed="true"], .cad-btn[aria-pressed="true"] { background: var(--neal-gold); color: #000; border-color: var(--neal-gold); }
        .ax-chip, .cad-btn { background: #000; color: rgba(255,255,255,0.7); border: 1px solid var(--line); }
        .ax-chip:hover, .cad-btn:hover { color: #fff; border-color: var(--neal-gold); background: #000; }
        .cad-select select { background: #000; border-color: var(--line); backdrop-filter: none; -webkit-backdrop-filter: none; }
        .cad-viewer::after { display: none; }
        .cad-viewer.is-engaged, .ax-stress.is-engaged { box-shadow: inset 0 0 0 1px var(--neal-gold); }
        .cad-explode input[type=range]::-webkit-slider-thumb { box-shadow: none; }
        .cad-explode { border-right-color: var(--line); }
        .cad-progress { box-shadow: none; }

        /* Sections and stages: flat black */
        .tour-section, .cad-viewer, .turntable-section, .ax-panel { background: #000; }
        .tour-grid, .turntable-grid { display: none; }
        .tour-card { background: rgba(0,0,0,0.85); }
        .tour-hero { background: none; border: 0; }
        .tour-spec { border-top-color: var(--line); }
        .ax-panel { background: #000; }
        .ax-stats > div { border-top-color: var(--line); }
        .ax-findings li::before { background: var(--neal-gold); }
        .ax-legend-tick { box-shadow: none; }
        .ax-tip { background: #000; border-color: var(--line); }
        .render-figure figcaption, .media-tile .tile-caption { background: rgba(0,0,0,0.85); }
        .explore-card .explore-body { background: rgba(0,0,0,0.85); }
        .lightbox { background: #000; }
        .lightbox-media img, .lightbox-media video { border-color: var(--line); }
        .lightbox-close, .lightbox-nav { background: #000; border-color: var(--line); }

        /* Hero overlays stay black (needed for legibility) but drop the gold radial tint */
        .full-section::before { background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%); }

        /* Page-wide scroll progress */
        #page-progress { position: fixed; left: 0; right: 0; top: 0; height: 3px; z-index: 60; background: transparent; pointer-events: none; }
        #page-progress span { display: block; height: 100%; width: 100%; background: var(--neal-gold); transform-origin: left; transform: scaleX(0); }

        /* Form fields and inputs */
        input:focus, select:focus, textarea:focus, #contact-form input:focus, #contact-form select:focus, #contact-form textarea:focus { box-shadow: none; transform: none; border-color: var(--neal-gold) !important; }
        .nav-link::after { box-shadow: none; }
