:root {
            --primary-purple: #8A2BE2; /* Neon Purple */
            --primary-cyan: #00FFFF;   /* Neon Cyan */
            --glass-bg: rgba(0, 0, 0, 0.45);
            --glass-border: rgba(255, 255, 255, 0.14);
            --text-light: #E0E0E0;
            --text-dark: #A0A0A0;
            --font-heading: 'Syne', sans-serif;
            --font-body: 'DM Sans', sans-serif;
        }

        body {
            margin: 0;
            overflow-y: auto;
            overflow-x: hidden;
            cursor: none; /* Hide default cursor */
            background: #000;
            color: var(--text-light);
            font-family: var(--font-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            color: #FFFFFF;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.5em;
        }

        p {
            margin-bottom: 1em;
        }

        a {
            color: var(--primary-cyan);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--primary-purple);
        }

        button, .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 50px;
            border: none;
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            background: linear-gradient(45deg, var(--primary-purple), var(--primary-cyan));
            color: #FFFFFF;
            box-shadow: 0 4px 20px rgba(138, 43, 226, 0.4);
        }

        button:hover, .button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(138, 43, 226, 0.6);
            opacity: 0.9;
        }

        /* Glassmorphism styles */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }

        /* Navigation Bar */
        .nav-bar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: clamp(300px, 90%, 1200px);
            padding: 12px 28px;
            border-radius: 50px;
            background: rgba(0, 0, 0, 0.4); /* Slightly less opaque for nav */
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .nav-bar:hover {
            background: rgba(0, 0, 0, 0.55);
            border-color: rgba(255, 255, 255, 0.25);
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 800;
            color: #FFFFFF;
            text-decoration: none;
            letter-spacing: -0.05em;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-logo svg {
            width: 28px;
            height: 28px;
            fill: url(#logoGradient);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-light);
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding: 5px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--primary-cyan);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            margin-left: 20px;
        }

        /* Hero Section */
        #overlay {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            text-align: center;
            height: 100vh;
            padding-top: clamp(100px, 14vh, 150px);
        }

        #heroContent {
            max-width: 900px;
            padding: 0 24px;
            position: relative;
            z-index: 15;
            pointer-events: auto;
        }

        #heroContent h1 {
            font-size: clamp(2.2rem, 5.5vw, 5rem);
            margin-bottom: 0.4em;
            letter-spacing: -0.04em;
            overflow: visible;
            word-break: keep-all;
            hyphens: none;
            line-height: 1.15;
        }

        #heroContent p {
            font-size: clamp(1.1rem, 2vw, 1.6rem);
            color: var(--text-dark);
            margin-bottom: 2.5em;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Scramble animation styles */
        .scramble-char {
            display: inline-block;
            opacity: 0;
            transform: translateY(10px) blur(5px);
            animation: scrambleReveal 0.8s forwards;
            animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
        }
        @keyframes scrambleReveal {
            to {
                opacity: 1;
                transform: translateY(0) blur(0);
            }
        }

        /* Main Page Sections */
        #pageRoot {
            position: relative;
            z-index: 20;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.9) 80%, rgba(0,0,0,0.95) 100%); /* Subtle gradient to help content pop */
            padding-top: 100vh; /* Push content down below hero */
        }

        section {
            min-height: 120vh; /* Ensure long scroll duration */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            position: relative;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease-out;
            opacity: 0.55; /* Default for scroll animation */
            transform: translateY(0px); /* Default for scroll animation */
        }

        section:nth-child(even) {
            background: rgba(0, 0, 0, 0.05); /* Very subtle alternating background for sections */
        }

        .section-content {
            max-width: 1200px;
            width: 90%;
            margin: auto;
            text-align: center;
            position: relative;
        }

        .section-content h2 {
            font-size: clamp(2rem, 4vw, 4rem);
            margin-bottom: 0.8em;
            background: linear-gradient(45deg, var(--primary-purple), var(--primary-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-content h3 {
            font-size: clamp(1.5rem, 2.5vw, 2.5rem);
            margin-top: 2em;
            margin-bottom: 0.8em;
        }

        .section-content p {
            font-size: clamp(1rem, 1.2vw, 1.15rem);
            color: var(--text-dark);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2em;
        }

        .grid-3-cols {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .feature-card {
            text-align: left;
            padding: 40px;
        }
        .feature-card h3 {
            font-size: 1.8rem;
            margin-top: 1em;
            margin-bottom: 0.5em;
        }
        .feature-card p {
            font-size: 1rem;
            color: var(--text-dark);
            max-width: none;
        }
        .feature-card svg {
            width: 50px;
            height: 50px;
            fill: var(--primary-cyan);
            margin-bottom: 15px;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .showcase-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .showcase-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.5);
        }
        .showcase-item img {
            width: 100%;
            height: 250px; /* Fixed height for consistency */
            object-fit: cover;
            display: block;
        }
        .showcase-item .overlay-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
            text-align: left;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .pricing-card {
            text-align: center;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .pricing-card h3 {
            font-size: 2.2rem;
            margin-bottom: 0.4em;
        }
        .pricing-card .price {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.2em;
            background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }
        .pricing-card .price span {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--text-dark);
        }
        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 30px 0 40px 0;
            text-align: left;
        }
        .pricing-card ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
            color: var(--text-dark);
        }
        .pricing-card ul li svg {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            fill: var(--primary-cyan);
            flex-shrink: 0;
        }
        .pricing-card .button {
            margin-top: auto; /* Push button to bottom */
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            text-align: left;
            padding: 30px;
            font-style: italic;
            color: var(--text-dark);
        }
        .testimonial-card p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            line-height: 1.8;
            max-width: none;
        }
        .testimonial-card .author {
            font-style: normal;
            font-weight: 700;
            color: #FFFFFF;
            font-size: 1.1rem;
        }
        .testimonial-card .author-title {
            font-style: normal;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-top: 5px;
            display: block;
        }

        /* Footer */
        footer {
            padding: 80px 0 40px 0;
            text-align: center;
            background: rgba(0, 0, 0, 0.7);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-dark);
            font-size: 0.9rem;
        }
        footer .footer-nav {
            display: flex;
            justify-content: center;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        footer .footer-nav a {
            color: var(--text-dark);
            font-weight: 500;
        }
        footer .footer-nav a:hover {
            color: var(--primary-cyan);
        }

        /* Custom Cursor */
        #cursorDot {
            transition: width 0.2s, height 0.2s, background 0.2s;
        }
        #cursorRing {
            transition: width 0.2s, height 0.2s, border-color 0.2s;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .nav-menu {
                gap: 20px;
            }
            .nav-bar {
                padding: 10px 20px;
            }
            #heroContent h1 {
                font-size: clamp(2rem, 8vw, 4.5rem);
            }
            #heroContent p {
                font-size: clamp(1rem, 2.5vw, 1.4rem);
            }
            .section-content h2 {
                font-size: clamp(1.8rem, 5vw, 3.5rem);
            }
            .section-content p {
                font-size: clamp(0.95rem, 1.8vw, 1.1rem);
            }
        }

        @media (max-width: 768px) {
            .nav-bar {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
                padding: 15px;
                width: 95%;
                border-radius: 25px;
            }
            .nav-logo {
                width: 100%;
                text-align: center;
                justify-content: center;
                margin-bottom: 10px;
            }
            .nav-menu {
                display: none; /* Hide full menu on small screens */
            }
            .nav-cta {
                margin-left: 0;
            }
            #cursorDot, #cursorRing {
                display: none !important; /* Hide custom cursor on mobile */
            }
            .grid-3-cols, .showcase-grid, .pricing-grid, .testimonial-grid {
                grid-template-columns: 1fr;
            }
            .feature-card, .pricing-card, .testimonial-card {
                padding: 30px 20px;
            }
            .showcase-item img {
                height: 200px;
            }
            footer .footer-nav {
                flex-direction: column;
                gap: 10px;
            }
        }