        :root {
            --bg-color: #050608;
            --card-bg: rgba(255, 255, 255, 0.02);
            --card-border: rgba(255, 255, 255, 0.08);
            --primary: #5865F2;
            --accent-teal: #00f2fe;
            --accent-purple: #9b51e0;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        body {
            font-family: 'Sora', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Animated Liquid Aurora Background */
        .aurora-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -2;
            background-color: #050608;
            overflow: hidden;
        }

        .aurora-orb {
            position: absolute;
            width: 80vw;
            height: 80vw;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.55;
            mix-blend-mode: screen;
        }

        .orb-1 {
            background: radial-gradient(circle, #00f2fe 0%, transparent 80%);
            top: -20%;
            left: -20%;
            animation: drift-1 25s infinite alternate ease-in-out;
        }

        .orb-2 {
            background: radial-gradient(circle, #5865F2 0%, transparent 80%);
            bottom: -20%;
            right: -10%;
            animation: drift-2 30s infinite alternate ease-in-out;
        }

        .orb-3 {
            background: radial-gradient(circle, #ff007f 0%, transparent 80%);
            top: 30%;
            right: -20%;
            animation: drift-3 20s infinite alternate ease-in-out;
        }

        .orb-4 {
            background: radial-gradient(circle, #9b51e0 0%, transparent 80%);
            bottom: -10%;
            left: -10%;
            animation: drift-4 28s infinite alternate ease-in-out;
        }

        @keyframes drift-1 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(15vw, 10vh) scale(1.25); }
        }

        @keyframes drift-2 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-20vw, -15vh) scale(1.15); }
        }

        @keyframes drift-3 {
            0% { transform: translate(0, 0) scale(1.2); }
            100% { transform: translate(-10vw, 20vh) scale(0.85); }
        }

        @keyframes drift-4 {
            0% { transform: translate(0, 0) scale(0.9); }
            100% { transform: translate(25vw, -10vh) scale(1.35); }
        }

        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--accent-teal);
            border-radius: 50%;
            opacity: 0.15;
            filter: blur(1px);
            animation: rise 12s infinite linear;
        }

        @keyframes rise {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            50% { opacity: 0.3; }
            100% { transform: translateY(-10vh) translateX(100px); opacity: 0; }
        }

        /* Premium Floating Nav Header */
        header {
            width: 90%;
            max-width: 1200px;
            height: 75px;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(35px) saturate(180%);
            -webkit-backdrop-filter: blur(35px) saturate(180%);
            background: rgba(10, 12, 18, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
            animation: slideDown 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes slideDown {
            from { transform: translate(-50%, -150%); opacity: 0; }
            to { transform: translate(-50%, 0); opacity: 1; }
        }

        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: var(--transition-premium);
            text-decoration: none;
        }

        .logo img {
            height: 95px;
            width: auto;
            object-fit: contain;
            margin-top: -10px;
            margin-bottom: -10px;
            filter: drop-shadow(0 0 12px rgba(0, 242, 254, 0.45));
        }

        .logo:hover {
            transform: scale(1.03);
            filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.65));
        }

        nav {
            display: flex;
            gap: 35px;
            align-items: center;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition-premium);
        }

        nav a:hover {
            color: var(--text-main);
        }

        .btn {
            padding: 12px 26px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.92rem;
            text-decoration: none;
            transition: var(--transition-premium);
            cursor: pointer;
            border: 1px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #4752c4 100%);
            color: white;
            box-shadow: 0 4px 20px rgba(88, 101, 242, 0.45);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.7);
        }

        .btn-outline {
            background: rgba(255, 255, 255, 0.02);
            color: var(--text-main);
            border: 1px solid var(--card-border);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent-teal);
            transform: translateY(-3px) scale(1.03);
        }

        .bento-container-split {
            max-width: 1100px;
            margin: 120px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

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

        .bento-info-pane, .bento-form-pane {
            background: rgba(10, 12, 18, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 28px;
            padding: 50px;
            backdrop-filter: blur(40px) saturate(180%);
            -webkit-backdrop-filter: blur(40px) saturate(180%);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .info-badges {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .info-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.05rem;
            color: var(--text-muted);
            background: rgba(255, 255, 255, 0.02);
            padding: 15px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.03);
            transition: var(--transition-premium);
        }

        .info-badge:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(0, 242, 254, 0.2);
            color: white;
            transform: translateX(5px);
        }

        h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #fff, var(--text-muted));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            color: var(--text-muted);
            margin-bottom: 35px;
            font-weight: 300;
        }

        @media (max-width: 900px) {
            .bento-container-split {
                grid-template-columns: 1fr;
            }
        }

        .form-group {
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-muted);
            letter-spacing: 0.5px;
        }

        input, textarea {
            width: 100%;
            padding: 16px 18px;
            border-radius: 14px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--card-border);
            color: white;
            font-family: inherit;
            font-size: 0.98rem;
            transition: var(--transition-premium);
        }

        input:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-teal);
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
            background: rgba(0, 0, 0, 0.4);
            transform: translateY(-2px);
        }

        textarea {
            height: 160px;
            resize: vertical;
        }

        .success-box {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            font-size: 4rem;
            margin-bottom: 25px;
            display: inline-block;
            animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
        }

        @keyframes bounceIn {
            0% { transform: scale(0.3); opacity: 0; }
            50% { transform: scale(1.1); }
            80% { transform: scale(0.9); }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Premium Lucide Vector Icons Style */
        .lucide {
            width: 28px;
            height: 28px;
            stroke-width: 1.8;
            vertical-align: middle;
            color: var(--accent-teal);
            filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.45));
            transition: var(--transition-premium);
        }

        .success-icon .lucide {
            width: 64px;
            height: 64px;
            filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.65));
        }
