        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 70px; /* Adjust for fixed navbar height */
        }

        body {
            font-family: 'IBM Plex Sans', sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden; /* Prevent horizontal scroll */
            max-width: 100%;
            /* Subtle gradient background */
            background: #0a0a0a radial-gradient(circle at top left, rgba(131, 0, 254, 0.1), transparent 40%),
                radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.1), transparent 50%);
            /* Hide scrollbar */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
        }

        body::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        /* Prevent scrolling when mobile menu is open */
        body.no-scroll {
            overflow: hidden;
        }

        /* Particles Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1; /* Behind other content */
            background-color: #000;
        }

        /* Navbar Styles */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem; /* Padding for mobile */
            background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
            backdrop-filter: blur(16px); /* Frosted glass effect */
            -webkit-backdrop-filter: blur(16px);
            z-index: 1000; /* Above other content */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(131, 0, 254, 0.1); /* Subtle shadow */
            border-bottom: 1px solid #222; /* Bottom border */
            transition: height 0.3s ease-in-out; /* Smooth height transition */
        }

        .navbar-logo img {
            height: 35px;
            transition: transform 0.3s ease;
            display: block; /* Prevents extra space below image */
        }

        .navbar-logo img:hover {
            transform: scale(1.1); /* Slight zoom on hover */
        }

        /* Desktop Navigation Links */
        .navbar-links {
            display: none; /* Hidden on mobile */
            align-items: center;
            gap: 1rem;
        }

        .navbar-links a {
            color: #e5e7eb; /* Light gray text */
            text-decoration: none;
            font-weight: 500;
            font-family: 'Roboto Mono', monospace;
            padding: 0.6rem 0.75rem;
            transition: color 0.3s, text-shadow 0.3s, background-color 0.3s;
            border-radius: 4px;
        }

        .navbar-links a:hover {
            color: #8300fe; /* Purple on hover */
            text-shadow: 0 0 8px rgba(131, 0, 254, 0.7); /* Glow effect */
            background-color: rgba(131, 0, 254, 0.1); /* Subtle background */
        }

        /* Login/Signup Button */
        .login-btn {
            display: inline-block;
            color: white;
            background: transparent;
            border: 2px solid #8300fe; /* Purple border */
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: bold;
            font-family: 'Orbitron', sans-serif; /* Techy font */
            transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out, color 0.3s ease-in-out, transform 0.3s ease-in-out;
            text-align: center;
            box-shadow: 0 0 5px rgba(131, 0, 254, 0.3); /* Subtle glow */
        }

        .login-btn:hover {
            background: #8300fe; /* Purple background on hover */
            box-shadow: 0 0 10px #8300fe, 0 0 15px #8300fe; /* Enhanced glow */
            color: white;
            transform: scale(1.05); /* Slight scale up */
        }

        /* Hamburger Menu (Mobile) */
        .hamburger-menu {
            display: block; /* Visible on mobile */
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1050; /* Above navbar content */
            padding: 0.5rem;
            line-height: 0; /* Ensure icon aligns well */
        }

        .hamburger-menu svg {
            width: 28px;
            height: 28px;
            stroke: #e5e7eb; /* Icon color */
            stroke-width: 2;
            transition: stroke 0.3s ease;
        }

        .hamburger-menu:hover svg {
            stroke: #8300fe; /* Purple on hover */
        }

        /* Mobile Navigation Menu Panel */
        .mobile-nav-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 80%; /* Takes up most of the screen width */
            max-width: 300px; /* Limit maximum width */
            height: 100vh;
            background: rgba(10, 10, 20, 0.8); /* Dark, semi-transparent background */
            backdrop-filter: blur(16px); /* Frosted glass effect */
            -webkit-backdrop-filter: blur(16px);
            z-index: 1100; /* Above everything */
            transform: translateX(-100%); /* Off-screen by default */
            opacity: 0;
            visibility: hidden;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-in-out, visibility 0s linear 0.4s; /* Smooth slide-in */
            display: flex;
            flex-direction: column;
            padding: 6rem 2rem 2rem; /* Padding inside the menu */
            border-right: 1px solid rgba(131, 0, 254, 0.2); /* Subtle right border */
            box-shadow: 5px 0 25px rgba(131, 0, 254, 0.1); /* Shadow effect */
        }

        .mobile-nav-menu.active {
            transform: translateX(0); /* Slide in */
            opacity: 1;
            visibility: visible;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-in-out, visibility 0s linear 0s;
        }

        .mobile-nav-menu a {
            color: #e5e7eb;
            text-decoration: none;
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separator */
            transition: color 0.3s ease, padding-left 0.3s ease;
            text-align: left;
        }

        .mobile-nav-menu a:hover {
            color: #c084fc; /* Lighter purple on hover */
            padding-left: 0.5rem; /* Indent on hover */
        }

        /* Mobile Login Button Styling */
        .mobile-nav-menu .login-btn-link {
            margin-top: 2rem;
            text-align: center;
            border-bottom: none; /* Remove separator */
            padding: 0;
        }
        .mobile-nav-menu .login-btn-link:hover {
            padding-left: 0; /* No indent on hover */
        }
        .mobile-nav-menu .login-btn {
            width: 100%; /* Full width */
            padding: 0.8rem 1rem;
            font-size: 1rem;
        }

        /* Close Button for Mobile Menu */
        .close-menu-btn {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.25rem;
            line-height: 0;
            color: #fff;
        }

        .close-menu-btn svg {
            width: 30px;
            height: 30px;
            stroke: currentColor;
            stroke-width: 2;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .close-menu-btn:hover {
            color: #c084fc; /* Lighter purple */
        }

        .close-menu-btn:hover svg {
            transform: rotate(90deg); /* Rotate icon on hover */
        }

        /* Main Content Area */
        main {
            padding-top: 70px; /* Account for fixed navbar */
            position: relative; /* Needed for z-index stacking */
            z-index: 10; /* Above particles, below navbar */
            width: 100%;
            max-width: 100%;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        /* Hero Section Styles */
        .hero.centered-hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: calc(100vh - 70px); /* Full viewport height minus navbar */
            padding: 4rem 1rem 6rem 1rem; /* Vertical and horizontal padding */
            max-width: 900px; /* Limit content width */
            margin: 0 auto; /* Center horizontally */
            text-align: center;
            position: relative; /* For pseudo-elements */
            z-index: 5; /* Above particles */
            overflow: hidden; /* Clip pseudo-elements if needed */
        }

        /* Hero background glow */
        .hero.centered-hero::before {
            content: '';
            position: absolute;
            inset: 0; /* Cover the entire hero section */
            background: radial-gradient(ellipse at center, rgba(131, 0, 254, 0.08) 0%, transparent 70%);
            z-index: -1; /* Behind content */
            opacity: 0.9;
        }

        .hero-content {
            width: 100%;
            position: relative; /* For heading pseudo-element */
        }

        /* Hero Heading */
        .hero-content h1 {
            font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem); /* Responsive font size */
            margin: 0 0 1rem 0;
            font-family: 'Orbitron', sans-serif; /* Techy font */
            color: #fff;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(168, 85, 247, 0.7), 0 0 35px rgba(168, 85, 247, 0.5); /* Glow effect */
            animation: headingPulse 6s infinite ease-in-out; /* Pulse animation */
            position: relative; /* For pseudo-element */
        }

        /* Heading background pulse */
        .hero-content h1::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 150%; /* Larger than heading */
            padding-bottom: 150%; /* Create aspect ratio for circle */
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(1);
            z-index: -1; /* Behind heading */
            opacity: 0;
            animation: backgroundGlow 6s infinite ease-in-out;
            animation-delay: 1s; /* Delay start */
        }

        @keyframes backgroundGlow {
            0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
            50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
        }

        @keyframes headingPulse {
            0%, 100% { text-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 15px rgba(168, 85, 247, 0.6), 0 0 25px rgba(168, 85, 247, 0.4); }
            50% { text-shadow: 0 0 12px rgba(255, 255, 255, 0.9), 0 0 25px rgba(168, 85, 247, 0.8), 0 0 40px rgba(168, 85, 247, 0.6); }
        }

        /* Hero Tagline */
        .hero-content .tagline {
            font-size: clamp(0.9rem, 2vw + 0.5rem, 1.15rem); /* Responsive font size */
            font-family: 'Roboto Mono', monospace;
            color: transparent; /* Make text transparent */
            margin-bottom: 1.2rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* Animated gradient text */
            background: linear-gradient(90deg, #c084fc, #ff6600, #c084fc);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGradientShift 5s linear infinite;
        }

        @keyframes textGradientShift {
            to { background-position: 200% center; }
        }

        /* Hero Info Text (Typing Effect) */
        .hero-content .info {
            font-size: clamp(0.95rem, 1.5vw + 0.6rem, 1.1rem); /* Responsive font size */
            font-family: 'IBM Plex Sans', sans-serif;
            color: #d1d5db; /* Lighter gray */
            line-height: 1.8;
            max-width: 55ch; /* Optimal line length */
            margin: 0 auto 2.5rem auto; /* Centering and spacing */
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
            min-height: 3.6em; /* Reserve space for text */
        }

        /* Typing cursor */
        .info .cursor {
            display: inline-block;
            width: 8px;
            height: 1.1em;
            background-color: #c084fc; /* Lighter purple */
            margin-left: 4px;
            animation: blinkCursor 0.7s infinite;
            vertical-align: text-bottom; /* Align with text */
        }

        @keyframes blinkCursor {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Hero Buttons Container */
        .hero-buttons {
            display: flex;
            flex-direction: column; /* Stack buttons on mobile */
            gap: 1rem;
            align-items: center;
            width: 100%;
            max-width: 300px; /* Limit width on mobile */
            margin: 0 auto 2.5rem auto;
        }

        /* General Hero Button Styles */
        .hero-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            border-radius: 8px;
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(0.9rem, 1vw + 0.7rem, 1rem); /* Responsive font size */
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth transition */
            cursor: pointer;
            width: 100%; /* Full width on mobile */
            position: relative; /* For pseudo-element and icon positioning */
            overflow: hidden; /* For shine effect */
            border: 2px solid transparent;
            box-shadow: 0 0 8px rgba(131, 0, 254, 0.2); /* Subtle glow */
        }

        /* Shine effect on hover */
        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: skewX(-25deg);
            transition: left 0.6s ease;
            z-index: 1; /* Above background, below text */
        }

        .hero-btn:hover::before {
            left: 150%;
        }

        .hero-btn:hover {
            box-shadow: 0 0 10px #8300fe, 0 0 20px #a855f7; /* Enhanced glow */
            transform: scale(1.05); /* Slight scale up */
        }

        /* Primary Button */
        .hero-btn.primary {
            background-color: #8300fe; /* Purple */
            color: white;
            border-color: #8300fe;
        }

        .hero-btn.primary:hover {
            background-color: #a855f7; /* Lighter purple */
            border-color: #a855f7;
        }

        /* Secondary Button */
        .hero-btn.secondary {
            background-color: transparent;
            color: #ccc; /* Light gray text */
            border-color: #555; /* Dark gray border */
        }

        .hero-btn.secondary:hover {
            border-color: #8300fe; /* Purple border */
            color: #8300fe; /* Purple text */
        }

        /* Ensure icons and text are above shine effect */
        .hero-btn i.lucide,
        .hero-btn span {
            z-index: 2;
            position: relative;
        }

        .hero-btn i.lucide {
            width: 1.1em;
            height: 1.1em;
            transition: filter 0.3s ease;
        }

        /* Adjust icon color for secondary button */
        .hero-btn.secondary i.lucide {
            filter: invert(0.8); /* Make icon lighter */
        }

        .hero-btn.secondary:hover i.lucide {
            /* Change icon color to purple on hover */
            filter: invert(13%) sepia(99%) saturate(6000%) hue-rotate(270deg) brightness(95%) contrast(140%);
        }

        /* Button active state */
        .hero-btn:active {
            transform: scale(0.98) translateY(0); /* Slightly smaller */
            filter: brightness(0.9); /* Darken slightly */
            transition-duration: 0.1s;
        }

        /* Micro Features / Badges */
        .micro-features {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping */
            justify-content: center;
            gap: 0.8rem;
            margin-top: 2.5rem;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background-color: rgba(131, 0, 254, 0.1); /* Subtle purple background */
            border: 1px solid rgba(131, 0, 254, 0.3); /* Subtle purple border */
            color: #e5e7eb;
            padding: 0.4rem 0.8rem;
            border-radius: 15px; /* Pill shape */
            font-family: 'Roboto Mono', monospace;
            font-size: 0.8rem;
            transition: background-color 0.3s, box-shadow 0.3s;
        }

        .badge:hover {
            background-color: rgba(131, 0, 254, 0.2);
            box-shadow: 0 0 8px rgba(131, 0, 254, 0.4); /* Glow on hover */
        }

        .badge i.lucide {
            width: 1em;
            height: 1em;
            filter: invert(85%); /* Lighten icon */
        }

        /* Scroll Down Indicator */
        .hero-scroll-down {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: #aaa; /* Gray */
            font-size: 0.8rem;
            text-decoration: none;
            opacity: 0.7;
            transition: opacity 0.3s ease, color 0.3s ease;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-scroll-down:hover {
            opacity: 1;
            color: #c084fc; /* Lighter purple */
        }

        .hero-scroll-down i.lucide {
            width: 28px;
            height: 28px;
            margin-bottom: 0.3rem;
            animation: bounceArrow 2s infinite ease-in-out; /* Bouncing animation */
        }

        @keyframes bounceArrow {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
            60% { transform: translateY(-4px); }
        }

        /* General Content Section Styles */
        .content-section {
            padding: 4rem 1rem; /* Padding for mobile */
            max-width: 1100px; /* Limit content width */
            margin: 0 auto; /* Center horizontally */
            position: relative; /* For z-index */
            z-index: 5; /* Above particles */
        }

        /* Section Separator Line */
        hr.section-separator {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, #333, transparent); /* Faded line */
            margin: 3rem auto;
            width: 70%;
            max-width: 500px;
        }

        /* Section Heading Styles */
        .section-heading {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .section-heading h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8em, 4vw + 0.8em, 2.2em); /* Responsive font size */
            color: #a855f7; /* Lighter purple */
            text-shadow: 0 0 10px rgba(168, 85, 247, 0.4); /* Glow */
            margin-bottom: 0.5rem;
            position: relative; /* For underline */
            display: inline-block; /* Allows underline positioning */
            padding-bottom: 0.4rem;
        }

        /* Orange heading variant */
        .section-heading h2.orange-heading {
            color: #ff6600; /* Orange */
            text-shadow: 0 0 10px rgba(255, 102, 0, 0.4);
        }

        /* Animated underline */
        .section-heading h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #a855f7, #ff6600); /* Purple to orange gradient */
            border-radius: 2px;
            animation: pulseUnderline 3s infinite ease-in-out;
        }

        /* Orange underline variant */
        .section-heading h2.orange-heading::after {
            background: linear-gradient(90deg, #ff6600, #a855f7); /* Orange to purple */
        }

        @keyframes pulseUnderline {
            0%, 100% { width: 40px; opacity: 0.7; filter: brightness(1); }
            50% { width: 70px; opacity: 1; filter: brightness(1.3); }
        }

        /* Section Subtitle */
        .section-heading .subtitle {
            font-family: 'Roboto Mono', monospace;
            color: #aaa; /* Gray */
            font-size: clamp(0.9rem, 1.2vw + 0.6rem, 0.95rem); /* Responsive font size */
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.8;
        }

        /* Features Section Specific Styles */
        #features {
            position: relative;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            overflow: hidden; /* Prevent overflow from animations */
        }

        /* Info Grid (Features) */
        .info-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 1.5rem;
            margin-bottom: 3rem;
        }

        /* Info Card (Features) */
        .info-card {
            background: rgba(18, 18, 22, 0.6); /* Dark, semi-transparent */
            border: 1px solid #2a2a2a; /* Dark border */
            padding: 1.5rem;
            border-radius: 10px;
            transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(131, 0, 254, 0.05); /* Subtle shadow */
            min-height: 260px; /* Ensure consistent height */
            backdrop-filter: blur(8px); /* Frosted glass */
            -webkit-backdrop-filter: blur(8px);
        }

        .info-card:hover {
            transform: translateY(-5px); /* Lift effect */
            background-color: rgba(25, 25, 35, 0.8); /* Slightly lighter background */
            border-color: #444; /* Lighter border */
        }

        /* Purple Card Variant Hover */
        .info-card.purple:hover {
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.3), 0 0 30px rgba(168, 85, 247, 0.2); /* Purple glow */
            border-color: #a855f7; /* Purple border */
        }

        /* Orange Card Variant Hover */
        .info-card.orange:hover {
            box-shadow: 0 0 20px rgba(251, 146, 60, 0.3), 0 0 30px rgba(251, 146, 60, 0.2); /* Orange glow */
            border-color: #fb923c; /* Orange border */
        }

        /* Card Icon */
        .info-card .icon {
            line-height: 0; /* Remove extra space */
            margin-bottom: 0.5rem;
        }

        .info-card .icon i.lucide {
            width: 28px;
            height: 28px;
            opacity: 0.9;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
        }

        .info-card:hover .icon i.lucide {
            transform: scale(1.15) rotate(8deg); /* Scale and rotate icon */
            filter: brightness(1.3); /* Make icon brighter */
        }

        /* Icon Color Variants */
        .info-card.purple .icon i.lucide {
            filter: invert(13%) sepia(99%) saturate(6000%) hue-rotate(270deg) brightness(95%) contrast(140%); /* Purple */
        }

        .info-card.orange .icon i.lucide {
            filter: invert(69%) sepia(63%) saturate(581%) hue-rotate(348deg) brightness(102%) contrast(101%); /* Orange */
        }

        /* Card Heading */
        .info-card h4 {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1em;
            color: #eee; /* Off-white */
            margin-bottom: 0.25rem;
            margin-top: 0;
        }

        .info-card.purple h4 { color: #c084fc; } /* Lighter purple */
        .info-card.orange h4 { color: #fb923c; } /* Lighter orange */

        /* Card Paragraph */
        .info-card p {
            font-size: 0.95rem;
            color: #ccc; /* Light gray */
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        /* Benefit Caption (at the bottom of the card) */
        .benefit-caption {
            font-size: 0.85rem;
            font-weight: bold;
            font-family: 'Roboto Mono', monospace;
            margin-top: auto; /* Push to bottom */
            padding-top: 0.5rem;
            opacity: 0.8;
        }

        .info-card.purple .benefit-caption { color: #c084fc; }
        .info-card.orange .benefit-caption { color: #fb923c; }

        /* Features Call-to-Action Button */
        .features-cta {
            display: block;
            text-align: center;
            margin-top: 2rem;
        }

        .features-cta .hero-btn {
            width: 100%; /* Full width on mobile */
            max-width: 300px; /* Limit width */
            margin-left: auto;
            margin-right: auto;
            padding: 0.8rem 1.5rem;
        }

        .features-cta .hero-btn:hover {
            background: #8300fe; /* Purple background */
            box-shadow: 0 0 10px #8300fe, 0 0 20px #8300fe, 0 0 30px #a855f7; /* Strong glow */
            color: white;
            transform: scale(1.05) translateY(-2px); /* Lift and scale */
        }

        /* Detection Workflow Section */
        #detection-workflow {
            padding: 4rem 1rem;
            position: relative;
            overflow: visible; /* Allow elements to slightly overflow if needed */
        }

        .workflow-content-wrapper {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .workflow-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .workflow-header h2 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.8em, 4vw + 0.8em, 2em); /* Responsive */
            color: #eee; /* Off-white */
            text-shadow: 0 0 12px rgba(192, 132, 252, 0.5); /* Purple glow */
            margin-bottom: 0.5rem;
        }

        .workflow-header .subtitle { /* Reusing subtitle style */
            font-size: clamp(0.9rem, 1.2vw + 0.6rem, 0.95rem);
            color: #aaa;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.8;
        }

        /* Workflow Grid Layout */
        .workflow-grid-container {
            display: grid;
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 2rem;
            align-items: start; /* Align items to the top */
            margin-bottom: 3rem;
            position: relative;
        }

        /* Decorative connecting line (desktop only) */
        .workflow-grid-container::after {
            content: '';
            position: absolute;
            top: 80px; /* Position relative to grid items */
            left: 45%; /* Start position (adjust based on grid columns) */
            width: 10%; /* Width of the connector */
            height: 100px; /* Height of the connector */
            border: 1px dashed rgba(168, 85, 247, 0.4); /* Dashed purple line */
            border-width: 0 0 1px 1px; /* Only bottom and left borders */
            border-bottom-left-radius: 30px; /* Rounded corner */
            opacity: 0.6;
            z-index: 0; /* Behind grid items */
            display: none; /* Hidden on mobile by default */
        }

        /* Workflow Visual Panel (Left side on desktop) */
        .workflow-visual-panel {
            background-color: transparent;
            border: none;
            border-radius: 12px;
            padding: 0;
            display: flex; /* Center content */
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 250px; /* Minimum height */
            box-shadow: 0 0 80px 5px rgba(131, 0, 254, 0.08); /* Soft glow */
            transition: transform 0.3s ease-in-out, box-shadow 0.4s ease-in-out;
            position: relative; /* For pseudo-element */
            overflow: hidden; /* For scanline effect */
        }

        /* Scanline effect */
        .workflow-visual-panel::before {
            content: '';
            position: absolute;
            left: 0;
            top: -10%; /* Start above */
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent); /* Purple gradient */
            box-shadow: 0 0 5px rgba(168, 85, 247, 0.8);
            animation: scanline 4s linear infinite;
            opacity: 0.7;
        }

        @keyframes scanline {
            0% { top: -10%; }
            100% { top: 110%; } /* Move down */
        }

        .workflow-visual-panel:hover {
            transform: scale(1.02); /* Slight scale up */
            box-shadow: 0 0 100px 8px rgba(131, 0, 254, 0.15); /* Enhanced glow */
        }

        .workflow-visual-panel img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            opacity: 0.9;
        }

        /* Workflow Steps Panel (Right side on desktop) */
        .workflow-steps-panel {
            position: relative; /* For pseudo-elements */
            padding-left: 10px; /* Spacing from timeline */
        }

        /* Background gradient behind steps */
        .workflow-steps-panel::after {
            content: '';
            position: absolute;
            inset: -30px -20px; /* Extend beyond panel */
            background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 10, 15, 0.8) 80%, #0a0a0a 100%);
            z-index: 0; /* Behind steps */
            pointer-events: none; /* Allow clicks through */
            border-radius: 10px;
        }

        /* Vertical timeline bar */
        .workflow-steps-panel::before {
            content: '';
            position: absolute;
            left: 35px; /* Position relative to step icons */
            top: 25px;
            bottom: 25px;
            width: 2px;
            background: linear-gradient(to bottom, transparent, rgba(192, 132, 252, 0.2) 15%, rgba(192, 132, 252, 0.7) 50%, rgba(192, 132, 252, 0.2) 85%, transparent); /* Faded purple gradient */
            box-shadow: 0 0 6px rgba(192, 132, 252, 0.5); /* Glow */
            opacity: 0.8;
            z-index: 0; /* Behind step cards */
            border-radius: 1px;
        }

        .workflow-steps-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Individual Step Card */
        .step-card {
            display: flex;
            align-items: flex-start; /* Align icon and text to top */
            gap: 1rem;
            margin-bottom: 1.5rem;
            position: relative; /* For z-index */
            z-index: 1; /* Above timeline bar */
            padding: 1rem 1.2rem;
            background: rgba(30, 25, 50, 0.6); /* Dark purple tint */
            border-radius: 10px;
            border: 1px solid rgba(131, 0, 254, 0.2); /* Subtle purple border */
            box-shadow: 0 0 60px 0px rgba(168, 85, 247, 0.06); /* Very soft glow */
            transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out, box-shadow 0.4s ease-in-out;
            overflow: hidden; /* Clip potential overflow */
            backdrop-filter: blur(5px); /* Subtle blur */
            -webkit-backdrop-filter: blur(5px);
        }

        .step-card:hover {
            background-color: rgba(45, 35, 70, 0.8); /* Lighter purple tint */
            border-color: rgba(168, 85, 247, 0.5); /* Stronger purple border */
            transform: translateY(-3px) scale(1.01); /* Lift and slight scale */
            box-shadow: 0 8px 80px 8px rgba(168, 85, 247, 0.2); /* Pronounced glow */
        }

        .step-card:last-child {
            margin-bottom: 0; /* Remove margin from last item */
        }

        /* Step Number/Icon Circle */
        .step-number-icon {
            flex-shrink: 0; /* Prevent shrinking */
            width: 45px;
            height: 45px;
            background: linear-gradient(145deg, rgba(131, 0, 254, 0.25), rgba(168, 85, 247, 0.35)); /* Purple gradient */
            border-radius: 50%;
            display: flex;
            flex-direction: column; /* Stack number and icon */
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(168, 85, 247, 0.6); /* Purple border */
            box-shadow: 0 0 12px rgba(168, 85, 247, 0.35); /* Purple glow */
            font-family: 'Orbitron', sans-serif;
            font-size: 1em;
            font-weight: bold;
            color: #e9d5ff; /* Light purple text */
            line-height: 1;
            transition: transform 0.3s ease;
            animation: iconContainerPulse 4s infinite ease-in-out; /* Pulse animation */
        }

        @keyframes iconContainerPulse {
            0%, 100% { box-shadow: 0 0 12px rgba(168, 85, 247, 0.35); }
            50% { box-shadow: 0 0 20px 4px rgba(168, 85, 247, 0.5); } /* Enhanced glow */
        }

        .step-number-icon i.lucide {
            width: 16px;
            height: 16px;
            margin-top: 2px; /* Space below number */
            stroke: #c084fc; /* Lighter purple icon */
            opacity: 0.8;
            transition: transform 0.3s ease;
        }

        .step-card:hover .step-number-icon {
            transform: scale(1.05); /* Scale up icon container */
            animation: none; /* Stop pulse on hover */
        }

        .step-card:hover .step-number-icon i.lucide {
            transform: rotate(5deg); /* Tilt icon slightly */
        }

        /* Step Content (Text) */
        .step-content h4 {
            font-family: 'Roboto Mono', monospace;
            font-size: 1.1em;
            color: #d8b4fe; /* Very light purple */
            margin-bottom: 0.4rem;
            margin-top: 0;
        }

        .step-content p {
            font-size: 0.9rem;
            color: #ccc; /* Light gray */
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Workflow Demo Button */
        .workflow-demo-button-container {
            text-align: center;
            margin-top: 3rem;
        }

        .workflow-demo-button-container .hero-btn.secondary {
            padding: 0.9rem 1.5rem;
            font-size: clamp(1rem, 1.5vw + 0.7rem, 1.1rem); /* Slightly larger */
            border-width: 2px;
            animation: pulseBorder 2.5s infinite ease-out; /* Pulsing border */
            width: 100%; /* Full width on mobile */
            max-width: 300px; /* Limit width */
            margin-left: auto;
            margin-right: auto;
        }

        @keyframes pulseBorder {
            0% { box-shadow: 0 0 0 0 rgba(131, 0, 254, 0.5); }
            70% { box-shadow: 0 0 0 10px rgba(131, 0, 254, 0); } /* Expand shadow */
            100% { box-shadow: 0 0 0 0 rgba(131, 0, 254, 0); }
        }

        .workflow-demo-button-container .hero-btn.secondary:hover {
            box-shadow: 0 0 15px rgba(131, 0, 254, 0.6), 0 0 25px rgba(131, 0, 254, 0.4); /* Purple glow */
            transform: scale(1.05); /* Scale up */
            animation: none; /* Stop pulse on hover */
        }


        /* Technical Details Section */
        #tech-details {
            /* Fading background */
            background: linear-gradient(to bottom, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.7) 70%, transparent 100%);
            border-top: 1px solid #222;
            padding: 4rem 1rem 5rem 1rem; /* Padding */
        }

        .tech-layout-container {
            display: grid;
            grid-template-columns: 1fr; /* Single column mobile */
            gap: 2rem;
            align-items: flex-start;
        }

        /* Text Content (Left on Desktop) */
        .tech-text-content h3 {
            font-family: 'Orbitron', sans-serif;
            font-size: clamp(1.6em, 3vw + 0.8em, 1.8em); /* Responsive */
            color: #ff6600; /* Orange */
            margin-bottom: 1rem;
        }

        .tech-text-content p {
            color: #ccc;
            margin-bottom: 2rem;
            font-size: clamp(0.95rem, 1.2vw + 0.6rem, 1rem); /* Responsive */
            line-height: 1.7;
        }

        /* Tech Specs Grid */
        .tech-specs-grid {
            display: grid;
            grid-template-columns: 1fr; /* Single column mobile */
            gap: 1rem;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tech-spec-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(30, 30, 30, 0.4); /* Dark background */
            padding: 0.8rem 1rem;
            border-radius: 8px;
            border: 1px solid #333; /* Dark border */
            transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
        }

        .tech-spec-item:hover {
            background-color: rgba(45, 45, 45, 0.6); /* Lighter background */
            border-color: #ff6600; /* Orange border */
        }

        .tech-spec-item .icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            opacity: 0.8;
            filter: invert(69%) sepia(63%) saturate(581%) hue-rotate(348deg) brightness(102%) contrast(101%); /* Orange icon */
        }

        .tech-spec-item span {
            color: #ccc;
            font-size: 0.9rem;
        }

        .tech-spec-item strong {
            color: #fff;
            font-weight: 600;
        }

        /* Code Block Container (Right on Desktop) */
        .code-block-container {
            background: rgba(10, 10, 20, 0.5); /* Dark, transparent background */
            backdrop-filter: blur(12px); /* Frosted glass */
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
            border-radius: 12px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.25), 0 0 40px rgba(168, 85, 247, 0.1); /* Shadow and glow */
            overflow: hidden; /* Clip content */
            position: relative; /* For pseudo-elements */
            animation: pulseContainerGlow 6s infinite ease-in-out; /* Pulsing glow */
            transition: box-shadow 0.3s ease;
        }

        @keyframes pulseContainerGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.25), 0 0 40px rgba(168, 85, 247, 0.1); }
            50% { box-shadow: 0 0 25px rgba(0, 0, 0, 0.35), 0 0 50px 5px rgba(168, 85, 247, 0.15); } /* Enhanced glow */
        }

        /* Code Block Title Bar */
        .code-title-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: rgba(31, 41, 55, 0.7); /* Dark gray */
            padding: 0.6rem 1rem;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.85em;
            color: #9ca3af; /* Muted text color */
            border-bottom: 1px solid rgba(75, 85, 99, 0.7); /* Separator */
        }

        /* Window Control Buttons (Fake) */
        .window-buttons {
            display: flex;
            gap: 0.5rem;
        }

        .window-buttons span {
            display: block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .window-buttons .close { background-color: #ff5f57; } /* Red */
        .window-buttons .minimize { background-color: #ffbd2e; } /* Yellow */
        .window-buttons .maximize { background-color: #28c940; } /* Green */

        /* Filename in Title Bar */
        .code-filename {
            flex-grow: 1; /* Take remaining space */
            text-align: center;
            padding-left: 2rem; /* Adjust spacing */
        }

        /* Copy Code Button */
        #copy-code-btn {
            background: none;
            border: none;
            color: #9ca3af; /* Muted color */
            cursor: pointer;
            padding: 0;
            transition: color 0.2s ease;
            line-height: 0; /* Align icon */
        }

        #copy-code-btn:hover {
            color: #fff; /* White on hover */
        }

        #copy-code-btn i.lucide {
            width: 16px;
            height: 16px;
            vertical-align: middle;
        }

        /* Code Area */
        .code-block-container pre {
            margin: 0;
            padding: 1rem;
            max-height: 350px; /* Limit height and enable scroll */
            overflow: auto; /* Enable scrollbars */
            background-color: transparent; /* Inherit container background */
            border: none;
            padding-left: 3.5rem; /* Space for line numbers */
            position: relative; /* For line number area */
            font-family: 'Roboto Mono', monospace;
        }

        /* Line Number Area */
        .code-block-container pre::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 2.5rem; /* Width of the area */
            background-color: rgba(0, 0, 0, 0.15); /* Slightly darker */
            border-right: 1px solid rgba(75, 85, 99, 0.5); /* Separator */
            z-index: 0; /* Behind code */
        }

        /* Code Text */
        .code-block-container code {
            font-size: 0.85em;
            color: #d1d5db; /* Default code color */
            z-index: 1; /* Above line number area */
            position: relative;
            display: block; /* Ensure proper layout */
        }

        /* Syntax Highlighting Styles */
        .code-block-container .code-keyword { color: #bb86fc; } /* Purple */
        .code-block-container .code-string { color: #8ef7c9; } /* Teal */
        .code-block-container .code-comment { color: #888; font-style: italic; } /* Gray */
        .code-block-container .code-function { color: #82aaff; } /* Blue */
        .code-block-container .code-number { color: #f78c6c; } /* Orange */
        .code-block-container .code-boolean { color: #f78c6c; } /* Orange */
        .code-block-container .code-class { color: #c3e88d; font-weight: bold; } /* Green */
        .code-block-container .code-method { color: #82aaff; } /* Blue */
        .code-block-container .code-variable { color: #e5e7eb; } /* Light Gray */
        .code-block-container .code-builtin { color: #ffcb6b; } /* Yellow */

        /* Custom Scrollbar for Code Block */
        .code-block-container pre::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        .code-block-container pre::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 4px;
        }

        .code-block-container pre::-webkit-scrollbar-thumb {
            background-color: rgba(131, 0, 254, 0.4); /* Purple scrollbar */
            border-radius: 4px;
            border: 1px solid rgba(0, 0, 0, 0.3);
        }

        .code-block-container pre::-webkit-scrollbar-thumb:hover {
            background-color: rgba(131, 0, 254, 0.6); /* Darker purple on hover */
        }


        /* Call to Action (CTA) Section */
        #cta-section {
            text-align: center;
            padding: 4rem 1rem;
            background: radial-gradient(ellipse at bottom, rgba(131, 0, 254, 0.15) 0%, transparent 70%); /* Bottom glow */
            position: relative;
            overflow: hidden; /* For scanlines */
        }

        /* Vertical scanline effects */
        #cta-section::before,
        #cta-section::after {
            content: '';
            position: absolute;
            left: 30%;
            bottom: -100%; /* Start below */
            width: 1px;
            height: 80%;
            background: linear-gradient(to top, transparent, rgba(168, 85, 247, 0.5), transparent); /* Faded purple line */
            animation: riseScanline 10s linear infinite;
            opacity: 0.3;
            z-index: 0; /* Behind content */
        }

        #cta-section::after {
            left: 70%; /* Second scanline */
            animation-delay: 5s; /* Staggered start */
        }

        @keyframes riseScanline {
            0% { bottom: -100%; }
            100% { bottom: 100%; } /* Move upwards */
        }

        /* CTA Content Wrapper */
        .cta-content {
            max-width: 650px; /* Limit width */
            margin: 0 auto; /* Center */
            position: relative; /* For z-index */
            z-index: 1; /* Above scanlines */
        }

        .cta-content h2 {
            color: #fff;
            font-size: clamp(1.8em, 4vw + 0.8em, 2em); /* Responsive */
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(168, 85, 247, 0.6); /* Purple glow */
            position: relative; /* For pseudo-element */
            display: inline-block; /* Allow pseudo-element positioning */
            font-family: 'Orbitron', sans-serif;
        }

        /* Background glow for CTA heading */
        .cta-content h2::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            padding-bottom: 120%; /* Circular aspect ratio */
            background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 60%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: -1; /* Behind heading */
        }

        /* Pulsing text effect */
        .cta-content h2 .pulse-text {
            animation: pulseTextShadow 4s infinite ease-in-out;
            display: inline-block; /* Needed for animation */
        }

        @keyframes pulseTextShadow {
            0%, 100% { text-shadow: 0 0 10px rgba(168, 85, 247, 0.6); }
            50% { text-shadow: 0 0 20px rgba(168, 85, 247, 0.9); } /* Enhanced glow */
        }

        .cta-content p {
            color: #ccc;
            margin-bottom: 2rem;
            font-size: clamp(0.95rem, 1.2vw + 0.6rem, 1rem); /* Responsive */
        }

        /* CTA Buttons */
        #cta-section .hero-buttons {
            margin-top: 0; /* Reset margin */
            justify-content: center;
            max-width: 300px; /* Limit width on mobile */
            flex-direction: column; /* Stack on mobile */
            gap: 1rem;
            margin-left: auto;
            margin-right: auto;
        }

        #cta-section .hero-buttons .hero-btn {
            width: 100%; /* Full width on mobile */
        }

        /* Pulsing border for primary CTA button */
        #cta-section .hero-btn.primary {
            animation: pulseBorderPurple 2.5s infinite ease-out;
        }

        #cta-section .hero-btn.primary:hover {
            animation: none; /* Stop pulse on hover */
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.7), 0 0 30px rgba(168, 85, 247, 0.5); /* Enhanced glow */
        }

        @keyframes pulseBorderPurple {
            0% {
                box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.6), 0 0 0 0 rgba(168, 85, 247, 0.6) inset;
                border-color: #a855f7; /* Start with lighter purple border */
            }
            70% {
                box-shadow: 0 0 0 10px rgba(168, 85, 247, 0), 0 0 0 2px rgba(168, 85, 247, 0.3) inset; /* Expand outer shadow, add inner shadow */
            }
            100% {
                box-shadow: 0 0 0 0 rgba(168, 85, 247, 0), 0 0 0 0 rgba(168, 85, 247, 0.6) inset;
                border-color: #8300fe; /* End with main purple border */
            }
        }

        /* Download icon animation */
        #cta-section .hero-btn .lucide-download {
            transition: transform 0.3s ease, opacity 0.3s ease;
            transform: translateX(10px); /* Start off-screen */
            opacity: 0; /* Start hidden */
            margin-left: 0.3em;
            display: inline-block;
            vertical-align: middle;
        }

        #cta-section .hero-btn:hover .lucide-download {
            transform: translateX(0); /* Slide in */
            opacity: 1; /* Fade in */
        }

        /* Secondary CTA button hover */
        #cta-section .hero-btn.secondary:hover {
            box-shadow: 0 0 10px rgba(131, 0, 254, 0.5), 0 0 15px rgba(131, 0, 254, 0.3); /* Purple glow */
            transform: scale(1.03); /* Slightly larger */
        }

        /* Footer Styles */
        footer {
            font-family: 'Roboto Mono', monospace;
            background-color: #030305; /* Very dark background */
            color: #9ca3af; /* Muted text color */
            padding: 3rem 1rem 1.5rem 1rem;
            position: relative; /* For pseudo-element */
            z-index: 10; /* Above particles */
            font-size: 0.9rem;
            border-top: 1px solid #333; /* Separator */
            box-shadow: 0 -4px 20px -5px rgba(131, 0, 254, 0.2); /* Top glow */
            margin-top: 3rem; /* Space above footer */
            overflow: hidden; /* For grid pattern */
        }

        /* Subtle grid pattern background */
        footer::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1; /* Behind content */
            background: linear-gradient(rgba(10, 10, 20, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(10, 10, 20, 0.1) 1px, transparent 1px);
            background-size: 20px 20px; /* Grid size */
            opacity: 0.3;
        }

        .footer-container {
            max-width: 1200px; /* Limit width */
            margin: 0 auto; /* Center */
        }

        /* Footer Top Section (Logo, Desc, Social) */
        .footer-top {
            display: flex;
            flex-direction: column; /* Stack on mobile */
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #333; /* Separator */
            text-align: center;
        }

        .footer-logo img {
            height: 35px;
        }

        .footer-description {
            max-width: 450px;
            color: #9ca3af;
            font-size: 0.85rem;
            line-height: 1.7;
        }

        /* Social Media Icons */
        .footer-social {
            display: flex;
            gap: 1.2rem;
        }

        .footer-social a {
            cursor: pointer;
            line-height: 0; /* Align icons */
        }

        .footer-social a img {
            width: 20px;
            height: 20px;
            /* Default gray filter */
            filter: invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(85%);
            transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
        }

        .footer-social a:hover img {
            /* Purple filter on hover */
            filter: invert(13%) sepia(99%) saturate(6000%) hue-rotate(270deg) brightness(100%) contrast(140%);
            transform: scale(1.15); /* Scale up */
            box-shadow: 0 0 8px rgba(168, 85, 247, 0.5); /* Purple glow */
        }

        /* Footer Links Section */
        .footer-links-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Two columns mobile */
            gap: 2rem 1.5rem; /* Row and column gap */
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .footer-links-column {
            padding: 0 0.5rem; /* Padding for mobile */
        }

        .footer-links-column h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #e5e7eb; /* Lighter text */
            margin-bottom: 0.8rem;
            font-family: 'Orbitron', sans-serif; /* Techy font */
        }

        /* Footer Links and Contact Info */
        .footer-links-column nav a,
        .footer-links-column p {
            display: block;
            color: #9ca3af; /* Muted text */
            text-decoration: none;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }

        .footer-links-column nav a:hover {
            color: #bb86fc; /* Lighter purple */
            text-decoration: underline;
            text-decoration-thickness: 1px;
            text-underline-offset: 3px;
        }

        /* Footer Bottom Section (Copyright, Links) */
        .footer-bottom {
            display: flex;
            flex-direction: column; /* Stack on mobile */
            justify-content: center;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333; /* Separator */
            font-size: 0.8rem;
            color: #888; /* Dark gray */
            text-align: center;
        }

        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap; /* Allow wrapping */
            justify-content: center;
            gap: 1rem 1.5rem; /* Spacing */
            margin-top: 0.8rem; /* Space above links on mobile */
        }

        .footer-bottom-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #bb86fc; /* Lighter purple */
        }


        /* -------------------- */
        /* --- Media Queries --- */
        /* -------------------- */

        /* Medium Screens (Tablets, smaller desktops) */
        @media screen and (min-width: 768px) {
            html { scroll-padding-top: 80px; } /* Adjust for taller navbar */
            main { padding-top: 80px; }

            .navbar {
                height: 80px; /* Taller navbar */
                padding: 0 2.5rem; /* More horizontal padding */
            }
            .navbar-logo img { height: 45px; } /* Larger logo */
            .navbar-links { display: flex; } /* Show desktop links */
            .hamburger-menu { display: none; } /* Hide hamburger */
            .mobile-nav-menu { display: none; } /* Hide mobile menu */
            .navbar-links a { width: auto; padding: 0.5rem 1rem; }
            .navbar-links .login-btn-link { margin-left: 1rem; }
            .login-btn { padding: 0.6rem 1.2rem; font-size: 14px; }

            .hero.centered-hero {
                min-height: calc(100vh - 80px);
                padding: 5rem 2.5rem;
            }
            .hero-buttons {
                flex-direction: row; /* Buttons side-by-side */
                max-width: none;
                justify-content: center;
                gap: 1.5rem;
            }
            .hero-btn { width: auto; } /* Auto width for buttons */
            .micro-features { gap: 1rem 1.8rem; }
            .micro-features span { font-size: 0.9rem; }
            .micro-features i.lucide { width: 1.2em; height: 1.2em; }

            .content-section { padding: 6rem 2rem; } /* More vertical padding */
            .info-grid { grid-template-columns: repeat(2, 1fr); } /* Two columns */
            .features-cta .hero-btn { width: auto; max-width: none; }

            /* Workflow Grid: Visual left, Steps right */
            .workflow-grid-container {
                grid-template-columns: 45% 55%; /* Two columns */
                gap: 4rem;
                align-items: start;
            }
            .workflow-grid-container::after { display: block; } /* Show connector line */
            .workflow-visual-panel { transform: translateY(30px); } /* Slight offset */
            .workflow-steps-panel::before { left: 35px; transform: none; } /* Adjust timeline */
            .step-card { flex-direction: row; align-items: flex-start; text-align: left; }
            .workflow-demo-button-container .hero-btn.secondary { width: auto; max-width: none; }

            /* Tech Details Grid: Text left, Code right */
            .tech-layout-container {
                grid-template-columns: repeat(2, 1fr); /* Two columns */
                gap: 4rem;
            }
            #tech-details .tech-text-content { order: 1; } /* Ensure text is left */
            #tech-details .code-block-container { order: 2; } /* Ensure code is right */
            .tech-text-content h3, .tech-text-content p { text-align: left; }
            .tech-specs-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; } /* Two columns */

            #cta-section .hero-buttons {
                flex-direction: row; /* Buttons side-by-side */
                gap: 1.5rem;
                max-width: none;
            }
            #cta-section .hero-buttons .hero-btn { width: auto; } /* Auto width */

            /* Footer Layout Adjustments */
            .footer-top {
                flex-direction: row; /* Horizontal layout */
                justify-content: space-between;
                align-items: flex-start;
                text-align: left;
            }
            .footer-logo { order: 1; }
            .footer-description { order: 2; text-align: left; margin: 0; }
            .footer-social { order: 3; align-self: flex-start; }
            .footer-links-section { grid-template-columns: repeat(4, 1fr); text-align: left; } /* Four columns */
            .footer-links-column { padding: 0; }
            .footer-bottom {
                flex-direction: row; /* Horizontal layout */
                justify-content: space-between;
                text-align: left;
            }
            .footer-bottom-links { margin-top: 0; }
        }

        /* Large Screens (Desktops) */
        @media screen and (min-width: 1024px) {
            .navbar { padding: 0 4rem; } /* Wider padding */
            .navbar-links { gap: 1.5rem; } /* More space between links */
            .hero.centered-hero { padding: 6rem 4rem; }
            .info-grid { grid-template-columns: repeat(3, 1fr); } /* Three columns */
            #features { padding-top: 7rem; padding-bottom: 7rem; }
            #detection-workflow, #tech-details { padding: 6rem 2rem; }
            #cta-section { padding: 5rem 4rem; }

            /* Adjust workflow grid proportions */
            .workflow-grid-container {
                grid-template-columns: 40% 60%; /* Give steps more space */
                gap: 5rem;
            }
            .workflow-visual-panel { transform: translateY(40px); } /* Increase offset */
        }

        /* Extra Large Screens */
        @media screen and (min-width: 1440px) {
            .content-section { padding: 7rem 2rem; } /* Even more padding */
            #features { padding-top: 8rem; padding-bottom: 8rem; }
        }