@font-face {
  font-family: "Pretendard Variable";
  src: url("/static/fonts/PretendardVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 45 920;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --bg: #f6f7f9; --panel: #ffffff;
  --ink: #1b2130; --dim: #5c6575;
  --line: #e2e5eb; --accent: #3b82f6;
  --ok: #16a34a; --bad: #dc2626;
  --warn: #b45309; --chip: #eef2f8;
  --blue-tint: #eff6ff; --blue-ink: #1d4ed8;
  --green-tint: #ecfdf3; --green-ink: #15803d;
  --red-tint: #fef2f2; --red-ink: #b91c1c;
  --amber-tint: #fffbeb; --amber-ink: #a16207;
  --gray-tint: #f2f4f7; --gray-ink: #475467;
  --accent-deep: #2563eb;
  --accent-soft: #7ab1fb;
  --side-bg: #151b2c; --side-line: #242e47;
  --side-dim: #8e99b3; --side-ink: #e6ebf5;
  --side-hover: #1c2338; --side-active: #212c48;
  --shadow: 0 1px 2px rgb(15 23 42 / 5%), 0 1px 3px rgb(15 23 42 / 4%);
  --shadow-lg: 0 12px 32px -8px rgb(15 23 42 / 16%);
  --ring: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
  --terminal-bg: #10172a; --terminal-ink: #c7d2e8;
  --s1: 4px; --s2: 8px; --s3: 12px;
  --s4: 16px; --s5: 24px;
  --r1: 6px; --r2: 12px; --r-ctl: 8px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: var(--bg); color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, system-ui, -apple-system, "Malgun Gothic", sans-serif;
  font-size: 14px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
button, input, select { font: inherit; }
a { color: var(--accent); text-decoration: none; font-weight: 550; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── 사이드바 ─────────────────────────────────────────────────────────── */
#side {
  position: fixed; inset: 0 auto 0 0; z-index: 10;
  display: flex; width: 232px; flex-direction: column;
  background: var(--side-bg); color: var(--side-ink);
}
.logo {
  display: flex; gap: 10px; align-items: center;
  padding: 20px 18px 16px;
  color: #fff; font-size: 16px; font-weight: 750; letter-spacing: -0.02em;
}
.logo-mark {
  display: grid; flex: none; width: 28px; height: 28px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 2px 6px rgb(37 99 235 / 40%);
  color: #fff;
}
#tabs {
  display: block; flex: 1;
  padding: var(--s2) var(--s3);
  overflow-y: auto; white-space: nowrap;
  scrollbar-width: thin; scrollbar-color: var(--side-line) transparent;
}
.nav-group + .nav-group { margin-top: var(--s4); }
.nav-label {
  display: block; padding: 10px 10px 4px;
  color: color-mix(in srgb, var(--side-dim) 75%, transparent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
}
#tabs button {
  position: relative;
  display: flex; width: 100%; gap: 10px; align-items: center; justify-content: flex-start;
  margin: 2px 0; padding: 9px 12px;
  border: 0; border-radius: var(--r-ctl);
  background: transparent; color: var(--side-dim);
  font-weight: 550; text-align: left; cursor: pointer;
  transition: background 130ms ease, color 130ms ease;
}
#tabs button:hover { background: var(--side-hover); color: var(--side-ink); }
#tabs button[aria-selected=true] {
  background: var(--side-active); color: #fff; font-weight: 650;
}
#tabs button[aria-selected=true]::before {
  content: ""; position: absolute; inset: 7px auto 7px -12px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: var(--accent);
}
#tabs button[aria-selected=true] .nav-icon { color: var(--accent-soft); }
.nav-icon { flex: none; }
.side-foot {
  display: grid; gap: var(--s2);
  padding: 14px;
  border-top: 1px solid var(--side-line);
}
.side-foot .chip { justify-content: center; border-color: rgb(255 255 255 / 12%); }
.side-foot .chip-green { background: rgb(34 197 94 / 14%); color: #7ee2a8; border-color: rgb(34 197 94 / 28%); }
.side-foot .chip-red { background: rgb(248 113 113 / 14%); color: #fda4af; border-color: rgb(248 113 113 / 28%); }
.side-foot .chip-gray { background: rgb(255 255 255 / 7%); color: var(--side-dim); }
.side-foot .btn {
  border-color: rgb(255 255 255 / 16%);
  background: transparent; color: var(--side-ink);
}
.side-foot .btn:hover:not(:disabled) { border-color: rgb(255 255 255 / 30%); background: rgb(255 255 255 / 6%); }
.side-foot small { color: color-mix(in srgb, var(--side-dim) 60%, transparent); font-size: 11px; text-align: center; }

/* ── 셸 · 상단바 ──────────────────────────────────────────────────────── */
#shell { min-height: 100vh; margin-left: 232px; }
#side[hidden] + #shell { margin-left: 0; }
#top {
  position: sticky; top: 0; z-index: 5;
  display: flex; min-height: 60px; gap: var(--s2); align-items: center;
  padding: 0 var(--s5);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  backdrop-filter: blur(10px);
}
#page-title {
  margin: 0;
  font-size: 19px; font-weight: 750; letter-spacing: -0.025em;
}
#who { color: var(--dim); font-size: 13px; }
main { max-width: 1200px; margin: 0 auto; padding: var(--s5); }
#view { animation: view-in 180ms ease; }
@keyframes view-in {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: none; }
}
h2 { font-size: 19px; letter-spacing: -0.02em; }
h3 { margin: 0 0 var(--s3); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
small, .chip { font-size: 12.5px; }
.page-sub {
  margin: 0 0 var(--s4);
  color: var(--dim); font-size: 14px; font-weight: 550;
}
.page-desc { margin: 0 0 var(--s4); color: var(--dim); max-width: 720px; }

/* ── 로그인 ───────────────────────────────────────────────────────────── */
.login-shell {
  min-height: 100vh; padding: var(--s5);
  display: grid; place-items: center;
  background:
    radial-gradient(900px 480px at 12% -4%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 62%),
    var(--bg);
}
.login-split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  width: 100%; max-width: 880px;
  overflow: hidden; border: 1px solid var(--line); border-radius: 16px;
  background: var(--panel); box-shadow: var(--shadow-lg);
}
.login-brand {
  display: flex; flex-direction: column; gap: var(--s4);
  padding: 44px 40px;
  background:
    radial-gradient(560px 300px at 88% 112%, rgb(59 130 246 / 22%), transparent 64%),
    var(--side-bg);
  color: var(--side-dim);
}
.login-brand .logo { padding: 0; font-size: 16px; }
.login-brand h2 {
  margin: var(--s4) 0 0;
  color: #fff; font-size: 25px; font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.32;
}
.brand-points { display: grid; gap: 10px; margin: auto 0 0; padding: 0; list-style: none; }
.brand-points li { display: flex; gap: 10px; align-items: baseline; color: var(--side-ink); font-size: 13.5px; }
.brand-points li::before {
  content: "✓"; flex: none;
  color: var(--accent-soft); font-weight: 800;
}
.login-card { padding: 44px 40px; }
.login-card h1 { margin: 0 0 var(--s1); font-size: 21px; letter-spacing: -0.02em; }
.login-card .page-desc { margin-bottom: var(--s5); }
.login-card .field { width: 100%; }
.login-card .btn-primary { flex: 1; }

/* ── 카드 · 그리드 ────────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: var(--s3);
}
.card {
  padding: var(--s4);
  border: 1px solid var(--line); border-radius: var(--r2);
  background: var(--panel); box-shadow: var(--shadow);
}

/* ── 홈 지표 타일 ─────────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
}
.stat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  min-height: 128px; padding: 18px;
  border: 1px solid var(--line); border-radius: var(--r2);
  background: var(--panel); color: var(--ink); box-shadow: var(--shadow);
  text-align: left; cursor: pointer;
  transition: border-color 130ms ease, box-shadow 130ms ease, transform 130ms ease;
}
.stat:hover, .stat:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.stat-icon {
  display: grid; place-items: center;
  width: 34px; height: 34px; margin-bottom: 8px;
  border-radius: 10px;
  background: var(--gray-tint); color: var(--gray-ink);
}
.stat-blue .stat-icon { background: var(--blue-tint); color: var(--accent); }
.stat-green .stat-icon { background: var(--green-tint); color: var(--green-ink); }
.stat-amber .stat-icon { background: var(--amber-tint); color: var(--amber-ink); }
.stat-red .stat-icon { background: var(--red-tint); color: var(--red-ink); }
.stat span { color: var(--dim); font-size: 13px; font-weight: 600; }
.stat strong {
  font-size: 30px; font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; font-variant-numeric: tabular-nums;
}
.stat small { color: color-mix(in srgb, var(--dim) 80%, transparent); font-size: 12px; }
.home-action { margin: var(--s4) 0; }
.home-section { margin: var(--s5) 0 var(--s3); }
.mini-list {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--r2);
  background: var(--panel); box-shadow: var(--shadow);
}
.mini-run { display: flex; gap: var(--s3); align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.mini-run:last-child { border-bottom: 0; }
.mini-run .chip { margin-left: auto; }

/* ── 칩 ───────────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex; min-height: 24px; align-items: center; gap: 5px;
  padding: 2px 10px;
  border: 1px solid color-mix(in srgb, currentColor 16%, transparent);
  border-radius: 999px;
  font-weight: 650; line-height: 1.35; white-space: nowrap;
}
.chip-blue { background: var(--blue-tint); color: var(--blue-ink); }
.chip-green { background: var(--green-tint); color: var(--green-ink); }
.chip-red { background: var(--red-tint); color: var(--red-ink); }
.chip-amber { background: var(--amber-tint); color: var(--amber-ink); }
.chip-gray { background: var(--gray-tint); color: var(--gray-ink); }

/* ── 버튼 ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; gap: 6px; align-items: center; justify-content: center;
  min-height: 36px; padding: 7px 14px;
  border: 1px solid var(--line); border-radius: var(--r-ctl);
  background: var(--panel); color: var(--ink);
  font-weight: 600; cursor: pointer;
  transition: background 130ms ease, border-color 130ms ease, transform 80ms ease;
}
.btn:hover:not(:disabled) { border-color: color-mix(in srgb, var(--dim) 42%, var(--line)); background: var(--gray-tint); }
.btn:active:not(:disabled) { transform: translateY(1px); }
.btn-primary {
  border-color: var(--accent);
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--accent-deep) 40%, transparent);
}
.btn-primary:hover:not(:disabled) { border-color: var(--accent-deep); background: var(--accent-deep); }
.btn-danger {
  border-color: transparent;
  background: transparent; color: var(--red-ink);
}
.btn-danger:hover:not(:disabled), .btn-danger:focus-visible {
  border-color: color-mix(in srgb, var(--red-ink) 30%, transparent);
  background: var(--red-tint); color: var(--red-ink);
}
.btn:disabled { color: var(--dim); background: var(--gray-tint); border-color: var(--line); cursor: default; opacity: .7; }
.btn-danger:disabled { background: transparent; }
.table .btn, td .btn { min-height: 30px; padding: 4px 10px; font-size: 13px; }

/* ── 표 ───────────────────────────────────────────────────────────────── */
.table, table { width: 100%; border-collapse: separate; border-spacing: 0; }
td, th {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left; vertical-align: middle;
}
.table { font-variant-numeric: tabular-nums; }
.table th {
  background: var(--panel);
  color: var(--dim); font-size: 12.5px;
  font-weight: 650; letter-spacing: 0.01em;
}
.table td { background: var(--panel); }
.table .num { text-align: right; white-space: nowrap; }
.table tr:not(:first-child):hover td {
  background: color-mix(in srgb, var(--accent) 4%, var(--panel));
}
.table tr:last-child td { border-bottom: 0; }
.table-wrap {
  width: 100%; overflow-x: auto;
  border: 1px solid var(--line); border-radius: var(--r2);
  background: var(--panel); box-shadow: var(--shadow);
}

/* ── 키-값 표 ─────────────────────────────────────────────────────────── */
.kv {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
  margin: var(--s3) 0; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r2);
  background: var(--panel);
}
.kv > div { display: contents; }
.kv dt, .kv dd {
  margin: 0; padding: 11px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 62%, transparent);
}
.kv dt { color: var(--dim); font-size: 13px; font-weight: 600; align-content: center; }
.kv dd {
  overflow-wrap: break-word;
  word-break: keep-all;
}
.kv > div:last-child > dt, .kv > div:last-child > dd { border-bottom: 0; }
.card .kv {
  grid-template-columns: 1fr;
  margin: var(--s2) 0; overflow: visible;
  border: 0; box-shadow: none;
}
.card .kv dt { padding: 8px 0 3px; border: 0; }
.card .kv dd { padding: 0 0 8px; border: 0; }

/* ── 빈 상태 · 배너 ───────────────────────────────────────────────────── */
.empty {
  display: grid; justify-items: center; gap: 10px;
  padding: 44px var(--s5);
  border: 1px dashed color-mix(in srgb, var(--dim) 34%, var(--line));
  border-radius: var(--r2);
  background: var(--panel); color: var(--dim);
  text-align: center;
}
.empty p { margin: 0; }
.empty-icon {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--chip); color: var(--dim);
}
.notice {
  margin-bottom: var(--s3); padding: 11px 14px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: var(--r-ctl);
  background: var(--panel); box-shadow: var(--shadow);
}
.notice.bad {
  border-color: color-mix(in srgb, var(--red-ink) 26%, transparent);
  border-left-color: var(--red-ink);
  background: var(--red-tint); color: var(--red-ink);
}
.notice:empty { display: none; }

/* ── 입력 ─────────────────────────────────────────────────────────────── */
.field {
  max-width: 100%; min-height: 36px; padding: 7px 12px;
  border: 1px solid var(--line); border-radius: var(--r-ctl);
  background: var(--panel); color: var(--ink);
  transition: border-color 130ms ease, box-shadow 130ms ease;
}
.field::placeholder { color: color-mix(in srgb, var(--dim) 72%, transparent); }
.field:hover { border-color: color-mix(in srgb, var(--dim) 40%, var(--line)); }
.field:focus { border-color: var(--accent); box-shadow: var(--ring); outline: none; }
select.field {
  padding-right: 30px;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235c6575' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--accent); }
.field-key { width: 280px; }
.field-path { width: 360px; }
.field-hours { width: 80px; }
.field-json { width: 520px; }

/* ── 툴바 · 작업 진행 ─────────────────────────────────────────────────── */
.toolbar {
  display: flex; gap: var(--s2);
  align-items: center;
}
.job-action { display: inline-flex; gap: var(--s2); align-items: center; margin: 0 var(--s2) var(--s2) 0; }
.job-progress { color: var(--dim); font-weight: 650; }
.job-headline { display: flex; gap: var(--s2); align-items: center; padding: var(--s3) 0; }
.job-headline span:last-child { color: var(--dim); }
.store-bulk { margin-top: var(--s3); }

/* ── 등록상품 ─────────────────────────────────────────────────────────── */
.listed-toolbar { margin-bottom: var(--s3); flex-wrap: wrap; }
.listed-search { min-width: 240px; flex: 1; }
.listed-total { color: var(--dim); font-size: 13px; white-space: nowrap; }
.listed-thumb, .listed-thumb-placeholder {
  display: block; width: 44px; height: 44px;
  object-fit: cover; border: 1px solid var(--line); border-radius: var(--r-ctl);
  background: var(--chip);
}
.listed-links { white-space: nowrap; font-size: 13px; }
.row-muted { opacity: .55; }

/* ── 검수 ─────────────────────────────────────────────────────────────── */
.review-toolbar {
  position: sticky; top: 60px; z-index: 2;
  margin-bottom: var(--s3); padding: 10px var(--s3);
  border: 1px solid var(--line); border-radius: var(--r2);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.review-card:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.review-actions { margin-top: var(--s3); }
.review-editor {
  display: grid; gap: var(--s2);
  margin-top: var(--s3); padding-top: var(--s3);
  border-top: 1px solid var(--line);
}
.review-editor[hidden] { display: none; }
.review-editor label { display: grid; gap: var(--s1); color: var(--dim); font-size: 13px; }
.market-picker { margin-bottom: var(--s3); }
.card ul { margin: var(--s2) 0 0; padding-left: 18px; color: var(--dim); font-size: 13px; }
.card li + li { margin-top: 2px; }

/* ── 설정 ─────────────────────────────────────────────────────────────── */
.settings-section {
  margin-bottom: var(--s3); overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r2);
  background: var(--panel); box-shadow: var(--shadow);
}
.settings-section > summary {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 16px; cursor: pointer;
  font-size: 15px; font-weight: 650;
  list-style: none;
  transition: background 130ms ease;
}
.settings-section > summary::-webkit-details-marker { display: none; }
.settings-section > summary::before {
  content: ""; flex: none; width: 16px; height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  color: var(--dim);
  transition: transform 130ms ease;
}
.settings-section[open] > summary::before { transform: rotate(90deg); }
.settings-section > summary:hover { background: var(--gray-tint); }
.details-body { padding: 4px var(--s4) var(--s4); }
.details-body details summary { cursor: pointer; color: var(--dim); font-weight: 600; }

/* ── 상품 카드 ────────────────────────────────────────────────────────── */
.thumb {
  width: 100%; aspect-ratio: 1;
  margin-bottom: var(--s3);
  object-fit: cover; border: 1px solid var(--line); border-radius: var(--r-ctl);
  background: var(--bg);
}
.product-name {
  display: -webkit-box; min-height: 42px; overflow: hidden;
  -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  line-clamp: 2;
  font-weight: 650; line-height: 1.5;
}
.price {
  display: block; margin-top: var(--s2);
  font-size: 17px; font-weight: 750; letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.margin { display: block; margin-top: 2px; color: var(--dim); font-variant-numeric: tabular-nums; }
.product-meta { display: flex; flex-wrap: wrap; gap: var(--s1); align-items: center; margin: var(--s2) 0; }
.clickable { cursor: pointer; }
.spacer { flex: 1; }

/* ── 로그 · 구분선 ────────────────────────────────────────────────────── */
pre {
  max-height: 320px; padding: 14px 16px;
  overflow: auto; border-radius: var(--r-ctl);
  background: var(--terminal-bg); color: var(--terminal-ink);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 12.5px; line-height: 1.65;
  scrollbar-width: thin; scrollbar-color: var(--side-line) transparent;
}
hr {
  margin: var(--s4) 0;
  border: 0;
  border-top: 1px solid var(--line);
}

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

/* ── 모바일 ───────────────────────────────────────────────────────────── */
@media (max-width: 840px) {
  #side {
    position: sticky; inset: 0 auto auto; width: 100%; height: auto;
    flex-direction: row; align-items: center;
  }
  .logo { padding: 10px 6px 10px 14px; font-size: 0; gap: 0; }
  .nav-label, .side-foot #entitlement, .side-foot small { display: none; }
  #tabs {
    display: flex; min-width: 0; padding: var(--s2);
    overflow-x: auto; overflow-y: hidden;
  }
  .nav-group { display: contents; }
  #tabs button { width: auto; flex: 0 0 auto; margin: 0 2px; }
  #tabs button[aria-selected=true]::before { display: none; }
  .side-foot {
    display: flex; flex: none; padding: var(--s2);
    border-top: 0; border-left: 1px solid var(--side-line);
  }
  #shell, #side[hidden] + #shell { margin-left: 0; }
  #top { position: static; min-height: 56px; flex-wrap: wrap; padding: var(--s3); }
  #page-title { width: 100%; }
  #top .chip {
    max-width: 200px; overflow: hidden;
    font-size: 11px; text-overflow: ellipsis; white-space: nowrap;
  }
  main { padding: var(--s4); }
  .grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { min-height: 108px; }
  .toolbar { flex-wrap: wrap; }
  .kv { grid-template-columns: 104px minmax(0, 1fr); }
  .field-key, .field-path, .field-json { width: 100%; }
  .login-shell { padding: var(--s3); }
  .login-split { grid-template-columns: 1fr; }
  .login-brand { gap: var(--s3); padding: 28px 24px; }
  .login-brand h2 { margin-top: 0; font-size: 20px; }
  .login-card { padding: 28px 24px; }
  .review-toolbar { top: 0; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #12151b; --panel: #1a1e27;
    --ink: #e8ebf1; --dim: #98a1b3;
    --line: #2a3040; --accent: #60a5fa;
    --ok: #4ade80; --bad: #f87171;
    --warn: #fbbf24; --chip: #232939;
    --blue-tint: #172b46; --blue-ink: #93c5fd;
    --green-tint: #153629; --green-ink: #86efac;
    --red-tint: #3b2025; --red-ink: #fca5a5;
    --amber-tint: #3d3017; --amber-ink: #fcd34d;
    --gray-tint: #252b36; --gray-ink: #cbd5e1;
    --accent-deep: #3b82f6;
    --accent-soft: #93c5fd;
    --side-bg: #10141d; --side-line: #1f2634;
    --side-dim: #8793ab; --side-ink: #dfe5f0;
    --side-hover: #171c29; --side-active: #1e2637;
    --shadow: 0 1px 2px rgb(0 0 0 / 22%);
    --shadow-lg: 0 12px 32px -8px rgb(0 0 0 / 45%);
    --terminal-bg: #0c101c; --terminal-ink: #b6c2da;
  }
  .btn-primary { color: #0b1526; }
  .logo-mark { color: #fff; }
}
