nav { position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%); width: fit-content; height: 60px; background: rgba(10, 10, 10, 0.4); backdrop-filter: blur(40px); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 0 1.5rem 0 2rem; display: flex; align-items: center; gap: 2.5rem; z-index: 5000; }
        .hero { padding-top: 140px; text-align: center; padding-bottom: 2rem; }
        html, body { overflow-x: hidden !important; background-color: #05050A; color: #FFFFFF; font-family: 'Inter', sans-serif; }

        /* Competitor Comparison Section */
        .comp-section {
            padding: 2rem 8% 6rem 8%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- AURORA ORBS --- */
        .aurora-orb {
            position: absolute;
            width: 50vw;
            height: 50vw;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.12;
            z-index: -3;
            pointer-events: none;
        }
        .aurora-pink {
            background: var(--p-base);
            top: 5%;
            left: -20%;
        }
        .aurora-blue {
            background: var(--b-base);
            top: 40%;
            right: -20%;
        }

        /* 3D Side-by-Side Comparison Container */
        .comparison-container {
            position: relative;
            width: 100%;
            margin-bottom: 6rem;
        }

        .comparison-deck {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem; /* Gap for the central laser line */
            width: 100%;
        }

        /* The right side track container */
        .competitor-track {
            display: flex;
            position: relative;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            -ms-overflow-style: none;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 2rem;
            height: 100%;
            min-width: 0; /* Fixes grid item blowout */
        }
        .competitor-track::-webkit-scrollbar { display: none; }

        .central-pulse-svg {
            position: absolute;
            left: 50%;
            top: 0;
            width: 50px;
            height: 100%;
            transform: translateX(-50%);
            z-index: 1;
            pointer-events: none;
            opacity: 0.8;
        }

        /* Stacked hover cards - Sleek, Solid, Authentic */
        .compare-card {
            background: #0B0B0E; /* Solid dark background, no glass blur */
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px; /* Sharper corners */
            padding: 2.5rem; /* Reduced padding so they fit better */
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 2; /* Sit above laser */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .competitor-card {
            scroll-snap-align: start;
            width: 85%; /* Make it slightly smaller so the next card peeks */
            flex-shrink: 0;
            display: flex !important;
            flex-direction: column;
        }

        .central-pulse-svg {
            position: absolute;
            left: 50%;
            top: 0;
            width: 100px;
            height: 100%;
            transform: translateX(-50%);
            pointer-events: none;
            z-index: 1;
        }

        .compare-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .compare-card.waverate-card {
            border-color: rgba(199, 0, 255, 0.3);
        }
        
        .compare-card.waverate-card:hover {
            border-color: rgba(199, 0, 255, 0.6);
            box-shadow: 0 15px 40px rgba(199, 0, 255, 0.1);
        }

        /* --- Scroll Indicator Arrows --- */
        .scroll-hint-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-top: 1rem;
            width: 100%;
            grid-column: 1 / -1; /* Span across the entire deck bottom if grid */
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .scroll-arrow {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .scroll-arrow:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: scale(1.1);
        }

        .arrow-right {
            animation: bounce-right 2s infinite ease-in-out;
        }
        
        .arrow-left {
            animation: bounce-left 2s infinite ease-in-out;
        }

        @keyframes bounce-right {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(5px); }
        }
        
        @keyframes bounce-left {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-5px); }
        }

        /* Card Headers */
        .card-header-main {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 1.5rem;
        }

        .card-header-main img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .card-header-main .brand-placeholder-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .card-header-main h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.75rem;
            font-weight: 800;
        }

        .card-header-main .badge-premium {
            font-size: 0.65rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--p-base), var(--b-base));
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .card-header-main .badge-competitor {
            font-size: 0.65rem;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Metric List Flex Fix */
        .metric-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 1.5rem;
            flex-grow: 1; /* Stretch to fill empty height in the card */
        }

        .metric-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .metric-title {
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--p-base);
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .competitor-card .metric-title {
            color: rgba(255, 255, 255, 0.4);
        }

        .metric-value {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .metric-value i {
            font-size: 1.15rem;
        }

        .metric-value i.fa-check-circle { color: #10B981; }
        .metric-value i.fa-times-circle { color: #EF4444; }
        .metric-value i.fa-exclamation-triangle { color: #FBBF24; }

        .metric-desc {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.65);
        }

        /* Metrics Explanation Section */
        .metrics-decode-section {
            margin-top: 6rem;
            background: #0B0B0E; /* Solid background */
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 20px;
            padding: 4rem;
            margin-bottom: 6rem;
        }

        .metrics-decode-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .decode-item h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .decode-item h4 i {
            color: var(--p-base);
        }

        .decode-item p {
            font-size: 0.85rem;
            opacity: 0.6;
            line-height: 1.7;
        }

        /* The Waverate Advantage Feature Showcase */
        .waverate-features-section {
            margin-top: 6rem;
            margin-bottom: 6rem;
        }

        .feature-showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3.5rem;
        }

        .feature-showcase-card {
            background: #0B0B0E; /* Solid */
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-showcase-card:hover {
            transform: translateY(-8px);
            border-color: rgba(199, 0, 255, 0.25);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }

        .feature-showcase-card .icon-container {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(199, 0, 255, 0.08);
            border: 1px solid rgba(199, 0, 255, 0.15);
            color: var(--p-base);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .feature-showcase-card h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: white;
        }

        .feature-showcase-card p {
            font-size: 0.85rem;
            opacity: 0.6;
            line-height: 1.7;
        }

        /* Mobile Overlay styling overrides */
        .mobile-overlay { display: none; visibility: hidden; }
        .overlay-link { display: none; }
        .mobile-overlay.active { display: flex !important; visibility: visible !important; }
        .mobile-overlay.active .overlay-link { display: block !important; opacity: 1 !important; visibility: visible !important; }

        @media (max-width: 1024px) {
            .comparison-deck {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .central-pulse-svg {
                display: none; /* hide laser on mobile stack */
            }
            .compare-card {
                padding: 2rem;
                width: 85vw;
                flex-shrink: 0;
            }
            .waverate-card {
                width: 90vw;
                margin: 0 auto;
            }
            .competitor-card {
                scroll-snap-align: center;
            }
        }

        @media (max-width: 900px) {
            nav { width: 95vw; justify-content: space-between; }
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            
            .comp-section { padding: 1.5rem 5% 5rem 5%; }
            .card-header-main h3 { font-size: 1.4rem; }
            .metrics-decode-section { padding: 2rem; border-radius: 20px; }
            .feature-showcase-grid { grid-template-columns: 1fr; }
        }