@import '_content/Blazor.SignaturePad/Blazor.SignaturePad.g22u5lm4z9.bundle.scp.css';

/* /Components/Charting/SocDmeSection.razor.rz.scp.css */
/* SocDmeSection.razor.css */

.dme-section[b-zbl3bxwabx] {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 20px;
}

.dme-section-header[b-zbl3bxwabx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.dme-section-title[b-zbl3bxwabx] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .95rem;
    color: #0f172a;
}

.dme-loading[b-zbl3bxwabx] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: .875rem;
    padding: 8px 0;
}

.dme-empty[b-zbl3bxwabx] {
    color: #94a3b8;
    font-size: .875rem;
    text-align: center;
    padding: 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
}

.dme-list[b-zbl3bxwabx] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}

.dme-card[b-zbl3bxwabx] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: box-shadow .15s;
}
.dme-card:hover[b-zbl3bxwabx] { box-shadow: 0 2px 8px rgba(0,0,0,.07); }
.dme-card.urgent[b-zbl3bxwabx] { border-left: 4px solid #ef4444; }

.dme-card-left[b-zbl3bxwabx]  { flex: 1; min-width: 0; }
.dme-card-right[b-zbl3bxwabx] { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.dme-equipment[b-zbl3bxwabx] {
    font-weight: 600;
    color: #1e293b;
    font-size: .875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dme-hcpcs[b-zbl3bxwabx] {
    font-size: .75rem;
    color: #94a3b8;
    font-family: monospace;
    margin-top: 1px;
}

.dme-card-actions[b-zbl3bxwabx] {
    display: flex;
    gap: 2px;
}

/* Form */
.dme-form[b-zbl3bxwabx] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px;
    margin-top: 12px;
}

.dme-form-title[b-zbl3bxwabx] {
    font-size: .9rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 14px;
}

.dme-form-actions[b-zbl3bxwabx] {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    align-items: center;
}

/* Inline toast (replaces MudSnackbar) */
.dme-toast-inline[b-zbl3bxwabx] {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 7px;
    font-size: .875rem;
    font-weight: 500;
}
.dme-toast-inline.ok[b-zbl3bxwabx]  { background: #dcfce7; color: #166534; }
.dme-toast-inline.err[b-zbl3bxwabx] { background: #fee2e2; color: #991b1b; }
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* 🌙 Dark Gradient Background for the Sidebar */
.rz-sidebar[b-b832s5pabd] {
    background: linear-gradient(135deg, #1a1a1a, #292929);
    color: white;
    transition: width 0.3s ease-in-out;
}

    /* 📌 Sidebar when collapsed */
    .rz-sidebar.collapsed[b-b832s5pabd] {
        width: 50px !important;
    }

/* 📌 Sidebar Navigation Items */
.rz-navigation-item[b-b832s5pabd] {
    color: white !important;
    transition: background 0.3s, color 0.3s;
}

/* 📌 Highlight Active Menu Item */
.rz-navigation-item-active[b-b832s5pabd] {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 5px;
}

/* 📌 Sidebar Toggle Button */
.rz-sidebar-toggle[b-b832s5pabd] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

    .rz-sidebar-toggle:hover[b-b832s5pabd] {
        background-color: rgba(255, 0, 0, 0.4); /* Red hover for toggle button */
    }

/* 📌 Sidebar Item Hover Effect (Lighter Gray) */
.rz-navigation-item:hover[b-b832s5pabd] {
    background-color: rgba(211, 211, 211, 0.3) !important; /* Light Gray */
    color: #ffffff !important;
}

/* 📌 Show Tooltips when Sidebar is Collapsed */
.rz-sidebar.collapsed .rz-navigation-item[b-b832s5pabd] {
    position: relative;
}

    .rz-sidebar.collapsed .rz-navigation-item:hover[b-b832s5pabd]::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 60px;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(128, 128, 128, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        white-space: nowrap;
        z-index: 10;
    }

/* 🌙 Dark Background for the Entire Page */
body[b-b832s5pabd] {
    background: #121212;
    color: white;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Styles moved inline to MainLayout.razor */
/* /Components/Layout/NavBar.razor.rz.scp.css */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* =============================================
   Sidebar Navigation — Crisp Dark Pro Theme
   (No CSS variables — direct values for Blazor scoped CSS compatibility)
   ============================================= */

/* ── Wrapper ── */
.sidebar-wrapper[b-vcb5udw6vq] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #0f1c2e !important;
    width: 256px;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.07);
    color: #e2eaf6;
}

/* ── Brand ── */
.sidebar-brand[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
    background: rgba(0,0,0,0.20) !important;
}

.brand-icon[b-vcb5udw6vq] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white !important;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(59,130,246,0.45);
}

.brand-name[b-vcb5udw6vq] {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.3px;
}

/* ── Nav Container ── */
.sidebar-nav[b-vcb5udw6vq] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 12px;
    display: flex;
    flex-direction: column;
    background: #0f1c2e !important;
}

.sidebar-nav[b-vcb5udw6vq]::-webkit-scrollbar { width: 3px; }
.sidebar-nav[b-vcb5udw6vq]::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav[b-vcb5udw6vq]::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.10); border-radius: 4px; }

/* ── Section ── */
.nav-section[b-vcb5udw6vq] {
    padding: 0 10px 4px;
}

.nav-section-label[b-vcb5udw6vq] {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #7aafd4 !important;
    padding: 10px 8px 4px;
    margin: 0;
}

/* ── Top-level links ── */
.sidebar-link[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 7px;
    color: #e8f0fc !important;
    text-decoration: none !important;
    font-size: 0.925rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
    width: 100%;
    border: none;
    background: none !important;
    cursor: pointer;
    line-height: 1.2;
}

.sidebar-link i[b-vcb5udw6vq] {
    font-size: 1rem;
    width: 18px;
    min-width: 18px;
    text-align: center;
    flex-shrink: 0;
    color: #8ab8e0 !important;
    transition: color 0.15s ease;
}

.sidebar-link:hover[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.14) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
.sidebar-link:hover i[b-vcb5udw6vq] { color: #93c5fd !important; }

.sidebar-link.active[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.22) !important;
    color: #ffffff !important;
    border-left: 3px solid #60a5fa;
    padding-left: 7px;
    font-weight: 600;
}
.sidebar-link.active i[b-vcb5udw6vq] { color: #60a5fa !important; }

/* ── Group Toggle ── */
.sidebar-group[b-vcb5udw6vq] { margin-bottom: 1px; }

.sidebar-group-toggle[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 7px;
    color: #e8f0fc !important;
    font-size: 0.925rem;
    font-weight: 600;
    background: none !important;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.15s ease;
}

.sidebar-group-toggle:hover[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.14) !important;
    color: #ffffff !important;
}

.sidebar-group-toggle.open[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.22) !important;
    color: #ffffff !important;
}

.group-left[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-left i[b-vcb5udw6vq] {
    font-size: 1rem;
    width: 18px;
    min-width: 18px;
    text-align: center;
    color: #8ab8e0 !important;
    transition: color 0.15s ease;
}

.sidebar-group-toggle:hover .group-left i[b-vcb5udw6vq],
.sidebar-group-toggle.open .group-left i[b-vcb5udw6vq] { color: #93c5fd !important; }

.toggle-arrow[b-vcb5udw6vq] {
    font-size: 0.65rem !important;
    width: auto !important;
    transition: transform 0.15s ease !important;
    color: #4a6a8a !important;
}
.sidebar-group-toggle.open .toggle-arrow[b-vcb5udw6vq] {
    transform: rotate(90deg);
    color: #93c5fd !important;
}

/* ── Sub Items ── */
.sidebar-group-items[b-vcb5udw6vq] {
    display: none;
    flex-direction: column;
    gap: 1px;
    padding: 3px 0 3px 12px;
    border-left: 2px solid rgba(96,165,250,0.18);
    margin-left: 18px;
    margin-top: 2px;
    margin-bottom: 2px;
}
.sidebar-group-items.show[b-vcb5udw6vq] { display: flex; }

.sidebar-sub-link[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    color: #ccdff5 !important;
    text-decoration: none !important;
    font-size: 0.89rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-sub-link i[b-vcb5udw6vq] {
    font-size: 0.875rem;
    width: 14px;
    min-width: 14px;
    text-align: center;
    flex-shrink: 0;
    color: #7aafd4 !important;
    transition: color 0.15s ease;
}

.sidebar-sub-link:hover[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.14) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
.sidebar-sub-link:hover i[b-vcb5udw6vq] { color: #93c5fd !important; }

.sidebar-sub-link.active[b-vcb5udw6vq] {
    color: #93c5fd !important;
    background: rgba(37,99,235,0.22) !important;
    font-weight: 600;
}
.sidebar-sub-link.active i[b-vcb5udw6vq] { color: #93c5fd !important; }

/* ── Footer ── */
.sidebar-footer[b-vcb5udw6vq] {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 10px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.25) !important;
}

.user-info[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 8px;
}

.user-avatar i[b-vcb5udw6vq] {
    font-size: 1.9rem;
    color: #4a7aaa !important;
}

.user-details[b-vcb5udw6vq] { display: flex; flex-direction: column; overflow: hidden; }

.user-name[b-vcb5udw6vq] {
    font-size: 0.84rem;
    font-weight: 600;
    color: #ffffff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tenant-id[b-vcb5udw6vq] {
    font-size: 0.72rem;
    color: #7aafd4 !important;
}

.logout-form[b-vcb5udw6vq] { width: 100%; }

.logout-btn[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 7px;
    color: #fca5a5 !important;
    background: rgba(239,68,68,0.07) !important;
    border: 1px solid rgba(239,68,68,0.18);
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.logout-btn i[b-vcb5udw6vq] { font-size: 0.95rem; }
.logout-btn:hover[b-vcb5udw6vq] {
    background: rgba(239,68,68,0.18) !important;
    border-color: rgba(239,68,68,0.45) !important;
    color: #ffffff !important;
}

.login-link[b-vcb5udw6vq] { color: #4ade80 !important; }

@@media (max-width: 768px) {
    .sidebar-wrapper[b-vcb5udw6vq] { width: 256px; height: 100vh; overflow-y: auto; }
    .sidebar-nav[b-vcb5udw6vq] { padding-bottom: 2rem; }
}

/* ── Feature lock styles ── */
.nav-locked[b-vcb5udw6vq] {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
    justify-content: space-between;
}

.nav-locked:hover[b-vcb5udw6vq] {
    background: none !important;
    color: #ccdff5 !important;
}

.nav-lock-icon[b-vcb5udw6vq] {
    font-size: 0.65rem !important;
    color: #f59e0b !important;
    width: auto !important;
    min-width: auto !important;
    margin-left: auto;
    opacity: 0.8;
}
/* /Components/Layout/NursSideBar.razor.rz.scp.css */
.static-height-box[b-gumehnam4h] {
    height: 100vh; /* Fixed height */
    width: 280px; /* Width adjusts to content or container */
    background-color: lightblue;
    overflow: hidden; /* Prevents content from overflowing */
    position:  inherit;
   
   
}
/* /Components/Pages/Admin/DmeOrders.razor.rz.scp.css */
/* DmeOrders.razor.css */

/* ── Stats ── */
.dme-stats-row[b-0nub8bhtly] {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}
.dme-stat[b-0nub8bhtly] {
    background: #fff; border-radius: 8px; padding: 10px 16px;
    display: flex; align-items: center; gap: 8px;
    border-left: 3px solid var(--ac);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.dme-stat-n[b-0nub8bhtly] { font-size: 1.25rem; font-weight: 800; color: var(--ac); }
.dme-stat-l[b-0nub8bhtly] { font-size: .75rem; font-weight: 600; color: #64748b; white-space: nowrap; }

/* ── Toolbar ── */
.dme-toolbar[b-0nub8bhtly] {
    display: flex; gap: 10px; align-items: center; margin-bottom: 18px; flex-wrap: wrap;
}

/* ── Board ── */
.dme-board-loading[b-0nub8bhtly] {
    display: flex; align-items: center; justify-content: center; padding: 60px;
}
.dme-board[b-0nub8bhtly] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    align-items: start;
}

/* ── Columns ── */
.dme-col[b-0nub8bhtly] { background: #f1f5f9; border-radius: 10px; overflow: hidden; }
.dme-col-header[b-0nub8bhtly] {
    padding: 10px 14px;
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; border-left: 4px solid var(--ac);
}
.dme-col-title[b-0nub8bhtly] { font-size: .85rem; font-weight: 700; color: #0f172a; }
.dme-col-badge[b-0nub8bhtly] {
    background: var(--ac); color: #fff;
    border-radius: 999px; padding: 1px 8px; font-size: .72rem; font-weight: 800;
}
.dme-col-body[b-0nub8bhtly] { padding: 8px; display: flex; flex-direction: column; gap: 7px; min-height: 50px; }
.dme-col-empty[b-0nub8bhtly] { color: #94a3b8; text-align: center; padding: 14px; font-size: .8rem; }

/* ── Cards ── */
.dme-kcard[b-0nub8bhtly] {
    background: #fff; border-radius: 8px; padding: 10px 12px;
    cursor: pointer; border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: box-shadow .15s, transform .1s;
}
.dme-kcard:hover[b-0nub8bhtly] { box-shadow: 0 4px 14px rgba(0,0,0,.10); transform: translateY(-1px); }
.dme-kcard.urgent[b-0nub8bhtly] { border-top: 3px solid #ef4444; }

.dme-urgent-flag[b-0nub8bhtly] {
    background: #fef2f2; color: #b91c1c;
    font-size: .68rem; font-weight: 800; letter-spacing: .06em;
    padding: 2px 6px; border-radius: 4px; margin-bottom: 5px; display: inline-block;
}
.dme-kcard-patient[b-0nub8bhtly]   { font-weight: 700; color: #0f172a; font-size: .85rem; margin-bottom: 2px; }
.dme-kcard-equipment[b-0nub8bhtly] { color: #374151; font-size: .78rem; line-height: 1.4; margin-bottom: 3px; }
.dme-kcard-hcpcs[b-0nub8bhtly]     { color: #94a3b8; font-size: .7rem; font-family: monospace; margin-bottom: 3px; }
.dme-kcard-meta[b-0nub8bhtly]      { display: flex; justify-content: space-between; font-size: .7rem; color: #94a3b8; margin-top: 6px; }

/* ── Slide-over ── */
.dme-overlay[b-0nub8bhtly] {
    position: fixed; inset: 0; background: rgba(0,0,0,.35);
    z-index: 1200; display: flex; justify-content: flex-end;
    animation: dme-fade-b-0nub8bhtly .15s;
}
@keyframes dme-fade-b-0nub8bhtly { from { opacity:0 } to { opacity:1 } }

.dme-drawer[b-0nub8bhtly] {
    background: #fff; width: 440px; max-width: 96vw;
    height: 100%; overflow-y: auto; padding: 32px 26px;
    box-shadow: -8px 0 32px rgba(0,0,0,.14); position: relative;
    animation: dme-slide-b-0nub8bhtly .2s ease;
}
@keyframes dme-slide-b-0nub8bhtly { from { transform:translateX(28px);opacity:0 } to { transform:translateX(0);opacity:1 } }

.dme-dl[b-0nub8bhtly] {
    display: grid; grid-template-columns: 110px 1fr;
    gap: 9px 14px; align-items: start; margin-bottom: 24px;
}
.dme-dl dt[b-0nub8bhtly] { font-size: .75rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .04em; }
.dme-dl dd[b-0nub8bhtly] { font-size: .875rem; color: #1e293b; word-break: break-word; }

.dme-drawer-actions[b-0nub8bhtly] { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Vendor radio options ── */
.dme-vendor-opt[b-0nub8bhtly] {
    border: 1px solid #e2e8f0; border-radius: 8px; padding: 10px 14px;
    margin-bottom: 8px; cursor: pointer; transition: border-color .15s, background .15s;
}
.dme-vendor-opt:hover[b-0nub8bhtly]   { border-color: #6366f1; background: #f5f3ff; }
.dme-vendor-opt.selected[b-0nub8bhtly]{ border-color: #6366f1; background: #ede9fe; }
.dme-vendor-name[b-0nub8bhtly]  { display: block; font-weight: 700; color: #0f172a; font-size: .875rem; }
.dme-vendor-meta[b-0nub8bhtly]  { display: block; font-size: .76rem; color: #64748b; margin-top: 1px; }
/* /Components/Pages/Home.razor.rz.scp.css */
.home-shell[b-nww1eftg54] {
    --home-shell-pad-x: 28px;
    --home-shell-pad-y: 24px;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(35, 122, 196, 0.12), transparent 32%),
        linear-gradient(180deg, #f5f9ff 0%, #eef4fb 38%, #f7fafc 100%);
    color: #12304a;
}

.home-hero[b-nww1eftg54] {
    position: relative;
    overflow: hidden;
    margin: calc(-1 * var(--home-shell-pad-y)) calc(-1 * var(--home-shell-pad-x)) 0;
    padding: 0 var(--home-shell-pad-x);
    background: linear-gradient(140deg, #0d2647 0%, #123c6d 42%, #1a6ab8 100%);
    color: #fff;
}

.home-hero-glow[b-nww1eftg54] {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.45;
    pointer-events: none;
}

.home-hero-glow-left[b-nww1eftg54] {
    width: 28rem;
    height: 28rem;
    left: -9rem;
    top: 7rem;
    background: radial-gradient(circle, rgba(120, 193, 255, 0.22), transparent 70%);
}

.home-hero-glow-right[b-nww1eftg54] {
    width: 24rem;
    height: 24rem;
    right: -6rem;
    top: -4rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
}

.home-hero-inner[b-nww1eftg54],
.home-main[b-nww1eftg54],
.home-footer-inner[b-nww1eftg54] {
    width: min(1140px, calc(100% - 2rem));
    margin: 0 auto;
}

.home-hero-inner[b-nww1eftg54] {
    position: relative;
    padding: 1.75rem 0 2.25rem;
}

.home-topbar[b-nww1eftg54] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 2rem;
}

.home-brand[b-nww1eftg54] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.home-brand-logo[b-nww1eftg54],
.home-footer-logo[b-nww1eftg54] {
    width: 2.8rem;
    height: 2.8rem;
    object-fit: contain;
}

.home-brand-copy[b-nww1eftg54] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.home-brand-name[b-nww1eftg54] {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-brand-tag[b-nww1eftg54] {
    color: rgba(227, 238, 255, 0.74);
    font-size: 0.8rem;
}

.home-topbar-actions[b-nww1eftg54],
.home-inline-form[b-nww1eftg54],
.home-hero-actions[b-nww1eftg54],
.home-cta-actions[b-nww1eftg54] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.home-btn[b-nww1eftg54] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.95rem;
    padding: 0.82rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
    cursor: pointer;
}

.home-btn:hover[b-nww1eftg54] {
    transform: translateY(-1px);
    text-decoration: none;
}

.home-btn-primary[b-nww1eftg54] {
    background: linear-gradient(135deg, #ffcb6b 0%, #f59f32 100%);
    color: #1d2430;
    box-shadow: 0 16px 30px rgba(22, 74, 131, 0.2);
}

.home-btn-primary:hover[b-nww1eftg54] {
    color: #1d2430;
    box-shadow: 0 18px 32px rgba(22, 74, 131, 0.26);
}

.home-btn-secondary[b-nww1eftg54] {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.home-btn-ghost[b-nww1eftg54] {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.26);
}

.home-btn-muted[b-nww1eftg54] {
    background: rgba(255, 255, 255, 0.08);
    color: #f4f8ff;
    border-color: rgba(255, 255, 255, 0.1);
}

.home-btn-secondary:hover[b-nww1eftg54],
.home-btn-ghost:hover[b-nww1eftg54],
.home-btn-muted:hover[b-nww1eftg54] {
    color: #fff;
}

.home-hero-grid[b-nww1eftg54] {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 2rem;
    align-items: stretch;
}

.home-hero-copy[b-nww1eftg54] {
    padding: 1.3rem 0 0.8rem;
}

.home-kicker[b-nww1eftg54] {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #dbebff;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.home-hero-copy h1[b-nww1eftg54] {
    margin: 1rem 0 1rem;
    font-size: clamp(2.25rem, 4.2vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    max-width: 10.5ch;
}

.home-hero-copy h1 span[b-nww1eftg54] {
    display: block;
    color: #9fd6ff;
}

.home-hero-text[b-nww1eftg54] {
    max-width: 44rem;
    font-size: 1.02rem;
    line-height: 1.75;
    color: rgba(231, 239, 250, 0.88);
    margin: 0 0 1.5rem;
}

.home-proof-strip[b-nww1eftg54] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.home-proof-item[b-nww1eftg54],
.home-metric[b-nww1eftg54] {
    padding: 1rem 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-proof-item strong[b-nww1eftg54],
.home-metric-value[b-nww1eftg54] {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.home-proof-item span[b-nww1eftg54],
.home-metric-label[b-nww1eftg54] {
    color: rgba(224, 235, 248, 0.74);
    font-size: 0.8rem;
    line-height: 1.55;
}

.home-panel-window[b-nww1eftg54] {
    width: 100%;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(240, 247, 255, 0.95));
    color: #17314c;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 60px rgba(8, 29, 58, 0.3);
    overflow: hidden;
}

.home-panel-window-bar[b-nww1eftg54] {
    display: flex;
    gap: 0.45rem;
    padding: 1rem 1.1rem 0;
}

.home-panel-window-bar span[b-nww1eftg54] {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: #d9e7f9;
}

.home-panel-summary[b-nww1eftg54] {
    padding: 1.15rem;
    display: grid;
    gap: 0.95rem;
}

.home-mini-card[b-nww1eftg54],
.home-mini-stat[b-nww1eftg54],
.home-workflow-card[b-nww1eftg54],
.home-capability-card[b-nww1eftg54],
.home-role-card[b-nww1eftg54],
.home-flow-step[b-nww1eftg54] {
    border-radius: 1.15rem;
    background: #fff;
    border: 1px solid #dbe7f3;
    box-shadow: 0 14px 28px rgba(17, 56, 97, 0.08);
}

.home-mini-card[b-nww1eftg54],
.home-workflow-card[b-nww1eftg54],
.home-mini-stat[b-nww1eftg54],
.home-capability-card[b-nww1eftg54],
.home-role-card[b-nww1eftg54],
.home-flow-step[b-nww1eftg54] {
    padding: 1rem;
}

.home-mini-card-head[b-nww1eftg54],
.home-workflow-head[b-nww1eftg54] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
}

.home-mini-card-label[b-nww1eftg54],
.home-workflow-head span:first-child[b-nww1eftg54],
.home-mini-stat-label[b-nww1eftg54] {
    font-size: 0.78rem;
    color: #6780a0;
}

.home-mini-card-label[b-nww1eftg54],
.home-workflow-head span:first-child[b-nww1eftg54] {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-mini-card-badge[b-nww1eftg54],
.home-workflow-chip[b-nww1eftg54] {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #e6f8ee;
    color: #18844d;
    font-size: 0.72rem;
    font-weight: 800;
}

.home-mini-card strong[b-nww1eftg54],
.home-mini-stat strong[b-nww1eftg54] {
    font-size: 0.96rem;
    line-height: 1.45;
}

.home-mini-grid[b-nww1eftg54],
.home-metrics[b-nww1eftg54],
.home-capability-grid[b-nww1eftg54],
.home-flow-grid[b-nww1eftg54],
.home-role-grid[b-nww1eftg54] {
    display: grid;
    gap: 1rem;
}

.home-mini-grid[b-nww1eftg54] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.home-workflow-card ul[b-nww1eftg54] {
    margin: 0;
    padding-left: 1.15rem;
    color: #526983;
    line-height: 1.6;
}

.home-main[b-nww1eftg54] {
    display: flex;
    flex-direction: column;
    gap: 4.2rem;
    padding: 4rem 0 4.5rem;
}

.home-section-heading[b-nww1eftg54] {
    text-align: center;
    margin-bottom: 2rem;
}

.home-section-heading-left[b-nww1eftg54] {
    text-align: left;
}

.home-section-pill[b-nww1eftg54] {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.78rem;
    border-radius: 999px;
    background: #e6f1ff;
    color: #155aac;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.home-section-pill-light[b-nww1eftg54] {
    background: rgba(255, 255, 255, 0.12);
    color: #d8e8ff;
}

.home-section-heading h2[b-nww1eftg54],
.home-cta-copy h2[b-nww1eftg54] {
    margin: 0 0 0.7rem;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.04em;
    color: #0f2742;
}

.home-cta-copy h2[b-nww1eftg54] {
    color: #fff;
}

.home-section-heading p[b-nww1eftg54],
.home-cta-copy p[b-nww1eftg54] {
    line-height: 1.7;
    font-size: 0.98rem;
}

.home-section-heading p[b-nww1eftg54] {
    max-width: 48rem;
    margin: 0 auto;
    color: #60748b;
}

.home-section-heading-left p[b-nww1eftg54] {
    margin-left: 0;
}

.home-capability-grid[b-nww1eftg54] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-role-grid[b-nww1eftg54] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-capability-card[b-nww1eftg54],
.home-role-card[b-nww1eftg54] {
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(10px);
}

.home-capability-card h3[b-nww1eftg54],
.home-role-card h3[b-nww1eftg54],
.home-flow-step h3[b-nww1eftg54] {
    margin: 0 0 0.55rem;
    font-size: 1.02rem;
    color: #112c48;
}

.home-capability-card p[b-nww1eftg54],
.home-role-card p[b-nww1eftg54],
.home-flow-step p[b-nww1eftg54] {
    margin: 0;
    color: #62788f;
    line-height: 1.68;
    font-size: 0.9rem;
}

.home-capability-icon[b-nww1eftg54],
.home-role-icon[b-nww1eftg54] {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.95rem;
}

.home-capability-icon-blue[b-nww1eftg54],
.home-role-icon-blue[b-nww1eftg54] { background: #e7f0ff; color: #155aac; }
.home-capability-icon-green[b-nww1eftg54],
.home-role-icon-green[b-nww1eftg54] { background: #e8f9f0; color: #1c8c53; }
.home-capability-icon-orange[b-nww1eftg54] { background: #fff1df; color: #c96b0b; }
.home-capability-icon-purple[b-nww1eftg54],
.home-role-icon-purple[b-nww1eftg54] { background: #f2ebff; color: #7d4ed5; }
.home-capability-icon-teal[b-nww1eftg54] { background: #e4f9f7; color: #0f7f77; }
.home-capability-icon-indigo[b-nww1eftg54] { background: #e9ecff; color: #4851d6; }

.home-section-band[b-nww1eftg54],
.home-cta[b-nww1eftg54] {
    padding: 2rem;
    border-radius: 1.7rem;
}

.home-section-band[b-nww1eftg54] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(237, 245, 255, 0.88));
    border: 1px solid rgba(201, 217, 236, 0.85);
    box-shadow: 0 24px 44px rgba(24, 64, 107, 0.06);
}

.home-flow-grid[b-nww1eftg54] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-flow-index[b-nww1eftg54] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: #eaf2ff;
    color: #155aac;
    font-size: 0.84rem;
    font-weight: 900;
    margin-bottom: 0.85rem;
}

.home-role-tags[b-nww1eftg54] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.home-role-tags span[b-nww1eftg54] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #edf3fb;
    color: #496277;
    font-size: 0.76rem;
    font-weight: 700;
}

.home-trust-band[b-nww1eftg54] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    padding: 1.35rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(198, 214, 232, 0.8);
    box-shadow: 0 18px 36px rgba(23, 61, 102, 0.05);
}

.home-trust-item[b-nww1eftg54] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #f5f9ff;
    border: 1px solid #dce8f5;
    color: #395772;
    font-size: 0.84rem;
    font-weight: 700;
}

.home-trust-item i[b-nww1eftg54] {
    color: #1761b1;
}

.home-cta[b-nww1eftg54] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%), linear-gradient(135deg, #102d52 0%, #15548f 55%, #1d74bd 100%);
    color: #fff;
    box-shadow: 0 30px 52px rgba(18, 52, 89, 0.18);
}

.home-cta-copy p[b-nww1eftg54] {
    max-width: 38rem;
    margin: 0;
    color: rgba(228, 237, 248, 0.82);
}

.home-footer[b-nww1eftg54] {
    padding: 1.5rem 0 2.2rem;
    border-top: 1px solid rgba(186, 205, 228, 0.45);
}

.home-footer-inner[b-nww1eftg54] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    color: #5c7288;
    font-size: 0.84rem;
}

.home-footer-brand[b-nww1eftg54] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 800;
    color: #24415f;
}

@media (max-width: 1080px) {
    .home-shell[b-nww1eftg54] {
        --home-shell-pad-x: 16px;
        --home-shell-pad-y: 16px;
    }

    .home-hero-grid[b-nww1eftg54],
    .home-capability-grid[b-nww1eftg54],
    .home-flow-grid[b-nww1eftg54],
    .home-role-grid[b-nww1eftg54],
    .home-metrics[b-nww1eftg54] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-proof-strip[b-nww1eftg54] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .home-topbar[b-nww1eftg54],
    .home-cta[b-nww1eftg54] {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-hero-grid[b-nww1eftg54] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-hero-inner[b-nww1eftg54],
    .home-main[b-nww1eftg54],
    .home-footer-inner[b-nww1eftg54] {
        width: min(100% - 1.25rem, 1140px);
    }

    .home-topbar-actions[b-nww1eftg54],
    .home-inline-form[b-nww1eftg54],
    .home-hero-actions[b-nww1eftg54],
    .home-cta-actions[b-nww1eftg54] {
        width: 100%;
    }

    .home-btn[b-nww1eftg54] {
        width: 100%;
    }

    .home-capability-grid[b-nww1eftg54],
    .home-flow-grid[b-nww1eftg54],
    .home-role-grid[b-nww1eftg54],
    .home-metrics[b-nww1eftg54],
    .home-mini-grid[b-nww1eftg54] {
        grid-template-columns: 1fr;
    }

    .home-section-band[b-nww1eftg54],
    .home-cta[b-nww1eftg54] {
        padding: 1.35rem;
    }

    .home-trust-band[b-nww1eftg54] {
        justify-content: stretch;
    }

    .home-trust-item[b-nww1eftg54] {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .home-footer-inner[b-nww1eftg54] {
        justify-content: center;
        text-align: center;
    }
}
