@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&display=swap');

/* ── LIGHT MODE (DEFAULT) ─────────────────────────────── */
:root {
  --bg-a: #f4f2ff; --bg-b: #eef2ff; --bg-c: #f8f6ff;
  --surface:        rgba(255,255,255,0.72);
  --surface-hover:  rgba(255,255,255,0.88);
  --surface-active: rgba(255,255,255,0.96);
  --border:         rgba(109,76,209,0.14);
  --border-strong:  rgba(109,76,209,0.26);
  --shadow:         0 4px 24px rgba(109,76,209,0.10), inset 0 1px 0 rgba(255,255,255,0.9);
  --shadow-lg:      0 16px 48px rgba(109,76,209,0.14), inset 0 1px 0 rgba(255,255,255,0.95);
  --grad:           linear-gradient(135deg,#7c3aed,#2563eb);
  --grad-success:   linear-gradient(135deg,#059669,#0891b2);
  --grad-danger:    linear-gradient(135deg,#dc2626,#ea580c);
  --accent:         #6d4cd1;
  --accent-light:   rgba(109,76,209,0.12);
  --txt:            #1c1033;
  --txt-2:          #4a3878;
  --txt-3:          #9580c4;
  --nav-bg:         rgba(255,255,255,0.88);
  --input-bg:       rgba(255,255,255,0.9);
  --orb1: #c4b5fd; --orb2: #bfdbfe; --orb3: #e9d5ff;
  --r-sm:10px; --r-md:16px; --r-lg:22px; --r-xl:30px; --r-f:999px;
  --blur: blur(20px); --blur-lg: blur(40px);
  --nav-h: 72px;
  --ease: 0.25s cubic-bezier(0.4,0,0.2,1);
  --spring: 0.4s cubic-bezier(0.34,1.56,0.64,1);
  --font: 'Sora', sans-serif;
}

/* ── DARK MODE ────────────────────────────────────────── */
[data-theme="dark"] {
  --bg-a: #0b0118; --bg-b: #130626; --bg-c: #070f1e;
  --surface:        rgba(255,255,255,0.06);
  --surface-hover:  rgba(255,255,255,0.11);
  --surface-active: rgba(255,255,255,0.15);
  --border:         rgba(255,255,255,0.10);
  --border-strong:  rgba(255,255,255,0.20);
  --shadow:         0 4px 24px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.07);
  --shadow-lg:      0 16px 48px rgba(0,0,0,0.60), inset 0 1px 0 rgba(255,255,255,0.09);
  --accent:         #a78bfa;
  --accent-light:   rgba(167,139,250,0.15);
  --txt:            rgba(255,255,255,0.95);
  --txt-2:          rgba(255,255,255,0.58);
  --txt-3:          rgba(255,255,255,0.32);
  --nav-bg:         rgba(8,1,22,0.88);
  --input-bg:       rgba(255,255,255,0.07);
  --orb1:#7c3aed; --orb2:#1d4ed8; --orb3:#6d28d9;
}

/* ── RESET ────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:var(--font);background:var(--bg-a);color:var(--txt);min-height:100vh;overflow-x:hidden;-webkit-font-smoothing:antialiased;transition:background .35s,color .35s}

/* ── BACKGROUND ───────────────────────────────────────── */
.bg-canvas{position:fixed;inset:0;z-index:-1;background:radial-gradient(ellipse at 15% 15%,var(--orb1) 0%,transparent 52%),radial-gradient(ellipse at 85% 85%,var(--orb2) 0%,transparent 52%),linear-gradient(160deg,var(--bg-a),var(--bg-c));transition:background .4s}
.bg-orb{position:fixed;border-radius:50%;filter:blur(72px);opacity:.16;pointer-events:none;z-index:-1;animation:orbf 10s ease-in-out infinite alternate}
.bg-orb-1{width:360px;height:360px;background:var(--orb1);top:-70px;left:-70px}
.bg-orb-2{width:260px;height:260px;background:var(--orb2);bottom:70px;right:-40px;animation-delay:-4s}
.bg-orb-3{width:160px;height:160px;background:var(--orb3);top:40%;left:42%;animation-delay:-7s}
@keyframes orbf{0%{transform:translate(0,0) scale(1)}100%{transform:translate(22px,-22px) scale(1.07)}}

/* ── GLASS ────────────────────────────────────────────── */
.glass{background:var(--surface);backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);border:1px solid var(--border);box-shadow:var(--shadow)}
.glass-strong{background:var(--surface-active);backdrop-filter:var(--blur-lg);-webkit-backdrop-filter:var(--blur-lg);border:1px solid var(--border-strong);box-shadow:var(--shadow-lg)}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:7px;padding:11px 22px;border-radius:var(--r-f);border:none;cursor:pointer;font-family:var(--font);font-size:.88rem;font-weight:600;letter-spacing:.02em;transition:all var(--ease);-webkit-tap-highlight-color:transparent;user-select:none;text-decoration:none}
.btn-primary{background:var(--grad);color:#fff;box-shadow:0 4px 18px rgba(109,76,209,.35)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 26px rgba(109,76,209,.45)}
.btn-primary:active{transform:none}
.btn-ghost{background:var(--surface);color:var(--txt);border:1px solid var(--border)}
.btn-ghost:hover{background:var(--surface-hover);border-color:var(--border-strong)}
.btn-danger{background:var(--grad-danger);color:#fff;box-shadow:0 4px 14px rgba(220,38,38,.3)}
.btn-sm{padding:7px 14px;font-size:.78rem}
.btn-icon{width:38px;height:38px;padding:0;border-radius:var(--r-md);background:var(--surface);border:1px solid var(--border);color:var(--txt-2);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:all var(--ease);flex-shrink:0}
.btn-icon:hover{background:var(--surface-hover);color:var(--txt)}
.btn-icon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.btn:disabled{opacity:.45;cursor:not-allowed;transform:none!important}

/* ── INPUTS ───────────────────────────────────────────── */
.input-wrap{position:relative}
.input{width:100%;padding:13px 16px;background:var(--input-bg);border:1.5px solid var(--border);border-radius:var(--r-md);color:var(--txt);font-family:var(--font);font-size:.92rem;outline:none;transition:all var(--ease)}
.input::placeholder{color:var(--txt-3)}
.input:focus{border-color:var(--accent);background:var(--surface-hover);box-shadow:0 0 0 3px rgba(109,76,209,.12)}
.input-icon{padding-left:44px}
.input-prefix{position:absolute;left:13px;top:50%;transform:translateY(-50%);color:var(--txt-3);pointer-events:none;display:flex;align-items:center}
.input-prefix svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.label{display:block;font-size:.75rem;font-weight:700;color:var(--txt-2);letter-spacing:.08em;text-transform:uppercase;margin-bottom:7px}

/* ── BOTTOM NAV ───────────────────────────────────────── */
.bottom-nav{position:fixed;bottom:0;left:0;right:0;height:var(--nav-h);z-index:100;padding:0 4px;padding-bottom:env(safe-area-inset-bottom);display:flex;align-items:center;justify-content:space-around;background:var(--nav-bg);backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur);border-top:1px solid var(--border)}
.nav-item{display:flex;flex-direction:column;align-items:center;gap:3px;padding:8px 14px;border-radius:var(--r-md);cursor:pointer;transition:all var(--ease);border:none;background:transparent;color:var(--txt-3);font-family:var(--font);-webkit-tap-highlight-color:transparent;min-width:58px}
.nav-item svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;transition:transform var(--spring)}
.nav-label{font-size:.62rem;font-weight:600;letter-spacing:.04em}
.nav-item.active{color:var(--accent)}
.nav-item.active svg{transform:scale(1.15)}
.nav-item:hover{color:var(--txt);background:var(--surface)}

/* ── PAGES ────────────────────────────────────────────── */
.page{display:none;min-height:100vh;padding:16px 16px calc(var(--nav-h) + 20px);animation:pageIn .3s ease}
.page.active{display:block}
@keyframes pageIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.page-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;padding-top:8px}
.page-title{font-size:1.5rem;font-weight:700;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* ── STORAGE RING ─────────────────────────────────────── */
.storage-ring-wrap{display:flex;align-items:center;justify-content:center;position:relative}
.storage-ring-wrap svg{transform:rotate(-90deg)}
.ring-bg{fill:none;stroke:var(--border);stroke-width:8}
.ring-fill{fill:none;stroke-width:8;stroke-linecap:round;stroke:url(#ringGrad);transition:stroke-dashoffset 1.2s cubic-bezier(.34,1.56,.64,1)}
.ring-center{position:absolute;text-align:center;pointer-events:none}
.ring-pct{font-size:1.5rem;font-weight:700;color:var(--txt)}
.ring-lbl{font-size:.65rem;color:var(--txt-3);font-weight:600;letter-spacing:.06em}

/* ── FILE CARDS ───────────────────────────────────────── */
.files-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:11px}
.file-card{border-radius:var(--r-lg);padding:13px;cursor:pointer;transition:all var(--ease);position:relative;overflow:hidden;background:var(--surface);border:1px solid var(--border);backdrop-filter:var(--blur);-webkit-backdrop-filter:var(--blur)}
.file-card:hover{transform:translateY(-3px);background:var(--surface-hover);box-shadow:0 8px 24px rgba(109,76,209,.10)}
.file-card:active{transform:scale(.97)}
.file-thumb{width:100%;aspect-ratio:1;border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;margin-bottom:10px;overflow:hidden}
.file-thumb svg{width:36px;height:36px;stroke:currentColor;fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.file-thumb img{width:100%;height:100%;object-fit:cover;border-radius:var(--r-md)}
.file-name{font-size:.78rem;font-weight:600;color:var(--txt);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.file-meta{font-size:.68rem;color:var(--txt-3);margin-top:2px}
.file-shared-badge{font-size:.63rem;color:var(--accent);margin-top:2px;font-weight:600;display:flex;align-items:center;gap:3px}
.file-shared-badge svg{width:11px;height:11px;stroke:currentColor;fill:none;stroke-width:2}
.file-menu-btn{position:absolute;top:9px;right:9px;width:26px;height:26px;border-radius:8px;display:flex;align-items:center;justify-content:center;background:rgba(0,0,0,0.08);border:none;color:var(--txt-2);cursor:pointer;opacity:0;transition:opacity var(--ease)}
[data-theme="dark"] .file-menu-btn{background:rgba(0,0,0,0.35)}
.file-menu-btn svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2}
.file-card:hover .file-menu-btn{opacity:1}

/* ── FILE LIST ────────────────────────────────────────── */
.files-list{display:flex;flex-direction:column;gap:7px}
.file-row{display:flex;align-items:center;gap:12px;padding:12px 14px;border-radius:var(--r-lg);cursor:pointer;transition:all var(--ease);background:var(--surface);border:1px solid var(--border);backdrop-filter:var(--blur)}
.file-row:hover{background:var(--surface-hover)}
.file-row-icon{width:40px;height:40px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.file-row-icon svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.file-row-info{flex:1;min-width:0}
.file-row-name{font-size:.88rem;font-weight:600;color:var(--txt);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.file-row-meta{font-size:.70rem;color:var(--txt-3)}

/* ── FOLDER ROW ───────────────────────────────────────── */
.folder-row{display:flex;align-items:center;gap:13px;padding:13px 15px;border-radius:var(--r-lg);cursor:pointer;transition:all var(--ease);margin-bottom:7px;background:var(--surface);border:1px solid var(--border);backdrop-filter:var(--blur)}
.folder-row:hover{background:var(--surface-hover)}
.folder-icon-wrap{width:40px;height:40px;border-radius:12px;background:linear-gradient(135deg,#f59e0b,#ea580c);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.folder-icon-wrap svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.folder-name{font-weight:600;font-size:.92rem;flex:1;color:var(--txt)}

/* ── CTX MENU ─────────────────────────────────────────── */
.ctx-menu{position:fixed;z-index:500;min-width:185px;border-radius:var(--r-lg);padding:5px;animation:ctxIn .18s var(--spring);box-shadow:0 12px 40px rgba(0,0,0,.18);background:var(--surface-active);border:1px solid var(--border-strong);backdrop-filter:var(--blur-lg);-webkit-backdrop-filter:var(--blur-lg)}
[data-theme="dark"] .ctx-menu{box-shadow:0 12px 40px rgba(0,0,0,.6)}
@keyframes ctxIn{from{opacity:0;transform:scale(.88)}to{opacity:1;transform:scale(1)}}
.ctx-item{display:flex;align-items:center;gap:9px;padding:10px 13px;border-radius:var(--r-md);cursor:pointer;font-size:.86rem;color:var(--txt);transition:background var(--ease);border:none;background:transparent;width:100%;font-family:var(--font)}
.ctx-item:hover{background:var(--surface-hover)}
.ctx-item.danger{color:#dc2626}
[data-theme="dark"] .ctx-item.danger{color:#f87171}
.ctx-item svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.ctx-div{height:1px;background:var(--border);margin:4px 0}

/* ── MODAL ────────────────────────────────────────────── */
.modal-overlay{position:fixed;inset:0;z-index:600;display:flex;align-items:flex-end;justify-content:center;background:rgba(0,0,0,.38);backdrop-filter:blur(6px);animation:fadeIn .2s ease}
@media(min-width:600px){.modal-overlay{align-items:center;padding:20px}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.modal{width:100%;max-width:480px;border-radius:var(--r-xl) var(--r-xl) 0 0;padding:26px 22px;padding-bottom:calc(26px + env(safe-area-inset-bottom));animation:slideUp .35s var(--spring);background:var(--surface-active);border:1px solid var(--border-strong);backdrop-filter:var(--blur-lg);-webkit-backdrop-filter:var(--blur-lg)}
@media(min-width:600px){.modal{border-radius:var(--r-xl);padding-bottom:26px}}
@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
.modal-handle{width:36px;height:4px;background:var(--border-strong);border-radius:999px;margin:0 auto 18px}
@media(min-width:600px){.modal-handle{display:none}}
.modal-title{font-size:1.15rem;font-weight:700;margin-bottom:18px;background:var(--grad);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* ── PREVIEW ──────────────────────────────────────────── */
.preview-overlay{position:fixed;inset:0;z-index:700;display:flex;flex-direction:column;background:rgba(0,0,0,.97);animation:fadeIn .2s ease}
.preview-header{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;flex-shrink:0;background:rgba(255,255,255,.04);border-bottom:1px solid rgba(255,255,255,.09)}
.preview-header .btn-ghost{color:rgba(255,255,255,.8);border-color:rgba(255,255,255,.15);background:rgba(255,255,255,.08)}
.preview-header .file-title{font-size:.84rem;font-weight:600;color:rgba(255,255,255,.9);flex:1;text-align:center;padding:0 10px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.preview-body{flex:1;display:flex;align-items:center;justify-content:center;overflow:auto;padding:16px}
.preview-body img{max-width:100%;max-height:100%;object-fit:contain;border-radius:var(--r-md)}
.preview-body video{max-width:100%;max-height:100%;border-radius:var(--r-md)}
.preview-body iframe{width:100%;height:100%;min-height:60vh;border:none;border-radius:var(--r-md)}

/* ── TOAST ────────────────────────────────────────────── */
.toast-container{position:fixed;top:18px;left:50%;transform:translateX(-50%);z-index:900;display:flex;flex-direction:column;gap:8px;width:calc(100% - 28px);max-width:380px;pointer-events:none}
.toast{padding:13px 16px;border-radius:var(--r-lg);font-size:.85rem;font-weight:500;color:#fff;animation:toastIn .35s var(--spring);pointer-events:auto;display:flex;align-items:center;gap:9px;box-shadow:0 8px 28px rgba(0,0,0,.22)}
.toast svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:2;flex-shrink:0}
@keyframes toastIn{from{opacity:0;transform:translateY(-18px) scale(.9)}to{opacity:1;transform:none}}
.toast.success{background:linear-gradient(135deg,#059669,#0891b2)}
.toast.error{background:linear-gradient(135deg,#dc2626,#ea580c)}
.toast.info{background:var(--grad)}
.toast.out{animation:toastOut .3s ease forwards}
@keyframes toastOut{to{opacity:0;transform:translateY(-10px) scale(.9)}}

/* ── EMPTY STATE ──────────────────────────────────────── */
.empty-state{text-align:center;padding:56px 16px}
.empty-icon{width:64px;height:64px;margin:0 auto 16px;opacity:.35}
.empty-icon svg{width:64px;height:64px;stroke:var(--txt-3);fill:none;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round}
.empty-title{font-size:1rem;font-weight:600;color:var(--txt-2);margin-bottom:6px}
.empty-sub{font-size:.82rem;color:var(--txt-3)}

/* ── PROGRESS ─────────────────────────────────────────── */
.progress-bar{height:4px;border-radius:999px;background:var(--border);overflow:hidden}
.progress-fill{height:100%;border-radius:999px;background:var(--grad);transition:width .3s ease}

/* ── TOGGLE ───────────────────────────────────────────── */
.toggle{position:relative;width:50px;height:27px;cursor:pointer}
.toggle input{opacity:0;width:0;height:0}
.toggle-track{position:absolute;inset:0;border-radius:999px;background:var(--border);border:1.5px solid var(--border-strong);transition:background var(--ease)}
.toggle input:checked~.toggle-track{background:var(--grad);border-color:transparent}
.toggle-thumb{position:absolute;top:3px;left:3px;width:21px;height:21px;border-radius:50%;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.18);transition:transform var(--spring)}
.toggle input:checked~.toggle-thumb{transform:translateX(23px)}

/* ── BREADCRUMBS ──────────────────────────────────────── */
.breadcrumbs{display:flex;align-items:center;gap:5px;flex-wrap:wrap;margin-bottom:14px}
.bc-item{font-size:.8rem;color:var(--txt-3);cursor:pointer;transition:color var(--ease)}
.bc-item:hover{color:var(--txt)}
.bc-item.active{color:var(--txt);font-weight:600;cursor:default}
.bc-sep{color:var(--txt-3);font-size:.72rem}

/* ── STATS ────────────────────────────────────────────── */
.stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-bottom:22px}
.stat-card{border-radius:var(--r-lg);padding:13px 10px;text-align:center;background:var(--surface);border:1px solid var(--border);backdrop-filter:var(--blur)}
.stat-val{font-size:1.3rem;font-weight:700;color:var(--txt)}
.stat-lbl{font-size:.66rem;color:var(--txt-3);font-weight:600;letter-spacing:.06em;margin-top:2px}

/* ── FILTER CHIPS ─────────────────────────────────────── */
.filter-row{display:flex;gap:7px;overflow-x:auto;padding-bottom:3px;margin-bottom:14px;scrollbar-width:none}
.filter-row::-webkit-scrollbar{display:none}
.chip{display:inline-flex;align-items:center;gap:5px;padding:6px 13px;border-radius:var(--r-f);font-size:.75rem;font-weight:600;background:var(--surface);border:1.5px solid var(--border);color:var(--txt-2);cursor:pointer;transition:all var(--ease);white-space:nowrap}
.chip svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.chip.active{background:var(--accent-light);border-color:var(--accent);color:var(--accent)}
.chip:hover{background:var(--surface-hover)}

/* ── SETTINGS ─────────────────────────────────────────── */
.settings-card{border-radius:var(--r-xl);overflow:hidden;background:var(--surface);border:1px solid var(--border);backdrop-filter:var(--blur)}
.s-row{display:flex;align-items:center;gap:13px;padding:15px 17px;border-bottom:1px solid var(--border);transition:background var(--ease)}
.s-row:last-child{border-bottom:none}
.s-row:hover{background:var(--surface-hover)}
.s-icon{width:36px;height:36px;border-radius:11px;background:var(--accent-light);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.s-icon svg{width:18px;height:18px;stroke:var(--accent);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.s-info{flex:1}
.s-title{font-size:.88rem;font-weight:600;color:var(--txt)}
.s-sub{font-size:.72rem;color:var(--txt-3)}
.s-arrow svg{width:16px;height:16px;stroke:var(--txt-3);fill:none;stroke-width:2}

/* ── UPLOAD PROGRESS ──────────────────────────────────── */
.upload-progress-container{position:fixed;bottom:calc(var(--nav-h) + 10px);left:14px;right:14px;z-index:400;display:flex;flex-direction:column;gap:7px}
.upload-item{border-radius:var(--r-lg);padding:13px 15px;display:flex;align-items:center;gap:11px;animation:toastIn .3s var(--spring);background:var(--surface-active);border:1px solid var(--border-strong);backdrop-filter:var(--blur-lg)}
.upload-item svg{width:22px;height:22px;stroke:var(--accent);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}

/* ── SKELETON ─────────────────────────────────────────── */
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}
.skeleton{border-radius:var(--r-md);background:linear-gradient(90deg,var(--surface) 25%,var(--surface-hover) 50%,var(--surface) 75%);background-size:200% 100%;animation:shimmer 1.5s infinite}

/* ── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar{width:3px;height:3px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--border-strong);border-radius:999px}

/* ── UTILS ────────────────────────────────────────────── */
.flex{display:flex}.flex-center{display:flex;align-items:center;justify-content:center}
.gap-2{gap:8px}.gap-3{gap:12px}.mb-2{margin-bottom:8px}.mb-3{margin-bottom:12px}
.mb-4{margin-bottom:16px}.mb-5{margin-bottom:20px}.mt-3{margin-top:12px}.mt-4{margin-top:16px}
.text-sm{font-size:.84rem}.text-xs{font-size:.73rem}.text-muted{color:var(--txt-3)}.text-2{color:var(--txt-2)}
.fw-6{font-weight:600}.fw-7{font-weight:700}.w-full{width:100%}.hidden{display:none!important}
