.elementor-19890 .elementor-element.elementor-element-ec34e02{--display:flex;}/* Start custom CSS for container, class: .elementor-element-ec34e02 */:root {
            /* ManpraX Brand Palette */
            --brand-green: #d4e157; /* Futuristic Green from logo */
            --brand-green-hover: #c0ca33;
            --bg-dark: #0f172a;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
            --surface: rgba(255, 255, 255, 0.03);
            --system-fonts: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: var(--system-fonts);
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.5;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            /* Subtle tech texture */
            background-image: 
                radial-gradient(circle at 50% 0%, rgba(212, 225, 87, 0.08) 0%, transparent 50%),
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 100% 100%, 30px 30px, 30px 30px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-in {
            animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }

        @media (prefers-reduced-motion: reduce) {
            .animate-in {
                animation: none;
                opacity: 1;
            }
        }

        /* Layout */
        .container {
            width: 100%;
            max-width: 480px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
        }

        header {
            margin-bottom: 2.5rem;
        }

        .logo {
            width: 180px; /* Increased slightly for better visibility */
            height: auto;
            display: block;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(1.75rem, 8vw, 2.25rem);
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--text-main);
        }

        .hero h1 span {
            color: var(--brand-green);
        }

        .sub-headline {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .micro-value {
            font-size: 0.9375rem;
            color: var(--text-muted);
            opacity: 0.8;
            margin-bottom: 3rem;
        }

        /* Call to Action */
        .cta-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .primary-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            width: 100%;
            background-color: var(--brand-green);
            color: #000;
            text-decoration: none;
            padding: 1.125rem 2rem;
            border-radius: 1rem;
            font-weight: 700;
            font-size: 1.125rem;
            transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
            box-shadow: 0 10px 15px -3px rgba(212, 225, 87, 0.2);
            position: relative;
        }

        .primary-btn:active {
            transform: scale(0.97);
            background-color: var(--brand-green-hover);
        }

        @media (min-width: 768px) {
            .primary-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 20px 25px -5px rgba(212, 225, 87, 0.25);
            }
        }

        .btn-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .cta-supporting {
            font-size: 0.8125rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            font-weight: 600;
        }

        .copy-link-action {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--surface);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            color: var(--text-muted);
            font-size: 0.8125rem;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 1rem;
        }

        .copy-link-action:active {
            background: rgba(255,255,255,0.1);
        }

        .copy-link-action svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        #copy-toast {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            background: #1e293b;
            color: var(--brand-green);
            padding: 0.625rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 100;
        }

        #copy-toast.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        /* Trust Signals */
        .trust-signal {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
            font-size: 0.875rem;
            color: var(--text-muted);
            font-style: italic;
        }

        footer {
            padding: 2rem;
            text-align: center;
            font-size: 0.75rem;
            color: var(--text-muted);
            opacity: 0.5;
        }

        /* LinkedIn Brand Icon */
        .li-icon {
            fill: #000;
        }/* End custom CSS */