/* ============================================================================
   KOREVRA SERVE — base + shared components
   ==========================================================================*/
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-ui); font-size: 15px; line-height: 1.5; -webkit-font-smoothing: antialiased; min-height: 100vh; overflow-x: hidden; }
body.has-modal { overflow: hidden; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(32px, 5vw, 56px); } h2 { font-size: clamp(24px, 3.2vw, 36px); } h3 { font-size: 20px; } h4 { font-size: 16px; font-family: var(--font-ui); font-weight: 700; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
img, svg { max-width: 100%; display: block; }
::selection { background: var(--saffron); color: #17121F; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 2px; border-radius: 6px; }
#app { min-height: 100vh; }

/* ---- helpers ---- */
.row { display: flex; align-items: center; gap: 10px; }
.col { display: flex; flex-direction: column; gap: 10px; }
.wrap { flex-wrap: wrap; } .grow { flex: 1; min-width: 0; } .between { justify-content: space-between; } .center { justify-content: center; } .end { justify-content: flex-end; }
.gap-2 { gap: 16px; } .gap-3 { gap: 24px; } .gap-0 { gap: 4px; }
.muted { color: var(--ink-3); } .faint { color: var(--ink-4); } .small { font-size: 13px; } .tiny { font-size: 12px; } .bold { font-weight: 700; } .semi { font-weight: 600; }
.mono { font-family: var(--font-mono); font-size: 0.92em; letter-spacing: -0.01em; }
.money { font-family: var(--font-display); font-variant-numeric: tabular-nums; font-weight: 600; letter-spacing: -0.01em; }
.display { font-family: var(--font-display); }
.num { font-variant-numeric: tabular-nums; }
.right { text-align: right; } .tc { text-align: center; }
.ic { width: 1.15em; height: 1.15em; flex: none; vertical-align: -0.2em; display: inline-block; }
.ic-lg { width: 1.6em; height: 1.6em; }
.hide { display: none !important; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.grid { display: grid; gap: 14px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1100px) { .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .g4, .g3, .g2 { grid-template-columns: minmax(0, 1fr); } }
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ink-saffron { color: var(--saffron-ink); } .ink-paprika { color: var(--paprika-ink); } .ink-basil { color: var(--basil-ink); } .ink-teal { color: var(--teal-ink); } .ink-plum { color: var(--plum-ink); } .ink-sky { color: var(--sky-ink); } .ink-rose { color: var(--rose-ink); }

/* ---- logo ---- */
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: calc(var(--s, 28px) * 0.68); letter-spacing: -0.01em; }
.logo-mark { width: var(--s, 28px); height: var(--s, 28px); display: grid; grid-template-columns: 1fr 1fr; gap: 8%; }
.logo-mark i { display: block; border-radius: 18%; }
.logo-mark i:nth-child(1) { background: #E8732C; } .logo-mark i:nth-child(2) { background: #F09468; } .logo-mark i:nth-child(3) { background: #F2B49A; } .logo-mark i:nth-child(4) { background: #F8E1D3; }
.logo-word b { color: var(--saffron-ink); font-weight: 800; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: var(--r-pill); font-weight: 600; font-size: 14.5px; line-height: 1; border: 1px solid transparent; transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-base), background var(--t-base), border-color var(--t-base), opacity var(--t-base); white-space: nowrap; user-select: none; }
.btn:active { transform: translateY(1px) scale(0.985); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--saffron); color: #17121F; box-shadow: 0 6px 18px rgba(245, 165, 36, 0.35); }
.btn-primary:hover { background: #FFB53A; box-shadow: 0 10px 26px rgba(245, 165, 36, 0.45); transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: var(--inverse); }
.btn-ink:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-paprika { background: var(--paprika); color: #fff; box-shadow: 0 6px 18px rgba(228, 87, 46, 0.32); }
.btn-basil { background: var(--basil); color: #fff; box-shadow: 0 6px 18px rgba(31, 157, 106, 0.3); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-plum { background: var(--plum); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--ink-4); }
.btn-soft { background: var(--bg-2); color: var(--ink); }
.btn-soft:hover { background: var(--bg-3); }
.btn-danger { background: var(--rose-wash); color: var(--rose-ink); }
.btn-sm { padding: 8px 13px; font-size: 13px; } .btn-lg { padding: 15px 26px; font-size: 16px; } .btn-xl { padding: 20px 34px; font-size: 19px; border-radius: 20px; }
.btn-block { width: 100%; }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); background: transparent; transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast); }
.icon-btn:hover { background: var(--bg-2); color: var(--ink); } .icon-btn:active { transform: scale(0.92); }
.icon-btn.is-on { background: var(--saffron-wash); color: var(--saffron-ink); }

/* ---- inputs ---- */
.input, select.input, textarea.input { width: 100%; background: var(--card); border: 1px solid var(--line-2); border-radius: var(--r-2); padding: 11px 14px; font-size: 15px; color: var(--ink); transition: border-color var(--t-fast), box-shadow var(--t-fast); appearance: none; }
.input:focus { outline: none; border-color: var(--saffron); box-shadow: var(--glow-saffron); }
.input::placeholder { color: var(--ink-4); }
select.input { background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%), linear-gradient(135deg, var(--ink-3) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-l { font-size: 12.5px; font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; }
.field-h { font-size: 12px; color: var(--ink-4); }
.search { position: relative; }
.search .ic { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--ink-4); pointer-events: none; }
.search .input { padding-left: 40px; }
.switch { position: relative; width: 44px; height: 26px; border-radius: 13px; background: var(--bg-3); border: 1px solid var(--line-2); transition: background var(--t-base); flex: none; }
.switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-1); transition: transform var(--t-base) var(--ease-spring); }
.switch.is-on { background: var(--basil); border-color: var(--basil); } .switch.is-on::after { transform: translateX(18px); }
.seg { display: inline-flex; background: var(--bg-2); border-radius: var(--r-pill); padding: 3px; gap: 2px; }
.seg button { padding: 7px 14px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: var(--ink-3); transition: all var(--t-fast); }
.seg button.is-on { background: var(--card); color: var(--ink); box-shadow: var(--shadow-1); }
.stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-2); border-radius: var(--r-pill); padding: 3px; }
.stepper button { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--card); box-shadow: var(--shadow-1); transition: transform var(--t-fast); }
.stepper button:active { transform: scale(0.9); }
.stepper span { min-width: 28px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---- cards ---- */
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); padding: 18px; box-shadow: var(--shadow-1); }
.card-2 { background: var(--card-2); }
.card-flat { box-shadow: none; }
.card-hover { transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base); }
.card-hover:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.card-head h3 { font-size: 17px; }
.card-head .sub { font-size: 13px; color: var(--ink-3); }
.kpi { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); padding: 16px 18px; position: relative; overflow: hidden; }
.kpi::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--saffron); opacity: 0.9; }
.kpi-basil::before { background: var(--basil); } .kpi-paprika::before { background: var(--paprika); } .kpi-teal::before { background: var(--teal); } .kpi-plum::before { background: var(--plum); } .kpi-sky::before { background: var(--sky); } .kpi-rose::before { background: var(--rose); }
.kpi-l { font-size: 12.5px; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.kpi-v { font-family: var(--font-display); font-size: 30px; font-weight: 600; line-height: 1.1; margin-top: 6px; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.kpi-s { font-size: 12.5px; color: var(--ink-3); margin-top: 6px; }

/* ---- chips / dots / avatars ---- */
.chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; line-height: 1.2; white-space: nowrap; background: var(--bg-2); color: var(--ink-2); }
.chip .ic { width: 13px; height: 13px; }
.chip-saffron { background: var(--saffron-wash); color: var(--saffron-ink); } .chip-paprika { background: var(--paprika-wash); color: var(--paprika-ink); } .chip-basil { background: var(--basil-wash); color: var(--basil-ink); } .chip-teal { background: var(--teal-wash); color: var(--teal-ink); } .chip-plum { background: var(--plum-wash); color: var(--plum-ink); } .chip-sky { background: var(--sky-wash); color: var(--sky-ink); } .chip-rose { background: var(--rose-wash); color: var(--rose-ink); } .chip-neutral { background: var(--bg-2); color: var(--ink-2); }
.chip-solid { background: var(--ink); color: var(--inverse); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: var(--ink-4); flex: none; }
.dot-basil { background: var(--basil); box-shadow: 0 0 0 3px var(--basil-wash); } .dot-saffron { background: var(--saffron); box-shadow: 0 0 0 3px var(--saffron-wash); } .dot-rose { background: var(--rose); box-shadow: 0 0 0 3px var(--rose-wash); } .dot-sky { background: var(--sky); } .dot-live { background: var(--basil); animation: pulse-dot 1.6s infinite; }
.avatar { display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 700; color: #fff; flex: none; background: hsl(var(--h) 55% 42%); letter-spacing: 0.02em; font-family: var(--font-ui); }
.avatar-ring { box-shadow: 0 0 0 3px var(--card), 0 0 0 5px hsl(var(--h) 55% 55%); }
.chan { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.chan .ic { width: 14px; height: 14px; color: var(--ink-3); }

/* ---- tables ---- */
.table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); font-weight: 700; padding: 10px 12px; border-bottom: 1px solid var(--line-2); white-space: nowrap; }
.table td { padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tr:last-child td { border-bottom: 0; }
.table tbody tr { transition: background var(--t-fast); }
.table tbody tr:hover { background: var(--bg-2); }
.table .right { text-align: right; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-3); background: var(--card); }
.table-wrap .table th { background: var(--bg-2); position: sticky; top: 0; }

/* ---- lists ---- */
.list { display: flex; flex-direction: column; }
.list-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.list-item:last-child { border-bottom: 0; }
.list-item .t { font-weight: 600; } .list-item .s { font-size: 12.5px; color: var(--ink-3); }
.empty { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 36px 16px; color: var(--ink-4); text-align: center; }
.empty .ic { width: 34px; height: 34px; opacity: 0.5; }

/* ---- charts ---- */
.spark { display: inline-block; overflow: visible; }
.spark-line { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 1.2s var(--ease-out) forwards; }
.bars { display: grid; grid-template-columns: repeat(var(--n), minmax(0, 1fr)); gap: 6px; align-items: end; }
.bar-col { display: flex; flex-direction: column; align-items: stretch; gap: 6px; height: 100%; justify-content: flex-end; }
.bar { height: var(--v); min-height: 3px; border-radius: 6px 6px 3px 3px; background: var(--saffron); transform-origin: bottom; animation: grow-y 0.8s var(--ease-out) both; }
.bar-basil { background: var(--basil); } .bar-teal { background: var(--teal); } .bar-plum { background: var(--plum); } .bar-paprika { background: var(--paprika); } .bar-sky { background: var(--sky); } .bar-ink { background: var(--ink-4); } .bar.is-hi { box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--saffron); }
.bar-l { font-size: 10.5px; color: var(--ink-3); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ring { position: relative; display: inline-grid; place-items: center; }
.ring svg { position: absolute; inset: 0; }
.ring-fg { transition: stroke-dashoffset 1s var(--ease-out); }
.ring-l { position: relative; font-family: var(--font-display); font-weight: 600; font-size: 15px; }
.meter { height: 8px; background: var(--bg-3); border-radius: 4px; overflow: hidden; }
.meter > i { display: block; height: 100%; background: var(--saffron); border-radius: 4px; width: var(--v, 0%); transition: width 0.9s var(--ease-out); }
.meter-basil > i { background: var(--basil); } .meter-paprika > i { background: var(--paprika); } .meter-teal > i { background: var(--teal); } .meter-plum > i { background: var(--plum); }

/* ---- toast ---- */
.toasts { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); display: flex; flex-direction: column; gap: 8px; z-index: 900; pointer-events: none; width: min(92vw, 440px); }
.toast { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 14px; background: var(--ink); color: var(--inverse); font-size: 14px; font-weight: 500; box-shadow: var(--shadow-3); opacity: 0; transform: translateY(16px) scale(0.96); transition: opacity var(--t-base), transform var(--t-base) var(--ease-spring); pointer-events: auto; }
.toast.in { opacity: 1; transform: none; }
.toast-ic { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.14); flex: none; }
.toast-ok .toast-ic { background: var(--basil); color: #fff; } .toast-warn .toast-ic { background: var(--saffron); color: #17121F; } .toast-err .toast-ic { background: var(--rose); color: #fff; }
[data-theme="dark"] .toast { background: #F6F1EA; color: #17121F; }

/* ---- modal / sheet ---- */
.modal-back { position: fixed; inset: 0; background: rgba(23, 18, 31, 0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 800; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; transition: opacity var(--t-base); }
.modal-back.in { opacity: 1; }
.modal { background: var(--card); color: var(--ink); border-radius: var(--r-4); width: min(100%, 520px); max-height: min(88vh, 900px); display: flex; flex-direction: column; box-shadow: var(--shadow-3); transform: translateY(20px) scale(0.97); transition: transform var(--t-slow) var(--ease-spring); overflow: hidden; }
.modal-wide { width: min(100%, 860px); }
.modal-back.in .modal { transform: none; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px 8px; gap: 12px; }
.modal-head h3 { font-size: 20px; }
.modal-body { padding: 12px 20px 20px; overflow-y: auto; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; padding: 12px 20px 20px; border-top: 1px solid var(--line); }
.modal-back.is-sheet { align-items: flex-end; padding: 0; }
.modal-back.is-sheet .modal { width: 100%; max-width: 640px; border-radius: var(--r-4) var(--r-4) 0 0; transform: translateY(100%); max-height: 92vh; }
.modal-back.is-sheet.in .modal { transform: none; }
.modal-back.is-sheet .modal::before { content: ''; display: block; width: 40px; height: 4px; border-radius: 2px; background: var(--line-2); margin: 10px auto 0; }

/* ---- launcher ---- */
.launcher { position: fixed; right: 18px; bottom: 18px; z-index: 700; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.launcher-btn { width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--inverse); display: grid; place-items: center; box-shadow: var(--shadow-3); transition: transform var(--t-base) var(--ease-spring), background var(--t-base); }
.launcher-btn .ic { width: 24px; height: 24px; }
.launcher-btn:hover { transform: scale(1.06); }
.launcher.open .launcher-btn { transform: rotate(90deg); background: var(--saffron); color: #17121F; }
.launcher-menu { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-3); box-shadow: var(--shadow-3); padding: 8px; width: 232px; opacity: 0; transform: translateY(10px) scale(0.96); pointer-events: none; transition: opacity var(--t-base), transform var(--t-base) var(--ease-spring); transform-origin: bottom right; }
.launcher.open .launcher-menu { opacity: 1; transform: none; pointer-events: auto; }
.launcher-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 10px 12px; border-radius: 10px; font-weight: 600; font-size: 14px; color: var(--ink-2); transition: background var(--t-fast), color var(--t-fast); text-align: left; }
.launcher-item:hover { background: var(--bg-2); color: var(--ink); }
.launcher-item.is-cur { background: var(--saffron-wash); color: var(--saffron-ink); }
.launcher-foot { padding: 10px 12px 4px; font-size: 11.5px; color: var(--ink-4); display: flex; align-items: center; gap: 6px; border-top: 1px solid var(--line); margin-top: 6px; }

/* ---- device frames ---- */
.phone-stage { min-height: 100vh; display: grid; place-items: center; padding: 28px 16px; background: radial-gradient(1200px 600px at 70% -10%, var(--saffron-wash), transparent 60%), radial-gradient(800px 500px at 0% 100%, var(--teal-wash), transparent 60%), var(--bg); }
.phone { width: 400px; max-width: 100%; height: min(860px, calc(100vh - 56px)); min-height: 640px; background: var(--card); border-radius: 44px; border: 10px solid #17121F; box-shadow: 0 40px 80px rgba(23, 18, 31, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.phone::before { content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 110px; height: 28px; background: #17121F; border-radius: 16px; z-index: 5; }
.phone-screen { flex: 1; overflow-y: auto; overflow-x: hidden; display: flex; flex-direction: column; background: var(--bg); scrollbar-width: none; }
.phone-screen::-webkit-scrollbar { display: none; }
@media (max-width: 640px) { .phone-stage { padding: 0; } .phone { width: 100%; height: 100vh; height: 100dvh; min-height: 0; border: 0; border-radius: 0; box-shadow: none; } .phone::before { display: none; } }

/* ---- scrollbars (desktop) ---- */
@media (pointer: fine) { ::-webkit-scrollbar { width: 10px; height: 10px; } ::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 5px; border: 2px solid transparent; background-clip: padding-box; } ::-webkit-scrollbar-track { background: transparent; } }

/* ---- confetti ---- */
.confetti { position: fixed; width: 8px; height: 12px; border-radius: 2px; z-index: 950; pointer-events: none; animation: confetti 1s var(--ease-out) forwards; }

/* ---- code / ledger ---- */
.hash { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-3); word-break: break-all; }
.codebox { background: var(--bg-2); border-radius: var(--r-2); padding: 12px 14px; font-family: var(--font-mono); font-size: 12.5px; white-space: pre-wrap; word-break: break-word; line-height: 1.55; }
.pickup-code { font-family: var(--font-display); font-size: 44px; font-weight: 700; letter-spacing: 0.12em; line-height: 1; }

/* ---- tabs ---- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { padding: 10px 14px; font-weight: 600; font-size: 14px; color: var(--ink-3); border-bottom: 2px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color var(--t-fast), border-color var(--t-fast); display: inline-flex; align-items: center; gap: 6px; }
.tab:hover { color: var(--ink); } .tab.is-on { color: var(--saffron-ink); border-color: var(--saffron); }

/* ---- callouts ---- */
.callout { display: flex; gap: 12px; padding: 14px 16px; border-radius: var(--r-2); background: var(--saffron-wash); color: var(--ink); font-size: 14px; border-left: 4px solid var(--saffron); }
.callout .ic { flex: none; margin-top: 2px; color: var(--saffron-ink); }
.callout-basil { background: var(--basil-wash); border-color: var(--basil); } .callout-basil .ic { color: var(--basil-ink); }
.callout-rose { background: var(--rose-wash); border-color: var(--rose); } .callout-rose .ic { color: var(--rose-ink); }
.callout-teal { background: var(--teal-wash); border-color: var(--teal); } .callout-teal .ic { color: var(--teal-ink); }
.callout-plum { background: var(--plum-wash); border-color: var(--plum); } .callout-plum .ic { color: var(--plum-ink); }

/* ---- misc ---- */
.divider { height: 1px; background: var(--line); margin: 14px 0; }
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-n { min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px; background: var(--paprika); color: #fff; font-size: 11.5px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.offline-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 650; background: var(--paprika); color: #fff; font-weight: 600; font-size: 13.5px; padding: 8px 16px; display: flex; align-items: center; justify-content: center; gap: 10px; transform: translateY(-100%); transition: transform var(--t-base) var(--ease-out); }
.offline-bar.in { transform: none; }
.offline-bar .ic { width: 16px; height: 16px; }
