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

:root{
  --font:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --navy:#06183d; --navy-2:#0c2858; --navy-3:#102e62; --navy-deep:#04102c;
  --teal:#08b5c6; --teal-2:#07a2b2; --teal-soft:#e2f6f9;
  --rose:#e84d70; --rose-soft:#fdeef2;
  --amber:#d98e04; --amber-soft:#fdf3e0;
  --green:#0f8a5f; --green-soft:#e3f7ef;
  --red:#d6455a; --red-soft:#fdeaea;
  --ink:#16243a; --ink-2:#3d4f66; --muted:#718296; --muted-2:#94a3b8;
  --line:#e3e9f1; --line-2:#eef2f7;
  --bg:#f4f7fb; --surface:#ffffff;
  --sidebar-grad:linear-gradient(180deg,#0a2052 0%,#06183d 55%,#04102c 100%);
  --radius:12px; --radius-sm:8px; --radius-lg:16px;
  --shadow-sm:0 1px 2px rgba(6,24,61,.05);
  --shadow:0 2px 8px rgba(6,24,61,.06);
  --shadow-lg:0 12px 32px rgba(6,24,61,.14);
  --ring:0 0 0 3px rgba(8,181,198,.22);
  --ease:cubic-bezier(.4,0,.2,1);
  --sp:4px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--font);color:var(--ink);background:var(--bg);font-size:14px;line-height:1.5;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
h1,h2,h3,h4{color:var(--navy-2);margin:0;font-weight:700;letter-spacing:-.01em}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
button{cursor:pointer;border:0;background:none}
button:disabled{cursor:not-allowed;opacity:.55}
:focus-visible{outline:none;box-shadow:var(--ring);border-radius:6px}
.hidden{display:none!important}

/* ===================== auth ===================== */
.auth-page{min-height:100vh;display:grid;grid-template-columns:1.05fr 1fr;background:var(--surface)}
.auth-art{background:var(--sidebar-grad);color:#fff;display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,5vw,72px);position:relative;overflow:hidden}
.auth-art::before{content:"";position:absolute;inset:0;background:radial-gradient(900px 500px at -10% -10%,rgba(8,181,198,.18),transparent 60%),radial-gradient(700px 500px at 110% 110%,rgba(232,77,112,.16),transparent 55%)}
.auth-art>*{position:relative}
.welcome{font-size:12px;font-weight:800;letter-spacing:.32em;color:#7fd6e0;text-transform:uppercase}
.auth-logo{font-size:clamp(40px,6vw,62px);font-weight:900;letter-spacing:-3px;margin:14px 0 18px;line-height:1}
.auth-logo span{color:var(--teal);text-shadow:3px 0 var(--rose);display:inline-block}
.auth-art p{max-width:360px;color:#c3d3ec;font-size:15px;line-height:1.65;margin:0 0 34px}
.auth-points{display:flex;flex-direction:column;gap:12px;margin-bottom:34px}
.auth-points .pt{display:flex;align-items:center;gap:10px;color:#cfe0f5;font-size:13.5px;font-weight:500}
.auth-points .pt::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--teal);flex:none;box-shadow:0 0 0 3px rgba(8,181,198,.2)}
.auth-legal{margin-top:auto;font-size:11px;color:#7d92b5}
.auth-right{display:flex;align-items:center;justify-content:center;padding:clamp(20px,4vw,56px);background:linear-gradient(180deg,#fff,#f8fbff)}
.auth-box{width:100%;max-width:400px;animation:rise .45s var(--ease)}
@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.auth-box h1{font-size:26px;margin:0 0 4px}
.auth-sub{color:var(--muted);margin:0 0 26px;font-size:14px}
.brand-badge{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;color:var(--teal-2);background:var(--teal-soft);padding:6px 12px;border-radius:20px;margin-bottom:20px}
.field{display:block;margin-bottom:16px}
.field>span{display:flex;justify-content:space-between;font-size:12.5px;font-weight:600;color:var(--ink-2);margin-bottom:7px}
.field input,.field select,.field textarea{width:100%;padding:12px 14px;border:1.5px solid var(--line);border-radius:var(--radius-sm);font-size:14px;background:#fff;transition:border-color .15s var(--ease),box-shadow .15s var(--ease);color:var(--ink)}
.field input:focus,.field select:focus,.field textarea:focus{border-color:var(--teal);box-shadow:var(--ring);outline:none}
.field input::placeholder{color:var(--muted-2)}
.field .hint{font-size:11.5px;color:var(--muted);margin-top:6px}
.auth-help{display:flex;justify-content:space-between;align-items:center;margin:4px 0 20px;font-size:12.5px;color:var(--ink-2)}
.checkline{display:flex;align-items:center;gap:7px;cursor:pointer}
.checkline input{accent-color:var(--teal);width:15px;height:15px}
.linklike{color:var(--teal-2);font-size:12.5px;font-weight:600;padding:0}
.linklike:hover{text-decoration:underline}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:100%;background:var(--teal);border:0;color:#fff;font-weight:700;font-size:14px;padding:13px;border-radius:var(--radius-sm);transition:background .15s var(--ease),transform .1s var(--ease),box-shadow .15s var(--ease)}
.btn:hover{background:var(--teal-2)}
.btn:active{transform:translateY(1px)}
.btn.primary{background:linear-gradient(135deg,var(--teal),var(--teal-2));box-shadow:0 6px 18px rgba(8,181,198,.28)}
.btn.ghost{background:transparent;color:var(--navy-2);border:1.5px solid var(--line);font-weight:600}
.btn.ghost:hover{background:var(--bg);border-color:var(--muted-2)}
.btn.danger{background:var(--rose)}
.btn.sm{padding:8px 14px;font-size:13px;width:auto;border-radius:8px}
.btn.block{width:100%}
.auth-error{color:var(--red);font-size:13px;min-height:20px;margin:14px 0 0}
.spin{display:inline-block;width:14px;height:14px;border:2px solid rgba(255,255,255,.4);border-top-color:#fff;border-radius:50%;animation:rot .7s linear infinite}
@keyframes rot{to{transform:rotate(360deg)}}

/* ===================== app shell ===================== */
.app{min-height:100vh;display:flex}
.sidebar{width:250px;background:var(--sidebar-grad);color:#e7efff;min-height:100vh;flex:none;display:flex;flex-direction:column;position:sticky;top:0;height:100vh;z-index:60;overflow-y:auto;scrollbar-width:thin}
.brand{height:72px;display:flex;align-items:center;gap:8px;padding:0 22px;border-bottom:1px solid rgba(255,255,255,.08);font-size:23px;font-weight:900;letter-spacing:-2px;color:#fff}
.brand .orb{color:var(--teal);text-shadow:3px 0 var(--rose);font-size:28px;line-height:1}
.brand small{letter-spacing:.02em;font-size:8.5px;font-weight:600;color:#abc7d8;margin-top:15px;margin-left:-4px;text-transform:uppercase}
.nav-label{font-size:10px;font-weight:800;letter-spacing:.16em;color:#8398bb;padding:20px 22px 8px;text-transform:uppercase}
.nav{display:flex;width:100%;padding:11px 20px;color:#a8bbd9;align-items:center;gap:12px;font-weight:600;font-size:13.5px;transition:background .15s var(--ease),color .15s var(--ease);border-left:3px solid transparent}
.nav:hover{background:rgba(255,255,255,.05);color:#fff}
.nav.active{background:rgba(255,255,255,.07);color:#fff;border-left-color:var(--teal)}
.nav .icon{width:20px;text-align:center;font-size:16px;flex:none}
.sidebar-bottom{margin-top:auto;border-top:1px solid rgba(255,255,255,.08);padding:16px 20px;color:#98aed0;font-size:10.5px;line-height:1.7}

.main{flex:1;min-width:0;display:flex;flex-direction:column}
.topbar{height:68px;background:var(--surface);border-bottom:1px solid var(--line);display:flex;align-items:center;justify-content:space-between;padding:0 26px;position:sticky;top:0;z-index:40;gap:14px}
.hamburger{display:none;width:40px;height:40px;border-radius:10px;align-items:center;justify-content:center;font-size:20px;color:var(--ink-2);border:1.5px solid var(--line)}
.hamburger:hover{background:var(--bg)}
.breadcrumb{font-size:12.5px;font-weight:700;color:var(--muted);display:flex;align-items:center;gap:8px;min-width:0}
.breadcrumb .sep{color:var(--muted-2)}
.breadcrumb .current{color:var(--teal-2);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.top-actions{display:flex;align-items:center;gap:12px}
.iconbtn{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:17px;color:var(--ink-2);border:1.5px solid var(--line);background:var(--surface);position:relative}
.iconbtn:hover{background:var(--bg)}
.iconbtn .badge-dot{position:absolute;top:9px;right:10px;width:8px;height:8px;border-radius:50%;background:var(--rose);box-shadow:0 0 0 2px #fff}
.top-actions{position:relative}
.notif-badge{position:absolute;top:7px;right:7px;min-width:16px;height:16px;padding:0 4px;border-radius:9px;background:var(--rose);color:#fff;font-size:10px;font-weight:800;display:none;align-items:center;justify-content:center;box-shadow:0 0 0 2px #fff}
.notif-panel{position:absolute;top:52px;right:0;width:340px;max-width:88vw;background:var(--surface);border:1.5px solid var(--line);border-radius:12px;box-shadow:var(--shadow-lg);z-index:120;max-height:420px;overflow-y:auto}
.notif-head{display:flex;justify-content:space-between;align-items:center;padding:12px 14px;border-bottom:1px solid var(--line);position:sticky;top:0;background:var(--surface)}
.notif-item{padding:12px 14px;border-bottom:1px solid var(--line-2);cursor:pointer}
.notif-item:hover{background:var(--bg)}
.notif-item.unread{background:var(--teal-soft)}
.notif-item .nt{display:flex;align-items:center;gap:8px;justify-content:space-between}
.modal-overlay{position:fixed;inset:0;background:rgba(6,24,61,.55);backdrop-filter:blur(2px);z-index:400;display:flex;align-items:center;justify-content:center;padding:20px}
.modal{background:var(--surface);border-radius:14px;width:100%;max-width:440px;max-height:88vh;display:flex;flex-direction:column;box-shadow:var(--shadow-lg);animation:rise .2s var(--ease)}
.modal-wide{max-width:720px}
.modal-head{display:flex;justify-content:space-between;align-items:center;padding:16px 20px;border-bottom:1px solid var(--line)}
.modal-head h3{margin:0;font-size:16px}
.modal-x{width:32px;height:32px;border-radius:8px;font-size:20px;color:var(--muted);display:flex;align-items:center;justify-content:center;flex:none}
.modal-x:hover{background:var(--bg)}
.modal-body{padding:18px 20px;overflow-y:auto}
.modal-actions{display:flex;justify-content:flex-end;gap:10px;padding:14px 20px;border-top:1px solid var(--line)}
.modal-actions .btn{width:auto;padding:10px 18px}
.modal-foot{padding:10px 20px;border-top:1px solid var(--line);font-size:11.5px;color:var(--muted)}
.tooltip{position:fixed;background:#0c1f3f;color:#fff;padding:6px 10px;border-radius:6px;font-size:11.5px;font-weight:600;z-index:500;pointer-events:none;opacity:0;transition:opacity .12s;max-width:280px;box-shadow:var(--shadow)}
.tooltip.show{opacity:1}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.check-grid{display:grid;grid-template-columns:1fr 1fr;gap:6px;margin-top:4px}
.chk{display:flex;align-items:center;gap:7px;font-size:13px;font-weight:500;color:#374151;cursor:pointer}
.notice{border-radius:10px;padding:14px;margin-top:14px;font-size:13.5px}
.notice.ok{background:#eafaf1;border:1px solid #b8ecd0;color:#0f7a3d}
.notice.err{background:#fdeef1;border:1px solid #f5c2ce;color:#b02448}
.notice .code{font-family:ui-monospace,Menlo,monospace;font-weight:800;word-break:break-all}
.wording{background:#f8fafd;border:1px solid var(--line);border-radius:10px;padding:14px;font-size:12.5px;color:#374151;white-space:pre-line}
.nowrap{white-space:nowrap}
.userchip{display:flex;align-items:center;gap:10px;background:var(--bg);border:1.5px solid var(--line);border-radius:12px;padding:6px 8px 6px 6px}
.avatar{width:34px;height:34px;border-radius:50%;background:linear-gradient(135deg,var(--teal),var(--navy-2));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:14px;flex:none}
.user-meta{display:flex;flex-direction:column;line-height:1.25;max-width:150px}
.user-meta b{font-weight:700;font-size:12.5px;color:var(--ink);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.user-meta span{font-size:10.5px;color:var(--muted)}
.userchip .iconbtn{width:30px;height:30px;border:0;font-size:15px}

.workspace{padding:28px;flex:1;width:100%;max-width:1400px;margin:0 auto}
.page-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:22px;flex-wrap:wrap}
.page-head h1{font-size:22px}
.page-head .sub{color:var(--muted);font-size:13.5px;margin-top:3px}
.page-actions{display:flex;gap:10px;flex-wrap:wrap}

/* cards / grids */
.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.card{background:var(--surface);border:1.5px solid var(--line);border-radius:var(--radius);padding:20px;box-shadow:var(--shadow-sm);transition:box-shadow .2s var(--ease),transform .2s var(--ease)}
.card:hover{box-shadow:var(--shadow)}
.card.pad-lg{padding:24px}
.card-head{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.card-head h2{font-size:15px}
.card-head h3{font-size:14px}
.stat-card{display:flex;flex-direction:column;gap:4px;position:relative;overflow:hidden}
.stat-card .stat-icon{position:absolute;top:14px;right:14px;width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:18px;background:var(--teal-soft);color:var(--teal-2)}
.stat-label{font-size:11.5px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--muted)}
.stat-value{font-size:26px;font-weight:800;color:var(--navy-2);letter-spacing:-.02em;line-height:1.1}
.stat-sub{font-size:12px;color:var(--muted)}

/* pills / badges */
.pill{display:inline-flex;align-items:center;gap:5px;font-size:11.5px;font-weight:700;padding:4px 10px;border-radius:20px;text-transform:capitalize;white-space:nowrap}
.pill.ok{background:var(--green-soft);color:var(--green)}
.pill.bad{background:var(--red-soft);color:var(--red)}
.pill.warn{background:var(--amber-soft);color:var(--amber)}
.pill.unknown,.pill.neutral{background:#eef2f7;color:var(--muted)}
.pill.teal{background:var(--teal-soft);color:var(--teal-2)}
.pill.rose{background:var(--rose-soft);color:var(--rose)}
.pill .dot{width:6px;height:6px;border-radius:50%;background:currentColor}

/* table */
.table-wrap{overflow-x:auto;border-radius:var(--radius-sm);border:1.5px solid var(--line)}
table{width:100%;border-collapse:collapse;font-size:13px;min-width:640px}
thead th{background:var(--bg);text-align:left;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase;color:var(--muted);padding:12px 14px;border-bottom:1.5px solid var(--line);white-space:nowrap}
tbody td{padding:13px 14px;border-bottom:1px solid var(--line-2);color:var(--ink-2);vertical-align:middle}
tbody tr:last-child td{border-bottom:0}
tbody tr{transition:background .12s}
tbody tr:hover{background:#f8fafd}
td .strong{font-weight:600;color:var(--ink)}

/* forms / toolbar */
.toolbar{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:18px}
.toolbar .field{margin:0;flex:1;min-width:150px}
.toolbar .field input,.toolbar .field select{padding:10px 12px;font-size:13px}
.searchbox{position:relative}
.searchbox input{padding-left:36px!important}
.searchbox::before{content:"⌕";position:absolute;left:12px;top:50%;transform:translateY(-50%);color:var(--muted-2);font-size:15px}

/* provider cards */
.provider-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(210px,1fr));gap:14px}
.provider-card{display:flex;flex-direction:column;gap:10px;padding:16px;border:1.5px solid var(--line);border-radius:var(--radius);background:var(--surface);transition:box-shadow .2s var(--ease)}
.provider-card:hover{box-shadow:var(--shadow)}
.provider-card .pname{font-weight:700;color:var(--ink);font-size:13.5px}
.provider-card .pmeta{font-size:11.5px;color:var(--muted);display:flex;justify-content:space-between;align-items:center}

/* result blocks */
.result-block{border:1.5px solid var(--line);border-radius:var(--radius-sm);padding:14px;background:var(--surface);margin-bottom:12px}
.result-head{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:10px}
.result-json{background:#0c1f3f;color:#c9d8f0;font:11.5px/1.55 ui-monospace,SFMono-Regular,Menlo,monospace;padding:14px;border-radius:8px;overflow:auto;max-height:320px;margin:0;white-space:pre-wrap;word-break:break-word}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:11.5px}

/* upload */
.upload-zone{display:flex;gap:12px;align-items:center;margin-top:14px;flex-wrap:wrap}
.dropzone{border:2px dashed var(--line);border-radius:var(--radius);padding:36px 20px;text-align:center;color:var(--muted);cursor:pointer;transition:border-color .2s,background .2s;background:var(--bg)}
.dropzone:hover,.dropzone.drag{border-color:var(--teal);background:var(--teal-soft)}
.dropzone .dz-icon{font-size:30px;display:block;margin-bottom:8px}
.upload-list{display:flex;flex-direction:column;gap:8px}
.file-row{display:flex;align-items:center;gap:12px;padding:12px 14px;border:1.5px solid var(--line);border-radius:var(--radius-sm);background:var(--surface)}
.file-row .fname{font-weight:600;color:var(--ink);font-size:13px;flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.file-row .fsize{font-size:11.5px;color:var(--muted)}

/* empty / loading */
.empty{text-align:center;padding:40px 20px;color:var(--muted)}
.empty .eicon{font-size:34px;display:block;margin-bottom:10px}
.spinner{color:var(--muted);font-size:13px;padding:16px 0;text-align:center}
.skeleton{background:linear-gradient(90deg,#eef2f7 25%,#e3e9f1 37%,#eef2f7 63%);background-size:400% 100%;animation:sk 1.4s ease infinite;border-radius:8px;height:14px}
@keyframes sk{0%{background-position:100% 0}100%{background-position:-100% 0}}

/* toast */
.toast-wrap{position:fixed;bottom:22px;right:22px;z-index:200;display:flex;flex-direction:column;gap:10px}
.toast{display:flex;align-items:center;gap:10px;background:var(--navy);color:#fff;padding:13px 16px;border-radius:12px;font-size:13.5px;box-shadow:var(--shadow-lg);animation:rise .3s var(--ease);max-width:340px}
.toast.ok{border-left:3px solid var(--green)}
.toast.err{border-left:3px solid var(--rose)}
.toast .ticon{font-size:16px}

/* footer */
.footer{padding:16px 28px;border-top:1px solid var(--line);font-size:11.5px;color:var(--muted);background:var(--surface)}
.footer strong{color:var(--navy-2)}

/* mobile backdrop */
.mobile-backdrop{display:none;position:fixed;inset:0;background:rgba(6,24,61,.5);backdrop-filter:blur(2px);z-index:55}

/* utilities + tabs */
.muted{color:var(--muted)}
.btn .arrow{margin-left:2px}
.tabs{display:flex;gap:6px;margin-bottom:16px;border-bottom:1.5px solid var(--line);overflow-x:auto}
.tab{padding:10px 16px;font-size:13px;font-weight:600;color:var(--muted);border-bottom:2.5px solid transparent;white-space:nowrap}
.tab:hover{color:var(--ink)}
.tab.active{color:var(--teal-2);border-bottom-color:var(--teal)}
.seg{display:inline-flex;background:var(--bg);border:1.5px solid var(--line);border-radius:10px;padding:3px;gap:2px;overflow-x:auto;max-width:100%}
.seg button{padding:8px 14px;font-size:12.5px;font-weight:600;color:var(--muted);border-radius:8px;white-space:nowrap;transition:color .15s,background .15s}
.seg button:hover{color:var(--ink)}
.seg button.active{background:var(--surface);color:var(--navy-2);box-shadow:var(--shadow-sm)}
.cl{fill:var(--muted-2);font-size:10px;font-weight:600}
.chips{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px}
.chip{background:var(--bg);border:1.5px solid var(--line);border-radius:20px;padding:6px 14px;font-size:12.5px;font-weight:600;color:var(--ink-2);cursor:pointer;transition:border-color .15s,color .15s}
.chip:hover{border-color:var(--teal);color:var(--teal-2)}
.clickable{cursor:pointer}
.stepper{display:flex;gap:4px;flex-wrap:wrap;margin:12px 0}
.step{display:flex;align-items:center;gap:8px;font-size:12px;color:var(--muted);flex:1;min-width:90px}
.step .dot{width:24px;height:24px;border-radius:50%;border:2px solid var(--line);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:11px;flex:none;background:var(--surface)}
.step.current .dot{background:var(--teal);border-color:var(--teal);color:#fff}
.step.done .dot{background:var(--teal-soft);border-color:var(--teal);color:var(--teal-2)}
.step.current{color:var(--ink);font-weight:700}
.tl-row{border-left:2px solid var(--line);padding:6px 0 10px 14px;margin-left:6px}

/* ===================== responsive ===================== */
@media(max-width:1080px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:820px){
  .sidebar{position:fixed;left:0;top:0;transform:translateX(-100%);transition:transform .25s var(--ease);width:270px}
  .sidebar.open{transform:translateX(0)}
  .mobile-backdrop.show{display:block}
  .hamburger{display:flex}
  .topbar{padding:0 16px}
  .workspace{padding:18px 16px}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .user-meta{display:none}
  .page-head h1{font-size:19px}
  /* responsive tables -> cards */
  .table-wrap{border:0}
  .table-wrap table,.table-wrap thead,.table-wrap tbody,.table-wrap tr,.table-wrap td{display:block}
  .table-wrap thead{display:none}
  .table-wrap table{min-width:0}
  .table-wrap tr{border:1.5px solid var(--line);border-radius:var(--radius);padding:8px 14px;margin-bottom:10px;background:var(--surface)}
  .table-wrap td{border:0;padding:9px 0;display:flex;justify-content:space-between;align-items:center;gap:12px;text-align:right}
  .table-wrap td::before{content:attr(data-label);font-weight:700;font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted);text-align:left;flex:none}
  .table-wrap td .pill{margin-left:auto}
  .provider-grid{grid-template-columns:repeat(2,1fr)}
  .toast-wrap{left:16px;right:16px;bottom:16px}
  .toast{max-width:none}
}
@media(max-width:700px){
  .auth-page{grid-template-columns:1fr}
  .auth-art{min-height:auto;padding:28px 22px}
  .auth-points{display:none}
  .auth-logo{font-size:40px}
  .auth-right{padding:24px 20px}
}
@media(max-width:420px){
  .provider-grid{grid-template-columns:1fr}
  .stat-value{font-size:22px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001s!important;transition-duration:.001s!important}
}
