
        :root {
            --primary-gradient: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
            --secondary-gradient: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
            --success-color: #10b981;
            --warning-color: #f59e0b;
        }

        /* Dark mode (default) */
        [data-theme="dark"],
        :root:not([data-theme]) {
            --dark-bg: #0f172a;
            --card-bg: #1e293b;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --border-color: #334155;
            --body-bg: #0f172a;
            --navbar-bg: rgba(15, 23, 42, 0.95);
            --glass-card-bg: rgba(30, 41, 59, 0.8);
            --input-bg: rgba(15, 23, 42, 0.8);
            --hero-bg-overlay: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
            --section-alt-bg: #1e293b;
        }

        /* Light mode */
        [data-theme="light"] {
            --dark-bg: #ffffff;
            --card-bg: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-color: #e2e8f0;
            --body-bg: #ffffff;
            --navbar-bg: rgba(255, 255, 255, 0.95);
            --glass-card-bg: rgba(248, 250, 252, 0.8);
            --input-bg: #ffffff;
            --hero-bg-overlay: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
            --section-alt-bg: #f8fafc;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--body-bg);
            color: var(--text-primary);
            line-height: 1.6;
            min-height: 100vh;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Header */
        .navbar {
            background: var(--navbar-bg);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: var(--text-primary) !important;
        }

        /* Hero Section */
        .hero-section {
            background: var(--body-bg);
            padding: 4rem 0;
            position: relative;
            overflow: visible;
            z-index: 1;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--hero-bg-overlay);
            z-index: -1;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .hero-chat-panel {
            background: var(--card-bg);
            border: 1px solid rgba(148, 163, 184, 0.25);
            border-radius: 24px;
            padding: 1.75rem;
            box-shadow: 0 28px 60px rgba(15, 23, 42, 0.35);
            display: flex;
        }

        .hero-chat-window {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.3rem;
        }

        .hero-chat-header {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero-chat-avatar {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            box-shadow: 0 18px 35px rgba(79, 70, 229, 0.35);
        }

        .hero-chat-title {
            display: block;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .hero-chat-header small {
            display: block;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .hero-chat-body {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(71, 85, 105, 0.35);
            border-radius: 18px;
            padding: 1.25rem 1.35rem;
            max-height: 320px;
            overflow-y: auto;
        }

        .hero-chat-message {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }

        .hero-chat-message.user {
            align-items: flex-end;
        }

        .hero-chat-message.bot {
            align-items: flex-start;
        }

        .hero-chat-message .message-bubble {
            background: rgba(99, 102, 241, 0.12);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 14px 14px 14px 4px;
            padding: 0.95rem 1.1rem;
            color: var(--text-primary);
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .hero-chat-message.bot .message-bubble {
            background: rgba(99, 102, 241, 0.12);
            border-color: rgba(99, 102, 241, 0.3);
        }

        .hero-chat-message.user .message-bubble {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-color: transparent;
            border-radius: 14px 4px 14px 14px;
            color: #fff;
            align-self: flex-end;
            box-shadow: 0 16px 32px rgba(99, 102, 241, 0.25);
        }

        .hero-chat-footer {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .hero-chat-suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
        }

        .hero-chat-prompt {
            border: 1px solid rgba(148, 163, 184, 0.3);
            background: rgba(148, 163, 184, 0.14);
            color: var(--text-primary);
            border-radius: 999px;
            padding: 0.55rem 1rem;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            gap: 0.5rem;
            align-items: center;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .hero-chat-prompt:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
        }

        .hero-chat-login {
            display: none;
            flex-direction: column;
            gap: 0.9rem;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(71, 85, 105, 0.35);
            border-radius: 16px;
            padding: 1.15rem 1.3rem;
        }

        .hero-chat-login.is-visible {
            display: flex;
        }

        .chat-login-message {
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .chat-login-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            align-items: center;
        }

        .chat-login-actions .btn {
            min-width: 0;
        }

        .hero-signal-bar {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            padding: 1rem 1.5rem;
            border-radius: 16px;
            background: rgba(30, 41, 59, 0.6);
            border: 1px solid rgba(148, 163, 184, 0.25);
            margin-bottom: 2rem;
            box-shadow: 0 25px 45px rgba(15, 23, 42, 0.25);
            backdrop-filter: blur(8px);
        }

        .hero-signal {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .signal-value {
            font-size: 1.6rem;
            font-weight: 700;
            color: #e0e7ff;
        }

        .signal-label {
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(148, 163, 184, 0.75);
        }

        .signal-divider {
            height: 38px;
            width: 1px;
            background: rgba(148, 163, 184, 0.25);
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1.1rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(148, 163, 184, 0.9);
            background: rgba(102, 126, 234, 0.14);
            border: 1px solid rgba(102, 126, 234, 0.3);
            margin-bottom: 1.5rem;
        }

        .hero-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 2.25rem;
        }

        .benefit-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.55rem 1rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-primary);
            background: rgba(148, 163, 184, 0.12);
            border: 1px solid rgba(148, 163, 184, 0.25);
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .benefit-chip i {
            color: rgba(129, 140, 248, 0.9);
        }

        .benefit-chip:hover {
            background: rgba(102, 126, 234, 0.18);
            transform: translateY(-2px);
        }

        .hero-alert {
            display: flex;
            gap: 1rem;
            padding: 1rem 1.4rem;
            border-radius: 14px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            background: rgba(148, 163, 184, 0.08);
            color: var(--text-secondary);
            align-items: flex-start;
            margin-bottom: 1.75rem;
        }

        .hero-alert i {
            font-size: 1.35rem;
            margin-top: 0.1rem;
        }

        .hero-alert-title {
            margin: 0;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
        }

        .hero-alert-text {
            margin: 0.25rem 0 0;
            font-size: 0.87rem;
            color: var(--text-secondary);
        }

        .hero-alert-success {
            background: rgba(34, 197, 94, 0.12);
            border-color: rgba(34, 197, 94, 0.35);
            color: #22c55e;
        }

        .hero-alert-info {
            background: rgba(99, 102, 241, 0.12);
            border-color: rgba(99, 102, 241, 0.3);
            color: rgba(99, 102, 241, 0.85);
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .hero-cta-group .btn {
            min-width: 210px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .cta-button-outline {
            border-radius: 50px;
            padding: 1rem 2.25rem;
            font-weight: 600;
            border: 2px solid rgba(148, 163, 184, 0.35);
            color: var(--text-primary);
            background: transparent;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
        }

        .cta-button-outline svg {
            flex-shrink: 0;
        }

        .cta-button-outline i {
            flex-shrink: 0;
        }

        .cta-button-outline:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(15, 23, 42, 0.2);
        }

        .cta-button-outline--google {
            border-color: rgba(102, 126, 234, 0.45);
            color: #4f46e5;
            background: rgba(102, 126, 234, 0.08);
        }

        .cta-button-outline--dark {
            border-color: rgba(15, 23, 42, 0.6);
            color: #0f172a;
            background: rgba(15, 23, 42, 0.06);
        }

        [data-theme="dark"] .cta-button-outline--dark,
        :root:not([data-theme]) .cta-button-outline--dark {
            color: #e2e8f0;
            background: rgba(15, 23, 42, 0.25);
        }

        .hero-footnote {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .hero-footnote a {
            color: #667eea;
            font-weight: 600;
            text-decoration: none;
        }

        .hero-footnote a:hover {
            text-decoration: underline;
        }

        .hero-side-panel {
            background: var(--card-bg);
            border: 1px solid rgba(148, 163, 184, 0.25);
            border-radius: 22px;
            padding: 2rem;
            box-shadow: 0 25px 55px rgba(15, 23, 42, 0.35);
            display: flex;
            flex-direction: column;
            gap: 1.75rem;
        }

        .hero-side-panel__header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
        }

        .hero-side-panel__header h5 {
            margin: 0.35rem 0 0;
            font-size: 1.2rem;
            color: var(--text-primary);
        }

        .side-panel-eyebrow {
            font-size: 0.75rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-secondary);
        }

        .side-panel-status {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 0.8rem;
            border-radius: 999px;
            background: rgba(102, 126, 234, 0.15);
            color: #cbd5f5;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid rgba(102, 126, 234, 0.35);
        }

        .hero-metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

        .hero-metric-card {
            background: rgba(30, 41, 59, 0.85);
            border: 1px solid rgba(71, 85, 105, 0.4);
            border-radius: 16px;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .hero-metric-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(148, 163, 184, 0.75);
        }

        .hero-metric-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: #e0e7ff;
        }

        .hero-metric-desc {
            font-size: 0.85rem;
            color: rgba(148, 163, 184, 0.8);
        }

        .hero-side-panel__insights {
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
        }

        .side-panel-blurb {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem 1.1rem;
            border-radius: 16px;
            background: rgba(15, 23, 42, 0.55);
            border: 1px solid rgba(71, 85, 105, 0.4);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .side-panel-blurb h6 {
            margin: 0 0 0.35rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .side-panel-blurb p {
            margin: 0;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .side-panel-blurb i {
            padding: 0.65rem;
            border-radius: 14px;
            background: rgba(37, 99, 235, 0.2);
            color: #60a5fa;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .hero-side-panel__footer {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .hero-mini-status {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.4rem 0.75rem;
            font-size: 0.78rem;
            border-radius: 999px;
            background: rgba(148, 163, 184, 0.12);
            color: rgba(148, 163, 184, 0.85);
            border: 1px solid rgba(148, 163, 184, 0.25);
        }

        .hero-mini-status i {
            font-size: 0.5rem;
        }

        .hero-trust-bar {
            margin-top: 3.5rem;
            padding: 1.5rem 2rem;
            border-radius: 18px;
            border: 1px solid rgba(148, 163, 184, 0.25);
            background: rgba(30, 41, 59, 0.6);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
            justify-content: space-between;
        }

        .trust-eyebrow {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(148, 163, 184, 0.7);
        }

        .trust-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            color: rgba(203, 213, 225, 0.8);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .cta-button {
            background: var(--primary-gradient);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
        }

        /* Project Creation Flow */
        .project-flow {
            padding: 4rem 0;
            background: linear-gradient(180deg, var(--body-bg) 0%, var(--section-alt-bg) 100%);
            position: relative;
            z-index: 1;
        }

        /* All sections should have proper positioning */
        section {
            position: relative;
            z-index: 1;
        }

        /* Ensure sections don't overlap */
        section + section {
            margin-top: 0;
        }

        .step-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .step-circle.active {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
        }

        .step-circle.completed {
            background: var(--success-color);
            color: white;
        }

        .step-circle.pending {
            background: var(--card-bg);
            color: var(--text-secondary);
            border: 2px solid var(--border-color);
        }

        .step-line {
            position: absolute;
            top: 30px;
            height: 2px;
            background: var(--border-color);
            z-index: 1;
        }

        .step-line.completed {
            background: var(--success-color);
        }

        .step-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            text-align: center;
            margin-top: 0.5rem;
        }

        .step-title.active {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Cards */
        .glass-card {
            background: var(--glass-card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glass-card:hover::before {
            opacity: 1;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: rgba(37, 99, 235, 0.3);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
        }

        /* Form Elements */
        .form-control {
            background: var(--input-bg);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            border-radius: 10px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: var(--input-bg);
            border-color: #2563eb;
            color: var(--text-primary);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .form-label {
            color: var(--text-primary);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        /* Buttons */
        .btn-primary {
            background: var(--primary-gradient);
            border: none;
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-outline-primary {
            border: 2px solid #2563eb;
            color: #2563eb;
            background: transparent;
            border-radius: 10px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
        }

        /* Tables */
        .table-dark {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .table-dark th {
            background: rgba(37, 99, 235, 0.1);
            border-color: var(--border-color);
            color: var(--text-primary);
            font-weight: 600;
        }

        .table-dark td {
            border-color: var(--border-color);
            color: var(--text-secondary);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .step-indicator {
                flex-direction: column;
                gap: 1rem;
            }
            
            .step-line {
                display: none;
            }
            
            .glass-card {
                padding: 1.5rem;
            }
        }

        /* Status indicators */
        .status-badge {
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .status-badge.success {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success-color);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .status-badge.warning {
            background: rgba(245, 158, 11, 0.2);
            color: var(--warning-color);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        /* Enhanced animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .slide-in-right {
            animation: slideInRight 0.6s ease-out;
        }

        /* Enhanced glass card effects */
        .glass-card {
            position: relative;
            overflow: hidden;
        }

        .glass-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }

        .glass-card:hover::after {
            left: 100%;
        }

        /* Progress bar styling */
        .progress {
            background: rgba(15, 23, 42, 0.5);
            border-radius: 10px;
            height: 8px;
            overflow: hidden;
        }

        .progress-bar {
            background: var(--primary-gradient);
            border-radius: 10px;
            transition: width 0.3s ease;
        }

        /* Enhanced button styles */
        .btn {
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Loading spinner */
        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Dashboard Carousel Styles */
        .dashboard-carousel {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: var(--glass-card-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            height: 500px; /* Increased height to show full content */
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
            visibility: visible;
        }

        .screenshot-frame {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .screenshot-header {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid var(--border-color);
        }

        .screenshot-dots {
            display: flex;
            gap: 6px;
        }

        .screenshot-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ef4444;
        }

        .screenshot-dots span:nth-child(2) {
            background: #f59e0b;
        }

        .screenshot-dots span:nth-child(3) {
            background: #10b981;
        }

        .screenshot-title {
            color: var(--text-primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .screenshot-content {
            padding: 20px;
            height: 440px; /* Increased height to match new container */
            overflow-y: auto; /* Allow scrolling if content is too long */
        }

        .mock-dashboard {
            background: var(--body-bg);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            overflow-y: auto; /* Allow scrolling if content is too long */
        }

        /* Adjust spacing for better content display */
        .stepper-preview {
            margin-bottom: 25px;
        }

        .form-preview {
            gap: 20px;
        }

        .table-preview {
            gap: 20px;
        }

        .roles-preview {
            gap: 20px;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .dashboard-header h3 {
            color: var(--text-primary);
            font-size: 1.2rem;
            margin: 0;
        }

        .tab-group {
            display: flex;
            gap: 10px;
        }

        .tab {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(37, 99, 235, 0.1);
            color: var(--text-secondary);
        }

        .tab.active {
            background: var(--primary-gradient);
            color: white;
        }

        .ai-button {
            background: var(--secondary-gradient);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ai-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
        }

        .stepper-preview {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .step-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .step-number {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .step-item:not(.active) .step-number {
            background: var(--card-bg);
            color: var(--text-secondary);
        }

        .step-item span {
            font-size: 0.7rem;
            color: var(--text-secondary);
            text-align: center;
        }

        .form-preview {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .input-field {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .input-field label {
            color: var(--text-primary);
            font-size: 0.8rem;
            font-weight: 500;
        }

        .input-field input,
        .input-field textarea {
            background: var(--input-bg);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 10px;
            color: var(--text-primary);
            font-size: 0.8rem;
        }

        .input-field textarea {
            height: 80px; /* Increased height for better visibility */
            resize: none;
        }

        /* Improve content spacing */
        .dashboard-header {
            margin-bottom: 25px; /* Increased spacing */
        }

        .table-item {
            padding: 20px; /* Increased padding */
        }

        .role-card {
            padding: 20px; /* Increased padding */
        }

        .table-preview {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .table-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--glass-card-bg);
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .table-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--secondary-gradient);
            border-radius: 10px;
        }

        .table-info h4 {
            color: var(--text-primary);
            margin: 0 0 5px 0;
            font-size: 0.9rem;
        }

        .table-info p {
            color: var(--text-secondary);
            margin: 0;
            font-size: 0.7rem;
        }

        .roles-preview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }

        .role-card {
            background: var(--glass-card-bg);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .role-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .role-card h4 {
            color: var(--text-primary);
            margin: 0 0 10px 0;
            font-size: 0.8rem;
        }

        .permissions {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .perm {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success-color);
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 0.6rem;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        .carousel-btn {
            background: var(--primary-gradient);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .carousel-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
        }

        .carousel-indicators {
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--border-color);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-gradient);
            transform: scale(1.2);
        }

        /* Responsive improvements */
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .step-indicator {
                gap: 0.5rem;
            }
            
            .step-circle {
                width: 50px;
                height: 50px;
                font-size: 1rem;
            }
            
            .glass-card {
                padding: 1rem;
            }
        }

        /* Hero Builder Showcase */
        .hero-builder-showcase {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .builder-preview-section {
            background: radial-gradient(circle at 12% 22%, rgba(102, 126, 234, 0.12), transparent 45%), var(--section-alt-bg);
        }

        .builder-preview-section .container > .row {
            align-items: stretch;
        }

        .builder-intro {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            color: var(--text-primary);
            max-width: 960px;
            margin: 0 auto;
        }

        .builder-preview-canvas {
            display: flex;
            justify-content: center;
        }

        .builder-intro-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
            gap: 2rem;
            align-items: stretch;
        }

        .builder-intro-primary,
        .builder-intro-secondary {
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }

        .section-header {
            max-width: 720px;
            margin: 0 auto 3rem;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.45rem 1rem;
            border-radius: 999px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(148, 163, 184, 0.8);
            background: rgba(102, 126, 234, 0.12);
            border: 1px solid rgba(102, 126, 234, 0.25);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin: 1.5rem 0 1rem;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            margin: 0;
        }

        .builder-point-list {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .builder-point {
            display: flex;
            gap: 1.1rem;
            align-items: flex-start;
            padding: 1.15rem 1.3rem;
            border-radius: 16px;
            background: rgba(30, 41, 59, 0.55);
            border: 1px solid rgba(71, 85, 105, 0.35);
        }

        .builder-point h5 {
            margin: 0 0 0.35rem;
            font-size: 1.05rem;
            color: var(--text-primary);
        }

        .builder-point p {
            margin: 0;
            font-size: 0.92rem;
            color: var(--text-secondary);
        }

        .point-icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            flex-shrink: 0;
            box-shadow: 0 12px 20px rgba(79, 70, 229, 0.35);
        }

        .builder-insight-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-top: 0.5rem;
        }

        .builder-stat-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
            margin: 0.75rem 0 0.5rem;
        }

        .builder-stat-card {
            background: rgba(30, 41, 59, 0.55);
            border: 1px solid rgba(71, 85, 105, 0.35);
            border-radius: 16px;
            padding: 1.1rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .builder-stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .builder-stat-label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(148, 163, 184, 0.75);
        }

        .insight-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0.85rem;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 500;
            color: rgba(203, 213, 225, 0.85);
            background: rgba(148, 163, 184, 0.12);
            border: 1px solid rgba(148, 163, 184, 0.25);
        }

        .builder-quote-card {
            margin-top: 1.5rem;
            padding: 1.3rem 1.5rem;
            border-radius: 18px;
            background: rgba(30, 41, 59, 0.55);
            border: 1px solid rgba(71, 85, 105, 0.35);
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .builder-quote-card p {
            margin: 0;
            font-size: 0.95rem;
            color: var(--text-primary);
        }

        .builder-quote-card small {
            display: block;
            margin-top: 0.4rem;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(148, 163, 184, 0.7);
        }

        .quote-avatar {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            letter-spacing: 0.08em;
            flex-shrink: 0;
            box-shadow: 0 18px 28px rgba(79, 70, 229, 0.35);
        }

        .builder-shell {
            background: #111827;
            border-radius: 22px;
            border: 1px solid rgba(148, 163, 184, 0.18);
            padding: 26px;
            width: 100%;

            box-shadow: 0 35px 80px rgba(15, 23, 42, 0.45);
            position: relative;
            isolation: isolate;
        }

        .builder-shell::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 20px;
            background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.15), transparent 55%);
            pointer-events: none;
            z-index: -1;
        }

        .builder-topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(148, 163, 184, 0.2);
            margin-bottom: 20px;
        }

        .topbar-label {
            display: block;
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(148, 163, 184, 0.7);
        }

        .topbar-value {
            font-weight: 600;
            font-size: 15px;
            color: var(--text-primary);
        }

        .builder-topbar__status {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            font-size: 12px;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 600;
            background: rgba(102, 126, 234, 0.15);
            border: 1px solid rgba(102, 126, 234, 0.4);
            color: #c7d2ff;
        }

        .status-pill i {
            font-size: 12px;
        }

        .topbar-time {
            color: rgba(148, 163, 184, 0.7);
        }

        .builder-body {
            display: flex;
            gap: 28px;
        }

        .builder-chat {
            width: 280px;
            background: rgba(30, 41, 59, 0.9);
            border: 1px solid rgba(100, 116, 139, 0.25);
            border-radius: 18px;
            padding: 22px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            font-size: 13px;
        }

        .chat-header {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .chat-header i {
            background: linear-gradient(135deg, #667eea 0%, #8b5cf6 100%);
            padding: 12px;
            border-radius: 12px;
            color: #fff;
            font-size: 18px;
        }

        .chat-header .chat-title {
            display: block;
            font-weight: 600;
            color: var(--text-primary);
        }

        .chat-header small {
            display: block;
            color: var(--text-secondary);
            font-size: 11px;
        }

        .chat-messages {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .chat-message {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .chat-message.user {
            align-items: flex-end;
        }

        .chat-message.bot {
            align-items: flex-start;
        }

        .chat-bubble {
            background: rgba(99, 102, 241, 0.15);
            border: 1px solid rgba(99, 102, 241, 0.35);
            border-radius: 14px 14px 4px 14px;
            padding: 14px 16px;
            color: #e0e7ff;
            font-size: 13px;
            line-height: 1.55;
        }

        .chat-message.user .chat-bubble {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-color: transparent;
            color: #fff;
            border-radius: 14px 4px 14px 14px;
            box-shadow: 0 16px 28px rgba(99, 102, 241, 0.25);
        }

        .chat-bubble ul {
            margin: 8px 0 0;
            padding-left: 18px;
            color: rgba(226, 232, 240, 0.9);
        }

        .chat-bubble li {
            margin-bottom: 4px;
        }

        .message-meta {
            font-size: 11px;
            color: var(--text-secondary);
        }

        .chat-prompts {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .prompt-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(148, 163, 184, 0.12);
            color: #cbd5f5;
            font-size: 12px;
            border: 1px solid rgba(148, 163, 184, 0.25);
        }

        .prompt-chip i {
            font-size: 12px;
        }

        .builder-workspace {
            flex: 1;
            background: rgba(17, 24, 39, 0.85);
            border-radius: 18px;
            border: 1px solid rgba(71, 85, 105, 0.35);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 22px;
            font-size: 13px;
        }

        .workspace-tabs {
            display: flex;
            gap: 14px;
            font-size: 12px;
            color: rgba(148, 163, 184, 0.75);
        }

        .workspace-tab {
            padding: 7px 16px;
            border-radius: 999px;
            border: 1px solid transparent;
            transition: all 0.2s ease;
            cursor: default;
        }

        .workspace-tab.active {
            background: rgba(102, 126, 234, 0.18);
            border-color: rgba(102, 126, 234, 0.45);
            color: #e0e7ff;
            font-weight: 600;
        }

        .workspace-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        .workspace-panel {
            display: flex;
            flex-direction: column;
            background: rgba(26, 33, 53, 0.92);
            border: 1px solid rgba(71, 85, 105, 0.4);
            border-radius: 16px;
            overflow: hidden;
            min-height: 240px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
        }

        .panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 20px;
            font-size: 12px;
            color: var(--text-secondary);
            border-bottom: 1px solid rgba(71, 85, 105, 0.3);
        }

        .panel-title i {
            margin-right: 6px;
            color: rgba(129, 140, 248, 0.9);
        }

        .panel-body {
            padding: 22px;
            flex: 1;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 999px;
            padding: 4px 8px;
            font-size: 10px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .badge-live {
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
            border: 1px solid rgba(34, 197, 94, 0.35);
        }

        .badge-generated {
            background: rgba(129, 140, 248, 0.15);
            color: #a5b4fc;
            border: 1px solid rgba(129, 140, 248, 0.35);
        }

        .preview-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }

        .preview-title {
            font-weight: 600;
            color: #f1f5f9;
        }

        .preview-filter {
            font-size: 12px;
            color: rgba(148, 163, 184, 0.65);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .preview-metric-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin-bottom: 22px;
        }

        .metric-card {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid rgba(71, 85, 105, 0.45);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .metric-label {
            font-size: 12px;
            color: rgba(148, 163, 184, 0.75);
        }

        .metric-value {
            font-weight: 600;
            font-size: 24px;
            color: #e0e7ff;
        }

        .metric-trend {
            font-size: 12px;
            color: rgba(148, 163, 184, 0.75);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .metric-trend.up {
            color: #4ade80;
        }

        .metric-trend.alert {
            color: #f472b6;
        }

        .preview-timeline {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .timeline-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 12px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            margin-top: 6px;
        }

        .dot-success {
            background: linear-gradient(135deg, #22c55e, #4ade80);
        }

        .dot-warning {
            background: linear-gradient(135deg, #f97316, #fbbf24);
        }

        .code-block {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 14px;
            padding: 24px;
            color: #d5dbe7;
            font-family: "Fira Code", "Courier New", monospace;
            font-size: 13px;
            line-height: 1.65;
            border: 1px solid rgba(71, 85, 105, 0.45);
            position: relative;
        }

        .code-block code {
            display: block;
            white-space: pre-wrap;
        }

        .code-cursor {
            display: inline-block;
            width: 8px;
            height: 16px;
            background: #a5b4fc;
            margin-left: 2px;
            animation: code-blink 1s steps(2, start) infinite;
        }

        @keyframes code-blink {
            0%, 50% { opacity: 1; }
            50.01%, 100% { opacity: 0; }
        }

        .table-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .table-list-item {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding: 12px 14px;
            background: rgba(15, 23, 42, 0.78);
            border-radius: 12px;
            border: 1px solid rgba(71, 85, 105, 0.45);
            color: rgba(226, 232, 240, 0.9);
            font-size: 12px;
        }

        .table-list-item span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
        }

        .table-list-item i {
            color: rgba(129, 140, 248, 0.9);
        }

        .table-list-item small {
            color: rgba(148, 163, 184, 0.7);
        }

        .diagram-body {
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 22px;
            padding-bottom: 10px;
            align-items: flex-start;
        }

        .diagram-node {
            position: relative;
            padding: 12px 18px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            width: fit-content;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.35);
        }

        .node-primary {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: #fff;
        }

        .node-secondary {
            background: rgba(59, 130, 246, 0.15);
            color: #bfdbfe;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .node-accent {
            background: rgba(16, 185, 129, 0.18);
            color: #bbf7d0;
            border: 1px solid rgba(16, 185, 129, 0.35);
        }

        .diagram-body .diagram-node:nth-child(1) { margin-left: 18px; }
        .diagram-body .diagram-node:nth-child(2) { margin-left: 120px; }
        .diagram-body .diagram-node:nth-child(3) { margin-left: 175px; }
        .diagram-body .diagram-node:nth-child(4) { margin-left: 85px; }

        .diagram-lines {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            stroke: rgba(99, 102, 241, 0.35);
            stroke-width: 1.5;
            fill: none;
            pointer-events: none;
        }

        .diagram-lines path {
            stroke-dasharray: 5 4;
        }

        .terminal-snippet {
            background: rgba(15, 23, 42, 0.92);
            border-radius: 12px;
            padding: 12px 14px;
            font-family: "Fira Code", monospace;
            font-size: 12px;
            color: rgba(226, 232, 240, 0.8);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(71, 85, 105, 0.45);
        }

        .terminal-snippet .prompt {
            color: #38bdf8;
        }

        .terminal-snippet .status {
            color: #4ade80;
            font-weight: 600;
        }

        .value-section {
            background: linear-gradient(180deg, var(--body-bg) 0%, var(--section-alt-bg) 100%);
        }

        .value-card {
            height: 100%;
            background: var(--card-bg);
            border: 1px solid rgba(148, 163, 184, 0.25);
            border-radius: 18px;
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .value-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 60px rgba(15, 23, 42, 0.3);
        }

        .value-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--secondary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.25rem;
            box-shadow: 0 15px 30px rgba(79, 70, 229, 0.35);
        }

        .value-card h5 {
            margin: 0;
            color: var(--text-primary);
            font-size: 1.1rem;
        }

        .value-card p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .value-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .value-list li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .value-list i {
            color: #4ade80;
        }

        .workflow-section {
            background: linear-gradient(180deg, var(--section-alt-bg) 0%, var(--body-bg) 100%);
        }

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

        .workflow-step {
            background: var(--card-bg);
            border: 1px solid rgba(148, 163, 184, 0.25);
            border-radius: 18px;
            padding: 1.5rem;
            box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .workflow-step__number {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(102, 126, 234, 0.18);
            border: 1px solid rgba(102, 126, 234, 0.35);
            color: #cbd5f5;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
        }

        .workflow-step h6 {
            margin: 0;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .workflow-step p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.92rem;
        }

        .testimonial-section {
            background: linear-gradient(180deg, var(--body-bg) 0%, var(--section-alt-bg) 100%);
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid rgba(148, 163, 184, 0.25);
            border-radius: 18px;
            padding: 1.85rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 1.1rem;
            box-shadow: 0 22px 50px rgba(15, 23, 42, 0.28);
        }

        .testimonial-head {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .avatar-block {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(102, 126, 234, 0.18);
            border: 1px solid rgba(102, 126, 234, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cbd5f5;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .avatar-initials {
            text-transform: uppercase;
        }

        .testimonial-head h6 {
            margin: 0;
            color: var(--text-primary);
            font-size: 1rem;
        }

        .testimonial-head small {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .testimonial-quote {
            margin: 0;
            color: var(--text-primary);
            font-size: 1rem;
            line-height: 1.6;
        }

        .testimonial-meta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 0.75rem;
            border-radius: 999px;
            background: rgba(34, 197, 94, 0.16);
            color: #4ade80;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(34, 197, 94, 0.35);
        }

        .testimonial-meta i {
            color: inherit;
        }

        [data-theme="light"] .hero-eyebrow {
            background: rgba(102, 126, 234, 0.08);
            border-color: rgba(102, 126, 234, 0.2);
            color: rgba(71, 85, 105, 0.85);
        }

        [data-theme="light"] .benefit-chip {
            background: rgba(148, 163, 184, 0.16);
            border-color: rgba(148, 163, 184, 0.25);
            color: #1f2937;
        }

        [data-theme="light"] .hero-alert {
            background: rgba(148, 163, 184, 0.15);
            border-color: rgba(148, 163, 184, 0.28);
            color: #1e293b;
        }

        [data-theme="light"] .hero-alert-success {
            background: rgba(34, 197, 94, 0.15);
            border-color: rgba(34, 197, 94, 0.28);
            color: #15803d;
        }

        [data-theme="light"] .hero-alert-info {
            background: rgba(99, 102, 241, 0.16);
            border-color: rgba(99, 102, 241, 0.28);
            color: #4338ca;
        }

        [data-theme="light"] .cta-button-outline {
            border-color: rgba(148, 163, 184, 0.4);
            color: #1e293b;
            background: rgba(148, 163, 184, 0.1);
            box-shadow: 0 12px 35px rgba(148, 163, 184, 0.2);
        }

        [data-theme="light"] .cta-button-outline--google {
            background: rgba(102, 126, 234, 0.12);
            border-color: rgba(102, 126, 234, 0.35);
            color: #3730a3;
        }

        [data-theme="light"] .cta-button-outline--dark {
            background: rgba(15, 23, 42, 0.08);
            border-color: rgba(15, 23, 42, 0.18);
            color: #0f172a;
        }

        [data-theme="light"] .hero-side-panel {
            background: #ffffff;
            border-color: #e2e8f0;
            box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
        }

        [data-theme="light"] .hero-signal-bar {
            background: rgba(248, 250, 252, 0.95);
            border-color: #e2e8f0;
            box-shadow: 0 24px 42px rgba(148, 163, 184, 0.22);
        }

        [data-theme="light"] .signal-value {
            color: #0f172a;
        }

        [data-theme="light"] .signal-label {
            color: rgba(71, 85, 105, 0.75);
        }

        [data-theme="light"] .hero-chat-panel {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: 0 26px 48px rgba(148, 163, 184, 0.22);
        }

        [data-theme="light"] .hero-chat-body {
            background: rgba(248, 250, 252, 0.9);
            border-color: #e2e8f0;
        }

        [data-theme="light"] .hero-chat-message .message-bubble {
            background: rgba(99, 102, 241, 0.1);
            border-color: rgba(99, 102, 241, 0.25);
            color: #1e293b;
        }

        [data-theme="light"] .hero-chat-message.user .message-bubble {
            color: #fff;
        }

        [data-theme="light"] .hero-chat-prompt {
            background: rgba(148, 163, 184, 0.16);
            border-color: rgba(148, 163, 184, 0.28);
            color: #0f172a;
        }

        [data-theme="light"] .hero-chat-login {
            background: rgba(248, 250, 252, 0.95);
            border-color: #e2e8f0;
        }

        [data-theme="light"] .chat-login-message {
            color: #0f172a;
        }

        [data-theme="light"] .side-panel-status {
            background: rgba(102, 126, 234, 0.2);
            color: #4338ca;
            border-color: rgba(102, 126, 234, 0.3);
        }

        [data-theme="light"] .hero-metric-card {
            background: linear-gradient(180deg, #eef2ff 0%, #f8fafc 100%);
            border-color: #e2e8f0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        [data-theme="light"] .hero-metric-label {
            color: rgba(71, 85, 105, 0.8);
        }

        [data-theme="light"] .hero-metric-value {
            color: #0f172a;
        }

        [data-theme="light"] .hero-metric-desc {
            color: rgba(71, 85, 105, 0.75);
        }

        [data-theme="light"] .side-panel-blurb {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        [data-theme="light"] .side-panel-blurb p {
            color: rgba(71, 85, 105, 0.75);
        }

        [data-theme="light"] .side-panel-blurb i {
            background: rgba(59, 130, 246, 0.12);
            color: #2563eb;
        }

        [data-theme="light"] .hero-mini-status {
            background: rgba(148, 163, 184, 0.18);
            border-color: rgba(148, 163, 184, 0.3);
            color: #475569;
        }

        [data-theme="light"] .hero-trust-bar {
            background: rgba(248, 250, 252, 0.9);
            border-color: #e2e8f0;
            box-shadow: 0 18px 42px rgba(148, 163, 184, 0.2);
        }

        [data-theme="light"] .builder-point {
            background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        [data-theme="light"] .builder-point p {
            color: #64748b;
        }

        [data-theme="light"] .insight-pill {
            background: rgba(148, 163, 184, 0.16);
            border-color: rgba(148, 163, 184, 0.28);
            color: #475569;
        }

        [data-theme="light"] .builder-stat-card {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        [data-theme="light"] .builder-stat-label {
            color: #94a3b8;
        }

        [data-theme="light"] .builder-quote-card {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: 0 18px 32px rgba(148, 163, 184, 0.2);
        }

        [data-theme="light"] .builder-quote-card small {
            color: #94a3b8;
        }

        [data-theme="light"] .quote-avatar {
            box-shadow: 0 18px 28px rgba(79, 70, 229, 0.25);
        }

        [data-theme="light"] .builder-shell {
            background: #ffffff;
            border-color: #e2e8f0;
            box-shadow: 0 32px 60px rgba(148, 163, 184, 0.25);
        }

        [data-theme="light"] .builder-shell::before {
            background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.12), transparent 55%);
        }

        [data-theme="light"] .builder-topbar {
            border-bottom-color: #e2e8f0;
        }

        [data-theme="light"] .builder-topbar__status {
            color: #64748b;
        }

        [data-theme="light"] .status-pill {
            background: rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.3);
            color: #4338ca;
        }

        [data-theme="light"] .topbar-time {
            color: #94a3b8;
        }

        [data-theme="light"] .builder-chat {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: 0 18px 42px rgba(148, 163, 184, 0.18);
        }

        [data-theme="light"] .chat-bubble {
            background: rgba(99, 102, 241, 0.12);
            border-color: rgba(99, 102, 241, 0.25);
            color: #1e293b;
        }

        [data-theme="light"] .chat-bubble ul {
            color: #475569;
        }

        [data-theme="light"] .chat-message.user .chat-bubble {
            background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
            box-shadow: 0 16px 32px rgba(79, 70, 229, 0.25);
        }

        [data-theme="light"] .message-meta {
            color: #94a3b8;
        }

        [data-theme="light"] .prompt-chip {
            background: rgba(148, 163, 184, 0.14);
            border-color: #e2e8f0;
            color: #475569;
        }

        [data-theme="light"] .builder-workspace {
            background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: 0 24px 48px rgba(148, 163, 184, 0.2);
        }

        [data-theme="light"] .workspace-tabs {
            color: #94a3b8;
        }

        [data-theme="light"] .workspace-tab.active {
            background: rgba(102, 126, 234, 0.22);
            border-color: rgba(102, 126, 234, 0.35);
            color: #1e293b;
        }

        [data-theme="light"] .workspace-panel {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            border-color: #e2e8f0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        [data-theme="light"] .panel-header {
            color: #475569;
            border-bottom-color: #e2e8f0;
        }

        [data-theme="light"] .panel-body {
            color: #475569;
        }

        [data-theme="light"] .metric-card {
            background: #f8fafc;
            border-color: #e2e8f0;
        }

        [data-theme="light"] .metric-label {
            color: #94a3b8;
        }

        [data-theme="light"] .metric-value {
            color: #0f172a;
        }

        [data-theme="light"] .metric-trend {
            color: #64748b;
        }

        [data-theme="light"] .metric-trend.up {
            color: #059669;
        }

        [data-theme="light"] .metric-trend.alert {
            color: #db2777;
        }

        [data-theme="light"] .timeline-item {
            color: #64748b;
        }

        [data-theme="light"] .code-block {
            background: #0f172a;
            border-color: rgba(15, 23, 42, 0.65);
            color: #e2e8f0;
            box-shadow: 0 26px 38px rgba(15, 23, 42, 0.3);
        }

        [data-theme="light"] .code-block code {
            color: #e2e8f0;
        }

        [data-theme="light"] .table-list-item {
            background: #f8fafc;
            border-color: #e2e8f0;
            color: #475569;
        }

        [data-theme="light"] .table-list-item small {
            color: #94a3b8;
        }

        [data-theme="light"] .diagram-body {
            color: #475569;
        }

        [data-theme="light"] .diagram-node {
            box-shadow: 0 18px 32px rgba(148, 163, 184, 0.25);
        }

        [data-theme="light"] .node-secondary {
            background: rgba(59, 130, 246, 0.12);
            color: #2563eb;
            border-color: rgba(59, 130, 246, 0.28);
        }

        [data-theme="light"] .node-accent {
            background: rgba(16, 185, 129, 0.16);
            color: #0f766e;
            border-color: rgba(16, 185, 129, 0.32);
        }

        [data-theme="light"] .diagram-lines {
            stroke: rgba(99, 102, 241, 0.25);
        }

        [data-theme="light"] .terminal-snippet {
            background: #0f172a;
            border-color: rgba(15, 23, 42, 0.65);
            color: #e2e8f0;
            box-shadow: 0 26px 38px rgba(15, 23, 42, 0.3);
        }

        [data-theme="light"] .trust-eyebrow {
            color: rgba(100, 116, 139, 0.9);
        }

        [data-theme="light"] .trust-logos {
            color: #0f172a;
        }

        [data-theme="light"] .builder-preview-section {
            background: radial-gradient(circle at 12% 22%, rgba(102, 126, 234, 0.08), transparent 45%), #f8fafc;
        }

        [data-theme="light"] .builder-point {
            background: rgba(226, 232, 240, 0.7);
            border-color: #e2e8f0;
        }

        [data-theme="light"] .builder-point p {
            color: #475569;
        }

        [data-theme="light"] .insight-pill {
            background: rgba(148, 163, 184, 0.2);
            border-color: rgba(148, 163, 184, 0.3);
            color: #475569;
        }

        [data-theme="light"] .builder-shell {
            background: #ffffff;
            border-color: #e2e8f0;
            box-shadow: 0 35px 70px rgba(15, 23, 42, 0.15);
        }

        [data-theme="light"] .builder-shell::before {
            background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.15), transparent 55%);
        }

        [data-theme="light"] .builder-topbar {
            border-bottom-color: #e2e8f0;
        }

        [data-theme="light"] .builder-topbar__status {
            color: #475569;
        }

        [data-theme="light"] .status-pill {
            background: rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.35);
            color: #4338ca;
        }

        [data-theme="light"] .builder-chat {
            background: #f8fafc;
            border-color: #e2e8f0;
            color: #1e293b;
        }

        [data-theme="light"] .chat-header small {
            color: rgba(100, 116, 139, 0.8);
        }

        [data-theme="light"] .chat-messages {
            color: #1e293b;
        }

        [data-theme="light"] .chat-bubble {
            background: rgba(102, 126, 234, 0.12);
            border-color: rgba(102, 126, 234, 0.2);
            color: #1e293b;
        }

        [data-theme="light"] .chat-message.user .chat-bubble {
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.15);
        }

        [data-theme="light"] .message-meta {
            color: rgba(100, 116, 139, 0.65);
        }

        [data-theme="light"] .prompt-chip {
            background: rgba(148, 163, 184, 0.18);
            border-color: rgba(148, 163, 184, 0.3);
            color: #475569;
        }

        [data-theme="light"] .builder-workspace {
            background: #ffffff;
            border-color: #e2e8f0;
        }

        [data-theme="light"] .workspace-tabs {
            color: rgba(100, 116, 139, 0.85);
        }

        [data-theme="light"] .workspace-tab {
            border-color: rgba(148, 163, 184, 0.35);
        }

        [data-theme="light"] .workspace-tab.active {
            background: rgba(102, 126, 234, 0.18);
            border-color: rgba(102, 126, 234, 0.35);
            color: #1f2937;
        }

        [data-theme="light"] .workspace-panel {
            background: #f8fafc;
            border-color: #e2e8f0;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        [data-theme="light"] .panel-header {
            color: #1f2937;
            border-bottom-color: #e2e8f0;
        }

        [data-theme="light"] .panel-body {
            color: #475569;
        }

        [data-theme="light"] .preview-filter {
            color: rgba(100, 116, 139, 0.75);
        }

        [data-theme="light"] .metric-card {
            background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
            border-color: #e2e8f0;
        }

        [data-theme="light"] .metric-label {
            color: #64748b;
        }

        [data-theme="light"] .metric-value {
            color: #0f172a;
        }

        [data-theme="light"] .metric-trend {
            color: #64748b;
        }

        [data-theme="light"] .metric-trend.up {
            color: #15803d;
        }

        [data-theme="light"] .metric-trend.alert {
            color: #db2777;
        }

        [data-theme="light"] .table-list-item {
            background: #ffffff;
            border-color: #e2e8f0;
            color: #334155;
        }

        [data-theme="light"] .table-list-item small {
            color: #64748b;
        }

        [data-theme="light"] .diagram-node {
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
        }

        [data-theme="light"] .node-secondary {
            background: rgba(59, 130, 246, 0.18);
            color: #1e40af;
            border-color: rgba(59, 130, 246, 0.28);
        }

        [data-theme="light"] .node-accent {
            background: rgba(16, 185, 129, 0.2);
            color: #047857;
            border-color: rgba(16, 185, 129, 0.3);
        }

        [data-theme="light"] .diagram-lines {
            stroke: rgba(99, 102, 241, 0.25);
        }

        [data-theme="light"] .terminal-snippet {
            background: #f9fafb;
            border-color: #e2e8f0;
            color: #1f2937;
        }

        [data-theme="light"] .terminal-snippet .prompt {
            color: #2563eb;
        }

        [data-theme="light"] .terminal-snippet .status {
            color: #15803d;
        }

        [data-theme="light"] .value-card,
        [data-theme="light"] .workflow-step,
        [data-theme="light"] .testimonial-card {
            box-shadow: 0 22px 48px rgba(148, 163, 184, 0.22);
        }

        [data-theme="light"] .testimonial-meta {
            background: rgba(34, 197, 94, 0.18);
            border-color: rgba(34, 197, 94, 0.3);
            color: #15803d;
        }

        @media (max-width: 991.98px) {
            .builder-shell {
                max-width: 100%;
                transform: scale(1);
                transform-origin: center top;
            }

            .hero-cta-group {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-cta-group .btn {
                width: 100%;
            }

            .hero-side-panel {
                margin-top: 1.5rem;
            }

            .hero-metrics-grid {
                grid-template-columns: 1fr;
            }

            .hero-trust-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .trust-logos {
                gap: 1rem;
            }

            .hero-signal-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.85rem;
            }

            .signal-divider {
                display: none;
            }

            .builder-point {
                background: rgba(30, 41, 59, 0.7);
            }

            .workflow-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .value-card,
            .workflow-step,
            .testimonial-card {
                box-shadow: 0 15px 40px rgba(15, 23, 42, 0.25);
            }

            .builder-body {
                flex-direction: column;
                gap: 24px;
            }

            .builder-preview-canvas {
                display: none;
            }

            .builder-intro {
                max-width: 100%;
            }

            .builder-intro-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .builder-chat {
                width: 100%;
                margin-bottom: 20px;
            }

            .workspace-grid {
                grid-template-columns: 1fr;
            }

            .preview-metric-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .builder-stat-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.75rem;
            }

            .builder-stat-card {
                padding: 1rem 1.1rem;
            }

            .builder-quote-card {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .builder-shell {
                padding: 18px;
                max-width: 100%;
                transform: scale(1);
            }

            .builder-chat {
                width: 100%;
            }

            .hero-chat-panel {
                padding: 1.5rem;
            }

            .hero-chat-body {
                max-height: 260px;
            }

            .hero-chat-suggestions {
                gap: 0.5rem;
            }

            .hero-chat-prompt {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .hero-title {
                font-size: 2.4rem;
            }

            .hero-side-panel {
                padding: 1.6rem;
            }

            .side-panel-blurb p {
                font-size: 0.85rem;
            }

            .hero-trust-bar {
                padding: 1.25rem;
            }

            .trust-logos {
                gap: 0.75rem;
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 2.1rem;
            }

            .value-card {
                padding: 1.5rem;
            }

            .workflow-step {
                padding: 1.35rem;
            }

            .testimonial-card {
                padding: 1.6rem;
            }

            .workspace-tab {
                font-size: 10px;
                padding: 4px 8px;
            }

            .preview-metric-grid {
                grid-template-columns: 1fr;
            }

            .builder-stat-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }

            .workflow-grid {
                grid-template-columns: 1fr;
            }

            .builder-quote-card {
                padding: 1.1rem 1.2rem;
            }

            .hero-chat-panel {
                padding: 1.25rem;
            }

            .hero-chat-body {
                padding: 1rem;
                max-height: 220px;
            }

            .hero-chat-login {
                padding: 1rem;
            }

            .diagram-body .diagram-node:nth-child(2),
            .diagram-body .diagram-node:nth-child(3),
            .diagram-body .diagram-node:nth-child(4) {
                margin-left: 18px;
            }
        }

        /* Theme Toggle Button */
        .theme-toggle {
            position: relative;
            width: 60px;
            height: 30px;
            background: var(--border-color);
            border-radius: 15px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border: 2px solid var(--border-color);
        }

        .theme-toggle:hover {
            background: var(--card-bg);
        }

        .theme-toggle-slider {
            position: absolute;
            top: 2px;
            left: 2px;
            width: 22px;
            height: 22px;
            background: var(--primary-gradient);
            border-radius: 50%;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        [data-theme="light"] .theme-toggle-slider {
            transform: translateX(30px);
        }

        .theme-toggle-icon {
            color: white;
            font-size: 10px;
        }

        /* Light mode specific adjustments */
        [data-theme="light"] .screenshot-header {
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
        }

        [data-theme="light"] .glass-card::after {
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
        }

        [data-theme="light"] .navbar-brand {
            color: var(--text-primary);
        }
    