        :root {
            --black: #000000;
            --white: #FFFFFF;
            --cream: #F5F0E8;
            --yellow: #E8FF00;
            --blue: #0038FF;
            --pink: #FF3D8E;
            --green: #00FF85;
        }

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

        ::selection {
            background: var(--yellow);
            color: var(--black);
        }

        html {
            scroll-behavior: smooth;
            scroll-snap-type: y proximity;
        }

        body {
            font-family: 'Syne', sans-serif;
            background: var(--cream);
            color: var(--black);
            overflow-x: hidden;
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 100px;
        }

        .mono {
            font-family: 'Space Mono', monospace;
        }

        /* ========== NAV ========== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 24px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-bottom: 1px solid transparent;
        }

        .nav.scrolled {
            padding: 16px 32px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-logo {
            font-weight: 800;
            font-size: 24px;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-logo span {
            width: 12px;
            height: 12px;
            background: var(--yellow);
            border-radius: 50%;
            display: inline-block;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--white);
            font-family: 'Syne', sans-serif;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--yellow);
        }

        .nav-cta {
            background: var(--yellow);
            color: var(--black);
            font-family: 'Syne', sans-serif;
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            padding: 12px 28px;
            border-radius: 999px;
            border: 2px solid var(--black);
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 0 20px rgba(232, 255, 0, 0.3);
            animation: navPulse 3s ease-in-out infinite;
        }

        @keyframes navPulse {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(232, 255, 0, 0.3);
            }

            50% {
                box-shadow: 0 0 30px rgba(232, 255, 0, 0.6), 0 0 15px rgba(232, 255, 0, 0.4);
            }
        }

        .nav-cta:hover {
            transform: scale(1.08);
            box-shadow: 0 0 40px rgba(232, 255, 0, 0.8);
            background: var(--yellow);
            color: var(--black);
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 101;
            padding: 10px;
        }

        .hamburger-menu span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--white);
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
            transform-origin: center;
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--black);
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu-links {
            display: flex;
            flex-direction: column;
            gap: 40px;
            text-align: center;
            padding: 0 24px;
            width: 100%;
            box-sizing: border-box;
        }

        .mobile-link {
            font-size: clamp(24px, 7vw, 32px);
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: -1px;
            transition: color 0.3s ease;
            word-break: break-word;
        }

        .mobile-link:hover {
            color: var(--yellow);
        }

        .mobile-link.highlight {
            color: var(--yellow);
            font-family: 'Space Mono', monospace;
            font-size: 20px;
            letter-spacing: 2px;
            border: 1px solid var(--yellow);
            padding: 16px 32px;
            display: inline-block;
        }

        @media (max-width: 768px) {

            /* Universal mobile overflow prevention */
            * {
                max-width: 100%;
            }

            html,
            body {
                overflow-x: hidden;
                width: 100%;
                position: relative;
            }

            section {
                overflow-x: hidden;
            }

            img,
            video {
                max-width: 100%;
                height: auto;
            }

            .nav-links,
            .nav-cta {
                display: none;
            }

            .hamburger-menu {
                display: flex;
            }

            /* Animate hamburger to X when active */
            .hamburger-menu.active span:first-child {
                transform: rotate(45deg) translate(0, 8px);
            }

            .hamburger-menu.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger-menu.active span:last-child {
                transform: rotate(-45deg) translate(0, -8px);
            }

            /* Header Mobile Optimization */
            .nav {
                padding: 16px 20px;
                background: rgba(0, 0, 0, 0.85);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
            }

            .nav.scrolled {
                padding: 12px 20px;
            }

            .nav-logo {
                font-size: 20px;
            }

            .nav-logo span {
                width: 10px;
                height: 10px;
            }

            .hamburger-menu {
                padding: 8px;
            }

            .mobile-menu {
                padding: 0 40px;
            }

            .hero-title {
                font-size: clamp(40px, 12vw, 84px) !important;
                margin-bottom: 40px;
            }

            .hero-desc {
                font-size: 16px;
                line-height: 1.6;
            }

            .hero-bottom {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 32px;
                width: 100%;
            }

            .hero-scroll {
                display: none;
                /* Hide scroll indicator on mobile to prevent overlap */
            }

            .discovery {
                padding: 80px 20px;
            }

            .discovery-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
                margin-bottom: 40px;
            }

            .discovery-title {
                font-size: 36px;
            }

            .problem-marquee {
                padding: 40px 0;
            }

            .problem-text {
                font-size: 32px;
                gap: 30px;
            }

            .feature-tour-section {
                padding: 80px 0;
            }

            .feature-tour-title {
                margin-bottom: 40px;
            }

            .feature-name {
                font-size: 24px;
            }

            .pitch {
                padding: 80px 20px;
            }

            .pitch-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .pricing-amount {
                font-size: 64px !important;
                letter-spacing: -2px;
            }

            .pricing-notice {
                font-size: 14px;
                padding: 0 20px;
                margin-top: 20px;
            }

            .fomo-strip {
                font-size: 11px;
            }

            .pricing {
                padding: 80px 20px;
            }

            .pricing-header {
                padding: 0 16px;
            }

            .cta {
                padding: 80px 20px;
            }

            .faq {
                padding: 80px 20px;
            }

            .footer {
                padding: 40px 20px;
            }

            .philosophy-inner {
                padding: 0 20px;
            }

            .feature-tour-container {
                padding: 0 16px;
            }
        }

        /* ========== GLOBAL NOISE OVERLAY ========== */
        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.07;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        /* ========== HERO - FULL SCREEN STATEMENT ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 40px 60px;
            position: relative;
            background: var(--black);
            color: var(--white);
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            right: -200px;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(232, 255, 0, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            animation: heroPulse 8s ease-in-out infinite;
        }

        @keyframes heroPulse {

            0%,
            100% {
                opacity: 0.6;
                transform: translateY(-50%) scale(1);
            }

            50% {
                opacity: 1;
                transform: translateY(-50%) scale(1.1);
            }
        }

        /* Hero Decorative Elements - Right Side */
        .hero-deco {
            position: absolute;
            color: var(--yellow);
            pointer-events: none;
            z-index: 0;
            font-size: 120px;
            opacity: 0.15;
        }

        .hero-deco-1 {
            top: 15%;
            right: 10%;
        }

        .hero-deco-2 {
            top: 50%;
            right: 5%;
            font-size: 80px;
            opacity: 0.2;
        }

        .hero-deco-3 {
            bottom: 20%;
            right: 15%;
            font-size: 100px;
            opacity: 0.12;
        }

        .hero-grid-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-image:
                linear-gradient(rgba(232, 255, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(232, 255, 0, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .urgency-badge {
            background: linear-gradient(90deg, #ff2222, #ff4444, #ff2222);
            color: var(--white);
            padding: 10px 40px 10px 24px;
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 24px;
            display: inline-block;
            border: none;
            box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            transform: rotate(-1deg);
            clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%, 8px 50%);
        }

        .hero-eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--yellow);
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
        }

        .live-indicator {
            width: 8px;
            height: 8px;
            background: var(--yellow);
            border-radius: 50%;
            animation: livePulse 2s ease-in-out infinite;
            box-shadow: 0 0 10px var(--yellow);
        }

        @keyframes livePulse {

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

            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        #live-count {
            color: var(--white);
            font-weight: 800;
        }

        .hero-title {
            font-size: clamp(48px, 11vw, 160px);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.04em;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .hero-title .line {
            display: inline-block;
        }

        .hero-title .outline {
            -webkit-text-stroke: 2px var(--white);
            -webkit-text-fill-color: transparent;
            font-family: 'Syne', sans-serif;
            /* Extended font feel */
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            color: var(--yellow);
        }

        .hero-bottom {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: flex-end;
            gap: 80px;
            width: 100%;
            margin-top: 0;
        }

        .hero-text-content {
            max-width: 620px;
        }

        /* Move scroll to right for balance */
        .hero-scroll {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        .hero-desc {
            max-width: 540px;
            font-size: 19px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            font-weight: 400;
            letter-spacing: 0.01em;
        }

        /* .hero-scroll moved up */

        .hero-scroll-line {
            width: 1px;
            height: 80px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
            transform-origin: top;
        }

        @keyframes scrollPulse {
            0% {
                transform: scaleY(1);
                opacity: 0.8;
            }

            50% {
                transform: scaleY(0.6);
                opacity: 0.4;
            }

            100% {
                transform: scaleY(1);
                opacity: 0.8;
            }
        }

        /* Floating elements */
        .float-element {
            position: absolute;
            pointer-events: none;
        }

        .float-1 {
            top: 20%;
            right: 10%;
            font-size: 120px;
            opacity: 0.1;
            animation: floatSlow 8s ease-in-out infinite;
        }

        .float-2 {
            bottom: 20%;
            right: 25%;
            width: 200px;
            height: 200px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatSlow 10s ease-in-out infinite reverse;
        }

        @keyframes floatSlow {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(-20px, -30px) rotate(5deg);
            }
        }

        /* ========== PROBLEM - HORIZONTAL TEXT ========== */
        .problem {
            padding: 0;
            overflow: hidden;
            background: var(--cream);
        }

        .problem-marquee {
            padding: 60px 0;
            border-top: 1px solid var(--black);
            border-bottom: 1px solid var(--black);
            overflow: hidden;
        }

        .problem-track {
            display: flex;
            animation: marqueeScroll 40s linear infinite;
            width: max-content;
        }

        .problem-text {
            font-size: clamp(48px, 8vw, 100px);
            font-weight: 800;
            white-space: nowrap;
            padding-right: 100px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .problem-text .strike {
            text-decoration: line-through;
            color: var(--pink);
        }



        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ========== THE PITCH - ASYMMETRIC LAYOUT ========== */
        .pitch {
            padding: 160px 32px;
            background: var(--cream);
        }

        .pitch-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: center;
        }

        /* ========== DISCOVERY (ACTIVE PODS) ========== */
        .discovery {
            background: #F3F1E7;
            color: var(--black);
            padding: 100px 32px;
            overflow: hidden;
        }

        .discovery-header {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 50px;
            padding: 0;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .discovery-title {
            font-size: clamp(48px, 8vw, 90px);
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -0.03em;
        }

        .discovery-scroll-track {
            display: flex;
            gap: 2px;
            width: fit-content;
        }

        .discovery-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 2px solid var(--black);
            background: var(--black);
            gap: 2px;
        }

        @media (max-width: 1200px) {
            .discovery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .discovery {
                padding: 80px 20px;
            }

            .discovery-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
                margin-bottom: 40px;
            }

            .discovery-title {
                font-size: 36px;
            }

            .discovery-grid {
                grid-template-columns: 1fr;
            }
        }

        .pod-card {
            background: var(--white);
            color: var(--black);
            padding: 32px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 260px;
            transition: background 0.2s ease;
        }

        .pod-card:hover {
            background: #ffdb00;
            /* Yellow highlight on hover */
        }

        .pod-tag-box {
            background: var(--black);
            color: var(--white);
            padding: 8px 12px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            width: fit-content;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .pod-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }

        .pod-meta {
            font-family: 'Space Mono', monospace;
            font-size: 13px;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .live-pulse {
            width: 6px;
            height: 6px;
            background: #00FF00;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.2);
        }

        .pitch-card-live::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .pitch-chat {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .chat-msg {
            max-width: 85%;
            padding: 14px 18px;
            font-size: 15px;
            line-height: 1.5;
            display: flex;
            align-items: center;
        }

        .chat-msg.them {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 2px 16px 16px 16px;
            align-self: flex-start;
        }

        .chat-msg.you {
            background: var(--yellow);
            color: var(--black);
            border-radius: 16px 2px 16px 16px;
            align-self: flex-end;
            font-weight: 500;
        }

        /* ========== FEATURES - INDUSTRIAL GRID ========== */
        .feature-tour-section {
            background: var(--black);
            padding: 160px 0;
            position: relative;
            overflow: hidden;
        }

        .feature-tour-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .feature-tour-title {
            font-family: 'Space Mono', monospace;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .feature-tour-title::before {
            content: '//';
            color: var(--yellow);
        }

        .feature-tour-title::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin-left: 16px;
        }

        .feature-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        @media (max-width: 900px) {
            .feature-panel {
                grid-template-columns: 1fr;
            }

            .feature-card {
                padding: 32px 24px;
            }
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 48px;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.04);
            transform: translateY(-4px);
        }

        .feature-tag {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            color: var(--yellow);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 32px;
            opacity: 0.8;
        }

        .feature-name {
            font-size: 32px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .feature-summary {
            font-size: 15px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5);
            max-width: 90%;
        }

        .feature-arrow {
            display: none;
            /* Removing arrow for cleaner look */
        }

        .feature-num::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .feature-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .feature-desc {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 24px;
        }

        .feature-expand-btn {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--white);
            padding: 10px 20px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .feature-expand-btn:hover {
            background: var(--yellow);
            border-color: var(--yellow);
            color: var(--black);
        }

        /* ========== SOCIAL PROOF - RAW TESTIMONIALS ========== */
        .proof {
            background: var(--yellow);
            padding: 120px 32px;
            position: relative;
            overflow: hidden;
        }

        .proof-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(100px, 20vw, 300px);
            font-weight: 800;
            color: rgba(0, 0, 0, 0.05);
            white-space: nowrap;
            pointer-events: none;
        }

        .proof-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .proof-quote {
            font-size: clamp(24px, 4vw, 48px);
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 48px;
            text-align: center;
        }

        .proof-quote .highlight {
            background: var(--black);
            color: var(--yellow);
            padding: 0 8px;
        }

        .proof-author {
            text-align: center;
        }

        .proof-author-name {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 4px;
        }

        .proof-author-role {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.6;
        }

        .proof-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 48px;
        }

        .proof-dot {
            width: 12px;
            height: 12px;
            border: 2px solid var(--black);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .proof-dot.active {
            background: var(--black);
        }

        /* ========== WHY US SECTION - NEW ========== */
        .why-us-section {
            background: var(--cream);
            padding: 120px 32px;
            position: relative;
            border-top: 2px solid var(--black);
            border-bottom: 2px solid var(--black);
        }

        .why-us-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .why-us-header {
            margin-bottom: 64px;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            border: 2px solid var(--black);
        }

        .why-us-card {
            padding: 48px;
            background: var(--cream);
            border-right: 2px solid var(--black);
            transition: all 0.3s ease;
        }

        .why-us-card:last-child {
            border-right: none;
        }

        .why-us-card.accent {
            background: var(--black);
            color: var(--white);
        }

        .why-us-card:hover {
            background: var(--yellow);
            color: var(--black);
        }

        .why-us-stat {
            font-family: 'Syne', sans-serif;
            font-size: clamp(72px, 10vw, 120px);
            font-weight: 800;
            font-style: italic;
            line-height: 0.9;
            margin-bottom: 16px;
        }

        .why-us-card.accent .why-us-stat {
            color: var(--yellow);
        }

        .why-us-card:hover .why-us-stat {
            color: var(--black);
        }

        .why-us-label {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 24px;
            opacity: 0.6;
        }

        .why-us-card.accent .why-us-label {
            color: var(--yellow);
            opacity: 1;
        }

        .why-us-card:hover .why-us-label {
            color: var(--black);
            opacity: 0.8;
        }

        .why-us-desc {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.8;
        }

        .why-us-tagline {
            margin-top: 80px;
            font-size: clamp(24px, 4vw, 48px);
            font-weight: 700;
            text-align: center;
            line-height: 1.3;
        }

        .strike-text {
            text-decoration: line-through;
            opacity: 0.5;
        }

        .highlight-text {
            background: var(--black);
            color: var(--yellow);
            padding: 0 12px;
        }

        @media (max-width: 900px) {
            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .why-us-card {
                border-right: none;
                border-bottom: 2px solid var(--black);
                padding: 32px 24px;
            }

            .why-us-card:last-child {
                border-bottom: none;
            }

            .why-us-section {
                padding: 80px 16px;
            }

            .why-us-tagline {
                font-size: 20px;
                margin-top: 48px;
            }
        }

        /* ========== ENGINE SECTION - BRUTALIST ========== */
        .engine-section {
            background: var(--cream);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .engine-bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(120px, 25vw, 400px);
            font-weight: 800;
            color: rgba(0, 0, 0, 0.03);
            white-space: nowrap;
            pointer-events: none;
            font-style: italic;
        }

        .engine-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 1;
        }

        .engine-header {
            margin-bottom: 80px;
            text-align: left;
        }

        .engine-title {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 800;
            line-height: 0.9;
            letter-spacing: -2px;
            color: var(--black);
            margin-top: 16px;
        }

        .engine-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            border: 2px solid var(--black);
        }

        .engine-card {
            background: var(--cream);
            padding: 48px;
            border-right: 2px solid var(--black);
            border-bottom: 2px solid var(--black);
            transition: background 0.3s ease;
        }

        .engine-card:nth-child(even) {
            border-right: none;
        }

        .engine-card:nth-child(3),
        .engine-card:nth-child(4) {
            border-bottom: none;
        }

        .engine-card.dark {
            background: var(--black);
            color: var(--white);
        }

        .engine-card-num {
            font-family: 'Syne', sans-serif;
            font-size: 72px;
            font-weight: 800;
            font-style: italic;
            color: var(--black);
            line-height: 1;
            margin-bottom: 24px;
        }

        .engine-card.dark .engine-card-num {
            color: var(--yellow);
        }

        .engine-card-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .engine-card-desc {
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.8;
            margin-bottom: 32px;
        }

        .engine-card-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .engine-tag {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            padding: 6px 12px;
            background: var(--black);
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .engine-tag-dark {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            padding: 6px 12px;
            background: var(--yellow);
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .engine-card:hover {
            background: var(--yellow) !important;
            color: var(--black) !important;
        }

        .engine-card:hover .engine-card-num {
            color: var(--black) !important;
        }

        .engine-card:hover .engine-tag,
        .engine-card:hover .engine-tag-dark {
            background: var(--black);
            color: var(--yellow);
        }

        @media (max-width: 768px) {
            .engine-grid {
                grid-template-columns: 1fr;
            }

            .engine-card {
                border-right: none !important;
                border-bottom: 2px solid var(--black);
                padding: 32px 24px;
            }

            .engine-card:last-child {
                border-bottom: none;
            }

            .engine-card-num {
                font-size: 48px;
            }

            .engine-section {
                padding: 80px 20px;
            }

            .engine-container {
                padding: 0 16px;
            }

            .engine-header h2 {
                font-size: 32px;
            }
        }

        /* ========== PRICING - FOMO STYLE ========== */
        .pricing {
            background: var(--cream);
            padding: 120px 0;
            position: relative;
        }

        .pricing-header {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
            padding: 0 32px;
        }

        .pricing-eyebrow {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--pink);
            margin-bottom: 24px;
            text-decoration: line-through;
            opacity: 0.5;
        }

        .pricing-eyebrow span {
            color: var(--black);
            text-decoration: none;
            opacity: 1;
            margin-left: 10px;
            font-weight: 700;
        }

        .pricing-title {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 800;
            line-height: 0.9;
            letter-spacing: -2px;
        }

        /* FOMO Strip */
        .fomo-strip {
            background: var(--black);
            color: var(--white);
            padding: 24px 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-bottom: 80px;
            width: 100%;
        }

        .fomo-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .fomo-item .num {
            font-family: 'Syne', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--yellow);
            font-style: italic;
        }

        .fomo-item .live-dot {
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--green);
        }

        .fomo-item .lock-icon {
            color: var(--yellow);
            font-size: 16px;
        }

        /* Pricing Cards Container */
        .pricing-cards {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid var(--black);
            background: var(--white);
        }

        @media (max-width: 800px) {
            .pricing-cards {
                grid-template-columns: 1fr;
            }
        }

        .pricing-card {
            padding: 64px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .pricing-card:first-child {
            background: rgba(255, 255, 255, 0.5);
            border-right: 1px solid var(--black);
        }

        .pricing-card:last-child {
            background: var(--black);
            color: var(--white);
            border-right: none;
        }

        @media (max-width: 800px) {
            .pricing-card:first-child {
                border-right: none;
                border-bottom: 1px solid var(--black);
            }

            .pricing-card {
                padding: 40px 24px;
            }

            .pricing-notice {
                font-size: 11px;
                padding: 0 16px;
                letter-spacing: 1px;
            }

            .fomo-strip {
                flex-wrap: wrap;
                gap: 16px;
            }

            .fomo-item {
                font-size: 12px;
            }
        }

        .pricing-card-name {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 32px;
            opacity: 0.6;
            display: flex;
            justify-content: space-between;
        }

        .pricing-card:last-child .pricing-card-name {
            color: var(--yellow);
            opacity: 1;
        }

        .pricing-card-price {
            font-size: 96px;
            font-weight: 800;
            line-height: 0.8;
            margin-bottom: 8px;
            letter-spacing: -3px;
            font-family: 'Syne', sans-serif;
            position: relative;
            display: inline-block;
        }

        /* Creative Price Blur/Redaction */
        .price-blur {
            position: relative;
            display: inline-block;
            filter: blur(8px);
            user-select: none;
        }

        .pricing-card:last-child .price-blur {
            filter: blur(8px);
        }

        .pricing-card-period {
            font-size: 14px;
            opacity: 0.5;
            margin-bottom: 16px;
            font-family: 'Space Mono', monospace;
        }

        .pricing-notice {
            font-size: 14px;
            font-family: 'Space Mono', monospace;
            text-align: center;
            margin: 32px 0 48px;
            letter-spacing: 2px;
            opacity: 0.7;
        }

        .pricing-card-features {
            list-style: none;
            margin-bottom: 48px;
            flex-grow: 1;
        }

        .pricing-card-features li {
            padding: 8px 0;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
        }

        .pricing-card-features li::before {
            content: '→';
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            opacity: 0.5;
        }

        .pricing-card:last-child .pricing-card-features li {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .pricing-card-cta {
            display: block;
            width: 100%;
            padding: 20px;
            text-align: center;
            font-family: inherit;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            border: 2px solid var(--black);
            background: transparent;
            color: var(--black);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-card-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .pricing-card:last-child .pricing-card-cta {
            background: var(--yellow);
            color: var(--black);
            border-color: var(--yellow);
        }

        .pricing-card:last-child .pricing-card-cta:hover {
            background: var(--white);
            border-color: var(--white);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .pricing-note {
            text-align: center;
            margin-top: 40px;
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            opacity: 0.4;
            letter-spacing: 1px;
        }

        /* ========== CTA - FULL SCREEN ========== */
        .cta {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 32px;
            position: relative;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-pretitle {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 32px;
            color: var(--yellow);
        }

        .cta-title {
            font-size: clamp(48px, 10vw, 140px);
            font-weight: 800;
            line-height: 0.9;
            margin-bottom: 48px;
        }

        .cta-title .outline {
            -webkit-text-stroke: 2px var(--yellow);
            -webkit-text-fill-color: transparent;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            padding: 24px 48px;
            background: var(--yellow);
            color: var(--black);
            font-family: inherit;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            background: var(--white);
            color: var(--black);
            transform: scale(1.05);
        }

        .cta-btn-arrow {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .cta-btn:hover .cta-btn-arrow {
            transform: translateX(8px);
        }

        .cta-note {
            margin-top: 32px;
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            opacity: 0.5;
        }

        /* Decorative */
        .cta-deco {
            position: absolute;
            font-size: 200px;
            opacity: 0.05;
            pointer-events: none;
        }

        .cta-deco-1 {
            top: 10%;
            left: 5%;
        }

        .cta-deco-2 {
            bottom: 10%;
            right: 5%;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--black);
            color: var(--white);
            padding: 60px 32px;
        }

        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-logo {
            font-weight: 800;
            font-size: 20px;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-logo span {
            width: 8px;
            height: 8px;
            background: var(--yellow);
            border-radius: 50%;
        }

        .footer-links {
            display: flex;
            gap: 32px;
        }

        .footer-links a {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-copy {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
        }

        /* ========== STICKY BOTTOM CTA BAR ========== */
        .sticky-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--black);
            border-top: 2px solid var(--yellow);
            padding: 16px 32px;
            z-index: 100;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
        }

        .sticky-cta-bar.visible {
            transform: translateY(0);
        }

        .sticky-cta-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .sticky-cta-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .sticky-cta-badge {
            background: var(--yellow);
            color: var(--black);
            padding: 6px 12px;
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 4px;
        }

        .sticky-cta-text {
            font-family: 'Space Mono', monospace;
            font-size: 13px;
            color: var(--white);
            letter-spacing: 0.5px;
        }

        .sticky-cta-text strong {
            color: var(--yellow);
            font-weight: 700;
        }

        .sticky-cta-btn {
            padding: 14px 32px;
            background: var(--yellow);
            color: var(--black);
            border: 2px solid var(--yellow);
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .sticky-cta-btn:hover {
            background: transparent;
            color: var(--yellow);
            transform: translateY(-2px);
        }

        /* ========== WAITLIST OVERLAY ========== */
        .waitlist-overlay {
            position: fixed;
            inset: 0;
            background: var(--black);
            color: var(--white);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 32px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .waitlist-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .waitlist-close {
            position: absolute;
            top: 32px;
            right: 32px;
            font-size: 32px;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .waitlist-close:hover {
            transform: rotate(90deg);
        }

        .waitlist-content {
            max-width: 500px;
            text-align: center;
        }

        .waitlist-title {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 800;
            margin-bottom: 24px;
        }

        .waitlist-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .waitlist-form {
            display: flex;
            gap: 0;
            margin-bottom: 24px;
        }

        .waitlist-input {
            flex: 1;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-right: none;
            color: var(--white);
            font-family: inherit;
            font-size: 16px;
        }

        .waitlist-input::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .waitlist-input:focus {
            outline: none;
            border-color: var(--yellow);
        }

        .waitlist-submit {
            padding: 20px 32px;
            background: var(--yellow);
            color: var(--black);
            font-family: inherit;
            font-weight: 700;
            font-size: 14px;
            border: 1px solid var(--yellow);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .waitlist-submit:hover {
            background: var(--white);
            border-color: var(--white);
        }

        .waitlist-note {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.3);
        }

        .waitlist-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin-top: 48px;
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .waitlist-stat {
            text-align: center;
        }

        .waitlist-stat-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--yellow);
        }

        .waitlist-stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 4px;
        }

        /* ========== ANIMATIONS ========== */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 {
            transition-delay: 0.1s;
        }

        .reveal-delay-2 {
            transition-delay: 0.2s;
        }

        .reveal-delay-3 {
            transition-delay: 0.3s;
        }

        .reveal-delay-4 {
            transition-delay: 0.4s;
        }

        .reveal-delay-5 {
            transition-delay: 0.5s;
        }

        /* ========== FEATURE GRID (ARCHITECTURAL) ========== */
        .feature-tour-section {
            background: var(--black);
            padding: 120px 20px;
            overflow: visible;
            /* Allow sticky to work */
            position: relative;
        }

        .feature-tour-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .feature-panel {
            display: flex;
            flex-direction: column;
            gap: 60px;
            /* Space between starts of cards */
            padding-bottom: 100px;
            /* Space at end */
        }

        .feature-tour-title {
            font-size: 14px;
            font-family: 'Space Mono', monospace;
            color: var(--white);
            opacity: 0.5;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: sticky;
            /* Keep title visible for a bit? or scroll away */
            top: 100px;
        }

        .feature-card {
            position: sticky;
            top: 140px;
            /* Stacking offset from top */
            background: var(--yellow);
            color: var(--black);
            padding: 60px 48px;
            border-radius: 32px;
            min-height: 480px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
            /* Shadow to separate form card behind */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            border: 2px solid var(--black);
            /* Definition */

            /* Initial state override */
            opacity: 1 !important;
            transform: none !important;
            border-color: var(--black) !important;
        }

        .feature-card:nth-child(2) {
            top: 160px;
            transform: rotate(-1deg) !important;
        }

        .feature-card:nth-child(3) {
            top: 180px;
            transform: rotate(1deg) !important;
        }

        .feature-card:nth-child(4) {
            top: 200px;
            transform: rotate(-0.5deg) !important;
        }

        .feature-card:nth-child(5) {
            top: 220px;
            transform: rotate(0.5deg) !important;
        }

        /* Hover effect - solid background, no transparency */
        .feature-card:hover {
            background: var(--yellow) !important;
            box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.6);
        }

        .feature-card-content,
        .feature-num,
        .feature-label {
            transition: none;
            /* Remove old transitions */
            color: var(--black);
        }

        .feature-card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            width: 100%;
        }

        .feature-num {
            font-size: 64px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -2px;
            color: rgba(0, 0, 0, 0.2);
            opacity: 1;
        }

        .feature-label {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--black);
            opacity: 0.6;
        }

        .feature-name {
            font-size: 56px;
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -2px;
            margin-bottom: 24px;
            color: var(--black);
            font-family: 'Syne', sans-serif;
            text-transform: capitalize;
            /* Normal case looks better */
        }

        .feature-summary {
            font-size: 20px;
            line-height: 1.5;
            color: var(--black);
            opacity: 0.8;
            max-width: 500px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .feature-cta {
            padding: 14px 28px;
            background: var(--black);
            color: var(--yellow);
            border: 2px solid var(--black);
            font-family: 'Space Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 8px;
        }

        .feature-cta:hover {
            background: transparent;
            color: var(--black);
            transform: translateY(-2px);
        }

        .feature-card.scroll-active .feature-cta,
        .feature-card:hover .feature-cta {
            background: var(--black);
            color: var(--yellow);
            border-color: var(--black);
        }

        .feature-card.scroll-active .feature-cta:hover,
        .feature-card:hover .feature-cta:hover {
            background: transparent;
            color: var(--black);
        }

        .feature-arrow {
            /* If arrow exists in HTML, style it or hide it */
            color: var(--black);
            font-size: 32px;
            align-self: flex-end;
            margin-top: auto;
        }

        /* Feature Stats & Highlights */
        .feature-stats {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
        }

        .feature-stat {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            padding: 4px 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--white);
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .feature-list li {
            font-size: 16px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.7);
            padding-left: 20px;
            position: relative;
        }

        .feature-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--yellow);
            font-weight: 700;
        }

        /* Hover State for Stats */
        .feature-card:hover .feature-stat,
        .feature-card.scroll-active .feature-stat {
            background: rgba(0, 0, 0, 0.3);
            border-color: var(--black);
            color: var(--black);
        }

        /* Hover Interaction */
        /* Stagger for Desktop Scroll */
        @media (min-width: 769px) {
            .feature-card:nth-child(even) {
                margin-top: 100px;
                /* Physically stagger to force sequential stroll */
            }
        }

        /* Hover & Scroll Interaction - Keep solid background */
        .feature-card:hover,
        .feature-card.scroll-active {
            background: var(--yellow) !important;
            opacity: 1 !important;
        }

        /* Ensure specific cards keep their rotation even on hover 
           (The !important rules above handle this, so we just avoid adding new transforms here) 
        */

        .feature-card:hover .feature-num,
        .feature-card.scroll-active .feature-num {
            color: rgba(0, 0, 0, 0.25);
            opacity: 1;
        }

        .feature-card:hover .feature-label,
        .feature-card.scroll-active .feature-label {
            color: var(--black);
            opacity: 1;
        }

        .feature-card:hover .feature-name,
        .feature-card.scroll-active .feature-name {
            color: var(--black);
            opacity: 1;
        }

        .feature-card:hover .feature-summary,
        .feature-card.scroll-active .feature-summary {
            color: var(--black);
            opacity: 0.85;
        }

        /* Feature Responsive */
        @media (max-width: 768px) {
            .feature-tour-section {
                padding: 60px 20px;
            }

            .feature-panel {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .feature-card {
                padding: 24px;
                margin-top: 0;
                position: static !important;
                /* Disable sticky on mobile */
                transform: none !important;
                /* Reset rotation */
            }

            .feature-name {
                font-size: 20px;
            }

            .feature-summary {
                font-size: 14px;
                margin-bottom: 16px;
            }

            .feature-cta {
                font-size: 12px;
                padding: 12px 20px;
                width: 100%;
            }
        }

        /* ========== HOW IT WORKS SECTION ========== */
        .how-it-works-section {
            background: var(--white);
            padding: 120px 0;
            overflow-x: hidden;
            position: relative;
        }

        .how-works-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        .how-works-header {
            margin-bottom: 80px;
        }

        .how-works-title {
            font-size: clamp(56px, 8vw, 96px);
            font-weight: 800;
            line-height: 0.9;
            letter-spacing: -2px;
            color: var(--black);
            margin-top: 24px;
        }

        .how-works-track {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .how-card {
            background: var(--white);
            border: 2px solid var(--black);
            padding: 40px;
            position: relative;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .how-card.reveal {
            opacity: 1;
            transform: translateX(0);
        }

        .how-card[data-step="01"] {
            transition-delay: 0.1s;
        }

        .how-card[data-step="02"] {
            transition-delay: 0.2s;
        }

        .how-card[data-step="03"] {
            transition-delay: 0.3s;
        }

        .how-card[data-step="04"] {
            transition-delay: 0.4s;
        }

        .how-card:hover {
            background: var(--yellow);
            transform: translateY(-8px);
        }

        .how-card-step {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--black);
            opacity: 0.5;
            margin-bottom: 24px;
        }

        .how-card-icon {
            font-size: 48px;
            margin-bottom: 24px;
            line-height: 1;
        }

        .how-card-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.5px;
            color: var(--black);
            margin-bottom: 16px;
        }

        .how-card-desc {
            font-size: 16px;
            line-height: 1.6;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 24px;
        }

        .how-card-detail {
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .detail-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .detail-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--black);
            opacity: 0.6;
        }

        .detail-value {
            font-size: 13px;
            font-weight: 500;
            color: var(--black);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .how-works-track {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .how-it-works-section {
                padding: 80px 20px;
            }

            .how-works-container {
                padding: 0 16px;
            }

            .how-works-track {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .how-card {
                padding: 32px;
            }

            .how-card-title {
                font-size: 24px;
            }
        }

        /* ========== KINETIC ICONS ========== */
        .icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            vertical-align: middle;
        }

        .icon-signal {
            width: 24px;
            height: 24px;
            background: repeating-linear-gradient(90deg, var(--pink), var(--pink) 2px, transparent 2px, transparent 4px);
            opacity: 0.5;
        }

        .icon-screen {
            width: 28px;
            height: 18px;
            border: 2px solid var(--blue);
            position: relative;
        }

        .icon-screen::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 2px;
            background: var(--blue);
        }

        .icon-scan {
            width: 30px;
            height: 30px;
            border: 1px solid var(--green);
            position: relative;
            animation: scanAnim 2s linear infinite;
        }

        @keyframes scanAnim {
            0% {
                box-shadow: inset 0 0 0 transparent;
            }

            50% {
                box-shadow: inset 0 15px 10px -10px var(--green);
            }

            100% {
                box-shadow: inset 0 30px 0 transparent;
            }
        }

        .icon-connect {
            width: 24px;
            height: 24px;
            background: var(--yellow);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        }

        /* ========== ABOUT - PHILOSOPHY ========== */
        .philosophy {
            padding: 0;
            background: var(--black);
            color: var(--white);
            height: 200vh;
            position: relative;
        }

        .philosophy-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .philosophy-inner {
            max-width: 1000px;
            padding: 0 32px;
        }

        .philosophy-tag {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--yellow);
            margin-bottom: 40px;
        }

        .philosophy-text {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .philosophy-text .word {
            display: inline-block;
            opacity: 0.15;
            transition: opacity 0.5s ease;
        }

        .philosophy-text span .word {
            color: rgba(255, 255, 255, 0.6);
        }

        .philosophy-text strong .word {
            color: var(--white);
            -webkit-text-stroke: 1px var(--yellow);
            -webkit-text-fill-color: transparent;
        }

        /* ========== DISCOVERY - THE GALLERY ========== */
        /* Fix lint: remove stray brace at line 335 if it exists in previous context, but here focusing on discovery */

        /* ========== DISCOVERY - THE GALLERY ========== */
        .discovery {
            padding: 160px 0;
            background: var(--cream);
        }

        .discovery-header {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 80px;
            padding: 0 32px;
            display: flex;
            justify-content: flex-start;
            /* Force Left Alignment */
            align-items: flex-end;
            gap: 20px;
        }

        /* Push the "LIVE NOW" to the right if needed, or keep it next to title? 
           User said "active pods written on left hand direction". 
           If I use justify-content: space-between, Title is Left. 
           Let's use space-between to match standard header layout but ensure Title is first.
        */
        .discovery-header {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 80px;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .discovery-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-top: 2px solid var(--black);
            border-bottom: 2px solid var(--black);
            background: var(--black);
            gap: 2px;
        }

        .pod-card {
            background: var(--white);
            padding: 40px;
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
            transition: background 0.2s ease;
        }

        .pod-card:hover {
            background: var(--yellow);
        }

        .pod-top {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 32px;
        }

        .pod-tag-box {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            background: var(--black);
            color: var(--white);
            padding: 6px 10px;
            display: inline-block;
        }

        .pod-title {
            /* Was .pod-card-name previously */
            font-family: 'Syne', sans-serif;
            font-size: 44px;
            font-weight: 800;
            line-height: 0.95;
            letter-spacing: -2px;
            color: var(--black);
            text-transform: capitalize;
            margin: 0;
        }

        .pod-bottom {
            margin-top: auto;
        }

        .pod-meta {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            color: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .pod-cta {
            padding: 12px 24px;
            background: var(--black);
            color: var(--yellow);
            border: 2px solid var(--black);
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
        }

        .pod-cta:hover {
            background: transparent;
            color: var(--black);
            transform: translateY(-2px);
        }

        .pod-card:hover .pod-cta {
            background: var(--black);
            color: var(--yellow);
        }

        /* Remove old legacy classes if they exist to avoid confusion */
        .pod-card-tag,
        .pod-card-name,
        .pod-card-meta {
            display: none;
            /* Just in case old HTML uses them, but we saw new HTML uses pod-tag-box etc */
        }

        /* ========== FAQ - THE MANUAL ========== */
        .faq {
            padding: 160px 32px;
            background: var(--white);
            border-top: 1px solid var(--black);
        }

        .faq-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-title {
            font-size: clamp(48px, 8vw, 80px);
            font-weight: 800;
            margin-bottom: 80px;
            text-align: center;
        }

        .faq-item {
            border-bottom: 1px solid var(--black);
            padding: 32px 0;
        }

        .faq-question {
            font-size: 20px;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            font-size: 17px;
            line-height: 1.8;
            color: #555;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 24px;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .hero-text-content {
            display: flex;
            flex-direction: column;
            gap: 36px;
            max-width: 640px;
        }

        .hero-cta-box {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 8px;
        }

        .enroll-btn {
            background: var(--yellow);
            color: var(--black);
            border: 4px solid var(--black);
            padding: 32px 64px;
            font-family: 'Syne', sans-serif;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 12px 12px 0px rgba(255, 255, 255, 0.9);
            width: fit-content;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            position: relative;
            transform: scale(1);
        }

        .enroll-btn:hover {
            transform: scale(1.05);
            box-shadow: 16px 16px 0px rgba(255, 255, 255, 0.9);
        }

        .btn-text {
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .btn-subtext {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.9;
        }

        .pulse-btn {
            animation: glitch-anim 4s infinite;
        }

        @keyframes glitch-anim {

            0%,
            90% {
                transform: translate(0, 0);
            }

            92% {
                transform: translate(-2px, 2px);
            }

            94% {
                transform: translate(2px, -2px);
            }

            96% {
                transform: translate(-2px, -2px);
            }

            98% {
                transform: translate(2px, 2px);
            }

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

        .enroll-btn:hover {
            transform: translate(-4px, -4px);
            box-shadow: 12px 12px 0px var(--white), 0 0 40px rgba(232, 255, 0, 0.6);
        }

        .countdown-wrapper {
            display: flex;
            align-items: baseline;
            gap: 16px;
        }

        .countdown-msg {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 1.5px;
            color: rgba(232, 255, 0, 0.8);
            font-weight: 700;
        }

        .countdown-clock {
            font-family: 'Space Mono', monospace;
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 2px;
        }


        .hero-row-top {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 0;
        }

        .hero-row-bottom {
            display: flex;
            align-items: flex-start;
            position: relative;
        }

        .hero-row-bottom .people-text {
            display: inline-block;
        }

        .hero-row-bottom .eyes-container {
            position: absolute;
            right: 18%;
            top: -70px;
            transform: rotate(8deg);
            z-index: 10;
        }

        .eyes-container {
            display: flex;
            gap: 16px;
            padding-left: 0;
            margin-top: 0;
            margin-left: 0;
            transform: rotate(8deg);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .eye {
            width: clamp(50px, 8vw, 95px);
            height: clamp(50px, 8vw, 95px);
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
        }

        .pupil {
            width: 50%;
            height: 50%;
            background: var(--black);
            border-radius: 50%;
            position: relative;
            transform: translate(0, 0);
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .hero {
                padding: 120px 32px 70px;
            }

            .hero-title {
                font-size: clamp(52px, 10vw, 120px);
            }

            .hero-scroll {
                bottom: 15px;
            }

            .hero-desc {
                font-size: 18px;
            }

            .enroll-btn {
                padding: 20px 40px;
                font-size: 17px;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body {
                padding-bottom: 120px;
            }

            .hero {
                padding: 100px 24px 60px;
            }

            .hero-title {
                font-size: clamp(36px, 10vw, 72px);
                margin-bottom: 40px;
                line-height: 1;
            }

            .hero-text-content {
                gap: 28px;
            }

            .hero-desc {
                font-size: 17px;
                line-height: 1.6;
            }

            .enroll-btn {
                padding: 20px 32px;
                box-shadow: 4px 4px 0px var(--white);
                width: calc(100% - 8px);
                max-width: calc(100% - 8px);
            }

            .btn-text {
                font-size: 16px;
            }

            .btn-subtext {
                font-size: 9px;
            }

            .enroll-btn:hover {
                transform: translate(-2px, -2px);
                box-shadow: 6px 6px 0px var(--white);
            }

            .countdown-wrapper {
                padding: 16px;
            }

            .countdown-clock {
                font-size: 24px;
            }

            .countdown-msg {
                font-size: 10px;
            }

            .urgency-badge {
                font-size: 10px;
                padding: 10px 16px;
                letter-spacing: 1px;
                margin-bottom: 16px;
            }

            .hero-eyebrow {
                font-size: 9px;
                flex-wrap: wrap;
            }

            .hero-row-top {
                flex-wrap: wrap;
                justify-content: flex-start;
                gap: 16px;
                margin-bottom: 12px;
            }

            .hero-row-bottom {
                position: relative;
                display: block;
            }

            .hero-row-bottom .eyes-container {
                position: absolute;
                right: 10%;
                top: -35px;
                transform: rotate(5deg) scale(0.7) !important;
                gap: 8px;
            }

            .eyes-container {
                margin-top: 0 !important;
                margin-left: 0 !important;
                gap: 8px;
                flex-shrink: 1;
            }

            .eye {
                width: clamp(40px, 10vw, 70px);
                height: clamp(40px, 10vw, 70px);
                flex-shrink: 1;
            }

            /* Hide decorative elements on mobile */
            .hero-deco,
            .hero-grid-bg {
                display: none;
            }

            .hero-bottom {
                margin-top: 48px;
                grid-template-columns: 1fr;
            }

            /* Philosophy Section Mobile Adjustments */
            .philosophy {
                height: 150vh !important;
                /* Reduce scroll distance on mobile */
            }

            .philosophy-text {
                font-size: clamp(24px, 6vw, 40px) !important;
                /* Smaller text on mobile */
            }

            /* Discovery Section Mobile Overflow */
            .discovery-scroll-track {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
                width: 100%;
            }

            .discovery-scroll-track::-webkit-scrollbar {
                display: none;
            }

            .discovery-grid {
                display: flex;
                flex-wrap: nowrap;
                width: max-content;
                gap: 20px;
                padding: 0 40px 0 20px;
                border: none !important;
                background: transparent !important;
            }

            /* Premium Mobile Pod Card Styling */
            .pod-card {
                min-width: 280px;
                border: 1px solid rgba(0, 0, 0, 0.1);
                border-radius: 24px;
                /* Softer, premium corners */
                padding: 32px 24px;
                /* More breathing room */
                background: linear-gradient(145deg, #ffffff, #f0f0f0);
                box-shadow:
                    0 10px 30px rgba(0, 0, 0, 0.05),
                    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 320px;
            }

            /* Taller, more elegant proportion */

            /* Sticky CTA Bar Mobile */
            .sticky-cta-bar {
                padding: 12px 20px;
            }

            .sticky-cta-content {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }

            .sticky-cta-left {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }

            .sticky-cta-badge {
                font-size: 10px;
                padding: 4px 10px;
            }

            .sticky-cta-text {
                font-size: 11px;
            }

            .sticky-cta-btn {
                width: 100%;
                padding: 12px 24px;
                font-size: 13px;
            }

        }

        /* Override yellow background only if it was set inline or elsewhere */
        .pod-card h3 {
            font-family: 'Syne', sans-serif;
            font-size: 28px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .pod-card p {
            font-size: 16px;
            line-height: 1.5;
            opacity: 0.8;
        }

        /* ========== MAGIC CARD EFFECT ========== */
        .magic-card {
            position: relative;
            border: 2px solid transparent;
            background-clip: padding-box;
            transition: all 0.3s ease;
        }

        .magic-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            background: linear-gradient(90deg,
                    #E8FF00,
                    #FF3D8E,
                    #00FF85,
                    #0038FF,
                    #E8FF00);
            background-size: 300% 300%;
            animation: magic-gradient 3s linear infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

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

        .magic-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    rgba(232, 255, 0, 0.15),
                    transparent 40%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            z-index: 0;
        }

        .magic-card:hover::after {
            opacity: 1;
        }

        /* Ensure card content is above effects */
        .magic-card>* {
            position: relative;
            z-index: 1;
        }

        @keyframes magic-gradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Dark theme magic card - brighter colors */
        .magic-card-dark::before {
            background: linear-gradient(90deg,
                    #E8FF00,
                    #FF3D8E,
                    #00FF85,
                    #0038FF,
                    #E8FF00);
            background-size: 400% 400%;
        }

        .magic-card-dark::after {
            background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    rgba(232, 255, 0, 0.2),
                    transparent 40%);
        }
        }

        /* ========== DASHBOARD (NANO BANANA PRO) ========== */
        .dashboard-container {
            display: grid;
            grid-template-columns: 240px 1fr;
            min-height: 100vh;
            background: var(--black);
            color: var(--white);
            font-family: 'Syne', sans-serif;
        }

        /* Sidebar */
        .dash-sidebar {
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .dash-logo {
            font-weight: 800;
            font-size: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
        }

        .dash-logo span {
            width: 10px;
            height: 10px;
            background: var(--yellow);
            border-radius: 50%;
            display: block;
        }

        .dash-nav {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .dash-nav a {
            color: rgba(255, 255, 255, 0.4);
            text-decoration: none;
            font-family: 'Space Mono', monospace;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: color 0.2s;
        }

        .dash-nav a.active,
        .dash-nav a:hover {
            color: var(--yellow);
        }

        .dash-nav .icon {
            font-size: 10px;
        }

        .dash-user {
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        /* Main Content */
        .dash-content {
            padding: 60px;
            overflow-y: auto;
        }

        .dash-header {
            margin-bottom: 60px;
        }

        .dash-breadcrumbs {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 16px;
        }

        .dash-title {
            font-size: 64px;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 0.9;
        }

        /* Grid */
        .dash-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 24px;
            max-width: 1000px;
        }

        .dash-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px;
            display: flex;
            flex-direction: column;
        }

        .card-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 24px;
            letter-spacing: 1px;
        }

        /* Status Card */
        .status-card {
            grid-column: 1 / 2;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent);
        }

        .big-stat {
            font-size: 64px;
            font-weight: 800;
            color: var(--yellow);
            line-height: 1;
            margin-bottom: 12px;
            font-family: 'Space Mono', monospace;
            letter-spacing: -2px;
        }

        .stat-delta {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
        }

        .progress-bar {
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
        }

        .progress-fill {
            height: 100%;
            background: var(--yellow);
        }

        /* Referral Card */
        .referral-card {
            grid-column: 2 / 3;
        }

        .card-title {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .card-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .referral-box {
            display: flex;
            gap: 12px;
            margin-top: auto;
        }

        .referral-box code {
            background: rgba(0, 0, 0, 0.4);
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-family: 'Space Mono', monospace;
            flex-grow: 1;
            color: var(--yellow);
        }

        .copy-btn {
            background: var(--white);
            border: none;
            padding: 0 24px;
            font-family: 'Space Mono', monospace;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
        }

        .copy-btn:hover {
            background: var(--yellow);
        }

        /* Timeline Card */
        .timeline-card {
            grid-column: 1 / 3;
        }

        .timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 5px;
            top: 10px;
            bottom: 10px;
            width: 1px;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }

        .timeline-item {
            display: flex;
            gap: 32px;
            padding-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .tl-dot {
            width: 11px;
            height: 11px;
            background: var(--black);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 6px;
        }

        .timeline-item.done .tl-dot {
            background: var(--yellow);
            border-color: var(--yellow);
        }

        .timeline-item.active .tl-dot {
            background: var(--black);
            border-color: var(--yellow);
            box-shadow: 0 0 0 4px rgba(232, 255, 0, 0.2);
        }

        .tl-time {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.3);
            margin-bottom: 4px;
        }

        .tl-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .tl-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            max-width: 500px;
        }

        .tl-dot.pulse {
            animation: livePulse 2s infinite;
        }

        @media (max-width: 900px) {
            .dashboard-container {
                grid-template-columns: 1fr;
            }

            .dash-sidebar {
                display: none;
            }

            /* Mobile Menu handle separate/overlay */
            .dash-content {
                padding: 32px 20px;
            }

            .dash-grid {
                grid-template-columns: 1fr;
            }

            .status-card,
            .referral-card,
            .timeline-card {
                grid-column: 1 / 2;
            }

            .dash-title {
                font-size: 40px;
            }
        }

        /* Extra Small Mobile Devices (max-width: 400px) */
        @media (max-width: 400px) {
            .hero {
                padding: 100px 16px 60px;
            }

            .hero-title {
                font-size: clamp(32px, 10vw, 64px) !important;
            }

            .hero-desc {
                font-size: 15px;
            }

            .enroll-btn {
                padding: 16px 24px;
                font-size: 14px;
            }

            .btn-text {
                font-size: 14px;
            }

            .btn-subtext {
                font-size: 8px;
            }

            .countdown-clock {
                font-size: 14px;
                letter-spacing: 0.5px;
            }

            .countdown-wrapper {
                gap: 6px;
                padding: 10px 12px;
            }

            .hero-eyebrow {
                font-size: 8px;
            }

            .hero-row-bottom .eyes-container {
                right: 12%;
                top: -25px;
                transform: rotate(5deg) scale(0.6) !important;
                gap: 6px;
            }

            .eye {
                width: clamp(35px, 10vw, 60px);
                height: clamp(35px, 10vw, 60px);
            }

            .discovery,
            .pricing,
            .cta,
            .faq,
            .footer,
            .engine-section,
            .how-it-works-section {
                padding-left: 16px;
                padding-right: 16px;
            }

            .pricing-header,
            .engine-container,
            .how-works-container,
            .feature-tour-container,
            .philosophy-inner {
                padding-left: 12px;
                padding-right: 12px;
            }

            .mobile-menu {
                padding: 0 24px;
            }
        }