        body {
            align-items: stretch;
            justify-content: flex-start;
            overflow: hidden;
            flex-direction: column;
            height: 100vh;
        }

        /* Override the common.css blobs with better positioned ones */
        body::before {
            width: 31.25rem;
            height: 31.25rem;
            background: #E8C87A;
            top: -200px;
            right: 20%;
            opacity: 0.08;
        }

        body::after {
            width: 37.5rem;
            height: 37.5rem;
            background: #6B9BD8;
            bottom: -200px;
            left: -150px;
            opacity: 0.06;
        }

        /* ── Top nav ── */
        .landing-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 3rem;
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(8,12,20,0.7);
            backdrop-filter: blur(1.25rem);
            -webkit-backdrop-filter: blur(1.25rem);
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .landing-nav-logo {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            text-decoration: none;
        }

        .landing-nav-logo .logo-text {
            display: flex;
            flex-direction: column;
        }

        .landing-nav-logo .nav-logo-img {
            width: 2.25rem;
            height: 2.25rem;
            object-fit: contain;
        }

        .landing-nav-logo .logo-name {
            font-family: 'Urbanist', sans-serif;
            font-size: 1.125rem;
            font-weight: 700;
            color: #E8ECF1;
            letter-spacing: -0.3px;
            display: block;
            line-height: 1.1;
        }

        .landing-nav-logo .logo-sub {
            font-size: 0.625rem;
            color: rgba(232,236,241,0.38);
            display: block;
            letter-spacing: 0.2px;
        }

        .landing-login-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.5625rem 1.375rem;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(232,200,122,0.20);
            border-radius: 8px;
            color: #E8ECF1;
            font-family: 'Urbanist', sans-serif;
            font-size: 0.8125rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .landing-login-btn:hover {
            border-color: #E8C87A;
            background: rgba(232,200,122,0.10);
            box-shadow: 0 4px 16px rgba(232,200,122,0.15);
            transform: translateY(-1px);
        }

/* ── Main two-column layout ── */
        .landing-main {
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 1;
            width: 100%;
            max-width: 73.75rem;
            margin: 0 auto;
            padding: 0 3rem;
            gap: 4rem;
            position: relative;
            z-index: 1;
        }

        /* ── Fade-in animation ── */
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .landing-hero { animation: fadeUp 0.6s ease both; }
        .landing-demo { animation: fadeUp 0.6s ease 0.15s both; }

        /* ── Left column: Hero ── */
        .landing-hero {
            flex: 1;
            max-width: 32.5rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 6px 0.875rem 6px 0.5rem;
            background: rgba(232,200,122,0.08);
            border: 1px solid rgba(232,200,122,0.15);
            border-radius: 100px;
            margin-bottom: 1.25rem;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #E8C87A;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero-badge span {
            font-size: 0.75rem;
            font-weight: 500;
            color: #E8C87A;
            letter-spacing: 0.3px;
        }

        .landing-hero h1 {
            font-family: 'Urbanist', sans-serif;
            font-size: 2.75rem;
            font-weight: 800;
            color: #E8ECF1;
            line-height: 1.08;
            margin-bottom: 0.875rem;
            letter-spacing: -2px;
        }

        .landing-hero h1 .accent {
            background: linear-gradient(135deg, #E8C87A 0%, #6B9BD8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .landing-hero .tagline {
            font-size: 0.9375rem;
            color: rgba(232,236,241,0.38);
            line-height: 1.55;
            margin-bottom: 1.5rem;
            max-width: 26.25rem;
        }

        .landing-features {
            display: flex;
            flex-direction: column;
            gap: 2px;
            margin-bottom: 1.5rem;
        }

        .landing-feature {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 0.625rem 0.875rem;
            border-radius: 12px;
            transition: background 0.2s;
        }

        .landing-feature:hover {
            background: rgba(255,255,255,0.03);
        }

        .landing-feature-icon {
            width: 2.625rem;
            height: 2.625rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .landing-feature-icon.setup {
            background: rgba(232,200,122,0.12);
        }

        .landing-feature-icon.rag {
            background: rgba(107,155,216,0.12);
        }

        .landing-feature-icon.security {
            background: rgba(168,85,247,0.12);
        }

        .landing-feature-text h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #E8ECF1;
            margin-bottom: 1px;
        }

        .landing-feature-text p {
            font-size: 0.8125rem;
            color: rgba(232,236,241,0.38);
            line-height: 1.4;
        }

        /* ── Stats row ── */
        .landing-stats {
            display: flex;
            justify-content: space-evenly;
        }

        .landing-stat {
            text-align: center;
            padding: 0 1.75rem;
            border-right: 1px solid rgba(255,255,255,0.06);
        }

        .landing-stat:first-child {
            padding-left: 0;
        }

        .landing-stat:last-child {
            border-right: none;
            padding-right: 0;
        }

        .landing-stat .stat-value {
            font-family: 'Urbanist', sans-serif;
            font-size: 1.625rem;
            font-weight: 700;
            color: #E8C87A;
            line-height: 1.2;
        }

        .landing-stat .stat-label {
            font-size: 0.6875rem;
            color: rgba(232,236,241,0.38);
            margin-top: 2px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* ── Right column: Demo widget ── */
        .landing-demo {
            flex: 0 0 26.25rem;
            width: 26.25rem;
        }

        .demo-container {
            background: rgba(17,24,39,0.8);
            backdrop-filter: blur(1rem);
            -webkit-backdrop-filter: blur(1rem);
            padding: 1.75rem;
            border-radius: 20px;
            box-shadow:
                0 0 0 1px rgba(255,255,255,0.06),
                0 20px 50px -12px rgba(0,0,0,0.6),
                0 0 80px -20px rgba(232,200,122,0.08);
            text-align: center;
            position: relative;
        }

        .demo-header-icon {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 12px;
            background: linear-gradient(135deg, #E8C87A, #6B9BD8);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 0.75rem;
        }

        .demo-container h2.demo-title {
            font-family: 'Urbanist', sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #E8ECF1;
            margin-bottom: 4px;
        }

        .demo-container .demo-subtitle {
            font-size: 0.8125rem;
            color: rgba(232,236,241,0.38);
            margin-bottom: 1rem;
        }

        .demo-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            padding: 1rem;
            margin-top: 0.625rem;
            text-align: left;
        }

        .demo-card-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .demo-card-header-icon {
            width: 1.75rem;
            height: 1.75rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .demo-card-header-icon.inbound {
            background: rgba(34,197,94,0.12);
        }

        .demo-card-header-icon.outbound {
            background: rgba(107,155,216,0.12);
        }

        .demo-card h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #E8ECF1;
        }

        .demo-card p {
            font-size: 0.75rem;
            color: rgba(232,236,241,0.38);
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .demo-phone-display {
            font-family: 'Urbanist', sans-serif;
            font-size: 1.375rem;
            font-weight: 700;
            color: #E8C87A;
            text-align: center;
            padding: 0.75rem;
            background: rgba(232,200,122,0.06);
            border-radius: 10px;
            border: 1px solid rgba(232,200,122,0.12);
            letter-spacing: 0.5px;
        }

        .demo-phone-display a {
            color: inherit;
            text-decoration: none;
        }

        .demo-phone-display a:hover {
            text-decoration: underline;
        }

        .demo-hint {
            font-size: 0.6875rem !important;
            color: rgba(232,236,241,0.3) !important;
            margin-top: 0.625rem;
            margin-bottom: 0 !important;
        }

        .demo-card input[type="tel"],
        .demo-card input[type="text"] {
            width: 100%;
            padding: 0.75rem 0.875rem;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            font-size: 0.9375rem;
            font-family: inherit;
            outline: none;
            transition: all 0.2s;
            background: rgba(255,255,255,0.03);
            color: #E8ECF1;
        }

        .demo-card input[type="tel"],
        .demo-card input[type="text"]::placeholder {
            color: rgba(232,236,241,0.25);
        }

        .demo-card input[type="tel"],
        .demo-card input[type="text"]:focus {
            border-color: rgba(232,200,122,0.4);
            box-shadow: 0 0 0 3px rgba(232,200,122,0.08);
            background: rgba(255,255,255,0.04);
        }

        .demo-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            margin-top: 0.625rem;
            padding: 0.75rem;
            background: #E8C87A;
            color: #080C14;
            border: none;
            border-radius: 10px;
            font-size: 0.875rem;
            font-weight: 600;
            font-family: 'Urbanist', sans-serif;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .demo-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .demo-btn:hover {
            background: #D4B56A;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(232,200,122,0.30);
        }

        .demo-btn:active {
            transform: translateY(0);
        }

        .demo-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        #demo-result {
            margin-top: 0.625rem;
            font-size: 0.8125rem;
            border-radius: 10px;
            padding: 0;
            transition: all 0.2s;
        }

        #demo-result.success {
            background: rgba(34,197,94,0.1);
            color: #86efac;
            border: 1px solid rgba(34,197,94,0.2);
            padding: 0.625rem 0.875rem;
        }

        #demo-result.error {
            background: rgba(239,68,68,0.1);
            color: #fca5a5;
            border: 1px solid rgba(239,68,68,0.2);
            padding: 0.625rem 0.875rem;
        }


        /* ── Footer ── */
        .landing-footer {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 3rem;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .landing-footer a {
            font-size: 0.75rem;
            color: rgba(232,236,241,0.3);
            text-decoration: none;
            transition: color 0.2s;
        }

        .landing-footer a:hover {
            color: rgba(232,236,241,0.6);
        }

        .footer-dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(232,236,241,0.15);
        }

        /* ── Responsive ── */
        @media (max-width: 960px) {
            .landing-main {
                gap: 3rem;
                padding: 0 2rem;
            }

            .landing-hero h1 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-y: auto;
                height: auto;
                min-height: 100vh;
            }

            .landing-nav {
                padding: 0.75rem 1.25rem;
                position: relative;
            }

            .landing-main {
                flex-direction: column;
                padding: 1.5rem 1.25rem 2rem;
                gap: 2rem;
            }

            .landing-hero {
                max-width: 100%;
                text-align: center;
            }

            .hero-badge {
                margin-left: auto;
                margin-right: auto;
            }

            .landing-hero h1 {
                font-size: 2.125rem;
                letter-spacing: -1.5px;
            }

            .landing-hero .tagline {
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 1.75rem;
            }

            .landing-features {
                max-width: 22.5rem;
                margin-left: auto;
                margin-right: auto;
            }

            .landing-feature {
                text-align: left;
            }

            .landing-stats {
                justify-content: center;
            }

            .landing-demo {
                flex: none;
                width: 100%;
                max-width: 26.25rem;
            }
        }

        @media (max-width: 480px) {
            .landing-nav {
                padding: 0.75rem 1rem;
            }

            .landing-login-btn {
                padding: 0.5rem 0.875rem;
                font-size: 0.75rem;
            }

            .landing-hero h1 {
                font-size: 1.75rem;
                letter-spacing: -1px;
            }

            .landing-stats {
                gap: 0;
            }

            .landing-stat {
                padding: 0 1rem;
            }

            .landing-stat .stat-value {
                font-size: 1.375rem;
            }

            .demo-container {
                padding: 1.5rem 1.125rem;
            }

            input, select, textarea {
                font-size: 1rem !important;
            }
        }
