:root {
  --navy-950: #071827;
  --navy-900: #0a2136;
  --navy-800: #12334f;
  --cyan-500: #16c6ca;
  --cyan-600: #0ca8ad;
  --cyan-050: #e8fbfb;
  --blue-500: #3b82f6;
  --green-500: #18a36b;
  --amber-500: #e9a23b;
  --red-500: #e25555;
  --slate-900: #172638;
  --slate-700: #42546a;
  --slate-500: #718197;
  --slate-300: #cbd4de;
  --slate-200: #dfe5eb;
  --slate-100: #edf1f4;
  --slate-050: #f6f8fa;
  --white: #fff;
  --shadow-sm: 0 4px 16px rgba(12, 37, 59, .06);
  --shadow-md: 0 18px 45px rgba(10, 33, 54, .12);
  --radius: 14px;
  --sidebar: 232px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--slate-050); color: var(--slate-900); font-family: var(--font); }
body { margin: 0; min-width: 1180px; background: var(--slate-050); }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 9999; background: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.app-shell { display: grid; grid-template-columns: var(--sidebar) 1fr; min-height: 100vh; }
.sidebar { position: fixed; inset: 0 auto 0 0; width: var(--sidebar); display: flex; flex-direction: column; padding: 26px 18px 20px; color: #dfeaf3; background: linear-gradient(180deg, var(--navy-950), var(--navy-900) 70%, #0d2940); z-index: 10; }
.brand { display: flex; flex-direction: column; gap: 12px; padding: 0 10px 26px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand img { width: 156px; height: auto; object-fit: contain; object-position: left center; }
.brand span { width: max-content; padding: 4px 9px; color: #c6f9fa; border: 1px solid rgba(22,198,202,.35); border-radius: 999px; font-size: 11px; letter-spacing: .16em; }
.nav-list { display: flex; flex-direction: column; gap: 7px; margin-top: 24px; }
.nav-item { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; min-height: 46px; padding: 0 13px; color: #aebdca; border-radius: 10px; font-size: 14px; transition: .18s ease; }
.nav-item:hover:not(.disabled), .nav-item.active { color: white; background: rgba(22,198,202,.13); }
.nav-item.active { box-shadow: inset 3px 0 0 var(--cyan-500); }
.nav-icon { display: grid; place-items: center; width: 22px; height: 22px; color: var(--cyan-500); font-size: 17px; font-weight: 800; }
.nav-item small { color: #748b9e; font-size: 10px; }
.nav-item.disabled { opacity: .58; cursor: not-allowed; }
.sidebar-foot { margin-top: auto; padding: 15px 12px 2px; border-top: 1px solid rgba(255,255,255,.1); }
.source-status { display: flex; align-items: center; gap: 8px; color: #e5f6f7; font-size: 12px; font-weight: 650; }
.source-status span { width: 8px; height: 8px; background: var(--green-500); border-radius: 50%; box-shadow: 0 0 0 4px rgba(24,163,107,.15); }
.sidebar-foot p { margin: 7px 0 0; color: #758c9f; font-size: 10px; }

.workspace { grid-column: 2; min-height: 100vh; }
.topbar { height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--slate-200); }
.topbar h1 { margin: 1px 0 0; font-size: 23px; letter-spacing: -.02em; }
.eyebrow, .section-kicker { margin: 0; color: var(--cyan-600); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.role-chip { display: flex; align-items: center; gap: 10px; padding: 5px 10px 5px 6px; background: var(--slate-050); border: 1px solid var(--slate-200); border-radius: 12px; font-size: 12px; font-weight: 650; }
.role-chip small { display: block; margin-bottom: 2px; color: var(--slate-500); font-size: 9px; font-weight: 550; }
.avatar { display: grid; place-items: center; width: 34px; height: 34px; color: var(--navy-950); background: linear-gradient(135deg, #c5f5f6, var(--cyan-500)); border-radius: 9px; font-weight: 800; }
.icon-button { width: 38px; height: 38px; border: 1px solid var(--slate-200); border-radius: 10px; color: var(--slate-700); background: white; cursor: pointer; }
.icon-button:hover { color: var(--red-500); border-color: #f0bcbc; }
.readonly-banner { display: flex; align-items: center; gap: 18px; min-height: 38px; padding: 8px 32px; color: #d8eaef; background: #112f47; font-size: 11px; }
.readonly-banner strong { color: var(--navy-950); background: var(--cyan-500); padding: 4px 8px; border-radius: 5px; letter-spacing: .05em; }
.readonly-banner span:not(.banner-note)::before { content: "✓"; margin-right: 6px; color: var(--cyan-500); font-weight: 800; }
.banner-note { margin-left: auto; color: #8aa2b4; }
.content { padding: 28px 32px 44px; }

.message-stack { position: fixed; top: 95px; right: 26px; z-index: 50; display: grid; gap: 8px; width: 360px; }
.message { padding: 12px 15px; color: #185c43; background: #e8f8f1; border: 1px solid #b9e5d2; border-radius: 10px; box-shadow: var(--shadow-sm); font-size: 13px; }
.message.error { color: #913838; background: #fff0f0; border-color: #f0caca; }

.page-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 22px; }
.page-heading h2 { margin: 7px 0 7px; color: var(--navy-950); font-size: 28px; letter-spacing: -.035em; }
.page-heading p:not(.section-kicker) { margin: 0; max-width: 780px; color: var(--slate-500); font-size: 13px; line-height: 1.7; }
.compact-heading { margin-bottom: 18px; }
.compact-heading h2 { font-size: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 38px; padding: 0 16px; border: 1px solid transparent; border-radius: 9px; font-size: 12px; font-weight: 700; cursor: pointer; }
.button.primary { color: var(--navy-950); background: var(--cyan-500); }
.button.primary:hover { background: #20d6da; box-shadow: 0 7px 18px rgba(22,198,202,.22); }
.button.secondary { color: var(--navy-900); background: var(--cyan-050); border-color: #b5ecee; }
.button.ghost { color: var(--slate-700); background: white; border-color: var(--slate-200); }
.button.full { width: 100%; }
.text-link, .row-action { color: var(--cyan-600); font-size: 12px; font-weight: 750; }
.row-action { white-space: nowrap; }

.metric-grid { display: grid; grid-template-columns: repeat(6, minmax(150px, 1fr)); gap: 12px; margin-bottom: 18px; }
.metric-card { position: relative; overflow: hidden; min-height: 125px; padding: 18px 17px; background: white; border: 1px solid var(--slate-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.metric-card::before { content: ""; position: absolute; left: 0; top: 18px; width: 3px; height: 38px; border-radius: 0 4px 4px 0; background: var(--accent); }
.metric-card::after { content: ""; position: absolute; right: -18px; top: -24px; width: 82px; height: 82px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 9%, white); }
.metric-card strong { display: block; margin: 10px 0 5px; color: var(--navy-950); font-size: 31px; line-height: 1; }
.metric-card small { color: var(--slate-500); font-size: 9px; line-height: 1.45; }
.metric-label { color: var(--slate-700); font-size: 11px; font-weight: 650; }
.accent-cyan { --accent: var(--cyan-500); }.accent-blue { --accent: var(--blue-500); }.accent-amber { --accent: var(--amber-500); }.accent-red { --accent: var(--red-500); }.accent-green { --accent: var(--green-500); }.accent-slate { --accent: #64748b; }

.panel { background: white; border: 1px solid var(--slate-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 70px; padding: 16px 20px; border-bottom: 1px solid var(--slate-100); }
.panel-head h3 { margin: 4px 0 0; color: var(--navy-950); font-size: 16px; }
.dashboard-grid, .detail-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr); gap: 18px; }
.span-2 { min-width: 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 11px; }
th { padding: 12px 14px; color: var(--slate-500); background: #fbfcfd; border-bottom: 1px solid var(--slate-200); text-align: left; font-size: 9px; letter-spacing: .05em; white-space: nowrap; }
td { padding: 14px; border-bottom: 1px solid var(--slate-100); color: var(--slate-700); vertical-align: middle; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fbfefe; }
td strong { color: var(--slate-900); font-size: 11px; }
.order-link { color: var(--navy-900); font-weight: 780; }
.order-link:hover { color: var(--cyan-600); }
.subline { display: block; margin-top: 4px; color: var(--slate-500); font-size: 9px; font-weight: 500; }
.mono { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.empty { padding: 38px; text-align: center; color: var(--slate-500); }
.progress-cell { display: flex; align-items: center; gap: 8px; min-width: 105px; }
.progress-cell.wide { min-width: 145px; }
.progress-track { flex: 1; height: 6px; overflow: hidden; background: var(--slate-100); border-radius: 999px; }
.progress-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan-600), var(--cyan-500)); border-radius: inherit; }
.progress-cell b, .step-progress b { min-width: 32px; color: var(--slate-700); font-size: 9px; }
.status-pill, .risk-badge, .data-chip, .severity-label { display: inline-flex; align-items: center; justify-content: center; width: max-content; min-height: 23px; padding: 0 8px; border-radius: 999px; font-size: 9px; font-weight: 750; white-space: nowrap; }
.status-pill.compact { min-height: 20px; padding: 0 7px; font-size: 8px; }
.status-pill.large { min-height: 32px; padding: 0 14px; font-size: 11px; }
.status-waiting, .status-open { color: #a46b13; background: #fff4df; }
.status-in_progress, .status-processing, .status-current { color: #1762a8; background: #e8f3ff; }
.status-completed, .status-closed, .status-done { color: #11734b; background: #e6f7ef; }
.status-inspection { color: #7446a8; background: #f1eaff; }
.status-on_hold { color: #9b3c3c; background: #feecec; }
.risk-badge.danger { color: #9c3737; background: #feeeee; }.risk-badge.warning { color: #966118; background: #fff3dc; }.risk-badge.success { color: #14704a; background: #e7f7ef; }.risk-badge.neutral { color: #536678; background: #edf2f5; }
.data-chip { color: #287178; background: var(--cyan-050); border: 1px solid #c8eeee; }
.text-amber { color: #b7781b !important; }.text-red { color: var(--red-500) !important; }

.exception-feed { padding: 5px 18px 10px; }
.feed-item { display: grid; grid-template-columns: 10px 1fr 12px; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--slate-100); }
.feed-item:last-child { border-bottom: 0; }
.feed-item strong { display: block; color: var(--slate-900); font-size: 11px; }
.feed-item small { display: block; margin-top: 3px; color: var(--slate-500); font-size: 9px; }
.severity-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber-500); }
.severity-dot.severity-high { background: var(--red-500); }.severity-dot.severity-low { background: var(--green-500); }
.exception-feed + .button { width: calc(100% - 36px); margin: 0 18px 18px; }
.empty-state { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 95px; color: var(--slate-500); font-size: 11px; }
.empty-state span { display: grid; place-items: center; width: 28px; height: 28px; color: var(--green-500); background: #eaf7f1; border-radius: 50%; }
.empty-state.compact { min-height: 120px; flex-direction: column; }
.evidence-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; overflow: hidden; background: var(--slate-200); border: 1px solid var(--slate-200); border-radius: 12px; }
.evidence-strip > div { display: flex; align-items: center; gap: 11px; padding: 14px 17px; background: white; }
.evidence-strip p { margin: 0; color: var(--slate-500); font-size: 10px; }
.evidence-strip strong { display: block; margin-bottom: 2px; color: var(--slate-900); font-size: 11px; }
.evidence-icon { display: grid; place-items: center; flex: 0 0 auto; width: 27px; height: 27px; color: #14704a; background: #e7f7ef; border-radius: 8px; font-weight: 800; }
.evidence-icon.pending { color: #966118; background: #fff3dc; }

.filter-bar { display: flex; align-items: end; gap: 10px; margin-bottom: 16px; padding: 13px; background: white; border: 1px solid var(--slate-200); border-radius: 12px; }
.filter-bar label { display: grid; gap: 5px; min-width: 150px; color: var(--slate-500); font-size: 9px; font-weight: 650; }
.filter-bar .search-field { position: relative; flex: 1; min-width: 260px; }
.search-field > span[aria-hidden] { position: absolute; left: 11px; bottom: 10px; color: var(--slate-500); font-size: 16px; }
input, select, textarea { width: 100%; color: var(--slate-900); background: white; border: 1px solid var(--slate-300); border-radius: 8px; outline: none; }
input, select { height: 36px; padding: 0 10px; }
textarea { padding: 10px; resize: vertical; line-height: 1.55; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan-600); box-shadow: 0 0 0 3px rgba(22,198,202,.12); }
.search-field input { padding-left: 34px; }
.order-table table { min-width: 1120px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; margin: -4px 0 15px; color: var(--slate-500); font-size: 10px; }
.breadcrumb a { color: var(--cyan-600); font-weight: 700; }
.order-hero, .exception-hero { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 18px; padding: 20px 24px; color: white; background: linear-gradient(112deg, var(--navy-950), #113c5c); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.order-hero h2, .exception-hero h2 { margin: 0; font-size: 23px; }
.order-hero p, .exception-hero p { margin: 7px 0 0; color: #a8becd; font-size: 10px; }
.title-line { display: flex; align-items: center; gap: 11px; }
.hero-progress { display: flex; align-items: center; gap: 11px; }
.hero-progress p { margin: 0; width: 55px; line-height: 1.45; }
.progress-ring { --size: 58px; display: grid; place-items: center; width: var(--size); height: var(--size); background: conic-gradient(var(--cyan-500) calc(var(--progress) * 1%), rgba(255,255,255,.13) 0); border-radius: 50%; }
.progress-ring::before { content: ""; grid-area: 1/1; width: 44px; height: 44px; background: var(--navy-900); border-radius: 50%; }
.progress-ring span { grid-area: 1/1; z-index: 1; font-size: 11px; font-weight: 800; }
.detail-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 18px 20px; }
.detail-list > div { padding: 5px 15px; border-right: 1px solid var(--slate-100); }
.detail-list > div:first-child { padding-left: 0; }.detail-list > div:nth-child(4n) { border-right: 0; }
.detail-list dt { margin-bottom: 7px; color: var(--slate-500); font-size: 9px; }
.detail-list dd { margin: 0; color: var(--slate-900); font-size: 11px; font-weight: 700; }
.work-order-details { grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--slate-100); }
.work-order-details > div:nth-child(3n) { border-right: 0; }
.work-order-tabs { display: flex; gap: 6px; padding: 0 20px 15px; }
.work-order-tabs a { padding: 7px 10px; color: var(--slate-500); background: var(--slate-050); border-radius: 7px; font-size: 9px; }
.work-order-tabs a.active { color: var(--navy-900); background: var(--cyan-050); font-weight: 750; }
.check-list { display: grid; gap: 2px; margin: 0; padding: 12px 18px 17px; list-style: none; }
.check-list li { display: grid; grid-template-columns: 25px 1fr; gap: 9px; padding: 10px 0; border-bottom: 1px solid var(--slate-100); }
.check-list li:last-child { border-bottom: 0; }
.check-list li > span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; font-size: 10px; font-weight: 800; }
.check-list .ok > span { color: #14704a; background: #e7f7ef; }.check-list .pending > span { color: #966118; background: #fff3dc; }
.check-list p { margin: 0; color: var(--slate-500); font-size: 9px; line-height: 1.5; }
.check-list strong { display: block; color: var(--slate-900); font-size: 10px; }
.process-panel { margin-top: 18px; }
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 10px; padding: 18px; }
.process-step { position: relative; padding-top: 12px; }
.process-step::before { content: ""; position: absolute; left: 18px; right: -18px; top: 25px; height: 2px; background: var(--slate-200); }
.process-step:last-child::before { display: none; }
.step-marker { position: relative; z-index: 2; display: grid; place-items: center; width: 30px; height: 30px; margin: 0 0 -5px 7px; color: var(--slate-500); background: white; border: 2px solid var(--slate-300); border-radius: 50%; font-size: 9px; font-weight: 800; }
.process-step.done .step-marker { color: white; background: var(--green-500); border-color: var(--green-500); }
.process-step.current .step-marker { color: var(--navy-950); background: var(--cyan-500); border-color: var(--cyan-500); box-shadow: 0 0 0 5px rgba(22,198,202,.12); }
.step-card { min-height: 155px; padding: 21px 12px 12px; background: var(--slate-050); border: 1px solid var(--slate-200); border-radius: 10px; }
.step-card > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 7px; }
.step-card strong { font-size: 10px; }
.step-progress { display: flex; align-items: center; gap: 7px; margin: 13px 0; }
.step-card dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 0; }
.step-card dl > div { min-width: 0; }
.step-card dt { color: var(--slate-500); font-size: 7px; }.step-card dd { margin: 3px 0 0; color: var(--slate-900); font-size: 8px; font-weight: 700; }
.source-ref { display: block; margin-top: 9px; overflow: hidden; color: var(--slate-500); font-family: monospace; font-size: 7px; text-overflow: ellipsis; white-space: nowrap; }
.exception-section { margin-top: 18px; }
.exception-list { padding: 5px 18px 14px; }
.exception-row { display: grid; grid-template-columns: 52px 1fr auto 15px; align-items: center; gap: 11px; padding: 12px 0; border-bottom: 1px solid var(--slate-100); }
.exception-row:last-child { border-bottom: 0; }
.exception-row strong { display: block; color: var(--slate-900); font-size: 11px; }.exception-row small { display: block; margin-top: 3px; color: var(--slate-500); font-size: 8px; }
.severity-label { min-width: 40px; border-radius: 6px; }.severity-bg-high { color: #a63f3f; background: #feecec; }.severity-bg-medium { color: #9b6819; background: #fff3dc; }.severity-bg-low { color: #14704a; background: #e7f7ef; }
.stack-form { display: grid; gap: 12px; }
.form-panel .stack-form, .action-panel .stack-form { padding: 16px 18px 19px; }
.stack-form label { display: grid; gap: 6px; color: var(--slate-700); font-size: 9px; font-weight: 650; }
.stack-form label small { color: var(--slate-500); font-weight: 400; }
.permission-note { margin: 18px; padding: 16px; color: var(--slate-500); background: var(--slate-050); border: 1px dashed var(--slate-300); border-radius: 10px; font-size: 10px; line-height: 1.6; }
.permission-note span { display: inline-block; margin-bottom: 6px; padding: 3px 7px; color: #536678; background: #e8edf1; border-radius: 5px; font-weight: 800; }
.permission-note p { margin: 0; }

.summary-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 15px; }
.summary-tabs a { display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 0 17px; background: white; border: 1px solid var(--slate-200); border-radius: 11px; }
.summary-tabs a.active { border-color: var(--cyan-500); box-shadow: inset 0 -3px 0 var(--cyan-500); }
.summary-tabs span { color: var(--slate-500); font-size: 10px; }.summary-tabs strong { color: var(--navy-950); font-size: 21px; }
.exception-hero { color: var(--slate-900); background: white; border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm); }
.exception-hero p { color: var(--slate-500); }
.severity-border-high { border-left: 4px solid var(--red-500); }.severity-border-medium { border-left: 4px solid var(--amber-500); }.severity-border-low { border-left: 4px solid var(--green-500); }
.narrative, .resolution { margin: 0 20px 20px; padding: 16px; background: var(--slate-050); border-radius: 10px; }
.narrative h4, .resolution h4 { margin: 0 0 7px; font-size: 11px; }.narrative p, .resolution p { margin: 0; color: var(--slate-700); font-size: 11px; line-height: 1.7; }
.resolution { background: #eaf8f2; border: 1px solid #c9eadc; }.resolution small { display: block; margin-top: 8px; color: #428066; font-size: 8px; }
.audit-panel { margin-top: 18px; }
.audit-timeline { margin: 0; padding: 18px 25px 24px 34px; list-style: none; }
.audit-timeline li { position: relative; display: grid; grid-template-columns: 17px 1fr; gap: 12px; padding-bottom: 19px; }
.audit-timeline li:not(:last-child)::before { content: ""; position: absolute; left: 6px; top: 14px; bottom: 0; width: 1px; background: var(--slate-200); }
.audit-marker { position: relative; z-index: 1; width: 13px; height: 13px; margin-top: 2px; background: var(--cyan-500); border: 3px solid #dff9fa; border-radius: 50%; }
.audit-timeline strong { font-size: 10px; }.audit-timeline p { margin: 4px 0; color: var(--slate-700); font-size: 10px; }.audit-timeline small { color: var(--slate-500); font-size: 8px; }

.login-body { min-width: 960px; min-height: 100vh; display: grid; place-items: center; padding: 30px; background: radial-gradient(circle at 72% 14%, rgba(22,198,202,.12), transparent 30%), var(--slate-050); }
.login-shell { display: grid; grid-template-columns: 1.35fr 1fr; width: min(1040px, 100%); min-height: 620px; overflow: hidden; background: white; border-radius: 20px; box-shadow: 0 30px 75px rgba(8,32,52,.18); }
.login-brand { position: relative; overflow: hidden; display: flex; flex-direction: column; padding: 46px 52px; color: white; background: linear-gradient(145deg, var(--navy-950), #0d3857); }
.login-brand::after { content: ""; position: absolute; right: -115px; bottom: -95px; width: 360px; height: 360px; border: 1px solid rgba(22,198,202,.35); border-radius: 50%; box-shadow: 0 0 0 50px rgba(22,198,202,.035), 0 0 0 100px rgba(22,198,202,.02); }
.login-brand img { position: relative; z-index: 1; width: 184px; }
.login-brand > div { position: relative; z-index: 1; margin-top: 92px; }
.login-brand > div p { margin: 0 0 14px; color: var(--cyan-500); font-size: 10px; font-weight: 750; letter-spacing: .18em; }
.login-brand h1 { margin: 0 0 16px; font-size: 34px; line-height: 1.35; letter-spacing: -.04em; }
.login-brand > div span { color: #9eb4c4; font-size: 10px; }
.login-brand ul { position: relative; z-index: 1; display: flex; gap: 20px; margin: auto 0 0; padding: 0; list-style: none; }
.login-brand li { display: grid; gap: 5px; color: #abc0ce; font-size: 9px; }.login-brand li b { color: var(--cyan-500); font-size: 16px; }
.login-panel { display: flex; flex-direction: column; justify-content: center; padding: 55px 52px; }
.login-panel h2 { margin: 7px 0; color: var(--navy-950); font-size: 25px; }.login-panel > div > p:not(.section-kicker) { margin: 0; color: var(--slate-500); font-size: 11px; }
.login-form { margin-top: 28px; }.login-form input { height: 42px; }.login-form .button { min-height: 43px; margin-top: 5px; }
.login-foot { margin: 28px 0 0; padding-top: 17px; color: var(--slate-500); border-top: 1px solid var(--slate-100); font-size: 9px; line-height: 1.6; }

@media (max-width: 1280px) {
  :root { --sidebar: 210px; }
  .content, .topbar { padding-left: 24px; padding-right: 24px; }
  .metric-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

