/* ==========================================================================
   ClearPath Landing Page — Home Page Styles
   Extracted from inline <style> — uses CSS variables from design-tokens.css
   ========================================================================== */

/* ==========================================================================
           CLEARPATH LANDING PAGE - BRAND GUIDE V1.0
           80% Modern + Clean + Professional | 20% Retro Arcade + Personality
           ========================================================================== */

        /* Custom Fonts */
        

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

        img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        /* ==========================================================================
           COLOR PALETTE - Design System V2.0 (Dark Mode)
           ========================================================================== */
        :root {
            /* Primary Colors */

            /* Accent Colors (The Arcade Neons) */

            /* Dark Mode Semantic aliases (overrides design-tokens.css for page-specific) */
            --bg-card: var(--bg-surface);
                        --text-tertiary: var(--text-tertiary);
            --text-on-dark: var(--text-primary);
            --accent-primary: var(--cyber-cyan);
            --accent-secondary: var(--neon-lime);
            --accent: var(--cyber-cyan);

            /* UI Colors - Dark Mode */
            --border-light: var(--border-default);
            --border-color: var(--border-default);
                                    --gray-50: var(--bg-inset);
            --gray-100: var(--bg-elevated);
            --gray-200: var(--border-default);
            --gray-300: var(--border-hover);
            --gray-400: var(--text-tertiary);
            --gray-500: var(--text-secondary);
            --gray-600: var(--text-tertiary);
            --gray-700: var(--text-secondary);
            --gray-800: var(--text-primary);
            --gray-900: var(--text-primary);

            /* Shadows & Glows - Dark Mode */
            --shadow-sm: 0 1px 2px rgba(var(--bg-primary-rgb), 0.5);
            --shadow-md: 0 4px 6px rgba(var(--bg-primary-rgb), 0.5);
            --shadow-lg: 0 10px 25px rgba(var(--bg-primary-rgb), 0.5);
            --glow-cyan: rgba(var(--accent-cyan-rgb), 0.15);
            --glow-cyan-strong: rgba(var(--accent-cyan-rgb), 0.25);
                        
            /* Legacy compatibility */
            --purple: var(--bg-primary);
            --cyan: var(--accent-cyan);
            --green: var(--accent-green);
            --accent-hover: var(--accent-green);
        }

        /* ==========================================================================
           BASE STYLES - Dark Mode Foundation (v2.0)
           ========================================================================== */
        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ==========================================================================
           TYPOGRAPHY - Design System V2.0
           Almarai for headers, Space Grotesk for body, Arcade Gamer for buttons
           ========================================================================== */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Almarai', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
            letter-spacing: 0.02em;
        }

        h3, h4 {
            font-family: 'Almarai', sans-serif;
            font-weight: 700;
            color: var(--text-primary);
        }

        /* Section titles - Almarai heading font */
        .section-title-arcade {
            font-family: 'Almarai', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: 2.25rem;
            line-height: 1.3;
            margin-bottom: 1.5rem;
        }

        h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        p {
            font-size: 1.0625rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
            color: var(--gray-600);
            line-height: 1.8;
        }

        /* Accent labels - Space Grotesk body font */
        .arcade-label {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 500;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--cyber-cyan);
        }

        /* ==========================================================================
           LAYOUT - More whitespace
           ========================================================================== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        section {
            padding: 5.5rem 0;
        }

        /* ==========================================================================
           HEADER - Clean, minimal on white
           ========================================================================== */

        /* Active nav link */

        /* CTA Button in nav */

        /* Hide waitlist elements after user joins */
        .waitlist-hidden {
            display: none !important;
        }

        /* ==========================================================================
           HERO SECTION - Black background with glitch animation
           ========================================================================== */
        .hero {
            margin-top: 80px;
            background: var(--bg-primary) !important;
            min-height: auto;
            display: flex;
            align-items: flex-start;  /* Content flows from top, not centered */
            position: relative;
            overflow: visible;        /* Allow screenshot to extend */
            padding: 4rem 0 0;        /* Top padding only */
        }

        /* Crosshair corner accents */
        /* Hero pseudo-elements now handled by polish.css for grid/sparkle effects */

        /* Scanline overlay effect */
        .hero-scanlines {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(var(--bg-primary-rgb), 0.03) 2px,
                rgba(var(--bg-primary-rgb), 0.03) 4px
            );
            pointer-events: none;
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-text {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
        }

        .hero h1 {
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 4.5rem;
            text-transform: uppercase;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .hero h1 .gradient-text {
            background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .subheadline {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 1rem;
        }

        .hero p.subheadline.subheadline-wide {
            max-width: 100%;
            width: 100%;
            font-size: 1.15rem;
        }

        /* Glitch animation for hero title */
        .glitch {
            position: relative;
            animation: glitch-skew 4s infinite linear alternate-reverse;
        }

        .glitch::before,
        .glitch::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            white-space: pre-line;
        }

        .glitch::before {
            color: var(--cyber-cyan);
            animation: glitch-effect 3s infinite linear alternate-reverse;
            clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
            transform: translate(-2px, -2px);
            opacity: 0.8;
        }

        .glitch::after {
            color: var(--neon-lime);
            animation: glitch-effect 2s infinite linear alternate-reverse;
            clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
            transform: translate(2px, 2px);
            opacity: 0.8;
        }

        @keyframes glitch-effect {
            0% {
                transform: translate(0);
            }
            20% {
                transform: translate(-3px, 3px);
            }
            40% {
                transform: translate(-3px, -3px);
            }
            60% {
                transform: translate(3px, 3px);
            }
            80% {
                transform: translate(3px, -3px);
            }
            100% {
                transform: translate(0);
            }
        }

        @keyframes glitch-skew {
            0% {
                transform: skew(0deg);
            }
            10% {
                transform: skew(0.5deg);
            }
            20% {
                transform: skew(-0.5deg);
            }
            30% {
                transform: skew(0deg);
            }
            100% {
                transform: skew(0deg);
            }
        }

        .hero .subheadline {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(var(--text-primary-rgb), 0.8);
            font-weight: 400;
            line-height: 1.8;
            max-width: 600px;
        }

        /* Cycling Framework Text Animation */
        .cycling-framework {
            font-family: 'Arcade Gamer', monospace;
            font-weight: 700;
            display: inline-block;
            color: var(--cyber-cyan);
            text-transform: uppercase;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        .cycling-framework.cyan {
            color: var(--cyan);
        }

        .cycling-framework.green {
            color: var(--green);
        }

        .cycling-framework.fade-out {
            opacity: 0;
        }

        .cycling-framework.fade-in {
            opacity: 1;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
        }

        /* ==========================================================================
           HERO SCREENSHOT - Linear-style 3D floating effect
           ========================================================================== */
        /* Hero screenshot container - Stacked carousel layout */
        .hero-screenshot-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
            position: relative;
            margin-top: 5rem;
            margin-bottom: -100px;
            overflow: visible;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1.4s ease, transform 1.4s ease;
            width: 100%;
        }

        .hero-screenshot-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Carousel stack container */
        .carousel-stack {
            position: relative;
            width: 100%;
            max-width: 1100px;
            height: 700px;
            perspective: 2000px;
            margin: 0 auto;
        }

        /* All screenshots in stack */
        .carousel-stack .hero-screenshot {
            position: absolute;
            left: 50%;
            width: 100%;
            max-width: 1100px;
            border-radius: 12px;
            border: none;
            box-shadow: 0 25px 50px -12px rgba(var(--bg-primary-rgb), 0.5);
            transition: transform 0.5s ease, opacity 0.5s ease, z-index 0s;
            cursor: pointer;
        }

        /* Active/center screenshot */
        .carousel-stack .hero-screenshot.active {
            transform: perspective(2000px) rotateX(5deg) translateX(-50%) scale(1);
            z-index: 3;
            opacity: 1;
        }

        /* Previous screenshot - peeking from left */
        .carousel-stack .hero-screenshot.prev {
            transform: perspective(2000px) rotateX(5deg) translateX(-65%) scale(0.9);
            z-index: 2;
            opacity: 0.6;
        }

        /* Next screenshot - peeking from right */
        .carousel-stack .hero-screenshot.next {
            transform: perspective(2000px) rotateX(5deg) translateX(-35%) scale(0.9);
            z-index: 2;
            opacity: 0.6;
        }

        /* Hidden screenshots */
        .carousel-stack .hero-screenshot.hidden {
            transform: perspective(2000px) rotateX(5deg) translateX(-50%) scale(0.8);
            z-index: 1;
            opacity: 0;
        }

        /* Carousel arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(var(--bg-primary-rgb), 0.6);
            border: 2px solid var(--accent-green);
            border-radius: 50%;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-green);
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease;
        }

        .carousel-arrow:hover {
            background: rgba(var(--accent-green-rgb), 0.15);
            border-color: var(--accent-green);
        }

        .carousel-arrow-left {
            left: -60px;
        }

        .carousel-arrow-right {
            right: -60px;
        }

        /* Fade to black at bottom of carousel */
        .carousel-stack::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -20%;
            right: -20%;
            height: 60%;
            background: linear-gradient(to bottom, transparent 0%, rgba(var(--bg-primary-rgb),0.7) 50%, var(--bg-primary) 80%);
            border-radius: 12px;
            pointer-events: none;
            z-index: 5;
        }

        /* Responsive adjustments for hero carousel */
        @media (max-width: 1024px) {
            .hero-screenshot-container {
                margin-top: 2rem;
                margin-bottom: -60px;
            }

            .carousel-stack {
                max-width: 90%;
                height: 500px;
            }

            .carousel-arrow-left {
                left: 10px;
            }

            .carousel-arrow-right {
                right: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero-screenshot-container {
                margin-top: 1.5rem;
                margin-bottom: -40px;
            }

            .carousel-stack {
                max-width: 95%;
                height: 400px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
            }

            .carousel-stack .hero-screenshot.prev {
                opacity: 0.4;
                transform: perspective(2000px) rotateX(3deg) translateX(-60%) scale(0.85);
            }

            .carousel-stack .hero-screenshot.next {
                opacity: 0.4;
                transform: perspective(2000px) rotateX(3deg) translateX(-40%) scale(0.85);
            }
        }

        /* Removed logo glow animation */
        .logo {
            max-width: 300px;
            margin-bottom: 3rem;
        }

        /* ==========================================================================
           BUTTONS - Brand Guide V1.0
           ========================================================================== */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--neon-lime);
            color: var(--bg-primary);
            text-decoration: none;
            font-family: 'Arcade Gamer', monospace;
            font-size: 0.9375rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            box-shadow: 4px 4px 0px 0px rgba(var(--accent-cyan-rgb), 0.8);
        }

        .btn:hover {
            background: var(--neon-lime);
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0px 0px rgba(var(--accent-cyan-rgb), 0.9);
        }

        .btn:active {
            transform: translate(0, 0);
            box-shadow: 2px 2px 0px 0px rgba(var(--accent-cyan-rgb), 0.6);
        }

        /* ==========================================================================
           PROBLEM/SOLUTION SECTION
           ========================================================================== */
        .problem-solution {
            background: transparent;
            position: relative;
            padding-top: 140px;  /* Space for hero screenshot overlap */
        }

        .section-title {
            text-align: center;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            max-width: 800px;              /* Slightly narrower for readability */
            margin: 0 auto 2.5rem;
            font-size: 1.0625rem;
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .section-intro {
            text-align: center;
            font-size: 1.1875rem;          /* Slightly larger than body text */
            font-weight: 500;
            color: var(--gray-700);
            margin: 0 auto 2rem;
            max-width: 600px;
        }

        .three-column {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }

        /* ==========================================================================
           CARDS - Dark Mode with Cyan Glow (v2.0)
           ========================================================================== */
        .column {
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.15);
            position: relative;
            overflow: hidden;
        }

        .column:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 30px rgba(var(--accent-cyan-rgb), 0.25);
            border-color: var(--border-hover);
        }

        .column p {
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        .problem,
        .solution {
            background: var(--bg-surface);
        }

        /* Approach boxes - simplified styling */
        .approach.spreadsheet,
        .approach.enterprise {
            background: var(--bg-surface);
            border-top: 3px solid var(--border-color);
            border: 1px solid var(--border-color);
        }

        .approach.spreadsheet h3,
        .approach.enterprise h3 {
            color: var(--text-secondary);
        }

        .approach.clearpath {
            background: var(--bg-surface);
            border: 1px solid var(--cyber-cyan);
            border-top: 3px solid var(--cyber-cyan);
            box-shadow: 0 0 20px var(--glow-cyan);
            position: relative;
            transition: all 0.3s ease;
        }

        .approach.clearpath:hover {
            box-shadow: 0 0 40px rgba(var(--accent-cyan-rgb), 0.4), 0 0 80px rgba(var(--accent-cyan-rgb), 0.2);
            transform: translateY(-4px);
        }

        .approach.clearpath h3 {
            font-family: 'Arcade Gamer', monospace;
            color: var(--text-primary);
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            text-shadow: 0 0 25px rgba(var(--accent-cyan-rgb), 0.3);
            position: relative;
            display: inline-block;
            white-space: nowrap;
        }

        .approach.clearpath h3::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--cyber-cyan);
            border-radius: 2px;
        }

        /* ==========================================================================
           FEATURES SECTION - Accordion layout with image
           ========================================================================== */
        .features {
            background: transparent;
            position: relative;
        }

        .features h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .features-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .features-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: start;
        }

        /* Accordion Styles */
        .features-accordion {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .accordion-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-bottom: none;
            transition: all 0.3s ease;
        }

        .accordion-item:first-child {
            border-radius: 4px 4px 0 0;
        }

        .accordion-item:last-child {
            border-radius: 0 0 12px 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .accordion-item.active {
            background: rgba(var(--accent-green-rgb), 0.05);
            border-color: var(--accent);
        }

        .accordion-item.active + .accordion-item {
            border-top-color: var(--accent);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 1.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .accordion-header:hover {
            background: var(--gray-50);
        }

        .accordion-header h3 {
            margin: 0;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            transition: color 0.2s ease;
        }

        .accordion-item.active .accordion-header h3 {
            color: var(--cyber-cyan);
        }

        .accordion-item.active .accordion-header:hover {
            background: rgba(var(--accent-cyan-rgb), 0.12);
        }

        .accordion-chevron {
            width: 20px;
            height: 20px;
            fill: var(--text-tertiary);
            transition: transform 0.3s ease, fill 0.2s ease;
            flex-shrink: 0;
        }

        .accordion-item.active .accordion-chevron {
            transform: rotate(180deg);
            fill: var(--cyber-cyan);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .accordion-item.active .accordion-content {
            max-height: 300px;
        }

        .accordion-content p {
            padding: 0 1.5rem 1.25rem;
            margin: 0;
            font-size: 0.9375rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Features Image Carousel */
        .features-image-container {
            position: relative;
        }

        .features-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 20px 60px rgba(var(--bg-primary-rgb), 0.15), 0 0 0 1px rgba(var(--bg-primary-rgb), 0.05);
            transform: perspective(1000px) rotateY(-2deg);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .features-carousel:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 25px 70px rgba(var(--bg-primary-rgb), 0.2), 0 0 0 1px rgba(var(--bg-primary-rgb), 0.08);
        }

        .features-image {
            width: 100%;
            height: auto;
            display: block;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.5s ease;
            object-fit: contain;
        }

        .features-image.active {
            opacity: 1;
            position: relative;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gray-300);
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            padding: 0;
        }

        .carousel-dot:hover {
            background: var(--gray-400);
        }

        .carousel-dot.active {
            background: var(--cyber-cyan);
            transform: scale(1.2);
        }

        /* Lightbox for enlarged screenshots */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(var(--bg-primary-rgb), 0.9);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            cursor: zoom-out;
            padding: 2rem;
        }

        .lightbox-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-image {
            max-width: 90%;
            max-height: 90vh;
            border-radius: 4px;
            box-shadow: 0 30px 100px rgba(var(--bg-primary-rgb), 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .lightbox-overlay.active .lightbox-image {
            transform: scale(1);
        }

        .lightbox-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 40px;
            height: 40px;
            background: rgba(var(--text-primary-rgb), 0.1);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .lightbox-close:hover {
            background: rgba(var(--text-primary-rgb), 0.2);
        }

        .lightbox-close svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(var(--text-primary-rgb), 0.1);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .lightbox-nav:hover {
            background: rgba(var(--text-primary-rgb), 0.25);
        }

        .lightbox-nav svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .lightbox-prev {
            left: 1.5rem;
        }

        .lightbox-next {
            right: 1.5rem;
        }

        .features-carousel {
            cursor: zoom-in;
        }

        /* Framework Badges */
        .framework-badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .framework-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .framework-badge:hover {
            border-color: var(--cyber-cyan);
            color: var(--cyber-cyan);
        }

        .framework-badge svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .features-layout {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .features-image-container {
                order: -1;
            }

            .features-image {
                transform: none;
            }

            .features-image:hover {
                transform: none;
            }
        }

        /* ==========================================================================
           WHY SECTION
           ========================================================================== */
        .why {
            background: var(--gray-50);
            position: relative;
        }

        .why h2 {
            text-align: center;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin-top: 4rem;
        }

        .why-item {
            text-align: center;
            padding: 2rem;
            border-radius: 4px;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            box-shadow: 0 0 20px var(--glow-cyan);
            transition: all 0.3s ease;
        }

        .why-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 30px rgba(var(--accent-cyan-rgb), 0.25);
            border-color: var(--cyber-cyan);
        }

        .why-item h3 {
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
        }

        .why-item p {
            font-size: 0.9375rem;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        /* ==========================================================================
           ABOUT SECTION
           ========================================================================== */
        .about {
            background: transparent;
            position: relative;
        }

        .about h2 {
            text-align: center;
        }

        .about-content {
            max-width: 720px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-size: 1.0625rem;
            line-height: 1.9;
            color: var(--text-secondary);
        }

        /* ==========================================================================
           PRICING SECTION
           ========================================================================== */
        .pricing {
            padding: 5rem 0;
            background: transparent;
        }

        .pricing h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .pricing .section-subtitle {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px var(--glow-cyan);
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 0 30px rgba(var(--accent-cyan-rgb), 0.25);
            border-color: var(--cyber-cyan);
        }

        .pricing-card.featured {
            border: 2px solid var(--cyber-cyan);
            transform: scale(1.03);
        }

        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-4px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--cyber-cyan);
            color: var(--bg-primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.35rem 1rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .pricing-card .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--cyber-cyan);
            margin-bottom: 0.25rem;
        }

        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-tertiary);
        }

        .pricing-card .seats {
            font-size: 0.9rem;
            color: var(--text-tertiary);
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--gray-200);
        }

        .pricing-card .eligibility {
            font-size: 0.9rem;
            color: var(--text-tertiary);
            margin-top: -1rem;
            margin-bottom: 1.5rem;
        }

        /* Billing Toggle */
        .billing-toggle {
            display: flex;
            gap: 4px;
            margin-bottom: 1rem;
            padding: 4px;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }

        .billing-toggle-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 12px;
            border: none;
            background: transparent;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-tertiary);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .billing-toggle-btn:hover {
            color: var(--text-secondary);
        }

        .billing-toggle-btn.active {
            background: var(--cyber-cyan);
            color: var(--bg-primary);
        }

        .discount-badge {
            background: var(--green);
            color: var(--bg-primary);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .annual-savings {
            color: var(--accent-green);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .price-display {
            min-height: 3.5rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
        }

        .pricing-features li svg {
            width: 18px;
            height: 18px;
            fill: var(--accent-green);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* New Pricing Section Styles */
        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-badge-header {
            display: inline-block;
            background: transparent;
            border: 1px solid var(--border-default);
            color: var(--text-secondary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .accent-text {
            color: var(--accent-cyan);
        }

        .pricing-trust-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin: 2rem auto;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .trust-item svg {
            width: 16px;
            height: 16px;
            fill: var(--accent-green);
            flex-shrink: 0;
        }

        .billing-toggle-wrapper {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin: 2rem auto 0;
            padding: 4px;
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 8px;
            width: fit-content;
        }

        .plan-tagline {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin: 1rem 0 0.5rem;
            line-height: 1.5;
        }

        .plan-minimum {
            font-size: 0.85rem;
            color: var(--text-tertiary);
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-default);
        }

        .pricing-features li div {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .pricing-features li strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        .feature-desc {
            font-size: 0.85rem;
            color: var(--text-tertiary);
            line-height: 1.4;
        }

        .ai-badge {
            display: inline-block;
            background: var(--accent-green);
            color: var(--bg-primary);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-left: 0.5rem;
        }

        .pricing-cta {
            width: 100%;
            margin-top: 1.5rem;
        }

        .cta-subtext {
            text-align: center;
            font-size: 0.8rem;
            color: var(--text-tertiary);
            margin-top: 0.5rem;
        }

        .annual-note {
            font-size: 0.8rem;
            color: var(--accent-green);
            margin-top: 0.25rem;
            font-weight: 600;
        }

        .pricing-stats-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin: 4rem auto 2rem;
            padding: 2rem;
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
            border-radius: 12px;
            flex-wrap: wrap;
        }

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

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-cyan);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .stat-divider {
            font-size: 1.5rem;
            color: var(--text-tertiary);
            font-weight: 300;
        }

        .pricing-footer-note {
            text-align: center;
            font-size: 0.9rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 2rem auto 0;
            line-height: 1.6;
            font-style: italic;
        }

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

            .pricing-card.featured {
                transform: none;
                order: -1;
            }

            .pricing-card.featured:hover {
                transform: translateY(-4px);
            }

            .pricing-trust-bar {
                flex-direction: column;
                gap: 1rem;
            }

            .pricing-stats-bar {
                flex-direction: column;
                gap: 1.5rem;
            }

            .stat-divider {
                display: none;
            }
        }

        /* ==========================================================================
           WAITLIST SECTION
           ========================================================================== */
        .waitlist {
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .waitlist h2 {
            color: var(--text-primary);
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .waitlist-form {
            max-width: 480px;
            margin: 3rem auto 0;
            background: var(--bg-surface);
            padding: 2.5rem;
            border-radius: 4px;
            border: 1px solid var(--border-color);
            position: relative;
            z-index: 1;
            box-shadow: 0 0 30px var(--glow-cyan);
        }

        .form-group {
            margin-bottom: 1.25rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 0.875rem;
            color: var(--text-primary);
        }

        input, select {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            font-family: 'Space Grotesk', sans-serif;
            background: var(--bg-surface-hover);
            color: var(--text-primary);
            transition: all 0.2s ease;
        }

        select {
            cursor: pointer;
        }

        select option {
            background: var(--bg-surface-hover);
            color: var(--text-primary);
        }

        input::placeholder {
            color: var(--gray-400);
        }

        input:focus, select:focus {
            outline: none;
            border-color: var(--cyber-cyan);
            box-shadow: 0 0 0 3px rgba(var(--accent-cyan-rgb), 0.15);
        }

        input.error, select.error {
            border-color: var(--status-error);
        }

        .error-message {
            color: var(--status-in-progress);
            font-size: 0.8125rem;
            margin-top: 0.375rem;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .success-message {
            background: var(--accent);
            color: var(--text-primary);
            padding: 1.25rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            display: none;
            margin-top: 1.5rem;
        }

        .success-message.show {
            display: block;
            animation: slideIn 0.4s ease;
        }

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

        .privacy-note {
            text-align: center;
            font-size: 0.8125rem;
            color: var(--gray-500);
            margin-top: 1rem;
        }

        .submit-btn {
            width: 100%;
            margin-top: 0.5rem;
        }

        /* ==========================================================================
           FOOTER - Clean, organized three-column layout
           ========================================================================== */
        footer, .site-footer {
            background: var(--bg-surface);
            color: var(--text-primary);
            padding: 3rem 0 1.5rem;
            border-top: 1px solid var(--border-default);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3, .footer-title {
            color: var(--text-primary);
            font-size: 0.9375rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            font-family: 'Almarai', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand .tagline, .footer-tagline {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-top: 1rem;
            margin-bottom: 0;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a:hover {
            color: var(--cyber-cyan);
            padding-left: 5px;
        }

        .footer-link-note {
            display: block;
            font-size: 0.75rem;
            color: var(--text-tertiary);
            margin-top: 0.25rem;
            font-style: italic;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-default);
        }

        .contact, .footer-contact {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .contact a, .footer-contact a {
            color: var(--cyber-cyan);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .contact a:hover, .footer-contact a:hover {
            color: var(--text-primary);
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-legal a:not(.social-icon) {
            color: var(--accent-green);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s ease;
        }

        .footer-legal a:not(.social-icon):hover {
            color: var(--accent-green);
        }

        .copyright, .footer-copyright {
            font-size: 0.9rem;
            color: var(--text-tertiary);
        }

        .footer-legal .social-icon {
            width: 36px;
            height: 36px;
            margin: 0;
        }

        .footer-legal .social-icon svg {
            width: 20px;
            height: 20px;
        }

        .trademark-notice, .footer-trademark {
            font-size: 0.75rem;
            color: var(--text-tertiary);
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border-default);
        }

        /* Social Icons */
        .social-icon, .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-elevated);
            border: 1px solid var(--border-default);
            transition: all 0.3s ease;
        }

        .social-icon:hover, .footer-social a:hover {
            background: rgba(var(--accent-cyan-rgb), 0.15);
            border-color: var(--cyber-cyan);
            transform: translateY(-3px);
        }

        .social-icon svg, .footer-social svg {
            width: 24px;
            height: 24px;
            fill: var(--text-secondary);
            transition: fill 0.3s ease;
        }

        .social-icon:hover svg, .footer-social a:hover svg {
            fill: var(--cyber-cyan);
        }

        /* ==========================================================================
           TABLET RESPONSIVE
           ========================================================================== */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }

            .footer-brand {
                grid-column: 1 / -1;
                max-width: none;
                text-align: center;
                margin-bottom: 1rem;
            }
        }

        /* ==========================================================================
           MOBILE RESPONSIVE - Mobile-first approach
           ========================================================================== */
        @media (max-width: 768px) {
            /* Prevent horizontal overflow */
            html, body {
                overflow-x: hidden;
                max-width: 100vw;
            }

            /* Navigation */

            .theme-toggle {
                width: 36px;
                height: 36px;
                margin-left: 0.75rem;
            }

            .theme-toggle svg {
                width: 16px;
                height: 16px;
            }

            /* Typography - Mobile sizes */
            h1 {
                font-size: 1.75rem;
                line-height: 1.25;
            }

            h2 {
                font-size: 1.5rem;
            }

            /* Hero Section */
            .hero {
                margin-top: 60px;
                min-height: auto;
                padding: 2.5rem 0;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .hero-video {
                order: -1;
            }

            .hero {
                overflow: hidden;
            }

            .hero h1,
            .hero:not(.hero-about):not(.hero-simple) h1 {
                font-size: 5.8vw !important;
                word-wrap: break-word;
                overflow-wrap: break-word;
                white-space: normal;
                display: block;
                max-width: 100%;
                padding: 0;
                letter-spacing: -0.01em;
            }

            .hero .subheadline,
            .hero:not(.hero-about):not(.hero-simple) .subheadline {
                font-size: 3.8vw !important;
                word-wrap: break-word;
                overflow-wrap: break-word;
                padding: 0 0.25rem;
                line-height: 1.5;
            }

            .hero-text {
                max-width: 100%;
                padding: 0 0.25rem;
                text-align: center;
                overflow: hidden;
            }

            .hero-content {
                overflow: hidden;
                padding: 0 0.25rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.75rem;
                width: 100%;
                padding: 0 0.5rem;
            }

            .hero-buttons .btn,
            .hero-buttons .btn-outline {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
                box-sizing: border-box;
            }

            /* Mobile tap targets - 48px minimum */
            .footer-links a {
                display: block;
                padding: 12px 0;
                min-height: 48px;
            }

            .footer-legal a {
                display: inline-block;
                padding: 12px 8px;
                min-height: 48px;
            }

            .faq-question {
                min-height: 48px;
                padding: 14px 16px;
            }

            .btn, .btn-outline {
                min-height: 48px;
                padding: 14px 24px;
            }

            /* Grid layouts */
            .two-column {
                grid-template-columns: 1fr;
                gap: 1.25rem;
            }

            .three-column {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .why-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Section padding - reduced on mobile */
            section {
                padding: 4rem 0;
            }

            .container {
                padding: 0 1.25rem;
            }

            /* Cards - slightly reduced padding on mobile */
            .column,
            .feature-card,
            .why-item {
                padding: 1.5rem;
            }

            /* Forms */
            .waitlist-form {
                padding: 1.75rem;
                margin-top: 2rem;
            }

            .form-group {
                margin-bottom: 1rem;
            }

            input, select {
                padding: 0.75rem 0.875rem;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            h1 {
                font-size: 1.1rem;
            }

            h2 {
                font-size: 1.1rem;
            }

            .hero h1 {
                font-size: clamp(1rem, 5.5vw, 1.25rem);
                line-height: 1.25;
            }

            .hero .subheadline {
                font-size: clamp(0.8rem, 3.5vw, 0.9rem);
            }

            .container {
                padding: 0 0.75rem;
                overflow-x: hidden;
            }

            .btn {
                padding: 0.75rem 1rem;
                font-size: 0.8rem;
            }

            .hero-buttons .btn,
            .hero-buttons .btn-outline {
                max-width: 240px;
                font-size: 0.8rem;
            }
        }

        /* ==========================================================================
           FAQ SECTION - Clean accordion
           ========================================================================== */
        .faq {
            background: transparent;
            position: relative;
        }

        .faq h2 {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-container {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 0.75rem;
            border-radius: 10px;
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            box-shadow: 0 0 15px var(--glow-cyan);
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .faq-question {
            width: 100%;
            padding: 1.25rem 1.5rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            transition: color 0.2s ease;
        }

        .faq-question:hover {
            color: var(--cyber-cyan);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.25rem;
            font-weight: 400;
            color: var(--gray-400);
            transition: transform 0.2s ease;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
            color: var(--cyber-cyan);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .faq-answer-content p {
            margin-bottom: 0.875rem;
            font-size: 0.9375rem;
        }

        .faq-answer-content ul {
            margin: 0.75rem 0;
            padding-left: 1.25rem;
        }

        .faq-answer-content li {
            margin-bottom: 0.5rem;
            font-size: 0.9375rem;
        }

        .faq-answer-content strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* ==========================================================================
           QUIZ MODAL - Clean, focused design
           ========================================================================== */
        .quiz-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(var(--bg-primary-rgb), 0.6);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .quiz-overlay.active {
            display: flex;
        }

        .quiz-modal {
            background: var(--bg-surface);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            width: 90%;
            max-width: 560px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 0 40px var(--glow-cyan);
        }

        .quiz-header {
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .quiz-progress {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.8125rem;
            color: var(--gray-500);
            font-weight: 500;
        }

        .quiz-close {
            background: none;
            border: none;
            font-size: 1.25rem;
            color: var(--gray-400);
            cursor: pointer;
            transition: color 0.2s ease;
            padding: 0.25rem;
        }

        .quiz-close:hover {
            color: var(--gray-600);
        }

        .quiz-content {
            padding: 1.75rem;
        }

        .quiz-question {
            display: none;
        }

        .quiz-question.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .quiz-question h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.375rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .quiz-options {
            display: grid;
            gap: 0.75rem;
        }

        .quiz-option {
            padding: 1rem 1.25rem;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            background: var(--bg-surface-hover);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 0.9375rem;
            color: var(--text-secondary);
        }

        .quiz-option:hover {
            border-color: var(--cyber-cyan);
            background: rgba(var(--accent-cyan-rgb), 0.1);
        }

        .quiz-option.selected {
            border-color: var(--accent);
            background: rgba(16, 185, 129, 0.08);
        }

        .quiz-option-icon {
            font-size: 1.25rem;
        }

        .quiz-nav {
            display: flex;
            justify-content: space-between;
            margin-top: 1.75rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--gray-200);
        }

        .quiz-back {
            padding: 0.625rem 1.25rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-surface-hover);
            color: var(--text-secondary);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 500;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .quiz-back:hover {
            border-color: var(--cyber-cyan);
            color: var(--text-primary);
        }

        .quiz-back:disabled {
            opacity: 0;
            pointer-events: none;
        }

        .quiz-next {
            padding: 0.625rem 1.5rem;
            border: none;
            border-radius: 8px;
            background: var(--accent);
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .quiz-next:hover {
            background: var(--accent-hover);
        }

        .quiz-next:disabled {
            background: var(--gray-200);
            color: var(--gray-400);
            cursor: not-allowed;
        }

        /* Quiz Results */
        .quiz-results {
            display: none;
        }

        .quiz-results.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

        .quiz-results h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 1.75rem;
            text-align: center;
        }

        .result-category {
            margin-bottom: 1.25rem;
        }

        .result-category-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.625rem;
        }

        .result-category-header.required { color: var(--status-error); }
        .result-category-header.recommended { color: var(--status-warning); }
        .result-category-header.future { color: var(--gray-500); }

        .result-card {
            padding: 1rem 1.25rem;
            border-radius: 10px;
            margin-bottom: 0.625rem;
        }

        .result-card.required {
            background: rgba(220, 38, 38, 0.15);
            border-left: 3px solid var(--status-error);
        }

        .result-card.recommended {
            background: rgba(217, 119, 6, 0.15);
            border-left: 3px solid var(--status-warning);
        }

        .result-card.future {
            background: rgba(107, 107, 107, 0.15);
            border-left: 3px solid var(--text-tertiary);
        }

        .result-card h4 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: var(--gray-800);
            margin-bottom: 0.375rem;
        }

        .result-card p {
            font-size: 0.875rem;
            color: var(--gray-600);
            margin-bottom: 0.375rem;
            line-height: 1.6;
        }

        .result-card .result-meta {
            font-size: 0.8125rem;
            color: var(--gray-500);
        }

        .result-card .clearpath-price {
            color: var(--accent);
            font-weight: 600;
        }

        .quiz-results-cta {
            margin-top: 1.75rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--gray-200);
            text-align: center;
        }

        .quiz-results-cta .btn {
            width: 100%;
            margin-bottom: 0.625rem;
        }

        .quiz-results-cta p {
            font-size: 0.8125rem;
            color: var(--gray-500);
        }

        .quiz-email-form {
            margin-top: 1.25rem;
        }

        .quiz-email-form input {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            font-size: 0.9375rem;
            margin-bottom: 0.75rem;
            font-family: 'Space Grotesk', sans-serif;
            color: var(--gray-900);
        }

        .quiz-email-form input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .quiz-success {
            display: none;
            text-align: center;
            padding: 1.5rem;
        }

        .quiz-success.active {
            display: block;
        }

        .quiz-success h3 {
            color: var(--accent);
            margin-bottom: 0.75rem;
        }

        /* ==========================================================================
           OUTLINE BUTTON - Secondary CTA (Brand Guide)
           ========================================================================== */
        .btn-outline {
            display: inline-block;
            padding: 1rem 2rem;
            background: transparent;
            border: 2px solid var(--cyber-cyan);
            color: var(--cyber-cyan);
            text-decoration: none;
            font-family: 'Arcade Gamer', monospace;
            font-weight: 600;
            font-size: 0.9375rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        /* Green outline button for hero */
        .hero .btn-outline {
            background: transparent;
            border: 2px solid var(--cyber-cyan);
            color: var(--cyber-cyan);
        }

        .hero .btn-outline:hover {
            background: rgba(var(--accent-cyan-rgb), 0.1);
            transform: translate(-2px, -2px);
            box-shadow: 4px 4px 0px 0px rgba(var(--accent-cyan-rgb), 0.3);
        }

        .btn-outline:hover {
            background: rgba(var(--accent-cyan-rgb), 0.1);
            color: var(--cyber-cyan);
            transform: translate(-2px, -2px);
            box-shadow: 4px 4px 0px 0px rgba(var(--accent-cyan-rgb), 0.3);
            box-shadow: 0 8px 25px rgba(15, 0, 54, 0.3);
        }

        .btn-outline:active {
            transform: translateY(-1px) scale(0.99);
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        @media (max-width: 768px) {
            .quiz-modal {
                width: 100%;
                height: 100%;
                max-height: 100%;
                border-radius: 0;
            }

            .quiz-content {
                padding: 1.25rem;
            }

            .quiz-question h3 {
                font-size: 1.125rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn,
            .hero-buttons .btn-outline {
                width: 100%;
                text-align: center;
            }
        }

        /* ==========================================================================
           WAITLIST MODAL
           ========================================================================== */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(var(--bg-primary-rgb), 0.6);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: var(--bg-surface);
            border-radius: 16px;
            padding: 2rem;
            max-width: 440px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border: 1px solid var(--border-color);
            box-shadow: 0 0 40px var(--glow-cyan);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.25rem;
            color: var(--gray-400);
            cursor: pointer;
            transition: color 0.2s ease;
            padding: 0.25rem;
        }

        .modal-close:hover {
            color: var(--gray-600);
        }

        .modal-content h2 {
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .modal-content .form-group {
            margin-bottom: 1rem;
        }

        .modal-content .btn {
            width: 100%;
        }

        /* ==========================================================================
           SCROLL ANIMATIONS - Subtle, smooth
           ========================================================================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delay for grid items - reduced delays */
        .feature-card:nth-child(1) { transition-delay: 0.05s; }
        .feature-card:nth-child(2) { transition-delay: 0.1s; }
        .feature-card:nth-child(3) { transition-delay: 0.15s; }
        .feature-card:nth-child(4) { transition-delay: 0.2s; }

        .why-item:nth-child(1) { transition-delay: 0.05s; }
        .why-item:nth-child(2) { transition-delay: 0.1s; }
        .why-item:nth-child(3) { transition-delay: 0.15s; }

        /* Removed animated gradient - too busy */

        /* ==========================================================================
           SCROLL ANIMATIONS - Typewriter & Color Reveal
           ========================================================================== */

        /* Typewriter effect for problem section */
        .typewriter-text .word {
            display: inline;
            opacity: 0;
            filter: blur(4px);
            transform: translateY(8px);
            transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
        }

        .typewriter-text .word.revealed {
            opacity: 1;
            filter: blur(0);
            transform: translateY(0);
        }

        /* Highlight key phrase */
        .typewriter-text .highlight-phrase {
            color: var(--cyber-cyan);
            font-weight: 600;
        }

        /* ClearPath Way - Gray to Neon animation */
        .column.approach.clearpath {
            position: relative;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .column.approach.clearpath:not(.activated) {
            background: var(--bg-surface) !important;
            border: 1px solid var(--border-color) !important;
            border-top: 3px solid var(--border-color) !important;
            box-shadow: none !important;
            transition: all 0.3s ease;
        }

        .column.approach.clearpath:not(.activated):hover {
            box-shadow: 0 0 40px rgba(var(--accent-cyan-rgb), 0.4), 0 0 80px rgba(var(--accent-cyan-rgb), 0.2) !important;
            border-color: var(--cyber-cyan) !important;
            transform: translateY(-4px);
        }

        .column.approach.clearpath:not(.activated) h3 {
            color: var(--gray-500) !important;
            text-shadow: none !important;
            transition: color 0.8s ease, text-shadow 0.8s ease;
        }

        .column.approach.clearpath:not(.activated):hover h3 {
            color: var(--text-primary) !important;
            text-shadow: 0 0 25px rgba(var(--accent-cyan-rgb), 0.3) !important;
        }

        .column.approach.clearpath:not(.activated) p {
            transition: color 0.8s ease;
        }

        /* Activated state - persistent neon glow */
        .column.approach.clearpath.activated {
            background: var(--bg-surface) !important;
            border: 1px solid var(--cyber-cyan) !important;
            border-top: 3px solid var(--cyber-cyan) !important;
            box-shadow: 0 0 30px rgba(var(--accent-cyan-rgb), 0.35), 0 0 60px rgba(var(--accent-cyan-rgb), 0.15) !important;
            transition: all 0.8s ease;
        }

        .column.approach.clearpath.activated h3 {
            font-family: 'Arcade Gamer', monospace !important;
            color: var(--text-primary) !important;
            text-shadow: 0 0 25px rgba(var(--accent-cyan-rgb), 0.3) !important;
        }
