
        /*:root {
            --bg-primary: #0f111a;
            --bg-secondary: #161b2c;
            --bg-tertiary: #1e2538;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --accent-primary: #6366f1;
            --accent-secondary: #a855f7;
            --accent-gradient: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            --container-width: 1200px;
            --radius: 12px;
        }*/

        :root {
            /* Backgrounds */
            --bg-primary: #1779a1 ;        /* Deep governance navy (less harsh than pure black) */
            --bg-secondary: #0b4266;      /* Matches admin card depth */
            --bg-tertiary: #0b5c89;       /* Section contrast without visual noise */
            /*--accent-gradient: linear-gradient(135deg, #0b5c89, #3b82f6);*/

            /* Text */
            --text-primary: #f8fafc;      /* Clean, readable white */
            --text-secondary: #cfdeee;    /* Calm admin-style gray-blue */
            --text-muted: #6b7f99;        /* For meta, captions, disclaimers */
            --text-section: #40b9c5;

            /* Accents (Aligned with Admin UI) */
            --accent-primary: #04b3f8;    /* Teal = control, clarity, systems */
            --accent-secondary: #3b82f6;  /* Blue = trust, infrastructure */
            --accent-tertiary: #04f554;   /* Indigo = intelligence, AI */

            /* Gradients 
            --accent-gradient: linear-gradient(
                135deg,
                var(--accent-primary),
                var(--accent-secondary),
                var(--accent-tertiary)
            );
            --accent-gradient: linear-gradient(135deg, #1779a1 0%, #40b9c5 100%);
            */

            --accent-gradient: linear-gradient(135deg, #1988b4 0%, #40b9c5 100%);
            --text-gradient: linear-gradient(135deg, #40b9c5 0%, #f7fafa 100%);

            /* UI Structure */
            --border-subtle: rgba(148, 163, 184, 0.15);
            --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);

            /* Layout */
            --container-width: 1200px;
            --radius: 12px;
        }

        /*  SIDEBAR START--------------------*/

        .sidebar {
            display: inline-block; 
            padding: 0.5rem 1.5rem; 
            background: linear-gradient(135deg, #1779a1 0%, #40b9c5 100%); 
            color: white; text-decoration: none; 
            border-radius: 6px; 
            font-weight: 500; 
            font-size: 0.95rem; 
            transition: transform 0.2s ease, box-shadow 0.2s ease; 
            box-shadow: 0 2px 8px rgba(23, 121, 161, 0.3);
        }
        
        .sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 230px;
            height: 100vh;
            /*background: #161b2c;*/
            BACKGROUND: var(--bg-secondary);
            border-right: 1px solid #40b9c5;
            padding: 1rem;
            padding-top: 2rem;
            overflow-y: auto;
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        @media (max-width: 768px) {
            .sidebar {
            transform: translateX(-100%);
            }

            .sidebar.open {
            transform: translateX(0);
            }
        }

        @media (min-width: 769px) {
            .sidebar {
            transform: translateX(0);
            }

            .sidebar.closed {
            transform: translateX(-100%);
            }

            .sidebar-overlay {
            display: none;
            }
        }

        body {
            transition: margin-left 0.3s ease, padding-left 0.3s ease;
        }

        @media (min-width: 769px) {
            body.sidebar-open {
            margin-left: 230px;
            }

            body:not(.sidebar-open) {
            margin-left: 0;
            }
        }

        @media (max-width: 768px) {
            body {
            margin-left: 0 !important;
            }
        }

        /* SIDEBAR */

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -1px;
        }

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

        .tenant-brand{
            color: var(--accent-gradient);
            /*background:var(--accent-gradient);*/
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, #1779a1 0%, #40b9c5 100%);
            background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            overflow: hidden;
        }

        .nav-menu {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .nav-section-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-section);
            margin-top:30px;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.2s;
            font-size: 14px;
        }

        .nav-link:hover {
            background: var(--bg-primary);
            color: #fff;
        }

        .nav-link.active {
            background: #007aff;
            color: #fff;
        }

        /* Hamburger Toggle Button */
        .sidebar-toggle {
            /*position: fixed;*/
            left: 1rem;
            top: 80px;
            width: 40px;
            height: 40px;
            background: #1a1a1a;
            border: 1px solid #333;
            border-radius: 6px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            z-index: 1001;
            transition: left 0.3s ease, all 0.2s;
            padding: 0;
        }

        @media (min-width: 769px) {
            body.sidebar-open .sidebar-toggle {
            left: calc(250px + 1rem);
            }
        }

        .sidebar-toggle:hover {
            background: #2a2a2a;
            border-color: #007aff;
        }

        .sidebar-toggle span {
            width: 22px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s;
            display: block;
        }

        /* REVERSED: .active class shows X (sidebar OPEN) */
        .sidebar-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .sidebar-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .sidebar-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* No .active class shows hamburger (sidebar CLOSED) */
        .sidebar-toggle:not(.active) span {
            transform: none;
            opacity: 1;
        }

        /* Overlay for mobile */
        .sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 999;
        }

        .sidebar-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        
        
        /* SIDEBAR ENDS-----------------------------------------------------------*/

        code { font-size: 16px; color: #e4f306; font-weight: bold;}

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        sup { font-size: 14px; }

        h1, h2, h3, h4 {
            line-height: 1.2;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 90%;
            max-width: var(--container-width);
            margin: 0 auto;
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-gradient {
            background: var(--text-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--accent-gradient);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.2s, opacity 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-2px);
            opacity: 0.9;
            box-shadow: 0 10px 20px -10px rgba(2, 128, 245, 0.5);
        }

        /* --- Header/Nav --- */
        header {
            padding: 20px 0;
            position: absolute;
            width: 100%;
            top: 0;
            z-index: 10;

            padding: 1rem 1rem; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            background: #f9f9f9; 
            border-bottom: 1px solid #e0e0e0; 
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }
        
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: left;
        }

       
        
        /* --- Hero Section --- */
        .hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            background: radial-gradient(circle at top right, rgba(3, 60, 248, 0.15), transparent 40%),
                        radial-gradient(circle at bottom left, rgba(4, 245, 245, 0.5), transparent 40%);
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            margin-bottom: 24px;
        }

        .hero p.lead {
            font-size: clamp(1.2rem, 4vw, 1.5rem);
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 600px;
        }

        /* --- Why Section --- */
        .why-section {
            background: var(--bg-secondary);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .section-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        /* --- Grid Layouts --- */
        .grid {
            display: grid;
            gap: 30px;
        }

        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

        .card {
            background: var(--bg-tertiary);
            padding: 30px;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.3s, border-color 0.3s;
            margin-top: 10px;
        }

        .card:hover {
            border-color: var(--accent-primary);
            transform: translateY(-5px);
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: block;
        }

        .card h3 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .card p {
            color: var(--text-secondary);
        }

        /* --- Features Section --- */
        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .feature-icon {
            margin-right: 15px;
            font-size: 1.5rem;
            min-width: 40px;
            height: 40px;
            background: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: var(--accent-secondary);
        }

        .feature-text h4 {
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .feature-text p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* --- Audience Section --- */
        .audience-tag {
            background: var(--bg-tertiary);
            padding: 15px 25px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            margin: 5px;
            font-weight: 500;
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        .audience-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            max-width: 900px;
            margin: 0 auto;
        }

        /* --- Final CTA --- */
        .final-cta {
            text-align: center;
            background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
            border-top: 1px solid #40b9c5;
        }

        .final-cta h2 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 30px;
        }

        .cta-box {
            background: var(--bg-tertiary);
            padding: 40px;
            border-radius: var(--radius);
            display: inline-block;
            margin-top: 40px;
            max-width: 600px;
            width: 100%;
            border: 1px solid var(--accent-primary);
            box-shadow: 0 20px 40px -20px rgba(2, 100, 247, 0.3);
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            color: var(--text-secondary);
            flex-wrap: wrap;
        }

        .cta-features span {
            display: flex;
            align-items: center;
        }

        /* --- Footer --- */
        footer {
            background: #0a0c12;
            padding: 40px 0;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; }
            .hero { text-align: center; justify-content: center; }
            .hero-content { margin: 0 auto; }
            .hero p.lead { margin: 0 auto 40px auto; }
            .cta-features { flex-direction: column; gap: 10px; }
        }
