:root{--brand-900: #0f2e24;--brand-700: #145239;--brand-600: #16794f;--brand-500: #22a06b;--brand-100: #d8f0e4;--brand-050: #f0faf5;--gray-900: #111827;--gray-800: #1f2937;--gray-700: #374151;--gray-600: #4b5563;--gray-500: #6b7280;--gray-400: #9ca3af;--gray-300: #d1d5db;--gray-200: #e5e7eb;--gray-100: #f3f4f6;--gray-050: #f9fafb;--white: #ffffff;--success-600: #16a34a;--success-100: #dcfce7;--warning-600: #d97706;--warning-100: #fef3c7;--danger-600: #dc2626;--danger-100: #fee2e2;--info-600: #0891b2;--info-100: #cffafe;--surface: var(--white);--surface-sunken: var(--gray-050);--border: var(--gray-200);--border-strong: var(--gray-300);--text: var(--gray-900);--text-muted: var(--gray-500);--font-sans: -apple-system, "Segoe UI", system-ui, Roboto, sans-serif;--font-mono: "SF Mono", "Cascadia Mono", Consolas, monospace;--radius: 8px;--radius-sm: 5px;--shadow-sm: 0 1px 3px rgba(17, 24, 39, .06);--shadow: 0 4px 16px rgba(17, 24, 39, .09);--shadow-lg: 0 16px 48px rgba(17, 24, 39, .18);--sidebar-width: 232px;--header-height: 60px}@media (prefers-color-scheme: dark){:root{--gray-900: #f3f4f6;--gray-800: #e5e7eb;--gray-700: #d1d5db;--gray-600: #9ca3af;--gray-500: #6b7280;--gray-400: #4b5563;--gray-300: #374151;--gray-200: #2a3240;--gray-100: #212936;--gray-050: #1a212c;--brand-100: #14372a;--brand-050: #12291f;--success-100: #14301f;--warning-100: #33280d;--danger-100: #331717;--info-100: #0e2b36;--surface: #1c2430;--surface-sunken: #141a23;--border: #2c3542;--border-strong: #3c4757;--text: #f3f4f6;--text-muted: #97a1b0;--shadow-sm: 0 1px 3px rgba(0, 0, 0, .4);--shadow: 0 4px 16px rgba(0, 0, 0, .5);--shadow-lg: 0 16px 48px rgba(0, 0, 0, .65);color-scheme:dark}}*,*:before,*:after{box-sizing:border-box}html,body,#root{height:100%;margin:0}body{font-family:var(--font-sans);font-size:14px;color:var(--text);background:var(--surface-sunken);-webkit-font-smoothing:antialiased}h1,h2,h3{margin:0;font-weight:600}a{color:var(--brand-600);text-decoration:none}a:hover{text-decoration:underline}code,.mono{font-family:var(--font-mono)}.shell{display:flex;height:100vh;overflow:hidden}.shell__nav{width:var(--sidebar-width);flex-shrink:0;display:flex;flex-direction:column;background:var(--surface);border-right:1px solid var(--border)}.shell__brand{display:flex;align-items:center;gap:12px;height:var(--header-height);padding:0 16px;border-bottom:1px solid var(--border)}.shell__logo{display:grid;place-items:center;flex:none;width:34px;height:34px}.shell__logo--lg{width:44px;height:44px}.shell__logo svg{display:block}.shell__title{font-size:15px;font-weight:600}.shell__subtitle{font-size:11px;color:var(--text-muted)}.shell__menu{flex:1;padding:12px 10px;overflow-y:auto}.shell__link{display:flex;align-items:center;gap:12px;padding:10px 12px;margin-bottom:2px;border-radius:var(--radius-sm);color:var(--gray-700);font-weight:500;text-decoration:none}.shell__link:hover{background:var(--gray-100);color:var(--text);text-decoration:none}.shell__link.is-active{background:var(--brand-100);color:var(--brand-600);font-weight:600}.shell__link-icon{width:20px;text-align:center;font-size:15px}.shell__user{padding:14px 16px;border-top:1px solid var(--border)}.shell__main{flex:1;min-width:0;display:flex;flex-direction:column}.shell__header{display:flex;align-items:center;gap:16px;height:var(--header-height);padding:0 24px;background:var(--surface);border-bottom:1px solid var(--border);flex-shrink:0}.shell__header h1{font-size:20px;letter-spacing:-.3px}.shell__content{flex:1;overflow:auto;padding:24px}@media (max-width: 860px){.shell__nav{width:62px}.shell__title,.shell__subtitle,.shell__link span:last-child,.shell__user{display:none}.shell__link{justify-content:center;padding:10px}}.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:8px 16px;font-family:inherit;font-size:14px;font-weight:500;color:var(--gray-800);background:var(--surface);border:1px solid var(--border-strong);border-radius:var(--radius-sm);cursor:pointer;white-space:nowrap;box-shadow:var(--shadow-sm)}.btn:hover:not(:disabled){background:var(--gray-100)}.btn:disabled{opacity:.5;cursor:not-allowed}.btn--primary{background:var(--brand-600);border-color:var(--brand-600);color:#fff}.btn--primary:hover:not(:disabled){background:var(--brand-700)}.btn--danger{background:var(--danger-600);border-color:var(--danger-600);color:#fff}.btn--danger:hover:not(:disabled){filter:brightness(.92)}.btn--ghost{background:transparent;border-color:transparent;box-shadow:none}.btn--ghost:hover:not(:disabled){background:var(--gray-100)}.btn--sm{padding:5px 11px;font-size:13px}.field{display:flex;flex-direction:column;gap:5px;margin-bottom:14px}.field__label{font-size:13px;font-weight:500;color:var(--gray-700)}.field__hint{font-size:12px;color:var(--text-muted)}.field__error{font-size:12px;color:var(--danger-600)}.input,.select,.textarea{width:100%;padding:9px 12px;font-family:inherit;font-size:14px;color:var(--text);background:var(--surface);border:1px solid var(--border-strong);border-radius:var(--radius-sm);outline:none}.input:focus,.select:focus,.textarea:focus{border-color:var(--brand-600);box-shadow:0 0 0 3px var(--brand-100)}.input--error{border-color:var(--danger-600)}.textarea{min-height:72px;resize:vertical}.checkbox{display:inline-flex;align-items:center;gap:8px;cursor:pointer}.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-sm);overflow:hidden}.card__header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 18px;border-bottom:1px solid var(--border);font-weight:600}.card__body{padding:18px}.table-wrap{overflow-x:auto}.table{width:100%;border-collapse:collapse;font-size:14px}.table thead th{padding:11px 16px;text-align:left;font-size:12px;font-weight:600;text-transform:uppercase;letter-spacing:.4px;color:var(--text-muted);background:var(--surface);border-bottom:1px solid var(--border);white-space:nowrap}.table tbody td{padding:11px 16px;border-bottom:1px solid var(--gray-100)}.table tbody tr:hover{background:var(--brand-050)}.table tbody tr.is-clickable{cursor:pointer}.table .num{text-align:right;font-variant-numeric:tabular-nums}.badge{display:inline-block;padding:3px 9px;border-radius:12px;font-size:12px;font-weight:600;white-space:nowrap}.badge--gray{background:var(--gray-200);color:var(--gray-700)}.badge--green{background:var(--success-100);color:var(--success-600)}.badge--orange{background:var(--warning-100);color:var(--warning-600)}.badge--red{background:var(--danger-100);color:var(--danger-600)}.badge--blue{background:var(--info-100);color:var(--info-600)}.stat{padding:18px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-sm)}.stat__label{font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:.4px;color:var(--text-muted)}.stat__value{margin-top:6px;font-size:28px;font-weight:650;line-height:1;font-variant-numeric:tabular-nums}.stat__hint{margin-top:6px;font-size:12px;color:var(--text-muted)}.stat--good .stat__value{color:var(--success-600)}.stat--warn .stat__value{color:var(--warning-600)}.stat--bad .stat__value{color:var(--danger-600)}.alert{padding:13px 16px;border-radius:var(--radius-sm);border-left:3px solid;font-size:14px;line-height:1.5}.alert--info{background:var(--info-100);border-color:var(--info-600);color:var(--text)}.alert--success{background:var(--success-100);border-color:var(--success-600);color:var(--text)}.alert--warning{background:var(--warning-100);border-color:var(--warning-600);color:var(--text)}.alert--error{background:var(--danger-100);border-color:var(--danger-600);color:var(--text)}.row{display:flex;align-items:center;gap:12px}.row--wrap{flex-wrap:wrap}.row--end{justify-content:flex-end}.col{display:flex;flex-direction:column;gap:16px}.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}@media (max-width: 1000px){.grid-3,.grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width: 640px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}.spacer{flex:1}.muted{color:var(--text-muted)}.small{font-size:13px}.tiny{font-size:12px}.bold{font-weight:600}.nowrap{white-space:nowrap}.center{text-align:center}.login{display:grid;place-items:center;min-height:100vh;padding:24px;background:linear-gradient(140deg,var(--brand-900) 0%,var(--brand-700) 100%)}.login__panel{width:100%;max-width:380px;background:var(--surface);border-radius:var(--radius);box-shadow:var(--shadow-lg);overflow:hidden}.login__head{display:flex;align-items:center;gap:14px;padding:22px;border-bottom:1px solid var(--border)}.login__body{padding:22px}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;display:flex;align-items:flex-start;justify-content:center;padding:40px 20px;background:#11182780;overflow-y:auto}.modal{width:100%;max-width:640px;background:var(--surface);border-radius:var(--radius);box-shadow:var(--shadow-lg);display:flex;flex-direction:column;max-height:calc(100vh - 80px)}.modal--lg{max-width:900px}.modal__header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid var(--border);font-size:16px;font-weight:600}.modal__close{width:30px;height:30px;display:grid;place-items:center;font-size:20px;background:none;border:none;border-radius:var(--radius-sm);color:var(--text-muted);cursor:pointer}.modal__close:hover{background:var(--gray-100)}.modal__body{padding:20px;overflow-y:auto;flex:1}.modal__footer{display:flex;justify-content:flex-end;gap:10px;padding:14px 20px;border-top:1px solid var(--border)}.toasts{position:fixed;right:20px;bottom:20px;z-index:2000;display:flex;flex-direction:column;gap:8px;max-width:420px}.toast{display:flex;align-items:flex-start;gap:10px;padding:13px 16px;background:var(--surface);border-left:3px solid;border-radius:var(--radius-sm);box-shadow:var(--shadow);font-size:14px;animation:toast-in .16s ease-out}@keyframes toast-in{0%{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}.toast--success{border-color:var(--success-600)}.toast--error{border-color:var(--danger-600)}.toast--info{border-color:var(--info-600)}.loading{display:flex;flex-direction:column;align-items:center;gap:12px;padding:48px;color:var(--text-muted)}.spinner{width:28px;height:28px;border:3px solid var(--border);border-top-color:var(--brand-600);border-radius:50%;animation:spin .7s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}.empty{padding:48px 24px;text-align:center;color:var(--text-muted)}.license-key{display:inline-flex;align-items:center;gap:8px;padding:5px 10px;background:var(--gray-100);border:1px solid var(--border);border-radius:var(--radius-sm);font-family:var(--font-mono);font-size:13px;font-weight:600;letter-spacing:.5px}.license-key__copy{background:none;border:none;padding:0 2px;color:var(--text-muted);cursor:pointer;font-size:13px}.license-key__copy:hover{color:var(--brand-600)}
