/* Sources Admin — design_handoff_sources_admin. Light editorial grammar:
   canvas var(--admin-canvas, #eceef1), ink var(--go-ink, #101418), hairlines, 2px spines, dot+label statuses. */

.sa-body { margin: 0; background: var(--admin-canvas, #eceef1); color: var(--go-ink, #101418);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased; }
.sa-body a { color: var(--go-ink, #101418); text-decoration: none; }
.sa-flex { flex: 1; }

@keyframes saLiveRing { 0% { transform: scale(0.6); opacity: 0.8; } 70%, 100% { transform: scale(2); opacity: 0; } }
@keyframes saPanelIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes saFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes saRowIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .sa-body * { animation: none !important; } }

/* ===== top bar ===== */
.sa-topbar { position: sticky; top: 0; z-index: 900; display: flex; align-items: center;
  gap: 14px; height: 52px; padding: 0 28px; border-bottom: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); background: var(--admin-canvas, #eceef1); }
.sa-logo { display: flex; align-items: center; gap: 8px; }
.sa-logo img { width: 26px; height: 26px; border-radius: 7px; }
.sa-logo span { font-size: 14.5px; font-weight: 600; display: inline-block;
  transform: skewX(-10deg); transform-origin: 0 100%; white-space: nowrap; }
.sa-admin-badge { font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 3px 9px; border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 6px; color: rgb(var(--admin-rgb, 16 20 24) / 0.72); }
.sa-crumb { font-size: 12px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.5); }
.sa-crumb b { color: var(--go-ink, #101418); font-weight: 800; }
.sa-live-note { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase; color: rgb(var(--admin-rgb, 16 20 24) / 0.6); }
.sa-dot-wrap { position: relative; width: 6px; height: 6px; }
.sa-dot { position: absolute; inset: 0; border-radius: 50%; }
.sa-dot-live { background: #16a34a; }
.sa-ring { position: absolute; inset: -3px; border-radius: 50%; border: 1px solid #16a34a; animation: saLiveRing 2.4s ease-out infinite; }
.sa-btn-dark { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 14px;
  border: 0; border-radius: 999px; background: var(--go-ink, #101418); color: var(--admin-inverse, #fff); font-size: 12px; font-weight: 800;
  font-family: inherit; cursor: pointer; }
.sa-btn-dark:hover { background: #2a2f36; }
.sa-btn-dark:disabled { background: rgb(var(--admin-rgb, 16 20 24) / 0.15); color: rgb(var(--admin-rgb, 16 20 24) / 0.45); cursor: not-allowed; }
.sa-btn-outline { height: 30px; padding: 0 14px; border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 999px;
  background: transparent; color: var(--go-ink, #101418); font-size: 11.5px; font-weight: 800; font-family: inherit; cursor: pointer; }
.sa-btn-outline:hover { border-color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }

.sa-wrap { max-width: 1280px; margin: 0 auto; padding: 26px 28px 80px; }
.sa-loading { font-size: 12.5px; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }

/* ===== masthead ===== */
.sa-masthead { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.sa-masthead h1 { margin: 0; font-size: 12px; font-weight: 800; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgb(var(--admin-rgb, 16 20 24) / 0.8); white-space: nowrap; }
.sa-masthead-meta { flex: none; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); white-space: nowrap; }
.sa-hairline { flex: 1 1 auto; height: 1px; background: rgb(var(--admin-rgb, 16 20 24) / 0.38); }
.sa-universe { display: inline-flex; align-items: center; padding: 2px;
  border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 999px; flex: none; }
.sa-universe-on { padding: 3px 13px; border-radius: 999px; background: var(--go-ink, #101418); color: var(--admin-inverse, #fff);
  font-size: 10.5px; font-weight: 700; line-height: 1.3; }
.sa-universe-off { padding: 3px 13px; border-radius: 999px; color: rgb(var(--admin-rgb, 16 20 24) / 0.72);
  font-size: 10.5px; font-weight: 700; line-height: 1.3; cursor: not-allowed; }
.sa-intro { margin: 0 0 22px; font-size: 12.5px; line-height: 1.5; color: rgb(var(--admin-rgb, 16 20 24) / 0.62); max-width: 720px; }
.sa-intro b { font-weight: 800; color: var(--go-ink, #101418); }

/* ===== status strip ===== */
.sa-status-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin: 0 0 26px; }
.sa-status-block { border: 0; background: transparent; text-align: left; font-family: inherit;
  cursor: pointer; padding: 8px 0 6px; border-top: 2px solid rgb(var(--admin-rgb, 16 20 24) / 0.25); transition: opacity 0.2s; }
.sa-status-block:hover { opacity: 1 !important; }
.sa-status-block.on { border-top-color: var(--go-ink, #101418); }
.sa-status-block .lbl { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-status-block.on .lbl { color: var(--go-ink, #101418); }
.sa-status-block .num { display: block; font-size: 22px; font-weight: 850; letter-spacing: -0.4px;
  font-variant-numeric: tabular-nums; color: var(--go-ink, #101418); }
.sa-status-block .sub { display: block; font-size: 11px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.6); line-height: 1.4; }

/* ===== facet bar ===== */
.sa-facetbar { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; flex-wrap: wrap; }
.sa-seg { display: inline-flex; align-items: center; padding: 2px; border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3);
  border-radius: 999px; flex: none; }
.sa-seg button { padding: 4px 14px; border: 0; border-radius: 999px; background: transparent;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.72); font-size: 11px; font-weight: 700; font-family: inherit; cursor: pointer; line-height: 1.3; }
.sa-seg button.on { background: var(--go-ink, #101418); color: var(--admin-inverse, #fff); }
.sa-chip { padding: 5px 13px; border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 999px; background: transparent;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.72); font-size: 11px; font-weight: 700; font-family: inherit; cursor: pointer; white-space: nowrap; }
.sa-chip:hover { border-color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-chip.on { background: var(--go-ink, #101418); color: var(--admin-inverse, #fff); border-color: var(--go-ink, #101418); }
.sa-search { position: relative; display: flex; align-items: center; height: 32px; width: 260px;
  padding: 0 12px; border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 8px; box-sizing: border-box; }
.sa-search svg { flex: none; margin-right: 8px; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-search input { border: 0; background: transparent; outline: none; width: 100%; font-family: inherit;
  font-size: 12.5px; color: var(--go-ink, #101418); }
.sa-search input::placeholder { color: rgb(var(--admin-rgb, 16 20 24) / 0.5); }
.sa-count { font-size: 11.5px; font-weight: 700; font-variant-numeric: tabular-nums;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.55); white-space: nowrap; }

/* ===== staged wave bar ===== */
.sa-wavebar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; margin: 0 0 18px;
  border: 1px solid rgba(194,65,12,0.4); border-radius: 12px; background: rgba(194,65,12,0.05);
  animation: saRowIn 0.25s ease both; }
.sa-wavebar .txt { font-size: 12.5px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.72); line-height: 1.4; }
.sa-wavebar .txt b { font-weight: 800; color: var(--go-ink, #101418); }

/* ===== by team ===== */
.sa-conf { margin: 0 0 8px; }
.sa-conf-head { display: flex; align-items: center; gap: 14px; width: 100%; padding: 10px 0;
  border: 0; border-bottom: 2px solid var(--go-ink, #101418); background: transparent; font-family: inherit;
  text-align: left; cursor: pointer; }
.sa-conf-head:hover { opacity: 0.85; }
.sa-conf-head .chev { display: inline-flex; align-items: center; justify-content: center; width: 20px;
  height: 20px; flex: none; border-radius: 50%; background: rgb(var(--admin-rgb, 16 20 24) / 0.06); }
.sa-conf-head .chev svg { transition: transform 0.25s; }
.sa-conf-head.closed .chev svg { transform: rotate(-90deg); }
.sa-conf-head .nm { font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: var(--go-ink, #101418); }
.sa-conf-head .meta { font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-conf-head .gaps { font-size: 10.5px; font-weight: 800; letter-spacing: 0.4px; color: #c2410c; }
.sa-conf-body { animation: saFadeIn 0.25s ease both; }
.sa-teamgrid-head, .sa-teamrow { display: grid;
  grid-template-columns: 200px minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) 90px;
  column-gap: 18px; padding: 8px 0; border-bottom: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.16); }
.sa-teamgrid-head { align-items: center; font-size: 9.5px; font-weight: 800; letter-spacing: 0.9px;
  text-transform: uppercase; color: rgb(var(--admin-rgb, 16 20 24) / 0.5); }
.sa-teamrow { align-items: start; padding: 11px 0; }
.sa-teamcell { display: flex; align-items: center; gap: 9px; min-width: 0; padding-top: 2px; }
.sa-crest { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; flex: none;
  background: rgb(var(--admin-rgb, 16 20 24) / 0.85); color: var(--admin-inverse, #fff); font-size: 7.5px; font-weight: 800;
  align-items: center; justify-content: center; background-size: cover; background-position: center; }
.sa-teamcell .col { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.sa-teamcell b { font-size: 13.5px; font-weight: 800; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sa-gapline { font-style: normal; font-size: 10px; font-weight: 800; letter-spacing: 0.3px;
  color: #c2410c; white-space: nowrap; }
.sa-chipcell { display: flex; flex-wrap: wrap; gap: 6px; min-width: 0; }
.sa-srcchip { display: inline-flex; align-items: center; gap: 6px; max-width: 100%; height: 26px;
  padding: 0 10px; border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 999px; background: transparent;
  font-size: 11px; font-weight: 700; font-family: inherit; color: var(--go-ink, #101418); cursor: pointer; transition: opacity 0.2s; }
.sa-srcchip:hover { border-color: rgb(var(--admin-rgb, 16 20 24) / 0.6); }
.sa-srcchip.failing { border-color: rgba(220,38,38,0.5); background: rgba(220,38,38,0.05); }
.sa-srcchip.dim { opacity: 0.25; }
.sa-srcchip .dot { width: 6px; height: 6px; flex: none; border-radius: 50%; }
.sa-srcchip .nm { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sa-srcchip .pl { flex: none; font-size: 8.5px; font-weight: 800; letter-spacing: 0.4px; color: rgb(var(--admin-rgb, 16 20 24) / 0.45); }
.sa-ghost { display: inline-flex; align-items: center; height: 26px; padding: 0 10px;
  border: 1px dashed rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 999px; font-size: 10.5px; font-weight: 700;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.45); }
.sa-p24 { text-align: right; font-size: 13.5px; font-weight: 800; font-variant-numeric: tabular-nums; padding-top: 4px; }
.sa-p24.zero { color: #dc2626; }
.sa-p24.stale { color: #c2410c; }

/* ===== by type ===== */
.sa-typegroup { margin: 0 0 26px; animation: saFadeIn 0.25s ease both; }
.sa-type-head { display: flex; align-items: center; gap: 14px; padding: 10px 0; border-bottom: 2px solid var(--go-ink, #101418); }
.sa-type-toggle { width: 100%; border-width: 0 0 2px; border-style: solid; border-color: var(--go-ink, #101418);
  background: transparent; font-family: inherit; text-align: left; cursor: pointer; }
.sa-type-toggle:hover { opacity: 0.85; }
.sa-type-toggle .chev { display: inline-flex; align-items: center; justify-content: center; width: 20px;
  height: 20px; flex: none; border-radius: 50%; background: rgb(var(--admin-rgb, 16 20 24) / 0.06); }
.sa-type-toggle .chev svg { transition: transform 0.25s; }
.sa-type-toggle.closed .chev svg { transform: rotate(-90deg); }
.sa-type-head .nm { font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.sa-type-head .meta { font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-type-head .note { font-size: 10.5px; font-weight: 700; color: rgb(var(--admin-rgb, 16 20 24) / 0.5); }
.sa-typegrid-head, .sa-typerow { display: grid;
  grid-template-columns: minmax(180px,1.4fr) 140px 70px 90px 70px 80px 90px;
  column-gap: 14px; align-items: center; border-bottom: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.16); }
.sa-typegrid-head { padding: 7px 0; font-size: 9.5px; font-weight: 800; letter-spacing: 0.9px;
  text-transform: uppercase; color: rgb(var(--admin-rgb, 16 20 24) / 0.5); }
.sa-typerow { width: 100%; padding: 9px 8px; margin: 0 -8px; border-width: 0 0 1px; border-style: solid;
  border-radius: 8px; background: transparent; font-family: inherit; text-align: left; cursor: pointer;
  box-sizing: content-box; }
.sa-typerow:hover { background: rgb(var(--admin-rgb, 16 20 24) / 0.03); }
.sa-typerow .src { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.sa-typerow .src b { font-size: 13px; font-weight: 800; color: var(--go-ink, #101418); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.sa-typerow .src i { font-style: normal; font-size: 10.5px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sa-typerow .subj { display: flex; align-items: center; gap: 6px; min-width: 0; font-size: 12px; font-weight: 700; }
.sa-typerow .subj .sa-crest { width: 16px; height: 16px; font-size: 6px; }
.sa-typerow .subj span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sa-typerow .plat { font-size: 10px; font-weight: 800; letter-spacing: 0.5px; color: rgb(var(--admin-rgb, 16 20 24) / 0.6); }
.sa-typerow .stat { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; }
.sa-typerow .stat .dot { width: 6px; height: 6px; flex: none; border-radius: 50%; }
.sa-typerow .n { text-align: right; font-size: 12.5px; font-weight: 800; font-variant-numeric: tabular-nums; }
.sa-typerow .pct { text-align: right; font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.72); }

/* ===== slide-over (inspect + add) ===== */
.sa-backdrop { position: fixed; inset: 0; z-index: 950; background: rgb(var(--admin-rgb, 16 20 24) / 0.25); animation: saFadeIn 0.2s ease both; }
.sa-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 960; width: 400px; max-width: 92vw;
  background: var(--admin-canvas, #eceef1); border-left: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.38); box-shadow: -12px 0 40px rgb(var(--admin-rgb, 16 20 24) / 0.15);
  animation: saPanelIn 0.28s cubic-bezier(0.2,0.7,0.3,1) both; display: flex; flex-direction: column; overflow-y: auto; }
.sa-panel-head { display: flex; align-items: center; gap: 10px; padding: 16px 20px;
  border-bottom: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); }
.sa-panel-head .stat { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; }
.sa-panel-head .stat .dot { width: 7px; height: 7px; flex: none; border-radius: 50%; }
.sa-panel-head .cat { font-size: 10px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.5); }
.sa-x { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px;
  border: 0; border-radius: 50%; background: rgb(var(--admin-rgb, 16 20 24) / 0.06); cursor: pointer; font-family: inherit; }
.sa-x:hover { background: rgb(var(--admin-rgb, 16 20 24) / 0.12); }
.sa-panel-id { padding: 18px 20px 8px; }
.sa-panel-id h2 { margin: 0 0 2px; font-size: 19px; font-weight: 850; letter-spacing: -0.3px; }
.sa-panel-id .ident { margin: 0 0 12px; font-size: 11.5px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); word-break: break-all; }
.sa-pill { display: inline-flex; align-items: center; gap: 7px; padding: 4px 11px;
  border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); border-radius: 999px; font-size: 11.5px; font-weight: 700; }
.sa-pill .sa-crest { width: 15px; height: 15px; font-size: 6px; }
.sa-pill-gated { margin-left: 6px; border-color: rgba(194,65,12,0.4); background: rgba(194,65,12,0.06);
  font-size: 11px; font-weight: 800; color: #c2410c; }
.sa-facts { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; row-gap: 14px; padding: 16px 20px; }
.sa-fact { border-top: 2px solid var(--go-ink, #101418); padding-top: 7px; }
.sa-fact .k { display: block; font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-fact b { font-size: 16px; font-weight: 850; font-variant-numeric: tabular-nums; }
.sa-fact b.sm { font-size: 13px; font-weight: 800; }
.sa-fact .cap { display: block; font-style: normal; font-size: 10px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-fact .pencil { border: 0; background: transparent; padding: 2px; cursor: pointer; color: rgb(var(--admin-rgb, 16 20 24) / 0.45);
  font-family: inherit; }
.sa-sect { padding: 4px 20px 8px; }
.sa-sect-head { display: flex; align-items: center; gap: 12px; margin: 0 0 8px; }
.sa-sect-head span:first-child { font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-sect-head .rule { flex: 1; height: 1px; background: rgb(var(--admin-rgb, 16 20 24) / 0.38); }
.sa-tagchips { display: flex; flex-wrap: wrap; gap: 6px; }
.sa-tagchip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px;
  border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.25); border-radius: 999px; font-size: 11px; font-weight: 700;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.72); }
.sa-tagchip b { font-weight: 800; font-variant-numeric: tabular-nums; color: var(--go-ink, #101418); }
.sa-postrow { padding: 9px 0; border-bottom: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.16); }
.sa-postrow p { margin: 0 0 3px; font-size: 12.5px; font-weight: 700; line-height: 1.4; color: var(--go-ink, #101418); }
.sa-postrow .meta { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 600;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.55); flex-wrap: wrap; }
.sa-postrow .meta .anomaly { color: #c2410c; font-weight: 800; }
.sa-panel-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 16px 20px;
  border-top: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3); }
.sa-panel-foot .hint { font-size: 11px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.5); }
.sa-btn-danger { height: 32px; padding: 0 14px; border: 1px solid rgba(220,38,38,0.4); border-radius: 999px;
  background: transparent; color: #dc2626; font-size: 11.5px; font-weight: 800; font-family: inherit; cursor: pointer; }
.sa-btn-danger:hover { background: rgba(220,38,38,0.06); }

/* ===== add panel forms ===== */
.sa-form { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.sa-field { display: flex; flex-direction: column; gap: 5px; }
.sa-field .k { font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-field input, .sa-field select { height: 36px; padding: 0 12px; border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.3);
  border-radius: 8px; font-size: 12.5px; font-family: inherit; color: var(--go-ink, #101418); background: var(--go-fill, rgba(255,255,255,.5));
  outline: none; box-sizing: border-box; font-weight: 600; }
.sa-field input:focus, .sa-field select:focus { border-color: rgb(var(--admin-rgb, 16 20 24) / 0.6); }
.sa-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sa-verify-card { border: 1px solid rgba(22,163,74,0.45); border-radius: 12px; padding: 12px 14px;
  background: rgba(22,163,74,0.05); animation: saRowIn 0.25s ease both; }
.sa-verify-card .head { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800;
  color: #15803d; margin-bottom: 8px; }
.sa-verify-card p { margin: 0; padding: 5px 0; border-top: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.12); font-size: 11.5px;
  font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.72); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sa-verify-err { border: 1px solid rgba(220,38,38,0.45); border-radius: 12px; padding: 12px 14px;
  background: rgba(220,38,38,0.04); font-size: 11.5px; font-weight: 700; color: #dc2626;
  animation: saRowIn 0.25s ease both; }

/* ===== modal ===== */
.sa-modal-back { position: fixed; inset: 0; z-index: 980; background: rgb(var(--admin-rgb, 16 20 24) / 0.35);
  backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center;
  animation: saFadeIn 0.2s ease both; }
.sa-modal { width: 440px; max-width: 92vw; background: var(--admin-canvas, #eceef1); border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.38);
  border-radius: 16px; padding: 22px 24px; box-shadow: 0 24px 60px rgb(var(--admin-rgb, 16 20 24) / 0.25); }
.sa-modal h3 { margin: 0 0 6px; font-size: 16px; font-weight: 850; letter-spacing: -0.2px; }
.sa-modal .copy { margin: 0 0 16px; font-size: 12.5px; line-height: 1.55; color: rgb(var(--admin-rgb, 16 20 24) / 0.65); }
.sa-modal .copy b { font-weight: 800; color: var(--go-ink, #101418); font-variant-numeric: tabular-nums; }
.sa-modal .copy b.red { color: #dc2626; }
.sa-modal-opts { display: flex; flex-direction: column; gap: 8px; }
.sa-modal-opt { display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: 1px solid rgb(var(--admin-rgb, 16 20 24) / 0.38); border-radius: 12px; background: transparent;
  font-family: inherit; text-align: left; cursor: pointer; }
.sa-modal-opt:hover { border-color: rgb(var(--admin-rgb, 16 20 24) / 0.6); }
.sa-modal-opt b { font-size: 13px; font-weight: 800; color: var(--go-ink, #101418); }
.sa-modal-opt span { font-size: 11.5px; font-weight: 600; color: rgb(var(--admin-rgb, 16 20 24) / 0.55); }
.sa-modal-opt.danger { border-color: rgba(220,38,38,0.45); background: rgba(220,38,38,0.04); }
.sa-modal-opt.danger:hover { background: rgba(220,38,38,0.09); }
.sa-modal-opt.danger b { color: #dc2626; }
.sa-modal-cancel { margin-top: 14px; border: 0; background: transparent; font-size: 12px; font-weight: 700;
  color: rgb(var(--admin-rgb, 16 20 24) / 0.55); cursor: pointer; font-family: inherit; padding: 0; }
.sa-modal-cancel:hover { color: var(--go-ink, #101418); }
