
        :root {
            color-scheme: light;
            --bg: #f4f7fb;
            --bg-soft: #eef4fb;
            --surface: #ffffff;
            --surface-strong: #f8fbff;
            --surface-muted: #f1f5f9;
            --ink: #0f172a;
            --ink-soft: #334155;
            --primary: #0ea5e9;
            --primary-strong: #0369a1;
            --accent: #ff7a59;
            --decorative: #67e8f9;
            --gradient-main: linear-gradient(135deg, #0ea5e9 0%, #67e8f9 36%, #ffb36b 100%);
            --font-display: 'Orbitron', 'Inter', system-ui, sans-serif;
            --font-body: 'Inter', system-ui, -apple-system, sans-serif;
            --radius-xl: 2rem;
            --shadow-card: 0 24px 60px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.05);
            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
        }

        body {
            margin: 0;
            overflow-x: hidden;
            font-family: var(--font-body);
            color: var(--ink);
            background: var(--bg);
        }

        /* Typography */
        .font-orbitron {
            font-family: var(--font-display);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.6);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, rgba(14, 165, 233, 0.38), rgba(255, 122, 89, 0.38));
            border-radius: 999px;
            border: 2px solid rgba(255, 255, 255, 0.7);
        }

        /* Background Layers */
        .bg-canvas-wrapper {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: 0;
            background-color: transparent;
        }

        /* Hero Aesthetic Overlays */
        .vertical-streaks {
            background-image: linear-gradient(90deg, transparent 99%, rgba(0, 255, 255, 0.03) 100%);
            background-size: 10vw 100%;
        }

        .crt-scanlines {
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
            background-size: 100% 4px;
        }

        /* Light gradient overlay to ensure dark text legibility */
        .contrast-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0.05) 100%);
            z-index: 3;
            pointer-events: none;
        }

        @media (max-width: 1024px) {
            .contrast-overlay {
                background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.98) 40%, rgba(255, 255, 255, 0.9) 100%);
            }
        }

        /* UI Components */
        .beam-button {
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .beam-button::before {
            content: "";
            position: absolute;
            inset: -150%;
            background: conic-gradient(from 90deg, transparent 0 72%, rgba(255, 255, 255, 0.95) 82%, transparent 100%);
            animation: spin-slow 4s linear infinite;
            opacity: 0;
            transition: opacity 260ms ease;
        }

        .beam-button::after {
            content: "";
            position: absolute;
            inset: 1px;
            border-radius: inherit;
            background: rgba(255, 255, 255, 0.9);
            z-index: 0;
        }

        .beam-button:hover::before {
            opacity: 1;
        }

        .beam-button>* {
            position: relative;
            z-index: 1;
        }

        .beam-sweep::after {
            content: "";
            position: absolute;
            inset: 0;
            transform: translateX(-130%) skewX(-20deg);
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: transform 900ms var(--ease-out);
            border-radius: inherit;
            z-index: 2;
            pointer-events: none;
        }

        .beam-sweep:hover::after {
            transform: translateX(130%) skewX(-20deg);
        }

        .section-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: var(--shadow-card);
            border-radius: var(--radius-xl);
            backdrop-filter: blur(12px);
        }

        .border-gradient {
            position: relative;
        }

        .border-gradient::before {
            content: "";
            position: absolute;
            inset: 0;
            padding: 1px;
            border-radius: inherit;
            background: var(--gradient-main);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0.65;
        }

        .floating-card {
            animation: float-y 8s ease-in-out infinite;
        }

        .floating-card.alt {
            animation-duration: 11s;
            animation-delay: -3s;
        }

        .token-dot {
            width: 0.625rem;
            height: 0.625rem;
            border-radius: 999px;
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
            animation: pulse-soft 2.6s ease-in-out infinite;
        }

        .metric-pill {
            border: 1px solid rgba(15, 23, 42, 0.08);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
        }

        /* Animations */
        @keyframes float-y {

            0%,
            100% {
                transform: translate3d(0, 0, 0);
            }

            50% {
                transform: translate3d(0, -12px, 0);
            }
        }

        @keyframes pulse-soft {

            0%,
            100% {
                opacity: 0.68;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.08);
            }
        }

        @keyframes spin-slow {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Reveal Logic */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            filter: blur(12px);
        }

        /* Flashlight Hover Effect */
        .flashlight-card {
            position: relative;
            overflow: hidden;
        }

        .flashlight-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.4), transparent 40%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
            z-index: 2;
            mix-blend-mode: overlay;
        }

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

        /* Nav Blur */
        .nav-blur {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }
    