/* ===================================================================
   main.css — consolidated stylesheet (Adixo)
   Merged from: adixo-theme, topbar-slick, stylePrice, adixo-shell, adixo-dashboard.
   Design-system global rules (reset/body/button/input/a/.card) are scoped
   to html[data-theme] so they apply ONLY to the new self-contained pages
   and never touch the legacy Bootstrap pages (which use data-bs-theme).
   =================================================================== */

/* ============ adixo-theme (legacy overlay) ============ */
/* ===========================================================================
   Adixo theme overlay — retints the legacy Adixo theme (app.css) to match the
   imported "Admin dashboard redesign" design system, so every inner page
   (Calendar, Tables, Profile, Forms, Charts, …) shares the new dark look
   WITHOUT rewriting each page. Loaded after app.css in css.blade.php.
   =========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

/* ---- 1. Re-map the legacy dark tokens to the new palette ----
   app.css drives every Bootstrap component from these --ct-* custom props,
   so overriding them recolours the whole UI in one place. */
html[data-bs-theme=dark]{
  /* surfaces / text */
  --ct-body-bg:#0a0b0e;            --ct-body-bg-rgb:10,11,14;
  --ct-secondary-bg:#14161b;       --ct-secondary-bg-rgb:20,22,27;   /* card surface */
  --ct-tertiary-bg:#1a1d23;        --ct-tertiary-bg-rgb:26,29,35;
  --ct-body-color:#a4a9b8;         --ct-body-color-rgb:164,169,184;
  --ct-secondary-color:#a4a9b8;    --ct-secondary-color-rgb:164,169,184;
  --ct-tertiary-color:#6b7080;
  --ct-emphasis-color:#e9ebf1;     --ct-emphasis-color-rgb:233,235,241;
  --ct-heading-color:#e9ebf1;
  --ct-border-color:rgba(255,255,255,.07);
  --ct-border-color-translucent:rgba(255,255,255,.07);

  /* accent (indigo) */
  --ct-primary:#5b7cfa;            --ct-primary-rgb:91,124,250;
  --ct-link-color:#5b7cfa;         --ct-link-color-rgb:91,124,250;
  --ct-link-hover-color:#8ba2ff;   --ct-link-hover-color-rgb:139,162,255;

  /* sidebar */
  --ct-menu-bg:#0e1014;
  --ct-menu-item-color:#a4a9b8;
  --ct-menu-item-hover-color:#e9ebf1;
  --ct-menu-item-active-color:#e9ebf1;

  /* topbar */
  --ct-topbar-bg:#14161b;
  --ct-topbar-item-color:#a4a9b8;
  --ct-topbar-item-hover-color:#e9ebf1;
  --ct-topbar-search-bg:#1a1d23;
  --ct-topbar-user-bg:#1a1d23;
  --ct-topbar-user-border:rgba(255,255,255,.07);

  /* shape + depth + type */
  --ct-border-radius:12px;
  --ct-border-radius-lg:14px;
  --ct-theme-card-border-width:1px;
  --ct-box-shadow:0 1px 2px rgba(0,0,0,.3),0 12px 34px rgba(0,0,0,.28);
  --ct-body-font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif;
}

/* ---- 1b. Sidebar & topbar tokens are set by the legacy theme with a more
   specific selector (html[data-bs-theme=dark][data-menu-color=…]), so they must
   be re-overridden at matching specificity or the sidebar keeps its old #313a46. */
html[data-bs-theme=dark][data-menu-color=dark],
html[data-bs-theme=dark][data-menu-color=light],
html[data-bs-theme=dark][data-menu-color=brand]{
  --ct-menu-bg:#0e1014;
  --ct-menu-item-color:#a4a9b8;
  --ct-menu-item-hover-color:#e9ebf1;
  --ct-menu-item-active-color:#e9ebf1;
}
html[data-bs-theme=dark][data-topbar-color=dark],
html[data-bs-theme=dark][data-topbar-color=light],
html[data-bs-theme=dark][data-topbar-color=brand]{
  --ct-topbar-bg:#14161b;
  --ct-topbar-item-color:#a4a9b8;
  --ct-topbar-item-hover-color:#e9ebf1;
  --ct-topbar-search-bg:#1a1d23;
  --ct-topbar-user-bg:#1a1d23;
  --ct-topbar-user-border:rgba(255,255,255,.07);
}

/* ---- 1c. Light mode — mirror the imported design's LIGHT palette so the
   toggle lands on a cohesive light theme (not the legacy white look). ---- */
html[data-bs-theme=light]{
  --ct-body-bg:#eceff4;            --ct-body-bg-rgb:236,239,244;
  --ct-secondary-bg:#ffffff;       --ct-secondary-bg-rgb:255,255,255;
  --ct-tertiary-bg:#f5f6f9;        --ct-tertiary-bg-rgb:245,246,249;
  --ct-body-color:#565d6e;         --ct-body-color-rgb:86,93,110;
  --ct-secondary-color:#565d6e;
  --ct-emphasis-color:#171a22;     --ct-heading-color:#171a22;
  --ct-border-color:rgba(13,18,33,.10);
  --ct-border-color-translucent:rgba(13,18,33,.10);
  --ct-primary:#5b7cfa;            --ct-primary-rgb:91,124,250;
  --ct-link-color:#5b7cfa;         --ct-link-hover-color:#3f5fe0;
  --ct-border-radius:12px;
  --ct-theme-card-border-width:1px;
  --ct-box-shadow:0 1px 2px rgba(13,18,33,.05),0 10px 28px rgba(13,18,33,.08);
  --ct-body-font-family:'Hanken Grotesk',system-ui,-apple-system,sans-serif;
}
html[data-bs-theme=light][data-menu-color=light],
html[data-bs-theme=light][data-menu-color=dark],
html[data-bs-theme=light][data-menu-color=brand]{
  --ct-menu-bg:#ffffff;
  --ct-menu-item-color:#565d6e;
  --ct-menu-item-hover-color:#171a22;
  --ct-menu-item-active-color:#171a22;
}
html[data-bs-theme=light][data-topbar-color=light],
html[data-bs-theme=light][data-topbar-color=dark],
html[data-bs-theme=light][data-topbar-color=brand]{
  --ct-topbar-bg:#ffffff;
  --ct-topbar-item-color:#565d6e;
  --ct-topbar-item-hover-color:#171a22;
  --ct-topbar-search-bg:#f5f6f9;
  --ct-topbar-user-bg:#f5f6f9;
  --ct-topbar-user-border:rgba(13,18,33,.08);
}
html[data-bs-theme=light] .card{
  background-color:#fff;border:1px solid rgba(13,18,33,.08);border-radius:15px;
  box-shadow:0 1px 2px rgba(13,18,33,.05),0 10px 28px rgba(13,18,33,.08);
}
html[data-bs-theme=light] .card-header{background-color:transparent;border-bottom:1px solid rgba(13,18,33,.08)}
html[data-bs-theme=light] .side-nav .side-nav-title{color:#8b909e}
html[data-bs-theme=light] .side-nav .menuitem-active>a{background:rgba(91,124,250,.12);border-left-color:#5b7cfa;color:#171a22}
html[data-bs-theme=light] .side-nav .menuitem-active>a .menu-icon,
html[data-bs-theme=light] .side-nav .menuitem-active>a i{color:#5b7cfa}
html[data-bs-theme=light] .navbar-custom{background:color-mix(in srgb,#fff 90%,transparent);border-bottom:1px solid rgba(13,18,33,.08)}
html[data-bs-theme=light] .table{
  --ct-table-color:#565d6e;--ct-table-border-color:rgba(13,18,33,.08);
  --ct-table-hover-bg:rgba(13,18,33,.03);
}
html[data-bs-theme=light] .table>thead th{color:#8b909e}
html[data-bs-theme=light] .dropdown-menu{background:#fff;border:1px solid rgba(13,18,33,.08);border-radius:14px;box-shadow:0 12px 40px rgba(13,18,33,.12)}

/* numerals / headings get the Space Grotesk accent face (optional polish) */
html[data-bs-theme=dark] h1,html[data-bs-theme=dark] h2,html[data-bs-theme=dark] h3,
html[data-bs-theme=dark] .h1,html[data-bs-theme=dark] .h2,html[data-bs-theme=dark] .h3{
  letter-spacing:-.01em;
}

/* ---- 2. Cards: rounded, hairline border, soft shadow (matches new design) ---- */
html[data-bs-theme=dark] .card{
  background-color:#14161b;
  border:1px solid rgba(255,255,255,.07);
  border-radius:15px;
  box-shadow:0 1px 2px rgba(0,0,0,.3),0 12px 34px rgba(0,0,0,.28);
}
html[data-bs-theme=dark] .card-header{
  background-color:transparent;
  border-bottom:1px solid rgba(255,255,255,.07);
}

/* ---- 3. Sidebar: section labels + accent active pill ---- */
html[data-bs-theme=dark] .leftside-menu{border-right:1px solid rgba(255,255,255,.06)}
html[data-bs-theme=dark] .side-nav .side-nav-title{
  font-size:10px;letter-spacing:.13em;font-weight:600;color:#6b7080;text-transform:uppercase;
}
html[data-bs-theme=dark] .side-nav .side-nav-link{
  border-left:2px solid transparent;border-radius:0;transition:background .14s,color .14s;
}
html[data-bs-theme=dark] .side-nav .side-nav-link:hover{
  background:rgba(255,255,255,.04);color:#e9ebf1;
}
html[data-bs-theme=dark] .side-nav .menuitem-active > a{
  background:rgba(91,124,250,.15);
  border-left-color:#5b7cfa;
  color:#e9ebf1;
}
html[data-bs-theme=dark] .side-nav .menuitem-active > a .menu-icon,
html[data-bs-theme=dark] .side-nav .menuitem-active > a i{color:#5b7cfa}

/* ---- 4. Topbar: glassy surface (sits with topbar-slick.css) ---- */
html[data-bs-theme=dark] .navbar-custom{
  background:color-mix(in srgb,#14161b 90%,transparent);
  border-bottom:1px solid rgba(255,255,255,.07);
}

/* ---- 5. Buttons / pills / inputs ---- */
html[data-bs-theme=dark] .btn-primary{
  --ct-btn-bg:#5b7cfa;--ct-btn-border-color:#5b7cfa;
  --ct-btn-hover-bg:#6d8bff;--ct-btn-hover-border-color:#6d8bff;
  --ct-btn-active-bg:#4f6fe6;--ct-btn-active-border-color:#4f6fe6;
}
html[data-bs-theme=dark] .btn{border-radius:9px}
html[data-bs-theme=dark] .form-control,
html[data-bs-theme=dark] .form-select{
  background-color:#1a1d23;
  border-color:rgba(255,255,255,.08);
  border-radius:9px;
}
html[data-bs-theme=dark] .form-control:focus,
html[data-bs-theme=dark] .form-select:focus{
  border-color:rgba(91,124,250,.55);
  box-shadow:0 0 0 3px rgba(91,124,250,.18);
}

/* ---- 6. Tables (incl. DataTables) ---- */
html[data-bs-theme=dark] .table{
  --ct-table-bg:transparent;
  --ct-table-color:#a4a9b8;
  --ct-table-border-color:rgba(255,255,255,.07);
  --ct-table-striped-bg:rgba(255,255,255,.02);
  --ct-table-hover-bg:rgba(255,255,255,.04);
}
html[data-bs-theme=dark] .table > thead th{
  color:#6b7080;text-transform:uppercase;font-size:11px;letter-spacing:.04em;
  border-bottom-color:rgba(255,255,255,.09);
}

/* ---- 7. Misc surfaces that read as "panels" ---- */
html[data-bs-theme=dark] .dropdown-menu{
  background:#14161b;border:1px solid rgba(255,255,255,.08);
  border-radius:14px;box-shadow:0 12px 40px rgba(0,0,0,.45);
}
html[data-bs-theme=dark] .bg-light,
html[data-bs-theme=dark] .bg-light-subtle{
  background-color:#1a1d23 !important;
}
html[data-bs-theme=dark] .page-title-box .page-title{color:#e9ebf1}
html[data-bs-theme=dark] .border,
html[data-bs-theme=dark] .border-light{border-color:rgba(255,255,255,.07) !important}
/* ===== letter avatars (replace user image avatars) ===== */
.letter-ava{display:inline-flex;align-items:center;justify-content:center;border-radius:50%;color:#fff;font-weight:700;font-family:'Space Grotesk','Hanken Grotesk',sans-serif;line-height:1;text-transform:uppercase;overflow:hidden;vertical-align:middle;flex:0 0 auto;width:40px;height:40px;font-size:14px;background:linear-gradient(140deg,#5b7cfa,#7c5cff)}
.letter-ava.xs{width:24px;height:24px;font-size:9.5px}
.letter-ava.sm{width:32px;height:32px;font-size:12px}
.letter-ava.md{width:40px;height:40px;font-size:14px}
.letter-ava.lg{width:64px;height:64px;font-size:22px}
.letter-ava.xl{width:92px;height:92px;font-size:31px}
.letter-ava.c1{background:linear-gradient(140deg,#5b7cfa,#7c5cff)}
.letter-ava.c2{background:linear-gradient(140deg,#34d399,#10b981)}
.letter-ava.c3{background:linear-gradient(140deg,#f5b14c,#fb7185)}
.letter-ava.c4{background:linear-gradient(140deg,#38bdf8,#0ea5e9)}
.letter-ava.c5{background:linear-gradient(140deg,#a78bfa,#5b7cfa)}
.letter-ava.c6{background:linear-gradient(140deg,#fb7185,#e5484d)}
/* ============ topbar-slick ============ */
/* ===== Slick topbar restyle (self-contained, no compiled-theme changes) ===== */

/* ---- Compact: medium 50px topbar with proportionally scaled internals ---- */
:root {
    --ct-topbar-height: 50px;
}

/* Logo scales to fit the slim bar */
.navbar-custom .logo-topbar .logo-lg img {
    height: 20px;
}
.navbar-custom .logo-topbar .logo-sm img {
    height: 20px;
}

/* Icon action buttons + menu toggle: medium size */
.navbar-custom .topbar-menu > li > .nav-link,
.navbar-custom .button-toggle-menu {
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
}

/* All topbar icons (overrides the fs-22 utility) */
.navbar-custom .topbar-menu i,
.navbar-custom .button-toggle-menu i,
.navbar-custom .nav-link i {
    font-size: 18px !important;
    line-height: 1;
}

/* Menu spacing */
.navbar-custom .topbar-menu {
    gap: .65rem !important;
}

/* Pill search */
.navbar-custom .app-search .input-group {
    padding: 1px 5px;
}
.navbar-custom .app-search .form-control {
    height: 32px;
    font-size: 13px;
}
.navbar-custom .app-search .search-icon {
    font-size: 16px;
}

/* Profile chip + avatar */
.navbar-custom .nav-user {
    padding: 3px 10px 3px 3px !important;
}
.navbar-custom .nav-user .account-user-avatar img {
    width: 28px !important;
    height: 28px;
}
.navbar-custom .nav-user h5 {
    font-size: 13px;
}
.navbar-custom .nav-user h6 {
    font-size: 11px;
}

/* Language flag */
.navbar-custom .topbar-menu img[height="12"] {
    height: 11px;
}

/* Notification badge sized for the medium bar */
.navbar-custom .noti-icon-badge {
    top: 6px;
    right: 6px;
    height: 8px;
    width: 8px;
}

.navbar-custom {
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 24px rgba(15, 23, 42, 0.04);
    transition: background .25s ease, box-shadow .25s ease;
}

[data-bs-theme="dark"] .navbar-custom {
    background: rgba(20, 26, 41, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.25);
}

/* Icon action buttons — pill hit-area, subtle hover lift */
.navbar-custom .topbar-menu > li > .nav-link,
.navbar-custom .button-toggle-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
    color: var(--bs-secondary-color, #6c757d);
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.navbar-custom .topbar-menu > li > .nav-link:hover,
.navbar-custom .button-toggle-menu:hover {
    background: rgba(99, 102, 241, 0.10);
    color: #6366f1;
    transform: translateY(-1px);
}

.navbar-custom .button-toggle-menu {
    background: transparent;
    border: 0;
}

/* Slick search — sharp edges */
.navbar-custom .app-search .input-group {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 2px 6px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.navbar-custom .app-search .input-group:focus-within {
    background: var(--bs-body-bg, #fff);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.navbar-custom .app-search .form-control {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 6px;
    height: 38px;
}

.navbar-custom .app-search .search-icon {
    color: #6366f1;
}

/* Animated notification badge */
.navbar-custom .noti-icon-badge {
    top: 4px;
    right: 4px;
    background: #ef4444;
    box-shadow: 0 0 0 2px var(--bs-body-bg, #fff);
    animation: topbar-pulse 2s infinite;
}

@keyframes topbar-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    70%  { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Profile chip */
.navbar-custom .nav-user {
    border-radius: 999px !important;
    padding: 4px 12px 4px 4px !important;
    transition: background .18s ease;
}

.navbar-custom .nav-user:hover {
    background: rgba(99, 102, 241, 0.08);
}

.navbar-custom .nav-user .account-user-avatar img {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.35);
}

/* Smoother dropdown surfaces */
.navbar-custom .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}
/* ============ stylePrice ============ */
*{
	padding: 0;
	margin: 0;
}
.pricing_table_container{
    font-family: -apple-system, BlinkMacSystemFont, Helvetica, 'Open Sans', 'Lato', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
  	position: relative;
	padding: 50px 0 80px 0;
    background-color: #EFF7FD;
    min-height: 100vh;
}
.pricing_table_container .heading{
    display: flex;
    flex-direction: column;
    margin: 100px auto;
}
.pricing_table_container .heading h2{
    margin: auto auto 20px auto;
    text-align: center;
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #212121;
}
.pricing_table_container .heading h2 b{
    font-weight: 700;
}
.pricing_table_container .heading .text{
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #5c5c5c;
    line-height: 2;
}
.pricing_table_container .heading .text b{
    font-weight: 600;
}
.pricing_table_container .plans{
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}
.pricing_table_container .plans .plan{
    min-width: 280px;
    max-width: 400px;
    height: max-content;
    margin: auto 30px;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    position: relative;
    box-shadow: 1px 10px 20px -3px rgba(0,0,0,0.1);
    -webkit-box-shadow: 1px 10px 20px -3px rgba(0,0,0,0.1);
    -moz-box-shadow: 1px 10px 20px -3px rgba(0,0,0,0.1);
    transition: box-shadow 300ms;
}
.pricing_table_container .plans .plan:hover{
    box-shadow: 1px 10px 20px -3px rgba(0,0,0,0.2);
    -webkit-box-shadow: 1px 10px 20px -3px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 10px 20px -3px rgba(0,0,0,0.2);
}
.pricing_table_container .plans .plan.pro{
    background-color: #2F58CD;
    color: #fff;
}
.pricing_table_container .plans .plan .title-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}
.pricing_table_container .plans .plan .title{
    margin: 0 auto 20px 0;
}
.pricing_table_container .plans .plan .title h3{
    color: #212121;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.pricing_table_container .plans .plan.pro .title h3{
    color: #fff;
}
.pricing_table_container .plans .plan .title span{
    font-size: 13px;
    font-size: 0.8rem;
    color: #6a6a6a;
    font-family: 'Poppins', sans-serif;
}
.pricing_table_container .plans .plan.pro .title span{
    color: #BDB8C8;
}
.pricing_table_container .plans .plan .price{
    background-color: #eee;
    padding: 8px 8px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 6px;
    height: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.pricing_table_container .plans .plan.pro .price{
    background-color: #3e6be4;
}

.pricing_table_container .plans .plan .price h4{
    color: #3e6be4;
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
}
.pricing_table_container .plans .plan.pro .price h4{
    color: #fff;
}
.pricing_table_container .plans .plan .price span{
    font-size: 0.75rem;
    color: #6a6a6a;
    text-align: center;
}
.pricing_table_container .plans .plan.pro .price span{
    color: #BDB8C8;
}
.pricing_table_container .plans .plan hr{
    border: none;
    border-bottom: 1.5px solid #E8E8E8;
    margin: 6px 0;
}
.pricing_table_container .plans .plan.pro hr{
    border-bottom-color: #517cf5;
}

.pricing_table_container .plans .plan button{
    background-color: #FF7557;
    color: #fff;
    border:none;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    padding: 10px;
    border: 2px solid transparent;
    font-size: 0.9rem;
    margin: 35px 0 0 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 500ms;
}
.pricing_table_container .plans .plan.pro button{
    border: 2px solid #fff;
    background-color: #2F58CD;
    color: #fff;
}
.pricing_table_container .plans .plan.ultimate button{
    background-color : #E2E2F7;
    color: #2F58CD;
}
.pricing_table_container .plans .plan button:hover{
    transform: scale(1.015);
}
.pricing_table_container .plans .plan.basic button:hover{
    background-color: #ff532c;
}
.pricing_table_container .plans .plan.pro button:hover{
    background-color: #fff;
    color: #2F58CD;
}
.pricing_table_container .plans .plan.ultimate button:hover{
    background-color: #afaffb;
}

.pricing_table_container .plans .plan ul{
    margin: 25px 0;
}
.pricing_table_container .plans .plan ul li{
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 12px;
    list-style-position: inside;
    list-style-type:none;
    margin-left: 25px;
    color: #212121;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}
.pricing_table_container .plans .plan.pro ul li{
    color: #fff;
}
.pricing_table_container .plans .plan.basic ul li b{
    color: #2F58CD;
}
.pricing_table_container .plans .plan.pro ul li b{
    color: #fff;
}
.pricing_table_container .plans .plan.ultimate ul li b{
    color: #2F58CD;
}
.pricing_table_container .plans .plan ul li .fa-li{
    left: 28px;
    font-size: 1rem;
}
.pricing_table_container .plans .plan ul li.disabled{
    color: #aeaeae;
}
@media (max-width: 1250px) {
    .pricing_table_container .plans{
        flex-wrap: wrap;
    }
    .pricing_table_container .plans .plan{
        margin: 20px auto;
    }
}
@media (max-width: 1024px) {
    .pricing_table_container .plans .plan{
        margin: 30px 22px;
    }
}
@media (max-width: 767px) {
    .pricing_table_container .heading{
        margin: 80px 10px;
    }
    .pricing_table_container .heading h2{
        font-size: 2.4rem;
    }
    .pricing_table_container .plans{
        flex-direction: column;
        flex-wrap: wrap;
    }
    .pricing_table_container .plans .plan{
        margin: auto auto 30px auto;
        padding: 35px 25px;
    }
    .pricing_table_container .plans .plan ul li .fa-li{
        left: 20px;
    }
    .pricing_table_container .plans .plan ul li{
        margin-left: 28px;
    }
}
@media (max-width: 376px) {
    .pricing_table_container .plans .plan{
        margin: auto 25px 50px 25px;
        min-width: 150px;
        max-width: auto;
        padding: 25px 18px;
    }
    .pricing_table_container .plans .plan ul li .fa-li{
        left: 12px;
    }
    .pricing_table_container .plans .plan ul li{
        margin-left: 25px;
    }
}
@media (max-width: 321px) {
    .pricing_table_container .plans .plan{
        margin: auto 15px 50px 15px;
    }
}

/* ============ adixo-shell (new chrome on legacy) ============ */
/* ============================================================
   adixo-shell.css — new sidebar + topbar for the LEGACY pages
   (Base UI / Extended UI etc.). Provides the new design chrome
   WITHOUT touching Bootstrap component styles (no .card rule).
   Loaded after app.css; positions the chrome inside .wrapper.
   ============================================================ */

:root{
  --bg:#0a0b0e;--surface:#14161b;--surface-2:#1a1d23;--surface-3:#262a33;--sidebar:#0e1014;
  --border:rgba(255,255,255,.07);--border-2:rgba(255,255,255,.11);--grid:rgba(255,255,255,.05);
  --text:#e9ebf1;--text-2:#a4a9b8;--text-3:#6b7080;
  --accent:#5b7cfa;--accent-soft:rgba(91,124,250,.15);--accent-line:rgba(91,124,250,.28);
  --pos:#34d399;--pos-soft:rgba(52,211,153,.15);--neg:#fb7185;--neg-soft:rgba(251,113,133,.15);
  --warn:#f5b14c;--warn-soft:rgba(245,177,76,.16);--line:#34d399;
  --shadow:0 1px 2px rgba(0,0,0,.3),0 12px 34px rgba(0,0,0,.28);--card-pad:22px;
}
html[data-theme="light"]{
  --bg:#eceff4;--surface:#ffffff;--surface-2:#f5f6f9;--surface-3:#e7eaf0;--sidebar:#ffffff;
  --border:rgba(13,18,33,.08);--border-2:rgba(13,18,33,.14);--grid:rgba(13,18,33,.06);
  --text:#171a22;--text-2:#565d6e;--text-3:#8b909e;
  --pos:#10b981;--pos-soft:rgba(16,185,129,.13);--neg:#ef4444;--neg-soft:rgba(239,68,68,.12);
  --warn:#e08a16;--warn-soft:rgba(224,138,22,.14);--line:#10b981;
  --shadow:0 1px 2px rgba(13,18,33,.05),0 10px 28px rgba(13,18,33,.08);
}

@keyframes fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes growBar{from{transform:scaleY(0)}to{transform:scaleY(1)}}
@keyframes drawLine{to{stroke-dashoffset:0}}
@keyframes donut{from{stroke-dashoffset:138.2}to{stroke-dashoffset:0}}
@keyframes fillBar{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- shell ---------- */
.app{display:flex;min-height:100vh;background:var(--bg);color:var(--text)}

/* ---------- sidebar (redesigned) ---------- */
.sidebar{
  width:258px;flex:0 0 auto;background:var(--sidebar);border-right:1px solid var(--border);
  display:flex;flex-direction:column;position:sticky;top:0;height:100vh;
  transition:width .22s cubic-bezier(.4,0,.2,1);z-index:20;
}
.sidebar__brand{display:flex;align-items:center;gap:11px;padding:0 18px;height:64px;flex:0 0 auto;border-bottom:1px solid var(--border)}
.sidebar__brand-link{display:flex;align-items:center}
.sidebar__logo-full{height:23px;width:auto}
.sidebar__logo-mini{height:26px;width:auto;display:none}
.sidebar.is-collapsed .sidebar__brand{padding:0;justify-content:center}
.sidebar.is-collapsed .sidebar__logo-full{display:none}
.sidebar.is-collapsed .sidebar__logo-mini{display:block}

/* search */
.sidebar__search{display:flex;align-items:center;gap:9px;height:38px;margin:14px 14px 4px;padding:0 11px;
  background:var(--surface-2);border:1px solid var(--border);border-radius:10px;transition:border-color .2s,box-shadow .2s}
.sidebar__search:focus-within{border-color:rgba(91,124,250,.5);box-shadow:0 0 0 3px var(--accent-soft)}
.sidebar__search span{display:flex;color:var(--text-3)}
.sidebar__search input{flex:1;min-width:0;background:none;border:0;outline:none;color:var(--text);font-size:13px}
.sidebar__search kbd{font-size:10.5px;color:var(--text-3);border:1px solid var(--border-2);border-radius:5px;padding:1px 5px;font-family:inherit}

/* nav */
.sidebar__nav{flex:1 1 auto;overflow-y:auto;overflow-x:hidden;padding:8px 0 16px}
.nav-section{margin-bottom:6px}
.nav-section__title{font-size:10px;letter-spacing:.14em;font-weight:700;color:var(--text-3);padding:0 20px;margin:12px 0 5px;text-transform:uppercase}
.nav-row{display:flex;align-items:center;gap:11px;margin:1px 10px;padding:9px 11px;border-radius:10px;cursor:pointer;
  font-size:13.5px;font-weight:500;color:var(--text-2);transition:background .14s,color .14s}
.nav-row:hover{background:var(--surface-2);color:var(--text)}
.nav-row.is-active{font-weight:600;color:var(--accent);background:var(--accent-soft)}
.nav-row__icon{display:flex;flex:0 0 auto;color:var(--text-3)}
.nav-row:hover .nav-row__icon{color:var(--text)}
.nav-row.is-active .nav-row__icon{color:var(--accent)}
.nav-row__label{flex:1 1 auto;white-space:nowrap;overflow:hidden}
.nav-row__badge{font-size:10px;font-weight:700;background:var(--accent);color:#fff;border-radius:20px;min-width:18px;text-align:center;padding:1px 6px;line-height:1.5}
.nav-row__caret{display:flex;color:var(--text-3);transition:transform .2s}
.nav-group.is-open > .nav-row .nav-row__caret{transform:rotate(90deg)}

/* submenu with guide line */
.nav-sub{overflow:hidden;position:relative;margin:2px 0 4px}
.nav-sub::before{content:"";position:absolute;left:30px;top:2px;bottom:4px;width:1.5px;background:var(--border-2)}
.nav-sub__item{display:block;position:relative;margin:1px 10px;padding:7px 11px 7px 33px;border-radius:8px;
  font-size:12.5px;cursor:pointer;color:var(--text-3);font-weight:500;transition:background .14s,color .14s}
.nav-sub__item:hover{background:var(--surface-2);color:var(--text)}
.nav-group:not(.is-open) .nav-sub{display:none}

/* footer user card */
.sidebar__foot{flex:0 0 auto;border-top:1px solid var(--border);padding:12px;display:flex;align-items:center;gap:10px}
.sidebar__foot:hover{background:var(--surface-2)}
.sidebar__foot .ava{width:36px;height:36px;flex:0 0 auto;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:700;font-size:13px;font-family:'Space Grotesk';background:linear-gradient(140deg,#7c5cff,var(--accent))}
.sidebar__foot .meta{flex:1;min-width:0;line-height:1.25}
.sidebar__foot .meta b{display:block;font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sidebar__foot .meta small{display:block;font-size:11px;color:var(--text-3)}
.sidebar__foot .out{display:flex;color:var(--text-3);flex:0 0 auto}
.sidebar__foot .out:hover{color:var(--neg)}

/* collapsed sidebar */
.sidebar.is-collapsed{width:76px}
.sidebar.is-collapsed .sidebar__name,
.sidebar.is-collapsed .nav-section__title,
.sidebar.is-collapsed .nav-row__label,
.sidebar.is-collapsed .nav-row__badge,
.sidebar.is-collapsed .nav-row__caret,
.sidebar.is-collapsed .nav-sub,
.sidebar.is-collapsed .sidebar__search input,
.sidebar.is-collapsed .sidebar__search kbd,
.sidebar.is-collapsed .sidebar__foot .meta,
.sidebar.is-collapsed .sidebar__foot .out{display:none}
.sidebar.is-collapsed .nav-row{justify-content:center;padding:10px 0;margin:1px 8px}
.sidebar.is-collapsed .sidebar__search{justify-content:center;padding:0;margin:14px 8px 4px}
.sidebar.is-collapsed .sidebar__foot{justify-content:center}

/* ---------- main column ---------- */
.shell{flex:1 1 auto;min-width:0;display:flex;flex-direction:column}

/* ---------- topbar ---------- */
.topbar{
  height:65px;flex:0 0 auto;position:sticky;top:0;z-index:15;
  background:color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter:blur(14px);border-bottom:1px solid var(--border);
  display:flex;align-items:center;gap:14px;padding:0 22px;
}
.icon-btn{width:38px;height:38px;border-radius:9px;display:flex;align-items:center;justify-content:center;color:var(--text-2);transition:background .15s,color .15s}
.icon-btn:hover{background:var(--surface-2);color:var(--text)}
.topbar__search{display:flex;align-items:center;gap:9px;height:40px;width:300px;max-width:38vw;padding:0 14px;background:var(--surface-2);border:1px solid var(--border);border-radius:10px}
.topbar__search span:first-child{color:var(--text-3);display:flex}
.topbar__search input{flex:1;font-size:13.5px;width:100%}
.topbar__search kbd{font-size:11px;color:var(--text-3);border:1px solid var(--border-2);border-radius:5px;padding:1px 6px;font-family:inherit}
.topbar__right{margin-left:auto;display:flex;align-items:center;gap:4px}
.btn-text{display:flex;align-items:center;gap:7px;height:38px;padding:0 11px;border-radius:9px;color:var(--text-2);font-size:13px;font-weight:500;transition:background .15s,color .15s}
.btn-text:hover{background:var(--surface-2);color:var(--text)}
.btn-text .muted{display:flex;color:var(--text-3)}
.notif-dot{position:absolute;top:8px;right:9px;width:7px;height:7px;border-radius:50%;background:var(--neg);border:2px solid var(--surface)}
.topbar__divider{width:1px;height:26px;background:var(--border);margin:0 6px}
.user-btn{display:flex;align-items:center;gap:10px;height:46px;padding:0 8px 0 6px;border-radius:11px;transition:background .15s}
.user-btn:hover{background:var(--surface-2)}
.user-avatar{width:34px;height:34px;border-radius:50%;background:linear-gradient(140deg,#7c5cff,var(--accent));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:13px;font-family:'Space Grotesk'}
.user-meta{text-align:left;line-height:1.2}
.user-meta b{display:block;font-size:13px;font-weight:600}
.user-meta small{display:block;font-size:11px;color:var(--text-3)}

/* notifications dropdown */
.notif-wrap{position:relative}
.notif-menu{position:absolute;top:46px;right:0;width:312px;background:var(--surface);border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow);overflow:hidden;animation:fadeUp .18s ease;z-index:40}
.notif-menu[hidden]{display:none}
.notif-menu__head{display:flex;align-items:center;justify-content:space-between;padding:13px 16px;border-bottom:1px solid var(--border)}
.notif-menu__head b{font-weight:600;font-size:14px}
.notif-menu__head span{font-size:11px;font-weight:600;background:var(--accent-soft);color:var(--accent);border-radius:6px;padding:2px 8px}
.notif-item{display:flex;gap:11px;padding:12px 16px;cursor:pointer;border-bottom:1px solid var(--border)}
.notif-item:hover{background:var(--surface-2)}
.notif-item>span{width:8px;height:8px;border-radius:50%;margin-top:6px;flex:0 0 auto}
.notif-item b{font-size:13px;font-weight:500;line-height:1.3;display:block}
.notif-item small{font-size:11.5px;color:var(--text-3);margin-top:2px;display:block}
.notif-menu__foot{padding:11px 16px;text-align:center;font-size:12.5px;font-weight:600;color:var(--accent);cursor:pointer}
.notif-menu__foot:hover{background:var(--surface-2)}

/* ---------- main / content ---------- */
.main{flex:1 1 auto;overflow-y:auto;padding:22px 26px 40px}
.page-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;margin-bottom:20px;animation:fadeUp .5s ease both}
.page-head h1{font-size:21px;font-weight:600;letter-spacing:-.01em}
.page-head p{font-size:13px;color:var(--text-3);margin-top:3px}
.page-head__actions{display:flex;gap:10px;align-items:center}

/* ---- position the new chrome inside the legacy .wrapper.adixo-shell ---- */
.adixo-shell{display:block;background:var(--bg);min-height:100vh}
.adixo-shell .sidebar{position:fixed;left:0;top:0;height:100vh;width:258px;z-index:1010}
.adixo-shell .sidebar.is-collapsed{width:76px}
.adixo-shell .topbar{position:fixed;top:0;left:258px;right:0;height:64px;z-index:1009}
.adixo-shell .content-page{margin-left:258px;padding-top:64px;min-height:100vh;background:var(--bg);width:auto;float:none}
.adixo-shell .content{padding:8px 24px 36px}
.adixo-shell:has(.sidebar.is-collapsed) .topbar{left:76px}
.adixo-shell:has(.sidebar.is-collapsed) .content-page{margin-left:76px}
@media (max-width:900px){
  .adixo-shell .sidebar{transform:translateX(-100%);transition:transform .2s}
  .adixo-shell .topbar{left:0}
  .adixo-shell .content-page{margin-left:0}
}

/* ---- reset chrome controls ONLY (Bootstrap content buttons/inputs untouched) ---- */
.sidebar button,.topbar button{appearance:none;background:none;border:0;cursor:pointer;color:inherit;font-family:inherit;box-shadow:none}
.sidebar button:hover,.topbar button:hover{box-shadow:none}
.sidebar input,.topbar input{appearance:none;background:none;border:0;outline:0;color:var(--text);font-family:inherit;box-shadow:none}
.sidebar input::placeholder,.topbar input::placeholder{color:var(--text-3)}
.sidebar a,.topbar a{text-decoration:none}
/* ===== Adixo text wordmark (replaces the old logo image) ===== */
.brand{gap:10px;text-decoration:none}
.brand-mark{width:32px;height:32px;border-radius:9px;background:linear-gradient(140deg,#7c5cff,#5b7cfa);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-family:'Space Grotesk';font-size:17px;flex:0 0 auto;box-shadow:0 4px 12px rgba(91,124,250,.35)}
.brand-text{font-family:'Space Grotesk';font-weight:700;font-size:20px;letter-spacing:-.02em;color:var(--text)}
.sidebar.is-collapsed .brand-text{display:none}
.app.mode-hover .sidebar.is-collapsed:hover .brand-text{display:inline}
/* ============ adixo-dashboard (design system) ============ */
/* ===========================================================================
   Adixo Dashboard — imported redesign (Claude Design: "Admin dashboard redesign")
   Self-contained dark/light dashboard. No dependency on the legacy Adixo theme.
   =========================================================================== */

:where(html[data-theme]) *{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
:where(html[data-theme]) body{
  background:var(--bg);color:var(--text);
  font-family:'Hanken Grotesk',system-ui,sans-serif;
  -webkit-font-smoothing:antialiased;transition:background .25s;
}
:where(html[data-theme]) button{font:inherit;color:inherit;border:none;background:none;cursor:pointer}
:where(html[data-theme]) input{font:inherit;color:inherit;border:none;outline:none;background:none}
:where(html[data-theme]) a{color:inherit;text-decoration:none}
::selection{background:var(--accent-soft)}
*::-webkit-scrollbar{width:9px;height:9px}
*::-webkit-scrollbar-thumb{background:var(--surface-3);border-radius:8px;border:2px solid transparent;background-clip:padding-box}
*::-webkit-scrollbar-track{background:transparent}

:root{
  --bg:#0a0b0e;--surface:#14161b;--surface-2:#1a1d23;--surface-3:#262a33;--sidebar:#0e1014;
  --border:rgba(255,255,255,.07);--border-2:rgba(255,255,255,.11);--grid:rgba(255,255,255,.05);
  --text:#e9ebf1;--text-2:#a4a9b8;--text-3:#6b7080;
  --accent:#5b7cfa;--accent-soft:rgba(91,124,250,.15);--accent-line:rgba(91,124,250,.28);
  --pos:#34d399;--pos-soft:rgba(52,211,153,.15);--neg:#fb7185;--neg-soft:rgba(251,113,133,.15);
  --warn:#f5b14c;--warn-soft:rgba(245,177,76,.16);--line:#34d399;
  --shadow:0 1px 2px rgba(0,0,0,.3),0 12px 34px rgba(0,0,0,.28);--card-pad:22px;
}
html[data-theme="light"]{
  --bg:#eceff4;--surface:#ffffff;--surface-2:#f5f6f9;--surface-3:#e7eaf0;--sidebar:#ffffff;
  --border:rgba(13,18,33,.08);--border-2:rgba(13,18,33,.14);--grid:rgba(13,18,33,.06);
  --text:#171a22;--text-2:#565d6e;--text-3:#8b909e;
  --pos:#10b981;--pos-soft:rgba(16,185,129,.13);--neg:#ef4444;--neg-soft:rgba(239,68,68,.12);
  --warn:#e08a16;--warn-soft:rgba(224,138,22,.14);--line:#10b981;
  --shadow:0 1px 2px rgba(13,18,33,.05),0 10px 28px rgba(13,18,33,.08);
}

@keyframes fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes growBar{from{transform:scaleY(0)}to{transform:scaleY(1)}}
@keyframes drawLine{to{stroke-dashoffset:0}}
@keyframes donut{from{stroke-dashoffset:138.2}to{stroke-dashoffset:0}}
@keyframes fillBar{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@keyframes spin{to{transform:rotate(360deg)}}

/* ---------- shell ---------- */
.app{display:flex;min-height:100vh;background:var(--bg);color:var(--text)}

/* ---------- sidebar (redesigned) ---------- */
.sidebar{
  width:258px;flex:0 0 auto;background:var(--sidebar);border-right:1px solid var(--border);
  display:flex;flex-direction:column;position:sticky;top:0;height:100vh;
  transition:width .22s cubic-bezier(.4,0,.2,1);z-index:20;
}
.sidebar__brand{display:flex;align-items:center;gap:11px;padding:0 18px;height:64px;flex:0 0 auto;border-bottom:1px solid var(--border)}
.sidebar__brand-link{display:flex;align-items:center}
.sidebar__logo-full{height:23px;width:auto}
.sidebar__logo-mini{height:26px;width:auto;display:none}
.sidebar.is-collapsed .sidebar__brand{padding:0;justify-content:center}
.sidebar.is-collapsed .sidebar__logo-full{display:none}
.sidebar.is-collapsed .sidebar__logo-mini{display:block}

/* search */
.sidebar__search{display:flex;align-items:center;gap:9px;height:38px;margin:14px 14px 4px;padding:0 11px;
  background:var(--surface-2);border:1px solid var(--border);border-radius:10px;transition:border-color .2s,box-shadow .2s}
.sidebar__search:focus-within{border-color:rgba(91,124,250,.5);box-shadow:0 0 0 3px var(--accent-soft)}
.sidebar__search span{display:flex;color:var(--text-3)}
.sidebar__search input{flex:1;min-width:0;background:none;border:0;outline:none;color:var(--text);font-size:13px}
.sidebar__search kbd{font-size:10.5px;color:var(--text-3);border:1px solid var(--border-2);border-radius:5px;padding:1px 5px;font-family:inherit}

/* nav */
.sidebar__nav{flex:1 1 auto;overflow-y:auto;overflow-x:hidden;padding:8px 0 16px}
.nav-section{margin-bottom:6px}
.nav-section__title{font-size:10px;letter-spacing:.14em;font-weight:700;color:var(--text-3);padding:0 20px;margin:12px 0 5px;text-transform:uppercase}
.nav-row{display:flex;align-items:center;gap:11px;margin:1px 10px;padding:9px 11px;border-radius:10px;cursor:pointer;
  font-size:13.5px;font-weight:500;color:var(--text-2);transition:background .14s,color .14s}
.nav-row:hover{background:var(--surface-2);color:var(--text)}
.nav-row.is-active{font-weight:600;color:var(--accent);background:var(--accent-soft)}
.nav-row__icon{display:flex;flex:0 0 auto;color:var(--text-3)}
.nav-row:hover .nav-row__icon{color:var(--text)}
.nav-row.is-active .nav-row__icon{color:var(--accent)}
.nav-row__label{flex:1 1 auto;white-space:nowrap;overflow:hidden}
.nav-row__badge{font-size:10px;font-weight:700;background:var(--accent);color:#fff;border-radius:20px;min-width:18px;text-align:center;padding:1px 6px;line-height:1.5}
.nav-row__caret{display:flex;color:var(--text-3);transition:transform .2s}
.nav-group.is-open > .nav-row .nav-row__caret{transform:rotate(90deg)}

/* submenu with guide line */
.nav-sub{overflow:hidden;position:relative;margin:2px 0 4px}
.nav-sub::before{content:"";position:absolute;left:30px;top:2px;bottom:4px;width:1.5px;background:var(--border-2)}
.nav-sub__item{display:block;position:relative;margin:1px 10px;padding:7px 11px 7px 33px;border-radius:8px;
  font-size:12.5px;cursor:pointer;color:var(--text-3);font-weight:500;transition:background .14s,color .14s}
.nav-sub__item:hover{background:var(--surface-2);color:var(--text)}
.nav-group:not(.is-open) .nav-sub{display:none}

/* footer user card */
.sidebar__foot{flex:0 0 auto;border-top:1px solid var(--border);padding:12px;display:flex;align-items:center;gap:10px}
.sidebar__foot:hover{background:var(--surface-2)}
.sidebar__foot .ava{width:36px;height:36px;flex:0 0 auto;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:#fff;font-weight:700;font-size:13px;font-family:'Space Grotesk';background:linear-gradient(140deg,#7c5cff,var(--accent))}
.sidebar__foot .meta{flex:1;min-width:0;line-height:1.25}
.sidebar__foot .meta b{display:block;font-size:13px;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sidebar__foot .meta small{display:block;font-size:11px;color:var(--text-3)}
.sidebar__foot .out{display:flex;color:var(--text-3);flex:0 0 auto}
.sidebar__foot .out:hover{color:var(--neg)}

/* collapsed sidebar */
.sidebar.is-collapsed{width:76px}
.sidebar.is-collapsed .sidebar__name,
.sidebar.is-collapsed .nav-section__title,
.sidebar.is-collapsed .nav-row__label,
.sidebar.is-collapsed .nav-row__badge,
.sidebar.is-collapsed .nav-row__caret,
.sidebar.is-collapsed .nav-sub,
.sidebar.is-collapsed .sidebar__search input,
.sidebar.is-collapsed .sidebar__search kbd,
.sidebar.is-collapsed .sidebar__foot .meta,
.sidebar.is-collapsed .sidebar__foot .out{display:none}
.sidebar.is-collapsed .nav-row{justify-content:center;padding:10px 0;margin:1px 8px}
.sidebar.is-collapsed .sidebar__search{justify-content:center;padding:0;margin:14px 8px 4px}
.sidebar.is-collapsed .sidebar__foot{justify-content:center}

/* ---------- main column ---------- */
.shell{flex:1 1 auto;min-width:0;display:flex;flex-direction:column}

/* ---------- topbar ---------- */
.topbar{
  height:65px;flex:0 0 auto;position:sticky;top:0;z-index:15;
  background:color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter:blur(14px);border-bottom:1px solid var(--border);
  display:flex;align-items:center;gap:14px;padding:0 22px;
}
.icon-btn{width:38px;height:38px;border-radius:9px;display:flex;align-items:center;justify-content:center;color:var(--text-2);transition:background .15s,color .15s}
.icon-btn:hover{background:var(--surface-2);color:var(--text)}
.topbar__search{display:flex;align-items:center;gap:9px;height:40px;width:300px;max-width:38vw;padding:0 14px;background:var(--surface-2);border:1px solid var(--border);border-radius:10px}
.topbar__search span:first-child{color:var(--text-3);display:flex}
.topbar__search input{flex:1;font-size:13.5px;width:100%}
.topbar__search kbd{font-size:11px;color:var(--text-3);border:1px solid var(--border-2);border-radius:5px;padding:1px 6px;font-family:inherit}
.topbar__right{margin-left:auto;display:flex;align-items:center;gap:4px}
.btn-text{display:flex;align-items:center;gap:7px;height:38px;padding:0 11px;border-radius:9px;color:var(--text-2);font-size:13px;font-weight:500;transition:background .15s,color .15s}
.btn-text:hover{background:var(--surface-2);color:var(--text)}
.btn-text .muted{display:flex;color:var(--text-3)}
.notif-dot{position:absolute;top:8px;right:9px;width:7px;height:7px;border-radius:50%;background:var(--neg);border:2px solid var(--surface)}
.topbar__divider{width:1px;height:26px;background:var(--border);margin:0 6px}
.user-btn{display:flex;align-items:center;gap:10px;height:46px;padding:0 8px 0 6px;border-radius:11px;transition:background .15s}
.user-btn:hover{background:var(--surface-2)}
.user-avatar{width:34px;height:34px;border-radius:50%;background:linear-gradient(140deg,#7c5cff,var(--accent));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:13px;font-family:'Space Grotesk'}
.user-meta{text-align:left;line-height:1.2}
.user-meta b{display:block;font-size:13px;font-weight:600}
.user-meta small{display:block;font-size:11px;color:var(--text-3)}

/* notifications dropdown */
.notif-wrap{position:relative}
.notif-menu{position:absolute;top:46px;right:0;width:312px;background:var(--surface);border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow);overflow:hidden;animation:fadeUp .18s ease;z-index:40}
.notif-menu[hidden]{display:none}
.notif-menu__head{display:flex;align-items:center;justify-content:space-between;padding:13px 16px;border-bottom:1px solid var(--border)}
.notif-menu__head b{font-weight:600;font-size:14px}
.notif-menu__head span{font-size:11px;font-weight:600;background:var(--accent-soft);color:var(--accent);border-radius:6px;padding:2px 8px}
.notif-item{display:flex;gap:11px;padding:12px 16px;cursor:pointer;border-bottom:1px solid var(--border)}
.notif-item:hover{background:var(--surface-2)}
.notif-item>span{width:8px;height:8px;border-radius:50%;margin-top:6px;flex:0 0 auto}
.notif-item b{font-size:13px;font-weight:500;line-height:1.3;display:block}
.notif-item small{font-size:11.5px;color:var(--text-3);margin-top:2px;display:block}
.notif-menu__foot{padding:11px 16px;text-align:center;font-size:12.5px;font-weight:600;color:var(--accent);cursor:pointer}
.notif-menu__foot:hover{background:var(--surface-2)}

/* ---------- main / content ---------- */
.main{flex:1 1 auto;overflow-y:auto;padding:22px 26px 40px}
.page-head{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;margin-bottom:20px;animation:fadeUp .5s ease both}
.page-head h1{font-size:21px;font-weight:600;letter-spacing:-.01em}
.page-head p{font-size:13px;color:var(--text-3);margin-top:3px}
.page-head__actions{display:flex;gap:10px;align-items:center}
.date-chip{display:flex;align-items:center;gap:9px;height:40px;padding:0 14px;background:var(--surface);border:1px solid var(--border);border-radius:10px;font-size:13.5px;color:var(--text-2);font-family:'Space Grotesk'}
.date-chip span{color:var(--text-3);display:flex}
.refresh-btn{height:40px;width:44px;border-radius:10px;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 5px 16px var(--accent-soft)}
.refresh-btn:hover{filter:brightness(1.08)}
.refresh-btn.is-spinning span{animation:spin .65s ease}

/* card */
:where(html[data-theme]) .card{background:var(--surface);border:1px solid var(--border);border-radius:15px;box-shadow:var(--shadow)}
.card__head{display:flex;align-items:center;justify-content:space-between}
.card__head h3{font-size:15.5px;font-weight:600}
.card__menu{width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--text-3)}
.card__menu:hover{background:var(--surface-2);color:var(--text)}
.viewall{font-size:12.5px;font-weight:600;color:var(--accent);cursor:pointer}

/* KPI row */
.kpi-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px;margin-bottom:18px}
.kpi{padding:var(--card-pad);transition:transform .18s,border-color .18s;animation:fadeUp .5s ease both}
.kpi:hover{transform:translateY(-3px);border-color:var(--border-2)}
.kpi__top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px}
.kpi__label{font-size:13px;color:var(--text-2);font-weight:500}
.kpi__value{font-size:29px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em;margin-top:8px}
.kpi__foot{display:flex;align-items:center;gap:8px;margin-top:14px}
.kpi__foot small{font-size:12px;color:var(--text-3)}
.chip{display:inline-flex;align-items:center;gap:3px;font-size:11.5px;font-weight:700;border-radius:7px;padding:3px 7px}
.chip--pos{background:var(--pos-soft);color:var(--pos)}
.chip--neg{background:var(--neg-soft);color:var(--neg)}
.donut{transform:rotate(-90deg);flex:0 0 auto}
.donut circle:last-child{animation:donut 1.1s .25s ease both}

/* two-column panel (revenue + total sales) */
.grid-2{display:grid;grid-template-columns:minmax(0,2.2fr) minmax(0,1fr);gap:18px;margin-bottom:18px}
.revenue-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:0;padding:18px 22px;border-bottom:1px solid var(--border);margin-top:14px}
.revenue-stats>div{padding:0 14px}
.revenue-stats>div:not(:last-child){border-right:1px solid var(--border)}
.revenue-stats>div:first-child{padding-left:0}
.revenue-stats>div:last-child{padding-right:0}
.revenue-stats .lbl{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-3)}
.revenue-stats .val{font-size:22px;font-weight:600;font-family:'Space Grotesk';margin-top:6px;display:flex;align-items:center;gap:7px}
.legend{display:flex;gap:22px;justify-content:center;padding:4px 0 20px}
.legend span{display:flex;align-items:center;gap:8px;font-size:12.5px;color:var(--text-2)}
.legend i{width:10px;height:10px;display:inline-block}
.chart-area{padding:18px 16px 8px}

/* gauge */
.gauge{position:relative;width:210px;height:210px;margin:6px auto 4px}
.gauge__center{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px}
.gauge__center b{font-size:38px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em}
.gauge__center small{font-size:12.5px;font-weight:600;color:var(--accent)}

/* progress bars */
.barlist{display:flex;flex-direction:column;gap:15px}
.bar__head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:7px}
.bar__head .n{font-size:13px;color:var(--text-2)}
.bar__head .v{font-size:13px;font-weight:600;font-family:'Space Grotesk'}
.bar__track{height:7px;border-radius:6px;background:var(--surface-3);overflow:hidden}
.bar__fill{height:100%;border-radius:6px;background:var(--accent);transform-origin:left;animation:fillBar 1s .3s cubic-bezier(.4,0,.2,1) both}

/* triple grid */
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-bottom:18px}
.bignum{display:flex;align-items:baseline;gap:9px;margin:14px 0 16px}
.bignum b{font-size:28px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em}
.bignum small{font-size:12.5px;color:var(--text-3)}
.bignum .pos{font-size:12px;font-weight:600;color:var(--pos);display:inline-flex;align-items:center;gap:2px}
.seg{display:flex;height:11px;border-radius:6px;overflow:hidden;background:var(--surface-3)}
.seg>div{height:100%}
.statgrid{display:grid;grid-template-columns:1fr 1fr;gap:13px 16px;margin-top:18px}
.statgrid>div{display:flex;align-items:center;gap:9px}
.statgrid .dot{width:9px;height:9px;border-radius:3px;flex:0 0 auto}
.statgrid .n{flex:1;font-size:13px;color:var(--text-2)}
.statgrid .c{font-size:13px;font-weight:600;font-family:'Space Grotesk'}

/* recent orders */
.order{display:flex;align-items:center;gap:12px;padding:11px 0;border-bottom:1px solid var(--border)}
.order:last-child{border-bottom:none}
.avatar{width:36px;height:36px;border-radius:10px;flex:0 0 auto;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:'Space Grotesk';font-size:13px}
.order__body{min-width:0;flex:1}
.order__body b{font-size:13.5px;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}
.order__body small{font-size:11.5px;color:var(--text-3);font-family:'Space Grotesk'}
.order__right{text-align:right}
.order__right b{font-size:13.5px;font-weight:600;font-family:'Space Grotesk';display:block}
.status-pill{display:inline-block;margin-top:3px;font-size:10.5px;font-weight:600;border-radius:6px;padding:2px 8px}
.pill--pos{background:var(--pos-soft);color:var(--pos)}
.pill--warn{background:var(--warn-soft);color:var(--warn)}
.pill--accent{background:var(--accent-soft);color:var(--accent)}

/* bottom grid (products + locations) */
.grid-bottom{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(0,1fr);gap:18px}
.btn-accent{display:flex;align-items:center;gap:7px;height:34px;padding:0 14px;border-radius:9px;background:var(--accent);color:#fff;font-size:13px;font-weight:600}
.btn-accent:hover{filter:brightness(1.08)}
.tbl-wrap{overflow-x:auto}
table.tbl{width:100%;border-collapse:collapse;min-width:520px}
table.tbl th{font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--text-3);font-weight:600;padding:0 12px 12px;text-align:left}
table.tbl th:first-child{padding-left:22px}
table.tbl th:last-child{padding-right:22px}
table.tbl tbody tr{border-top:1px solid var(--border)}
table.tbl tbody tr:hover{background:var(--surface-2)}
table.tbl td{padding:13px 12px;font-size:13.5px}
table.tbl td:first-child{padding-left:22px}
table.tbl td:last-child{padding-right:22px}
.prod-cell{display:flex;align-items:center;gap:12px}
.prod-cell .avatar{width:38px;height:38px;font-size:14px}
.prod-name{font-size:13.5px;font-weight:500}
.mono{font-family:'Space Grotesk'}
.muted2{color:var(--text-2)}
.qty-cell{display:flex;align-items:center;gap:10px}
.qty-track{width:64px;height:6px;border-radius:5px;background:var(--surface-3);overflow:hidden}
.qty-fill{height:100%;border-radius:5px}

.pad{padding:18px 22px 22px}
.pad-head{padding:18px 22px}

/* ===================== Analytics page extras ===================== */
.promo{position:relative;overflow:hidden;padding:var(--card-pad);display:flex;align-items:center;gap:14px;
  background:linear-gradient(135deg,rgba(91,124,250,.22),rgba(124,92,255,.10));border:1px solid var(--accent-line)}
.promo__txt h4{font-size:17px;font-weight:600;line-height:1.35;letter-spacing:-.01em}
.promo__txt a{display:inline-flex;align-items:center;gap:5px;margin-top:12px;font-size:13px;font-weight:600;color:var(--accent)}
.promo__art{flex:0 0 auto;width:96px;height:72px;border-radius:12px;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.05);color:var(--accent)}
.kpi--plain .kpi__value{font-size:34px}

/* time filter pills */
.filter-pills{display:flex;gap:4px}
.filter-pills button{font-size:12.5px;font-weight:600;color:var(--text-3);padding:5px 11px;border-radius:8px;transition:background .15s,color .15s}
.filter-pills button:hover{background:var(--surface-2);color:var(--text-2)}
.filter-pills button.is-active{background:var(--accent-soft);color:var(--accent)}

/* two-up big stat (online/offline) */
.bigsplit{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:18px 0 14px;text-align:center}
.bigsplit b{display:block;font-size:30px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em}
.bigsplit small{display:block;font-size:12.5px;color:var(--text-3);margin-top:4px}

/* donut + legend layout */
.donut-row{display:flex;align-items:center;gap:18px;margin-top:10px}
.donut-lg{flex:0 0 auto;transform:rotate(-90deg)}
.donut-legend{flex:1;display:flex;flex-direction:column;gap:9px}
.donut-legend>div{display:flex;align-items:center;gap:9px;font-size:13px;color:var(--text-2)}
.donut-legend .dot{width:9px;height:9px;border-radius:3px;flex:0 0 auto}
.donut-legend .pct{margin-left:auto;font-weight:600;font-family:'Space Grotesk';color:var(--text)}

/* compact table progress */
.tbl-mini{width:100%;border-collapse:collapse}
.tbl-mini th{font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--text-3);font-weight:600;text-align:left;padding:0 0 10px}
.tbl-mini td{padding:9px 0;font-size:13px;border-top:1px solid var(--border)}
.tbl-mini td.num{font-family:'Space Grotesk';font-weight:600;text-align:right}
.tbl-mini .miniprog{height:6px;border-radius:5px;background:var(--surface-3);overflow:hidden;min-width:80px}
.tbl-mini .miniprog>div{height:100%;border-radius:5px}

/* ===================== Profile page ===================== */
.profile-hero{position:relative;overflow:hidden;padding:0;animation:fadeUp .5s ease both}
.profile-hero__cover{height:120px;background:linear-gradient(120deg,var(--accent),#7c5cff 55%,#38bdf8);position:relative}
.profile-hero__cover::after{content:"";position:absolute;inset:0;background:radial-gradient(120% 140% at 80% 0%,rgba(255,255,255,.18),transparent 50%)}
.profile-hero__body{display:flex;align-items:flex-end;gap:20px;padding:0 26px 22px;margin-top:-46px;position:relative;flex-wrap:wrap}
.profile-hero__ava{width:104px;height:104px;border-radius:24px;object-fit:cover;border:4px solid var(--surface);box-shadow:var(--shadow);background:var(--surface-2)}
.profile-hero__id{flex:1 1 auto;min-width:0;padding-bottom:2px}
.profile-hero__id h2{font-size:22px;font-weight:600;letter-spacing:-.01em}
.profile-hero__id .role{font-size:13.5px;color:var(--text-3);margin-top:3px;display:flex;align-items:center;gap:8px}
.profile-hero__stats{display:flex;gap:26px;padding-bottom:4px}
.profile-hero__stats div{text-align:center}
.profile-hero__stats b{display:block;font-size:19px;font-weight:600;font-family:'Space Grotesk'}
.profile-hero__stats small{font-size:11.5px;color:var(--text-3)}
.profile-hero__act{display:flex;gap:10px;padding-bottom:6px}
.btn-ghost{display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 16px;border-radius:10px;font-size:13px;font-weight:600;
  color:var(--text-2);border:1px solid var(--border-2);background:transparent;transition:background .15s,color .15s}
.btn-ghost:hover{background:var(--surface-2);color:var(--text)}
.btn-solid{display:inline-flex;align-items:center;gap:7px;height:38px;padding:0 18px;border-radius:10px;font-size:13px;font-weight:600;
  color:#fff;background:var(--accent);box-shadow:0 5px 16px var(--accent-soft)}
.btn-solid:hover{filter:brightness(1.08)}

/* info list */
.info-list{display:flex;flex-direction:column;gap:13px;margin-top:4px}
.info-list>div{display:flex;gap:10px;font-size:13px}
.info-list .k{color:var(--text-3);min-width:84px;flex:0 0 auto}
.info-list .v{color:var(--text);font-weight:500}
.about-text{font-size:13.5px;color:var(--text-2);line-height:1.6}
.socials{display:flex;gap:10px;margin-top:18px}
.socials a{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;
  background:var(--surface-2);color:var(--text-2);transition:transform .15s,background .15s,color .15s}
.socials a:hover{transform:translateY(-2px);background:var(--accent-soft);color:var(--accent)}
.label-cap{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--text-3);font-weight:600;margin-bottom:12px}

/* message rows */
.msg{display:flex;align-items:center;gap:12px;padding:11px 0;border-bottom:1px solid var(--border)}
.msg:last-child{border-bottom:none}
.msg img{width:38px;height:38px;border-radius:50%;flex:0 0 auto;object-fit:cover}
.msg__b{flex:1;min-width:0}
.msg__b b{font-size:13.5px;font-weight:600;display:block}
.msg__b small{font-size:12px;color:var(--text-3);display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.msg__reply{font-size:12.5px;font-weight:600;color:var(--accent);cursor:pointer;flex:0 0 auto}

/* tabs */
.ptabs{display:flex;gap:4px;background:var(--surface-2);border-radius:11px;padding:4px;margin:2px 0 18px}
.ptabs button{flex:1;height:38px;border-radius:8px;font-size:13px;font-weight:600;color:var(--text-3);transition:background .15s,color .15s}
.ptabs button.is-active{background:var(--accent);color:#fff;box-shadow:0 4px 12px var(--accent-soft)}

/* timeline */
.timeline{position:relative;padding-left:26px;margin-top:6px}
.timeline::before{content:"";position:absolute;left:8px;top:4px;bottom:4px;width:2px;background:var(--border-2)}
.timeline__item{position:relative;padding-bottom:20px}
.timeline__item:last-child{padding-bottom:0}
.timeline__item::before{content:"";position:absolute;left:-22px;top:3px;width:11px;height:11px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 4px var(--accent-soft)}
.timeline__item h5{font-size:14px;font-weight:600}
.timeline__item .meta{font-size:12px;color:var(--text-3);margin:3px 0 7px}
.timeline__item p{font-size:13px;color:var(--text-2);line-height:1.55}

/* centered content container for layout.adixo content pages */
.adixo-container{max-width:1080px;margin:0 auto;width:100%}

/* ===================== Pricing ===================== */
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.price-card{padding:26px 24px;display:flex;flex-direction:column;animation:fadeUp .5s ease both}
.price-card.is-featured{border-color:var(--accent-line);box-shadow:0 1px 2px rgba(0,0,0,.3),0 18px 48px rgba(91,124,250,.22)}
.price-card__tag{align-self:flex-start;font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--accent);background:var(--accent-soft);border-radius:7px;padding:4px 10px;margin-bottom:14px}
.price-card h3{font-size:17px;font-weight:600}
.price-card .desc{font-size:13px;color:var(--text-3);margin-top:4px}
.price-amount{display:flex;align-items:flex-end;gap:4px;margin:18px 0}
.price-amount b{font-size:42px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em;line-height:1}
.price-amount span{font-size:13px;color:var(--text-3);margin-bottom:6px}
.price-feat{display:flex;flex-direction:column;gap:12px;margin:6px 0 22px;flex:1}
.price-feat div{display:flex;align-items:center;gap:10px;font-size:13.5px;color:var(--text-2)}
.price-feat .tick{width:20px;height:20px;border-radius:6px;flex:0 0 auto;display:flex;align-items:center;justify-content:center;background:var(--pos-soft);color:var(--pos)}
.price-feat .off{opacity:.5}
.price-feat .off .tick{background:var(--surface-3);color:var(--text-3)}

/* billing cycle toggle */
.bill-toggle{display:inline-flex;gap:4px;background:var(--surface-2);border:1px solid var(--border);border-radius:11px;padding:4px;margin:0 auto 22px;align-self:center}
.bill-toggle button{display:inline-flex;align-items:center;gap:8px;height:36px;padding:0 16px;border-radius:8px;font-size:13px;font-weight:600;color:var(--text-3);transition:background .15s,color .15s}
.bill-toggle button.is-active{background:var(--accent);color:#fff;box-shadow:0 4px 12px var(--accent-soft)}
.bill-toggle .save{font-size:10.5px;font-weight:700;background:var(--pos-soft);color:var(--pos);border-radius:6px;padding:2px 6px}
.bill-toggle button.is-active .save{background:rgba(255,255,255,.22);color:#fff}
.price-note{font-size:12px;color:var(--text-3);margin-top:-8px;margin-bottom:14px;height:14px}

/* comparison table */
.cmp{width:100%;border-collapse:collapse}
.cmp th,.cmp td{padding:13px 16px;text-align:center;font-size:13.5px;border-top:1px solid var(--border)}
.cmp thead th{border-top:none;font-size:13px;font-weight:600}
.cmp th:first-child,.cmp td:first-child{text-align:left;color:var(--text-2)}
.cmp .yes{color:var(--pos);display:inline-flex}
.cmp .no{color:var(--text-3);display:inline-flex;opacity:.5}
.cmp .plan-h small{display:block;font-size:11px;color:var(--text-3);font-weight:500;margin-top:2px}
.cmp tbody tr:hover{background:var(--surface-2)}
.cmp .col-pop{background:var(--accent-soft)}

/* testimonials */
.quote{display:flex;flex-direction:column;gap:14px;padding:var(--card-pad)}
.quote__stars{display:flex;gap:3px;color:var(--warn)}
.quote p{font-size:13.5px;color:var(--text-2);line-height:1.6}
.quote__who{display:flex;align-items:center;gap:11px;margin-top:auto}
.quote__who img{width:38px;height:38px;border-radius:50%;object-fit:cover}
.quote__who b{font-size:13.5px;font-weight:600;display:block}
.quote__who small{font-size:12px;color:var(--text-3)}

/* CTA banner */
.cta-banner{position:relative;overflow:hidden;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
  padding:30px;background:linear-gradient(120deg,rgba(91,124,250,.22),rgba(124,92,255,.12));border:1px solid var(--accent-line)}
.cta-banner h3{font-size:20px;font-weight:600;letter-spacing:-.01em}
.cta-banner p{font-size:13.5px;color:var(--text-2);margin-top:6px}

/* logos strip */
.logos{display:flex;align-items:center;justify-content:center;gap:38px;flex-wrap:wrap;opacity:.65}
.logos span{font-size:16px;font-weight:700;letter-spacing:-.01em;color:var(--text-2);font-family:'Space Grotesk'}

/* ===================== Invoice ===================== */
.inv-top{display:flex;justify-content:space-between;flex-wrap:wrap;gap:20px;padding:26px;border-bottom:1px solid var(--border)}
.inv-brand{display:flex;align-items:center;gap:12px}
.inv-brand .logo{width:42px;height:42px;border-radius:11px;background:linear-gradient(140deg,var(--accent),#8ba2ff);display:flex;align-items:center;justify-content:center;color:#fff}
.inv-brand b{font-size:18px;font-weight:700;letter-spacing:-.01em}
.inv-meta{text-align:right;font-size:13px;color:var(--text-2)}
.inv-meta h2{font-size:22px;font-weight:600;letter-spacing:-.01em;color:var(--text)}
.inv-parties{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding:24px 26px}
.inv-parties .label-cap{margin-bottom:8px}
.inv-parties b{font-size:14px;font-weight:600;color:var(--text)}
.inv-parties p{font-size:13px;color:var(--text-2);line-height:1.6;margin-top:4px}
.inv-totals{display:flex;justify-content:flex-end;padding:18px 26px 4px}
.inv-totals__box{width:280px;display:flex;flex-direction:column;gap:10px}
.inv-totals__box div{display:flex;justify-content:space-between;font-size:13.5px;color:var(--text-2)}
.inv-totals__box .grand{padding-top:12px;margin-top:4px;border-top:1px solid var(--border);font-size:17px;font-weight:700;color:var(--text)}
.inv-totals__box .grand span:last-child{font-family:'Space Grotesk';color:var(--accent)}

/* ===================== FAQ ===================== */
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{border:1px solid var(--border);border-radius:13px;background:var(--surface);overflow:hidden;transition:border-color .15s}
.faq-item[open]{border-color:var(--accent-line)}
.faq-item summary{list-style:none;cursor:pointer;display:flex;align-items:center;gap:12px;padding:16px 18px;font-size:14.5px;font-weight:600}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary .q{flex:1}
.faq-item summary .chev{display:flex;color:var(--text-3);transition:transform .2s}
.faq-item[open] summary .chev{transform:rotate(90deg);color:var(--accent)}
.faq-item .a{padding:0 18px 18px 48px;font-size:13.5px;color:var(--text-2);line-height:1.65}
.faq-badge{width:26px;height:26px;border-radius:8px;flex:0 0 auto;display:flex;align-items:center;justify-content:center;background:var(--accent-soft);color:var(--accent)}

/* ===================== Maintenance / centered ===================== */
.center-screen{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:40px 20px;background:var(--bg)}
.center-card{max-width:520px;text-align:center}
.center-card .glyph{width:96px;height:96px;border-radius:28px;margin:0 auto 26px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(140deg,var(--accent),#7c5cff);color:#fff;box-shadow:0 18px 48px var(--accent-soft)}
.center-card h1{font-size:30px;font-weight:600;letter-spacing:-.02em}
.center-card p{font-size:14.5px;color:var(--text-3);line-height:1.6;margin-top:12px}
.center-actions{display:flex;gap:12px;justify-content:center;margin-top:26px}

/* error pages */
.err-code{font-size:120px;font-weight:700;font-family:'Space Grotesk';line-height:1;letter-spacing:-.04em;
  background:linear-gradient(140deg,var(--accent),#7c5cff 55%,#38bdf8);-webkit-background-clip:text;background-clip:text;color:transparent}
.center-card .err-sub{font-size:13px;color:var(--text-3);letter-spacing:.18em;text-transform:uppercase;font-weight:700;margin-top:10px}

/* ===================== Layout MODES (actually change the layout) ===================== */
/* full: hide the sidebar, content goes full width */
.app.mode-full .sidebar{display:none}
/* fullscreen: hide sidebar AND topbar — content only */
.app.mode-fullscreen .sidebar,.app.mode-fullscreen .topbar{display:none}
.app.mode-fullscreen .main{padding-top:26px}

/* compact: narrower sidebar */
.app.mode-compact .sidebar{width:208px}
.app.mode-compact .nav-row{font-size:13px;padding:8px 10px}
.app.mode-compact .nav-sub__item{font-size:12px}

/* detached: floating, rounded sidebar with breathing room */
.app.mode-detached{padding:16px;gap:16px}
.app.mode-detached .sidebar{position:sticky;top:16px;height:calc(100vh - 32px);border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow)}
.app.mode-detached .topbar{border-radius:14px;margin:0 16px;border:1px solid var(--border);top:16px}
.app.mode-detached .shell{padding-top:16px}

/* hover: collapsed rail that expands on hover (sidebar gets .is-collapsed from the layout) */
.app.mode-hover .sidebar.is-collapsed{transition:width .2s cubic-bezier(.4,0,.2,1)}
.app.mode-hover .sidebar.is-collapsed:hover{width:258px;z-index:25}
.app.mode-hover .sidebar.is-collapsed:hover .sidebar__name,
.app.mode-hover .sidebar.is-collapsed:hover .nav-section__title,
.app.mode-hover .sidebar.is-collapsed:hover .nav-row__label,
.app.mode-hover .sidebar.is-collapsed:hover .nav-row__badge,
.app.mode-hover .sidebar.is-collapsed:hover .nav-row__caret,
.app.mode-hover .sidebar.is-collapsed:hover .sidebar__foot .meta,
.app.mode-hover .sidebar.is-collapsed:hover .sidebar__search input,
.app.mode-hover .sidebar.is-collapsed:hover .sidebar__logo-full{display:block}
.app.mode-hover .sidebar.is-collapsed:hover .sidebar__logo-mini{display:none}
.app.mode-hover .sidebar.is-collapsed:hover .nav-row{justify-content:flex-start;padding:9px 11px;margin:1px 10px}

/* horizontal: sidebar becomes a top bar with centered SECTION dropdowns */
.app.mode-horizontal{flex-direction:column}
.app.mode-horizontal .sidebar{width:100%;height:auto;flex-direction:row;align-items:center;position:sticky;top:0;z-index:22;
  border-right:none;border-bottom:1px solid var(--border);padding:0 16px;overflow:visible;gap:6px}
.app.mode-horizontal .sidebar__brand{height:58px;border-bottom:none;border-right:1px solid var(--border);padding:0 18px 0 4px;flex:0 0 auto}
.app.mode-horizontal .sidebar__search,.app.mode-horizontal .sidebar__foot{display:none}
.app.mode-horizontal .sidebar__nav{flex:1;display:flex;flex-direction:row;flex-wrap:nowrap;align-items:center;justify-content:center;padding:0;overflow:visible;gap:4px}
.app.mode-horizontal .nav-section{position:relative;flex:0 0 auto;margin:0;display:block}
.app.mode-horizontal .nav-section__title{display:flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:var(--text-2);
  text-transform:none;letter-spacing:0;padding:9px 14px;margin:0;border-radius:9px;cursor:pointer;white-space:nowrap}
.app.mode-horizontal .nav-section__title::after{content:"";width:6px;height:6px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-left:3px;opacity:.55;margin-top:-2px}
.app.mode-horizontal .nav-section:hover .nav-section__title{background:var(--surface-2);color:var(--text)}
/* the dropdown panel */
.app.mode-horizontal .nav-section__items{display:none;position:absolute;top:calc(100% + 6px);left:50%;transform:translateX(-50%);
  min-width:232px;background:var(--surface);border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow);
  padding:8px;z-index:30;max-height:74vh;overflow-y:auto}
.app.mode-horizontal .nav-section:hover .nav-section__items{display:block}
.app.mode-horizontal .nav-section__items .nav-group{position:static;margin-bottom:2px}
.app.mode-horizontal .nav-section__items .nav-row{margin:0;padding:8px 11px;justify-content:flex-start;border-radius:8px}
.app.mode-horizontal .nav-section__items .nav-row__caret{display:none}
.app.mode-horizontal .nav-section__items .nav-sub{display:block;position:static;transform:none;background:transparent;border:none;box-shadow:none;padding:0;margin:0;min-width:0}
.app.mode-horizontal .nav-section__items .nav-sub::before{display:none}
.app.mode-horizontal .nav-section__items .nav-sub__item{margin:0;padding:6px 11px 6px 36px}
/* content centered */
.app.mode-horizontal .main{display:flex;justify-content:center}
.app.mode-horizontal .main>.adixo-container{max-width:1120px;width:100%}

/* ===================== Layout options gallery ===================== */
.layout-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:16px}
.layout-card{padding:14px;cursor:pointer;transition:border-color .15s,transform .12s;position:relative;animation:fadeUp .5s ease both}
.layout-card:hover{border-color:var(--border-2);transform:translateY(-2px)}
.layout-card.is-active{border-color:var(--accent-line);box-shadow:0 1px 2px rgba(0,0,0,.3),0 14px 36px rgba(91,124,250,.18)}
.layout-card__badge{position:absolute;top:12px;right:12px;font-size:10px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;
  background:var(--accent);color:#fff;border-radius:7px;padding:3px 8px}
.layout-card h4{font-size:14px;font-weight:600;margin-top:12px}
.layout-card p{font-size:12px;color:var(--text-3);margin-top:3px;line-height:1.5}
/* mini mockup */
.lp{aspect-ratio:16/10;border-radius:10px;overflow:hidden;border:1px solid var(--border);background:var(--surface-2);display:flex;flex-direction:column;gap:3px;padding:5px}
.lp .bar{background:var(--surface-3);border-radius:3px}
.lp .top{height:11px;flex:0 0 auto}
.lp .row{flex:1;display:flex;gap:5px;min-height:0}
.lp .side{width:24px;background:var(--accent-soft);border-radius:4px;flex:0 0 auto}
.lp .side.sm{width:13px}
.lp .side.xs{width:8px}
.lp .main{flex:1;display:flex;flex-direction:column;gap:4px}
.lp .blk{background:var(--surface-3);border-radius:4px;height:12px}
.lp .blk.big{flex:1}
.lp.detached{padding:7px}
.lp.detached .side{border-radius:6px}
.lp.horizontal .top{height:14px;background:var(--accent-soft)}
.lp.full .side,.lp.fullscreen .side,.lp.fullscreen .top{display:none}

/* preloader */
.preloader-wrap{position:fixed;inset:0;z-index:60;display:flex;align-items:center;justify-content:center;background:var(--bg);transition:opacity .4s ease}
.preloader-wrap.is-hidden{opacity:0;pointer-events:none}
.spinner{width:46px;height:46px;border-radius:50%;border:4px solid var(--surface-3);border-top-color:var(--accent);animation:spin .8s linear infinite}

/* starter empty state */
.empty-state{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:70px 20px}
.empty-state .glyph{width:74px;height:74px;border-radius:20px;display:flex;align-items:center;justify-content:center;background:var(--surface-2);color:var(--text-3);margin-bottom:18px}
.empty-state h3{font-size:17px;font-weight:600}
.empty-state p{font-size:13.5px;color:var(--text-3);margin-top:8px;max-width:420px}

/* ===================== Calendar (full width) ===================== */
.cal-strip{display:flex;align-items:center;flex-wrap:wrap;gap:9px;margin-bottom:14px}
.cal-strip .hint{font-size:12.5px;color:var(--text-3);margin-right:4px}
.cal-ext{display:flex;align-items:center;flex-wrap:wrap;gap:9px}
.cal-ext__item{display:inline-flex;align-items:center;gap:9px;padding:8px 13px;border-radius:10px;cursor:grab;font-size:12.5px;font-weight:600;
  border:1px solid var(--border);background:var(--surface-2);transition:border-color .15s,transform .12s}
.cal-ext__item:hover{border-color:var(--border-2);transform:translateY(-1px)}
.cal-ext__item:active{cursor:grabbing}
.cal-ext__item .dot{width:9px;height:9px;border-radius:3px;flex:0 0 auto}
.cal-card{padding:18px 20px 20px}
#calendar{width:100%}

/* FullCalendar themed to the design tokens */
.fc{
  --fc-border-color:var(--border);
  --fc-page-bg-color:transparent;
  --fc-neutral-bg-color:var(--surface-2);
  --fc-today-bg-color:var(--accent-soft);
  --fc-button-text-color:var(--text-2);
  --fc-button-bg-color:var(--surface-2);
  --fc-button-border-color:var(--border);
  --fc-button-hover-bg-color:var(--surface-3);
  --fc-button-hover-border-color:var(--border-2);
  --fc-button-active-bg-color:var(--accent);
  --fc-button-active-border-color:var(--accent);
  --fc-list-event-hover-bg-color:var(--surface-2);
  --fc-event-border-color:transparent;
  font-family:inherit;
}
.fc .fc-toolbar.fc-header-toolbar{margin-bottom:16px;gap:8px;flex-wrap:wrap}
.fc .fc-toolbar-title{font-size:18px;font-weight:600;letter-spacing:-.01em;color:var(--text)}
.fc .fc-button{border-radius:8px;font-weight:600;font-size:12.5px;text-transform:capitalize;padding:7px 13px;box-shadow:none!important;transition:background .15s,color .15s}
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active{color:#fff}
.fc .fc-button .fc-icon{font-size:1.2em;vertical-align:middle}
.fc-theme-standard .fc-scrollgrid,.fc-theme-standard td,.fc-theme-standard th{border-color:var(--border)}
.fc .fc-col-header-cell-cushion{color:var(--text-3);text-transform:uppercase;font-size:11px;letter-spacing:.04em;font-weight:600;padding:10px 6px;text-decoration:none}
.fc .fc-daygrid-day-number,.fc .fc-daygrid-day-top{color:var(--text-2);text-decoration:none;font-size:12.5px;padding:6px}
.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-number{color:var(--accent);font-weight:700}
.fc .fc-day-other .fc-daygrid-day-number{color:var(--text-3);opacity:.5}
.fc .fc-event{border-radius:6px;padding:2px 7px;font-size:11.5px;font-weight:600;border:none;cursor:pointer}
.fc .fc-event:hover{filter:brightness(1.08)}
.fc .fc-daygrid-event-dot{display:none}
.fc .fc-list{border-color:var(--border)}
.fc .fc-list-day-cushion{background:var(--surface-2)}
.fc .fc-list-event:hover td{background:var(--surface-2)}
.fc .fc-list-event-title,.fc .fc-list-event-time,.fc .fc-list-day-text,.fc .fc-list-day-side-text{color:var(--text-2)}
.fc a{color:inherit}

/* custom event modal */
.cal-modal{position:fixed;inset:0;z-index:80;display:flex;align-items:center;justify-content:center;padding:20px}
.cal-modal[hidden]{display:none}
.cal-modal__backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(2px);animation:fadeIn .15s ease}
.cal-modal__dialog{position:relative;width:440px;max-width:100%;padding:22px;animation:fadeUp .2s ease}
.cal-modal__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.cal-modal__head h3{font-size:16px;font-weight:600}
.cal-modal__x{width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--text-3);font-size:20px;line-height:1}
.cal-modal__x:hover{background:var(--surface-2);color:var(--text)}
.cal-field{margin-bottom:16px}
.cal-field label{display:block;font-size:12.5px;font-weight:600;color:var(--text-2);margin-bottom:7px}
.cal-input{width:100%;height:40px;padding:0 13px;border-radius:10px;background:var(--surface-2);border:1px solid var(--border);color:var(--text);font-size:13.5px;outline:none}
select.cal-input{height:40px}
.cal-input:focus{border-color:rgba(91,124,250,.55);box-shadow:0 0 0 3px var(--accent-soft)}
.cal-modal__foot{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:4px}

/* ===================== Email client ===================== */
.mail{display:grid;grid-template-columns:248px minmax(0,1fr);gap:18px;align-items:start}
.mail-folders{padding:16px}
.mail-nav{display:flex;flex-direction:column;gap:2px;margin-top:14px}
.mail-folder{display:flex;align-items:center;gap:11px;padding:9px 11px;border-radius:9px;font-size:13.5px;font-weight:500;color:var(--text-2);cursor:pointer;transition:background .12s,color .12s}
.mail-folder:hover{background:var(--surface-2);color:var(--text)}
.mail-folder.is-active{background:var(--accent-soft);color:var(--accent);font-weight:600}
.mail-folder .ic{display:flex;color:var(--text-3)}
.mail-folder.is-active .ic{color:var(--accent)}
.mail-folder .count{margin-left:auto;font-size:11px;font-weight:700;color:var(--text-3);font-family:'Space Grotesk'}
.mail-folder.is-active .count{color:var(--accent)}
.mail-labels{display:flex;flex-direction:column;gap:3px;margin-top:4px}
.mail-label{display:flex;align-items:center;gap:11px;font-size:13px;color:var(--text-2);cursor:pointer;padding:6px 11px;border-radius:8px}
.mail-label:hover{background:var(--surface-2);color:var(--text)}
.mail-label .dot{width:9px;height:9px;border-radius:3px;flex:0 0 auto}
.mail-storage{margin-top:16px;padding:14px;border-radius:12px;background:var(--surface-2)}
.mail-storage b{font-size:13px;font-weight:600}
.mail-storage .bar{height:6px;border-radius:5px;background:var(--surface-3);overflow:hidden;margin:9px 0 7px}
.mail-storage .bar>div{height:100%;border-radius:5px;background:linear-gradient(90deg,var(--accent),#8ba2ff)}
.mail-storage small{font-size:11.5px;color:var(--text-3)}

.mail-main{padding:0;overflow:hidden}
.mail-toolbar{display:flex;align-items:center;gap:7px;padding:13px 16px;border-bottom:1px solid var(--border);flex-wrap:wrap}
.mail-check{appearance:auto;width:15px;height:15px;accent-color:var(--accent);cursor:pointer;flex:0 0 auto}
.tbtn{width:34px;height:34px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--text-3);transition:background .14s,color .14s}
.tbtn:hover{background:var(--surface-2);color:var(--text)}
.tbtn.is-spinning svg{animation:spin .6s linear}
.mail-search{display:flex;align-items:center;gap:8px;height:36px;padding:0 11px;background:var(--surface-2);border:1px solid var(--border);border-radius:9px;min-width:180px;flex:1;max-width:280px;margin-left:auto}
.mail-search span{display:flex;color:var(--text-3)}
.mail-search input{background:none;border:0;outline:none;color:var(--text);font-size:13px;flex:1;min-width:0}
.mail-page{display:flex;align-items:center;gap:4px;font-size:12px;color:var(--text-3)}

.mail-list{display:flex;flex-direction:column}
.mail-empty{padding:50px 20px;text-align:center;color:var(--text-3);font-size:13.5px}
.mail-row{display:flex;align-items:center;gap:12px;padding:12px 16px;border-bottom:1px solid var(--border);cursor:pointer;transition:background .12s}
.mail-row:last-child{border-bottom:none}
.mail-row:hover{background:var(--surface-2)}
.mail-row.is-unread{background:rgba(91,124,250,.045)}
.mail-row.is-selected{background:var(--accent-soft)}
.mail-star{display:flex;color:var(--text-3);cursor:pointer;flex:0 0 auto}
.mail-star:hover{color:var(--warn)}
.mail-star.on{color:var(--warn)}
.mail-ava{width:38px;height:38px;border-radius:50%;flex:0 0 auto;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:'Space Grotesk';font-size:13px}
.mail-from{width:165px;flex:0 0 auto;font-size:13.5px;color:var(--text-2);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mail-row.is-unread .mail-from{color:var(--text);font-weight:600}
.mail-body{flex:1;min-width:0;font-size:13px;color:var(--text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.mail-body b{color:var(--text-2);font-weight:500}
.mail-row.is-unread .mail-body b{color:var(--text);font-weight:600}
.mail-tag{flex:0 0 auto;font-size:10px;font-weight:700;border-radius:6px;padding:2px 8px;text-transform:uppercase;letter-spacing:.03em}
.mail-attach{display:flex;color:var(--text-3);flex:0 0 auto}
.mail-time{font-size:12px;color:var(--text-3);white-space:nowrap;flex:0 0 auto;font-family:'Space Grotesk';width:64px;text-align:right}

/* compose modal reuses .cal-modal; wider dialog + textarea */
.cal-modal__dialog.is-wide{width:580px}
textarea.cal-input{height:auto;min-height:150px;padding:11px 13px;resize:vertical;line-height:1.5}

/* ----- Email reading view ----- */
.mail-read{padding:0;overflow:hidden}
.mail-read__bar{display:flex;align-items:center;gap:5px;padding:12px 16px;border-bottom:1px solid var(--border);flex-wrap:wrap}
.mail-read__bar .div{width:1px;height:22px;background:var(--border);margin:0 5px}
.mail-read__bar .sp{flex:1}
.mail-read__head{display:flex;align-items:flex-start;gap:14px;padding:20px 22px 12px}
.mail-read__head .mail-ava{width:46px;height:46px;font-size:15px}
.mail-read__meta{flex:1;min-width:0}
.mail-read__meta b{font-size:15px;font-weight:600}
.mail-read__meta .em{font-size:12.5px;color:var(--text-3)}
.mail-read__meta .to{font-size:12.5px;color:var(--text-3);margin-top:4px}
.mail-read__date{font-size:12.5px;color:var(--text-3);white-space:nowrap;text-align:right;display:flex;flex-direction:column;align-items:flex-end;gap:8px}
.mail-read__subject{font-size:21px;font-weight:600;letter-spacing:-.01em;padding:6px 22px 10px}
.mail-read__labels{display:flex;gap:7px;padding:0 22px 16px}
.mail-read__body{padding:4px 22px 22px;font-size:14px;color:var(--text-2);line-height:1.75;border-bottom:1px solid var(--border)}
.mail-read__body p{margin-bottom:14px}
.mail-read__body b{color:var(--text)}
.mail-read__attach{padding:18px 22px;border-bottom:1px solid var(--border)}
.att-grid{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.att-card{display:flex;align-items:center;gap:11px;padding:10px 13px;border:1px solid var(--border);border-radius:12px;background:var(--surface-2);min-width:210px}
.att-card .ic{width:38px;height:38px;border-radius:9px;display:flex;align-items:center;justify-content:center;background:var(--accent-soft);color:var(--accent);flex:0 0 auto}
.att-card b{font-size:13px;font-weight:600;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:140px}
.att-card small{font-size:11.5px;color:var(--text-3)}
.att-card .dl{margin-left:auto;color:var(--text-3);display:flex;cursor:pointer}
.att-card .dl:hover{color:var(--accent)}
.mail-read__actions{display:flex;gap:10px;padding:18px 22px}
.mail-reply{padding:0 22px 22px;display:none;animation:fadeUp .2s ease}
.mail-reply.is-open{display:block}
.mail-reply__box{border:1px solid var(--border);border-radius:13px;background:var(--surface-2);overflow:hidden}
.mail-reply__to{display:flex;align-items:center;gap:8px;padding:10px 14px;border-bottom:1px solid var(--border);font-size:13px;color:var(--text-3)}
.mail-reply__box textarea{width:100%;min-height:120px;background:none;border:0;outline:none;color:var(--text);font-size:13.5px;padding:13px 14px;resize:vertical;line-height:1.6;font-family:inherit}
.mail-reply__foot{display:flex;align-items:center;gap:8px;padding:10px 14px;border-top:1px solid var(--border)}

/* ===================== Chat ===================== */
.chat{display:grid;grid-template-columns:300px minmax(0,1fr);gap:18px;height:calc(100vh - 150px);min-height:540px}
.chat-list{display:flex;flex-direction:column;padding:0;overflow:hidden}
.chat-list__head{padding:16px 16px 12px;border-bottom:1px solid var(--border)}
.chat-search{display:flex;align-items:center;gap:9px;height:38px;padding:0 11px;background:var(--surface-2);border:1px solid var(--border);border-radius:10px;margin-top:12px}
.chat-search span{display:flex;color:var(--text-3)}
.chat-search input{flex:1;min-width:0;background:none;border:0;outline:none;color:var(--text);font-size:13px}
.chat-people{flex:1;overflow-y:auto;padding:8px}
.chat-person{display:flex;align-items:center;gap:11px;padding:10px;border-radius:11px;cursor:pointer;transition:background .12s}
.chat-person:hover{background:var(--surface-2)}
.chat-person.is-active{background:var(--accent-soft)}
.chat-person .av{position:relative;flex:0 0 auto}
.chat-person .av img,.chat-person .av .ph{width:42px;height:42px;border-radius:50%;object-fit:cover;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:'Space Grotesk';font-size:14px}
.chat-person .av .st{position:absolute;right:0;bottom:0;width:11px;height:11px;border-radius:50%;border:2px solid var(--surface);background:var(--text-3)}
.chat-person .av .st.on{background:var(--pos)}
.chat-person .meta{flex:1;min-width:0}
.chat-person .meta b{font-size:13.5px;font-weight:600;display:flex;justify-content:space-between;gap:8px}
.chat-person .meta b .t{font-size:11px;font-weight:500;color:var(--text-3);flex:0 0 auto}
.chat-person .meta small{font-size:12px;color:var(--text-3);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block;margin-top:2px}
.chat-person .badge{flex:0 0 auto;font-size:10.5px;font-weight:700;background:var(--accent);color:#fff;border-radius:20px;min-width:18px;text-align:center;padding:1px 6px}

.chat-main{display:flex;flex-direction:column;padding:0;overflow:hidden}
.chat-head{display:flex;align-items:center;gap:12px;padding:14px 18px;border-bottom:1px solid var(--border);flex:0 0 auto}
.chat-head .ph{width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:'Space Grotesk';font-size:13px;flex:0 0 auto}
.chat-head .who b{font-size:14.5px;font-weight:600;display:block}
.chat-head .who small{font-size:12px;color:var(--pos)}
.chat-head .acts{margin-left:auto;display:flex;gap:4px}
.chat-thread{flex:1;overflow-y:auto;padding:22px 22px 8px;display:flex;flex-direction:column;gap:14px}
.chat-day{align-self:center;font-size:11px;color:var(--text-3);background:var(--surface-2);border-radius:20px;padding:4px 12px;font-weight:600}
.bubble{max-width:62%;display:flex;flex-direction:column;gap:4px}
.bubble .txt{padding:10px 14px;border-radius:14px;font-size:13.5px;line-height:1.5}
.bubble .tm{font-size:10.5px;color:var(--text-3)}
.bubble.them{align-self:flex-start}
.bubble.them .txt{background:var(--surface-2);color:var(--text);border-bottom-left-radius:4px}
.bubble.me{align-self:flex-end;align-items:flex-end}
.bubble.me .txt{background:var(--accent);color:#fff;border-bottom-right-radius:4px}
.chat-input{flex:0 0 auto;display:flex;align-items:center;gap:8px;padding:13px 16px;border-top:1px solid var(--border)}
.chat-input input{flex:1;height:42px;padding:0 15px;border-radius:21px;background:var(--surface-2);border:1px solid var(--border);color:var(--text);font-size:13.5px;outline:none}
.chat-input input:focus{border-color:rgba(91,124,250,.5);box-shadow:0 0 0 3px var(--accent-soft)}
.chat-send{width:42px;height:42px;border-radius:50%;flex:0 0 auto;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center}
.chat-send:hover{filter:brightness(1.08)}

/* ===================== Tasks (Kanban) ===================== */
.board{display:flex;gap:18px;align-items:flex-start;overflow-x:auto;padding-bottom:8px}
.board-col{flex:0 0 312px;display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--border);border-radius:15px;max-height:calc(100vh - 175px)}
.board-col__head{display:flex;align-items:center;gap:9px;padding:15px 16px 12px;flex:0 0 auto}
.board-col__head .dot{width:9px;height:9px;border-radius:3px}
.board-col__head b{font-size:13.5px;font-weight:600}
.board-col__head .n{font-size:11px;font-weight:700;color:var(--text-3);background:var(--surface-2);border-radius:20px;padding:1px 8px;font-family:'Space Grotesk'}
.board-col__head .add{margin-left:auto;width:28px;height:28px;border-radius:8px;display:flex;align-items:center;justify-content:center;color:var(--text-3)}
.board-col__head .add:hover{background:var(--surface-2);color:var(--text)}
.board-col__body{flex:1;overflow-y:auto;padding:4px 12px 12px;display:flex;flex-direction:column;gap:11px;min-height:40px}
.board-col.drag-over .board-col__body{outline:2px dashed var(--accent-line);outline-offset:-4px;border-radius:12px}
.task{background:var(--surface-2);border:1px solid var(--border);border-radius:12px;padding:13px;cursor:grab;transition:border-color .15s,transform .12s,box-shadow .15s}
.task:hover{border-color:var(--border-2)}
.task.dragging{opacity:.5;transform:rotate(1.5deg)}
.task__tags{display:flex;gap:6px;flex-wrap:wrap;margin-bottom:9px}
.task__tag{font-size:10px;font-weight:700;border-radius:6px;padding:2px 8px;text-transform:uppercase;letter-spacing:.03em}
.task__title{font-size:13.5px;font-weight:600;line-height:1.4}
.task__desc{font-size:12px;color:var(--text-3);margin-top:5px;line-height:1.5}
.task__foot{display:flex;align-items:center;gap:12px;margin-top:12px;color:var(--text-3);font-size:12px}
.task__foot .m{display:flex;align-items:center;gap:5px}
.task__avs{margin-left:auto;display:flex}
.task__avs .a{width:24px;height:24px;border-radius:50%;border:2px solid var(--surface-2);display:flex;align-items:center;justify-content:center;color:#fff;font-size:10px;font-weight:700;font-family:'Space Grotesk';margin-left:-7px}
.task__avs .a:first-child{margin-left:0}
.board-add{flex:0 0 auto;display:flex;align-items:center;justify-content:center;gap:7px;margin:0 12px 12px;padding:9px;border-radius:10px;border:1px dashed var(--border-2);color:var(--text-3);font-size:12.5px;font-weight:600;cursor:pointer}
.board-add:hover{border-color:var(--accent-line);color:var(--accent)}

/* ===================== Auth (split-screen) ===================== */
.auth{display:grid;grid-template-columns:1.05fr 1fr;min-height:100vh;background:var(--bg)}
.auth__brand{position:relative;overflow:hidden;display:flex;flex-direction:column;justify-content:space-between;padding:48px;color:#fff;
  background:linear-gradient(150deg,#5b7cfa,#7c5cff 58%,#38bdf8)}
.auth__brand::after{content:"";position:absolute;inset:0;background:radial-gradient(120% 120% at 85% 10%,rgba(255,255,255,.22),transparent 45%),radial-gradient(90% 90% at 10% 95%,rgba(0,0,0,.18),transparent 50%)}
.auth__brand>*{position:relative;z-index:1}
.auth__logo{display:flex;align-items:center;gap:11px;font-size:21px;font-weight:700;letter-spacing:-.02em}
.auth__logo .mk{width:38px;height:38px;border-radius:11px;background:rgba(255,255,255,.18);display:flex;align-items:center;justify-content:center}
.auth__brand h1{font-size:34px;font-weight:600;letter-spacing:-.02em;line-height:1.2;max-width:440px}
.auth__brand .lede{font-size:14.5px;opacity:.85;margin-top:14px;max-width:420px;line-height:1.6}
.auth__feats{display:flex;flex-direction:column;gap:14px;margin-top:30px}
.auth__feat{display:flex;align-items:center;gap:12px;font-size:14px;opacity:.95}
.auth__feat .ic{width:30px;height:30px;border-radius:9px;background:rgba(255,255,255,.16);display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.auth__copy{font-size:12.5px;opacity:.75}
.auth__panel{display:flex;align-items:center;justify-content:center;padding:40px 24px}
.auth__card{width:100%;max-width:400px}
.auth__card>.glyph{width:70px;height:70px;border-radius:20px;display:flex;align-items:center;justify-content:center;background:var(--accent-soft);color:var(--accent);margin-bottom:22px}
.auth__card h2{font-size:24px;font-weight:600;letter-spacing:-.01em}
.auth__card .sub{color:var(--text-3);font-size:13.5px;margin-top:7px;margin-bottom:26px;line-height:1.5}
.auth-field{margin-bottom:16px}
.auth-field label{display:block;font-size:12.5px;font-weight:600;color:var(--text-2);margin-bottom:7px}
.auth-input{width:100%;height:46px;padding:0 14px;border-radius:11px;background:var(--surface-2);border:1px solid var(--border);color:var(--text);font-size:14px;outline:none}
.auth-input:focus{border-color:rgba(91,124,250,.55);box-shadow:0 0 0 3px var(--accent-soft)}
.auth-row{display:flex;align-items:center;justify-content:space-between;font-size:13px;margin-bottom:20px}
.auth-check{display:flex;align-items:center;gap:8px;color:var(--text-2);cursor:pointer}
.auth-check input{accent-color:var(--accent);width:15px;height:15px}
.auth-link{color:var(--accent);font-weight:600}
.auth-btn{width:100%;height:46px;border-radius:11px;background:var(--accent);color:#fff;font-weight:600;font-size:14px;
  box-shadow:0 6px 18px var(--accent-soft);display:flex;align-items:center;justify-content:center;gap:8px;transition:filter .15s}
.auth-btn:hover{filter:brightness(1.08)}
.auth-btn--ghost{background:transparent;color:var(--text-2);border:1px solid var(--border-2);box-shadow:none}
.auth-btn--ghost:hover{background:var(--surface-2);color:var(--text)}
.auth-divider{display:flex;align-items:center;gap:12px;color:var(--text-3);font-size:12px;margin:22px 0}
.auth-divider::before,.auth-divider::after{content:"";flex:1;height:1px;background:var(--border)}
.auth-social{display:flex;gap:12px}
.auth-social a{flex:1;height:44px;border-radius:11px;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;gap:8px;font-size:13px;font-weight:600;color:var(--text-2);transition:background .15s,color .15s}
.auth-social a:hover{background:var(--surface-2);color:var(--text)}
.auth-foot{text-align:center;font-size:13.5px;color:var(--text-3);margin-top:24px}
.auth-lock-ava{width:84px;height:84px;border-radius:50%;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:'Space Grotesk';font-size:26px;background:linear-gradient(140deg,#7c5cff,var(--accent))}
@media (max-width:900px){ .auth{grid-template-columns:1fr} .auth__brand{display:none} }

/* ===================== File manager ===================== */
.fm{display:grid;grid-template-columns:248px minmax(0,1fr);gap:18px;align-items:start}
.fm-side{padding:16px}
.fm-quick{display:flex;flex-direction:column;gap:2px;margin-top:8px}
.fm-quick a{display:flex;align-items:center;gap:11px;padding:9px 11px;border-radius:9px;font-size:13.5px;font-weight:500;color:var(--text-2);transition:background .12s,color .12s}
.fm-quick a:hover{background:var(--surface-2);color:var(--text)}
.fm-quick a.is-active{background:var(--accent-soft);color:var(--accent);font-weight:600}
.fm-quick a .ic{display:flex;color:var(--text-3)}
.fm-quick a.is-active .ic{color:var(--accent)}
.fm-quick a .n{margin-left:auto;font-size:11px;color:var(--text-3);font-family:'Space Grotesk'}
.fm-cats{display:flex;flex-direction:column;gap:11px;margin-top:8px}
.fm-cat{display:flex;align-items:center;gap:11px}
.fm-cat .ic{width:34px;height:34px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.fm-cat .m{flex:1}
.fm-cat b{font-size:13px;font-weight:600;display:block}
.fm-cat small{font-size:11.5px;color:var(--text-3)}

.fm-main{padding:0;overflow:hidden}
.fm-toolbar{display:flex;align-items:center;gap:10px;padding:14px 18px;border-bottom:1px solid var(--border);flex-wrap:wrap}
.fm-bread{display:flex;align-items:center;gap:7px;font-size:14px;font-weight:600}
.fm-bread .sep{color:var(--text-3)}
.fm-bread .mut{color:var(--text-3);font-weight:500}
.fm-body{padding:18px}
.fm-body .label-cap{margin:6px 0 12px}
.folder-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:14px}
.folder{display:flex;align-items:center;gap:12px;padding:14px;border:1px solid var(--border);border-radius:13px;background:var(--surface-2);cursor:pointer;transition:border-color .15s,transform .12s}
.folder:hover{border-color:var(--border-2);transform:translateY(-2px)}
.folder .ic{width:42px;height:42px;border-radius:11px;display:flex;align-items:center;justify-content:center;flex:0 0 auto;background:var(--accent-soft);color:var(--accent)}
.folder b{font-size:13.5px;font-weight:600;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.folder small{font-size:11.5px;color:var(--text-3)}
.file-table{width:100%;border-collapse:collapse;margin-top:8px}
.file-table th{font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--text-3);font-weight:600;text-align:left;padding:0 12px 12px}
.file-table td{padding:11px 12px;font-size:13px;border-top:1px solid var(--border)}
.file-table tr:hover td{background:var(--surface-2)}
.file-name{display:flex;align-items:center;gap:11px;font-weight:500}
.file-name .ic{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex:0 0 auto}

/* ---------- responsive ---------- */
@media (max-width:980px){ .cal-grid{grid-template-columns:1fr} .mail{grid-template-columns:1fr} .mail-from{width:120px} .chat{grid-template-columns:1fr;height:auto} .fm{grid-template-columns:1fr} }
@media (max-width:1300px){
  .kpi-grid{grid-template-columns:repeat(3,1fr)}
  .grid-2,.grid-bottom{grid-template-columns:1fr}
  .grid-3{grid-template-columns:1fr}
}
@media (max-width:760px){
  .kpi-grid{grid-template-columns:1fr 1fr}
  .topbar__search{display:none}
  .main{padding:18px 14px 32px}
}

/* ===================== Widgets dashboard ===================== */
.widgets-page .wrow{display:grid;gap:18px;margin-bottom:18px}
.wrow-4{grid-template-columns:repeat(4,1fr)}
.wrow-3{grid-template-columns:repeat(3,1fr)}
.wrow-2{grid-template-columns:repeat(2,1fr)}
.wrow-sales{grid-template-columns:2.1fr 1fr}
.wrow-feed{grid-template-columns:1.15fr 1fr 1fr}
.wrow-tbl{grid-template-columns:1.7fr 1fr}
@media(max-width:1200px){.wrow-4{grid-template-columns:repeat(2,1fr)}.wrow-3,.wrow-feed{grid-template-columns:1fr 1fr}.wrow-sales,.wrow-tbl{grid-template-columns:1fr}}
@media(max-width:760px){.widgets-page .wrow{grid-template-columns:1fr}}

/* icon badge */
.ic-badge{width:42px;height:42px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.ic-badge--accent{background:var(--accent-soft);color:var(--accent)}
.ic-badge--pos{background:var(--pos-soft);color:var(--pos)}
.ic-badge--neg{background:var(--neg-soft);color:var(--neg)}
.ic-badge--warn{background:var(--warn-soft,rgba(245,177,76,.14));color:var(--warn)}
.ic-badge--info{background:rgba(56,189,248,.14);color:#38bdf8}
.ic-badge--purple{background:rgba(167,139,250,.15);color:#a78bfa}

/* stat card with sparkline */
.wstat{padding:18px 20px;animation:fadeUp .5s ease both}
.wstat__top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.wstat__label{font-size:13px;color:var(--text-2);font-weight:500}
.wstat__val{font-size:27px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em;margin:9px 0 2px}
.wstat__foot{display:flex;align-items:center;gap:7px;font-size:12px;color:var(--text-3)}
.wstat__spark{height:42px;margin-top:12px}

/* generic pills */
.pills{display:inline-flex;gap:3px;background:var(--surface-3);border-radius:9px;padding:3px}
.pills button{height:28px;padding:0 12px;border-radius:7px;font-size:12.5px;font-weight:600;color:var(--text-3);transition:background .15s,color .15s}
.pills button.is-active{background:var(--surface);color:var(--text);box-shadow:var(--shadow-sm,0 1px 2px rgba(0,0,0,.3))}

/* radial gauge */
.gauge{position:relative;display:inline-flex;align-items:center;justify-content:center}
.gauge__lbl{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center}
.gauge__lbl b{font-size:24px;font-weight:600;font-family:'Space Grotesk'}
.gauge__lbl span{font-size:11px;color:var(--text-3);margin-top:1px}

/* progress bar */
.prog{height:8px;background:var(--surface-3);border-radius:6px;overflow:hidden}
.prog>i{display:block;height:100%;border-radius:6px;background:var(--accent);transition:width .9s ease}
.prog--pos>i{background:var(--pos)}.prog--warn>i{background:var(--warn)}.prog--neg>i{background:var(--neg)}.prog--purple>i{background:#a78bfa}

/* project / labelled progress rows */
.proj-row{margin-top:16px}
.proj-row:first-child{margin-top:6px}
.proj-row__top{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.proj-row__top b{font-size:13.5px;font-weight:600}
.proj-row__top span{font-size:12.5px;color:var(--text-3);font-family:'Space Grotesk'}

/* member / list rows */
.lrow{display:flex;align-items:center;gap:12px;padding:11px 0;border-bottom:1px solid var(--border)}
.lrow:last-child{border-bottom:none}
.lrow__main{flex:1;min-width:0}
.lrow__main b{font-size:13.5px;font-weight:600;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.lrow__main small{font-size:12px;color:var(--text-3)}
.lrow__end{text-align:right;flex:0 0 auto}
.dot-on{width:9px;height:9px;border-radius:50%;background:var(--pos);box-shadow:0 0 0 3px var(--pos-soft)}
.dot-off{width:9px;height:9px;border-radius:50%;background:var(--text-3)}
.dot-busy{width:9px;height:9px;border-radius:50%;background:var(--warn);box-shadow:0 0 0 3px var(--warn-soft,rgba(245,177,76,.14))}

/* activity feed / timeline */
.feed{position:relative;margin-top:6px}
.feed__item{position:relative;padding:0 0 18px 26px}
.feed__item:last-child{padding-bottom:0}
.feed__item::before{content:"";position:absolute;left:5px;top:3px;width:11px;height:11px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 3px var(--accent-soft);z-index:1}
.feed__item::after{content:"";position:absolute;left:10px;top:14px;bottom:-3px;width:2px;background:var(--border)}
.feed__item:last-child::after{display:none}
.feed__item.is-pos::before{background:var(--pos);box-shadow:0 0 0 3px var(--pos-soft)}
.feed__item.is-warn::before{background:var(--warn);box-shadow:0 0 0 3px var(--warn-soft,rgba(245,177,76,.14))}
.feed__item.is-neg::before{background:var(--neg);box-shadow:0 0 0 3px var(--neg-soft)}
.feed__item b{font-size:13.5px;font-weight:600;display:block;line-height:1.35}
.feed__item small{font-size:11.5px;color:var(--text-3);display:block;margin-top:2px}

/* to-do widget */
.todo__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px}
.todo__count{font-size:12px;font-weight:700;font-family:'Space Grotesk';color:var(--accent);background:var(--accent-soft);border-radius:7px;padding:3px 9px}
.todo__bar{height:6px;background:var(--surface-3);border-radius:5px;overflow:hidden;margin-bottom:12px}
.todo__bar>i{display:block;height:100%;background:var(--accent);border-radius:5px;transition:width .35s ease}
.todo__item{display:flex;align-items:center;gap:11px;padding:9px 0;border-bottom:1px solid var(--border);cursor:pointer}
.todo__item:last-child{border-bottom:none}
.todo__check{width:19px;height:19px;border-radius:6px;border:2px solid var(--border-2);flex:0 0 auto;position:relative;transition:.15s}
.todo__item.is-done .todo__check{background:var(--accent);border-color:var(--accent)}
.todo__item.is-done .todo__check::after{content:"";position:absolute;left:5px;top:1.5px;width:5px;height:9px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg)}
.todo__txt{flex:1;font-size:13.5px;transition:.15s}
.todo__item.is-done .todo__txt{color:var(--text-3);text-decoration:line-through}
.todo__del{width:24px;height:24px;border-radius:7px;color:var(--text-3);font-size:18px;line-height:1;opacity:0;transition:.15s}
.todo__item:hover .todo__del{opacity:1}
.todo__del:hover{background:var(--neg-soft);color:var(--neg)}
.todo__add{display:flex;align-items:center;gap:9px;margin-top:12px;background:var(--surface-2);border:1px solid var(--border);border-radius:10px;padding:0 12px;height:42px}
.todo__add span{color:var(--text-3);display:flex}
.todo__input{flex:1;background:none;border:none;outline:none;color:var(--text);font-size:13.5px;font-family:inherit;height:100%}

/* mini table */
.wtable{width:100%;border-collapse:collapse;margin-top:6px}
.wtable th{text-align:left;font-size:11px;text-transform:uppercase;letter-spacing:.04em;color:var(--text-3);font-weight:600;padding:0 10px 11px}
.wtable td{padding:11px 10px;border-top:1px solid var(--border);font-size:13.5px}
.wtable tbody tr:hover{background:var(--surface-2)}
.wtable .ta-r{text-align:right}

/* quick actions */
.qa{display:grid;grid-template-columns:repeat(2,1fr);gap:11px;margin-top:6px}
.qa a{display:flex;flex-direction:column;gap:9px;padding:15px;border-radius:13px;background:var(--surface-2);border:1px solid var(--border);transition:.16s}
.qa a:hover{transform:translateY(-3px);border-color:var(--border-2);background:var(--surface-3)}
.qa a b{font-size:13px;font-weight:600}

/* messages preview */
.msg{display:flex;gap:11px;padding:11px 0;border-bottom:1px solid var(--border)}
.msg:last-child{border-bottom:none}
.msg__body{flex:1;min-width:0}
.msg__body .t{display:flex;justify-content:space-between;gap:8px}
.msg__body b{font-size:13px;font-weight:600}
.msg__body time{font-size:11px;color:var(--text-3);flex:0 0 auto}
.msg__body p{font-size:12.5px;color:var(--text-3);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.msg__unread{width:8px;height:8px;border-radius:50%;background:var(--accent);align-self:center;flex:0 0 auto}

/* weather */
.weather{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-top:6px}
.weather__temp{font-size:46px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em;line-height:1}
.weather__meta small{font-size:12.5px;color:var(--text-3);display:block}
.weather__ic{width:74px;height:74px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:linear-gradient(140deg,#f5b14c,#fb7185);color:#fff}
.weather__row{display:flex;gap:8px;margin-top:16px}
.weather__row div{flex:1;text-align:center;background:var(--surface-2);border:1px solid var(--border);border-radius:11px;padding:10px 4px}
.weather__row b{display:block;font-size:14px;font-family:'Space Grotesk';margin-top:3px}
.weather__row small{font-size:11px;color:var(--text-3)}

/* goal / countdown */
.goal__val{font-size:34px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em}
.goal__sub{font-size:13px;color:var(--text-3);margin-bottom:16px}
.goal__legend{display:flex;justify-content:space-between;font-size:12px;color:var(--text-3);margin-top:9px}

/* spinning refresh */
#w-refresh.is-spin span{animation:spin .7s linear}

/* card with soft tinted background variants for promo widgets */
.card-grad{background:linear-gradient(135deg,var(--accent),#7c5cff);color:#fff;border:none}
.card-grad .wstat__label,.card-grad .wstat__foot{color:rgba(255,255,255,.82)}
.card-grad .ic-badge{background:rgba(255,255,255,.18);color:#fff}

/* ===================== Icon explorer ===================== */
.ic-toolbar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:20px}
.ic-search{flex:1;min-width:240px;display:flex;align-items:center;gap:10px;height:46px;padding:0 15px;background:var(--surface-2);border:1px solid var(--border);border-radius:12px;transition:border-color .15s}
.ic-search:focus-within{border-color:var(--accent)}
.ic-search input{flex:1;background:none;border:none;outline:none;color:var(--text);font-size:14px;font-family:inherit}
.ic-search>span{color:var(--text-3);display:flex}
.ic-count{font-size:13px;color:var(--text-3);font-family:'Space Grotesk';white-space:nowrap}
.ic-count b{color:var(--text)}
.ic-sizes{display:inline-flex;gap:3px;background:var(--surface-3);border-radius:10px;padding:3px}
.ic-sizes button{width:34px;height:30px;border-radius:7px;font-size:12px;font-weight:700;color:var(--text-3);transition:.15s}
.ic-sizes button.is-active{background:var(--surface);color:var(--text);box-shadow:var(--shadow-sm,0 1px 2px rgba(0,0,0,.3))}
.ic-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(118px,1fr));gap:12px}
.ic-grid.sz-s{grid-template-columns:repeat(auto-fill,minmax(94px,1fr))}
.ic-grid.sz-l{grid-template-columns:repeat(auto-fill,minmax(152px,1fr))}
.ic-tile{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:11px;padding:19px 8px;border-radius:13px;background:var(--surface);border:1px solid var(--border);cursor:pointer;transition:transform .14s,border-color .14s,background .14s;min-width:0}
.ic-tile:hover{transform:translateY(-3px);border-color:var(--accent);background:var(--surface-2)}
.ic-tile i{font-size:26px;color:var(--text);line-height:1}
.ic-grid.sz-s .ic-tile{padding:14px 6px;gap:9px}.ic-grid.sz-s .ic-tile i{font-size:20px}
.ic-grid.sz-l .ic-tile{padding:25px 8px;gap:13px}.ic-grid.sz-l .ic-tile i{font-size:34px}
.ic-tile span{font-size:11px;color:var(--text-3);max-width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ic-tile.is-copied{border-color:var(--pos);background:var(--pos-soft)}
.ic-tile.is-copied i,.ic-tile.is-copied span{color:var(--pos)}
.ic-empty{display:none;padding:60px 20px;text-align:center;color:var(--text-3);font-size:14px;grid-column:1/-1}
.ic-toast{position:fixed;bottom:26px;left:50%;transform:translateX(-50%) translateY(22px);background:var(--surface-3);border:1px solid var(--border-2);color:var(--text);font-size:13.5px;font-weight:600;padding:12px 20px;border-radius:12px;box-shadow:var(--shadow);opacity:0;pointer-events:none;transition:opacity .25s,transform .25s;z-index:9999;display:flex;align-items:center;gap:9px}
.ic-toast.show{opacity:1;transform:translateX(-50%) translateY(0)}
.ic-toast b{color:var(--accent);font-family:'Space Grotesk'}

/* ===================== Extended UI components ===================== */
/* Rating */
.rate{display:inline-flex;gap:5px;cursor:pointer;font-size:26px;color:var(--surface-3);line-height:1}
.rate i{transition:transform .12s,color .12s}
.rate:not(.is-readonly) i:hover{transform:scale(1.18)}
.rate i.on{color:var(--warn)}
.rate.rate--heart i.on{color:var(--neg)}
.rate.rate--accent i.on{color:var(--accent)}
.rate.rate--pos i.on{color:var(--pos)}
.rate.rate--lg{font-size:38px}
.rate.rate--sm{font-size:18px}
.rate.is-readonly{cursor:default}
.rate-val{font-family:'Space Grotesk';font-weight:600;margin-left:12px;color:var(--text);align-self:center}
.rate-summary{display:flex;gap:28px;align-items:center;flex-wrap:wrap;margin-top:6px}
.rate-big{font-size:54px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em;line-height:1}
.rate-big small{font-size:18px;color:var(--text-3)}
.rate-dist{flex:1;min-width:240px;display:flex;flex-direction:column;gap:8px}
.rate-dist__row{display:flex;align-items:center;gap:11px;font-size:12.5px;color:var(--text-3)}
.rate-dist__row .prog{flex:1}
.rate-dist__row .s{width:34px;display:flex;align-items:center;gap:3px;color:var(--text-2)}

/* Range slider */
.rng{width:100%;-webkit-appearance:none;appearance:none;height:6px;border-radius:5px;background:var(--surface-3);outline:none}
.rng::-webkit-slider-thumb{-webkit-appearance:none;width:20px;height:20px;border-radius:50%;background:var(--accent);border:3px solid var(--surface);box-shadow:0 0 0 1px var(--border-2);cursor:pointer;transition:transform .1s}
.rng::-webkit-slider-thumb:hover{transform:scale(1.14)}
.rng::-moz-range-thumb{width:20px;height:20px;border-radius:50%;background:var(--accent);border:3px solid var(--surface);cursor:pointer}
.rng--pos::-webkit-slider-thumb{background:var(--pos)}.rng--warn::-webkit-slider-thumb{background:var(--warn)}.rng--neg::-webkit-slider-thumb{background:var(--neg)}
.rng-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:15px}
.rng-head b{font-size:14px;font-weight:600}
.rng-bubble{font-family:'Space Grotesk';font-weight:600;font-size:15px;background:var(--accent-soft);color:var(--accent);border-radius:8px;padding:4px 12px;min-width:54px;text-align:center}
.rng-minmax{display:flex;justify-content:space-between;font-size:11.5px;color:var(--text-3);margin-top:10px}
.dual{position:relative;height:24px;margin:4px 0}
.dual__track{position:absolute;top:9px;left:0;right:0;height:6px;border-radius:5px;background:var(--surface-3)}
.dual__fill{position:absolute;top:9px;height:6px;border-radius:5px;background:var(--accent)}
.dual input{position:absolute;top:0;left:0;width:100%;margin:0;-webkit-appearance:none;appearance:none;background:none;pointer-events:none;height:24px}
.dual input::-webkit-slider-thumb{-webkit-appearance:none;pointer-events:auto;width:20px;height:20px;border-radius:50%;background:var(--accent);border:3px solid var(--surface);box-shadow:0 0 0 1px var(--border-2);cursor:pointer}
.dual input::-moz-range-thumb{pointer-events:auto;width:20px;height:20px;border-radius:50%;background:var(--accent);border:3px solid var(--surface);cursor:pointer}

/* Scrollbar showcase */
.scrollbox{max-height:300px;overflow-y:auto;padding-right:12px}
.scrollbox.sx{max-height:none;overflow-x:auto;overflow-y:hidden;white-space:nowrap;padding:0 0 12px}
.scrollbox::-webkit-scrollbar{width:8px;height:8px}
.scrollbox::-webkit-scrollbar-track{background:var(--surface-2);border-radius:8px}
.scrollbox::-webkit-scrollbar-thumb{background:var(--surface-3);border-radius:8px}
.scrollbox::-webkit-scrollbar-thumb:hover{background:var(--border-2)}
.scrollbox--thin::-webkit-scrollbar{width:4px;height:4px}
.scroll-row{display:inline-flex;gap:14px}
.scroll-card{width:190px;flex:0 0 auto;white-space:normal;background:var(--surface-2);border:1px solid var(--border);border-radius:13px;padding:16px}
.scroll-card .ic-badge{margin-bottom:12px}
.para{font-size:13.5px;color:var(--text-2);line-height:1.65;margin-bottom:13px}
.para:last-child{margin-bottom:0}

/* Scrollspy */
.spy{display:grid;grid-template-columns:210px 1fr;gap:26px;align-items:start}
.spy__nav{position:sticky;top:84px;display:flex;flex-direction:column;gap:2px}
.spy__nav a{padding:9px 14px;border-radius:9px;font-size:13.5px;color:var(--text-3);border-left:2px solid transparent;transition:.15s}
.spy__nav a:hover{color:var(--text);background:var(--surface-2)}
.spy__nav a.active{color:var(--accent);background:var(--accent-soft);border-left-color:var(--accent);font-weight:600}
.spy__section{scroll-margin-top:88px;padding-bottom:10px}
.spy__section h3{font-size:18px;font-weight:600;margin-bottom:12px}
@media(max-width:760px){.spy{grid-template-columns:1fr}.spy__nav{position:static;flex-direction:row;flex-wrap:wrap;margin-bottom:16px}}

/* Drag & drop */
.dnd{display:grid;grid-template-columns:1fr 1fr;gap:18px}
@media(max-width:760px){.dnd{grid-template-columns:1fr}}
.dnd__col>h4{font-size:11.5px;text-transform:uppercase;letter-spacing:.04em;color:var(--text-3);margin-bottom:12px;display:flex;justify-content:space-between;align-items:center}
.dnd__col>h4 span{background:var(--surface-3);border-radius:6px;padding:2px 8px;font-size:11px;color:var(--text-2)}
.dnd__list{display:flex;flex-direction:column;gap:9px;min-height:70px;padding:6px;border-radius:13px;border:1px dashed transparent;transition:background .15s,border-color .15s}
.dnd__list.drop-hover{background:var(--accent-soft);border-color:var(--accent)}
.dnd__item{display:flex;align-items:center;gap:12px;padding:13px 14px;background:var(--surface-2);border:1px solid var(--border);border-radius:11px;cursor:grab;transition:border-color .15s,opacity .15s}
.dnd__item:hover{border-color:var(--border-2)}
.dnd__item.dragging{opacity:.45;cursor:grabbing}
.dnd__grip{color:var(--text-3);display:flex;flex:0 0 auto}
.dnd__item .m{flex:1;min-width:0}
.dnd__item b{font-size:13.5px;font-weight:600;display:block}
.dnd__item small{font-size:11.5px;color:var(--text-3)}

/* ===================== Widgets: mini calendar + countries ===================== */
.mcal__head{display:flex;align-items:center;justify-content:space-between;margin:4px 0 14px}
.mcal__head b{font-size:14px;font-family:'Space Grotesk'}
.mcal__nav{display:flex;gap:4px}
.mcal__nav button{width:28px;height:28px;border-radius:8px;color:var(--text-3)}
.mcal__nav button:hover{background:var(--surface-2);color:var(--text)}
.mcal__grid{display:grid;grid-template-columns:repeat(7,1fr);gap:3px}
.mcal__grid .dow{text-align:center;font-size:10.5px;color:var(--text-3);padding:4px 0;font-weight:700;text-transform:uppercase}
.mcal__grid a{text-align:center;font-size:12.5px;color:var(--text-2);padding:8px 0;border-radius:9px;position:relative;font-family:'Space Grotesk'}
.mcal__grid a:hover{background:var(--surface-2);color:var(--text)}
.mcal__grid a.muted{opacity:.35}
.mcal__grid a.today{background:var(--accent);color:#fff;font-weight:600}
.mcal__grid a.has-ev::after{content:"";position:absolute;bottom:4px;left:50%;transform:translateX(-50%);width:4px;height:4px;border-radius:50%;background:var(--warn)}
.mcal__grid a.today.has-ev::after{background:#fff}
.flag{width:26px;height:19px;border-radius:4px;flex:0 0 auto;background:var(--surface-3);display:flex;align-items:center;justify-content:center;font-size:13px}

/* range slider extras: disabled + grid ticks */
.rng:disabled{opacity:.45;cursor:not-allowed}
.rng:disabled::-webkit-slider-thumb{cursor:not-allowed;background:var(--text-3)}
.rng:disabled::-moz-range-thumb{cursor:not-allowed;background:var(--text-3)}
.rng-grid{display:flex;justify-content:space-between;margin-top:8px;font-size:10.5px;color:var(--text-3);font-family:'Space Grotesk'}
.rng-grid span{position:relative;padding-top:9px}
.rng-grid span::before{content:"";position:absolute;top:0;left:50%;width:1px;height:5px;background:var(--border-2)}
.rng-block{margin-bottom:24px}
.rng-block:last-child{margin-bottom:0}

/* drag & drop: colorful tile grid + handle variant */
.dnd__list--grid{flex-direction:row;flex-wrap:wrap}
.dnd__tile{flex:0 0 auto;width:calc(33.333% - 7px);min-width:150px;cursor:grab;border-radius:13px;padding:16px;color:#fff;border:none;transition:opacity .15s,transform .1s}
.dnd__tile.dragging{opacity:.45}
.dnd__tile b{font-size:13.5px;font-weight:600;display:block;margin-bottom:5px}
.dnd__tile p{font-size:12px;opacity:.85;line-height:1.5;margin:0}
.dnd__tile--a{background:linear-gradient(140deg,#5b7cfa,#7c5cff)}
.dnd__tile--b{background:linear-gradient(140deg,#34d399,#0ea5a3)}
.dnd__tile--c{background:linear-gradient(140deg,#f5b14c,#fb7185)}
.dnd__tile--d{background:linear-gradient(140deg,#38bdf8,#5b7cfa)}
.dnd__tile--e{background:linear-gradient(140deg,#a78bfa,#7c5cff)}
.dnd__tile--f{background:linear-gradient(140deg,#fb7185,#f43f5e)}
.dnd__item[data-handle]{cursor:default}
.dnd__item[data-handle] .dnd__grip{cursor:grab}
@media(max-width:760px){.dnd__tile{width:calc(50% - 5px)}}
/* ===== Adixo text wordmark (replaces the old logo image) ===== */
.brand{gap:10px;text-decoration:none}
.brand-mark{width:32px;height:32px;border-radius:9px;background:linear-gradient(140deg,#7c5cff,#5b7cfa);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-family:'Space Grotesk';font-size:17px;flex:0 0 auto;box-shadow:0 4px 12px rgba(91,124,250,.35)}
.brand-text{font-family:'Space Grotesk';font-weight:700;font-size:20px;letter-spacing:-.02em;color:var(--text)}
.sidebar.is-collapsed .brand-text{display:none}
.app.mode-hover .sidebar.is-collapsed:hover .brand-text{display:inline}

/* ===================== Per-dashboard accent themes ===================== */
.dash-gym{--accent:#84cc16;--accent-soft:rgba(132,204,22,.15)}
.dash-delivery{--accent:#06b6d4;--accent-soft:rgba(6,182,212,.15)}
.dash-pos{--accent:#10b981;--accent-soft:rgba(16,185,129,.15)}
.dash-hospital{--accent:#14b8a6;--accent-soft:rgba(20,184,166,.15)}
.dash-school{--accent:#8b5cf6;--accent-soft:rgba(139,92,246,.15)}
.dash-crypto{--accent:#f59e0b;--accent-soft:rgba(245,158,11,.15)}
.dash-hotel{--accent:#f43f5e;--accent-soft:rgba(244,63,94,.15)}
.dash-restaurant{--accent:#f97316;--accent-soft:rgba(249,115,22,.15)}

/* unique grid columns */
.wrow-hero{grid-template-columns:1.6fr 1fr}
.wrow-14{grid-template-columns:1.5fr 1fr}
.wrow-21{grid-template-columns:2fr 1fr}
@media(max-width:1100px){.wrow-hero,.wrow-14,.wrow-21{grid-template-columns:1fr}}

/* ---- Hero ring + inline stats (gym) ---- */
.hero{display:flex;align-items:center;gap:30px;flex-wrap:wrap}
.hero__stats{flex:1;min-width:260px;display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.hero-stat{padding:15px 16px;background:var(--surface-2);border:1px solid var(--border);border-radius:14px}
.hero-stat .l{font-size:12px;color:var(--text-3)}
.hero-stat .v{font-size:23px;font-weight:600;font-family:'Space Grotesk';margin-top:5px}

/* ---- Status pipeline (delivery) ---- */
.pipeline{display:flex;flex-wrap:wrap}
.pipeline__stage{flex:1;min-width:130px;text-align:center;padding:6px 10px;position:relative}
.pipeline__ic{width:54px;height:54px;border-radius:15px;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;background:var(--accent-soft);color:var(--accent)}
.pipeline__stage b{display:block;font-size:30px;font-family:'Space Grotesk';font-weight:600}
.pipeline__stage span{font-size:12.5px;color:var(--text-3)}
.pipeline__stage::after{content:"";position:absolute;top:27px;right:-8px;width:16px;height:2px;background:var(--border)}
.pipeline__stage:last-child::after{display:none}

/* ---- Product tiles (pos) ---- */
.ptiles{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:13px}
.ptile{background:var(--surface-2);border:1px solid var(--border);border-radius:14px;padding:14px;transition:transform .15s,border-color .15s;cursor:pointer}
.ptile:hover{transform:translateY(-3px);border-color:var(--accent)}
.ptile__img{height:64px;border-radius:11px;display:flex;align-items:center;justify-content:center;color:#fff;margin-bottom:11px}
.ptile b{font-size:13.5px;font-weight:600;display:block}
.ptile small{font-size:11.5px;color:var(--text-3)}
.ptile .pr{font-family:'Space Grotesk';font-weight:600;color:var(--accent);margin-top:7px;display:block;font-size:15px}

/* ---- Big sales hero (pos) ---- */
.sales-hero{display:flex;flex-direction:column;justify-content:center;height:100%}
.sales-hero .big{font-size:54px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em;line-height:1;margin:10px 0 6px}

/* ---- Department cards (hospital) ---- */
.dept-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(168px,1fr));gap:14px}
.dept{padding:16px;border-radius:14px;border:1px solid var(--border);background:var(--surface-2);display:flex;align-items:center;gap:13px}
.dept b{font-size:21px;font-family:'Space Grotesk';display:block;line-height:1}
.dept small{font-size:12px;color:var(--text-3)}

/* ---- Cell map (beds / rooms) ---- */
.cell-map{display:grid;grid-template-columns:repeat(auto-fill,minmax(26px,1fr));gap:6px}
.cell{aspect-ratio:1;border-radius:6px;background:var(--surface-3)}
.cell.on{background:var(--accent)}
.cell.warn{background:var(--warn)}
.cell.busy{background:var(--neg)}
.cell-legend{display:flex;gap:18px;margin-top:16px;font-size:12px;color:var(--text-3);flex-wrap:wrap}
.cell-legend i{width:11px;height:11px;border-radius:3px;display:inline-block;margin-right:7px;vertical-align:-1px}

/* ---- Timetable (school) ---- */
.tt{display:grid;grid-template-columns:60px repeat(5,1fr);gap:7px}
.tt .h{font-weight:700;color:var(--text-3);text-align:center;padding:6px 0;text-transform:uppercase;font-size:10.5px;letter-spacing:.04em}
.tt .t{color:var(--text-3);display:flex;align-items:center;font-family:'Space Grotesk';font-size:11.5px}
.tt .slot{padding:10px 8px;border-radius:9px;background:var(--surface-2);border:1px solid var(--border);font-weight:600;font-size:11.5px;line-height:1.3}
.tt .slot.a{background:var(--accent-soft);color:var(--accent);border-color:transparent}
.tt .slot.b{background:var(--pos-soft);color:var(--pos);border-color:transparent}
.tt .slot.c{background:var(--warn-soft);color:var(--warn);border-color:transparent}
.tt .slot.empty{background:transparent;border:1px dashed var(--border)}

/* ---- Trading ticker (crypto) ---- */
.ticker{display:flex;align-items:flex-end;gap:16px;flex-wrap:wrap}
.ticker__price{font-size:48px;font-weight:600;font-family:'Space Grotesk';letter-spacing:-.02em;line-height:1}
.coinrow{display:flex;gap:11px;flex-wrap:wrap;margin-top:18px}
.coinchip{display:flex;align-items:center;gap:10px;padding:10px 14px;background:var(--surface-2);border:1px solid var(--border);border-radius:13px}
.coinchip .sym{width:30px;height:30px;border-radius:9px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:11px;font-family:'Space Grotesk'}
.coinchip b{font-size:13px;font-family:'Space Grotesk'}
.coinchip small{font-size:11px;display:block;color:var(--text-3)}

/* ---- Order kanban (restaurant) ---- */
.okanban{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.okanban__col{background:var(--surface-2);border:1px solid var(--border);border-radius:14px;padding:13px}
.okanban__col h4{font-size:11.5px;text-transform:uppercase;letter-spacing:.04em;color:var(--text-3);margin-bottom:12px;display:flex;justify-content:space-between;align-items:center}
.okanban__col h4 span{background:var(--surface-3);border-radius:6px;padding:2px 8px;color:var(--text-2)}
.ticket{background:var(--surface);border:1px solid var(--border);border-radius:11px;padding:12px;margin-bottom:10px}
.ticket:last-child{margin-bottom:0}
.ticket__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:5px}
.ticket b{font-size:13px;font-weight:600}
.ticket small{font-size:11.5px;color:var(--text-3)}
.ticket .tm{font-family:'Space Grotesk';font-size:11.5px;color:var(--accent)}
@media(max-width:1100px){.okanban{grid-template-columns:1fr 1fr}}

/* ---- Table floor map (restaurant) ---- */
.tables{display:grid;grid-template-columns:repeat(auto-fill,minmax(76px,1fr));gap:12px}
.tablecell{aspect-ratio:1;border-radius:14px;border:1px solid var(--border);background:var(--surface-2);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px}
.tablecell b{font-family:'Space Grotesk';font-size:16px}
.tablecell small{font-size:10px;color:var(--text-3)}
.tablecell.busy{background:var(--accent-soft);border-color:var(--accent);color:var(--accent)}
.tablecell.busy small{color:var(--accent)}
.tablecell.resv{background:var(--warn-soft);border-color:var(--warn);color:var(--warn)}
.tablecell.resv small{color:var(--warn)}

/* ---- Leaderboard (gym) ---- */
.lb__row{display:flex;align-items:center;gap:13px;padding:11px 0;border-bottom:1px solid var(--border)}
.lb__row:last-child{border-bottom:none}
.lb__rank{width:27px;height:27px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-family:'Space Grotesk';font-weight:700;font-size:13px;background:var(--surface-3);color:var(--text-2);flex:0 0 auto}
.lb__row.top1 .lb__rank{background:var(--accent);color:#fff}
.lb__row.top2 .lb__rank{background:var(--accent-soft);color:var(--accent)}
.lb__bar{flex:1;min-width:0}

/* ---- Vertical timeline (gym schedule) ---- */
.vtl{position:relative;margin-top:4px}
.vtl__item{position:relative;padding:0 0 18px 28px}
.vtl__item::before{content:"";position:absolute;left:5px;top:14px;bottom:-3px;width:2px;background:var(--border)}
.vtl__item:last-child::before{display:none}
.vtl__dot{position:absolute;left:0;top:2px;width:13px;height:13px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}
.vtl__time{font-family:'Space Grotesk';font-weight:600;font-size:12.5px;color:var(--accent)}
.vtl__item b{display:block;font-size:13.5px;margin-top:2px}
.vtl__item small{font-size:11.5px;color:var(--text-3)}
/* ===== letter avatars (replace user image avatars) ===== */
.letter-ava{display:inline-flex;align-items:center;justify-content:center;border-radius:50%;color:#fff;font-weight:700;font-family:'Space Grotesk','Hanken Grotesk',sans-serif;line-height:1;text-transform:uppercase;overflow:hidden;vertical-align:middle;flex:0 0 auto;width:40px;height:40px;font-size:14px;background:linear-gradient(140deg,#5b7cfa,#7c5cff)}
.letter-ava.xs{width:24px;height:24px;font-size:9.5px}
.letter-ava.sm{width:32px;height:32px;font-size:12px}
.letter-ava.md{width:40px;height:40px;font-size:14px}
.letter-ava.lg{width:64px;height:64px;font-size:22px}
.letter-ava.xl{width:92px;height:92px;font-size:31px}
.letter-ava.c1{background:linear-gradient(140deg,#5b7cfa,#7c5cff)}
.letter-ava.c2{background:linear-gradient(140deg,#34d399,#10b981)}
.letter-ava.c3{background:linear-gradient(140deg,#f5b14c,#fb7185)}
.letter-ava.c4{background:linear-gradient(140deg,#38bdf8,#0ea5e9)}
.letter-ava.c5{background:linear-gradient(140deg,#a78bfa,#5b7cfa)}
.letter-ava.c6{background:linear-gradient(140deg,#fb7185,#e5484d)}
.letter-ava.profile-hero__ava{width:104px;height:104px;border-radius:24px;font-size:38px}
