/* Светлая тема — рабочая по умолчанию: протокол сверяют с бумагой, и белый лист
   на экране читается так же. Тёмная остаётся доступной переключателем, но сама
   собой не включается: системная настройка не должна менять вид документа,
   который человек сличает с оригиналом. */
:root {
  /* Тема объявляется браузеру, а не только переменным: без color-scheme
     нутро системных элементов (флажки, счётчики числовых полей, выпадающие
     списки, полосы прокрутки) остаётся светлым посреди тёмной страницы. */
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-soft: #fbfbfd;
  --surface: #ffffff;
  --surface-2: #f5f5f7;
  --border: #d2d2d7;
  --border-soft: #e8e8ed;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --accent: #0071e3;
  --accent-soft: #e8f1fd;
  --ok: #1d7a4c;
  --ok-soft: #e8f6ee;
  --issue: #c8332b;
  --issue-soft: #fdeceb;
  --pending: #9a6400;
  --pending-soft: #fdf3e2;
  --radius: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 12px 28px -18px rgba(0, 0, 0, .28);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .06);
  --ring: 0 0 0 4px rgba(0, 113, 227, .16);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0b0d;
  --bg-soft: #141416;
  --surface: #1c1c1e;
  --surface-2: #232326;
  --border: #38383c;
  --border-soft: #2c2c30;
  --text: #f5f5f7;
  --muted: #9a9aa0;
  --accent: #4a9dff;
  --accent-soft: #16283f;
  --ok: #5fd08c;
  --ok-soft: #12271b;
  --issue: #ff8b82;
  --issue-soft: #2c1917;
  --pending: #e0b45c;
  --pending-soft: #2a2113;
  --shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 14px 34px -20px rgba(0, 0, 0, .9);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5);
  --ring: 0 0 0 4px rgba(74, 157, 255, .22);
}

* { box-sizing: border-box; }

/* Правило страницы вроде `.btn { display: inline-block }` сильнее правила
   браузера для [hidden] — и скрытая по правам кнопка оставалась видимой.
   Скрытие обязано выигрывать всегда: на нём держится разграничение прав. */
[hidden] { display: none !important; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font: 15px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.008em;
}

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

.wrap { max-width: 940px; margin: 0 auto; padding: 0 22px; }

/* --- шапка --- */
.top {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
:root[data-theme="dark"] .top { background: rgba(28, 28, 30, .74); }
.top-inner { display: flex; align-items: center; gap: 14px; min-height: 56px;
  flex-wrap: wrap; padding: 6px 0; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
.brand-mark {
  width: 24px; height: 24px; border-radius: 8px; color: #fff; background: var(--accent);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.brand-name { white-space: nowrap; letter-spacing: -.018em; }

.tabs { display: flex; gap: 2px; margin-left: auto; flex-wrap: wrap; }
.tab {
  background: none; border: none; padding: 6px 13px; border-radius: 980px;
  font: inherit; font-size: 13.5px; color: var(--muted); cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.tab:hover { color: var(--text); background: var(--surface-2); }
.tab.is-active { color: var(--text); background: var(--surface); font-weight: 600;
  box-shadow: var(--shadow-sm); }

.theme {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--muted); cursor: pointer; font-size: 14px;
  display: grid; place-items: center;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.theme:hover { color: var(--text); background: var(--surface-2); }

main { padding-top: 34px; padding-bottom: 80px; }
.panel { display: none; }
.panel.is-active { display: block; animation: rise .3s cubic-bezier(.22, .61, .36, 1) both; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .panel.is-active, #result { animation: none; }
}
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.panel-head h2 { font-size: 22px; margin: 0 0 14px; letter-spacing: -.022em; font-weight: 600; }
.hint { color: var(--muted); font-size: 13.5px; margin: 0 0 20px; max-width: 66ch; }

/* --- загрузка --- */
.dropzone {
  border: 1px dashed var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 44px 24px 30px; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.dropzone:hover { border-color: var(--muted); }
.dropzone.is-over { border-color: var(--accent); background: var(--accent-soft);
  box-shadow: var(--ring); }
.dz-icon {
  width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent); display: grid;
  place-items: center; font-size: 21px; font-weight: 300;
}
.dz-title { font-size: 17px; margin: 0 0 4px; font-weight: 600; letter-spacing: -.02em; }
.dz-sub { color: var(--muted); font-size: 13.5px; margin: 0 0 18px; }
.link { background: none; border: none; color: var(--accent); font: inherit;
  cursor: pointer; padding: 0; }
.link:hover { text-decoration: underline; }
.formats {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  flex-wrap: wrap; margin: 0 0 18px; font-size: 10.5px; letter-spacing: .09em;
  color: var(--muted); font-weight: 600;
}
.formats i { font-style: normal; opacity: .3; }
.dz-opt { color: var(--muted); font-size: 13px; display: inline-flex; gap: 7px;
  align-items: center; cursor: pointer; }
.dz-opt:hover { color: var(--text); }
.dz-opt input { accent-color: var(--accent); }

.status {
  margin-top: 18px; padding: 13px 18px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border-soft); font-size: 14px;
  color: var(--muted); box-shadow: var(--shadow-sm);
}
.status.is-error { border-color: var(--issue); color: var(--issue); background: var(--issue-soft); }

/* --- карточки --- */
#result { animation: rise .3s cubic-bezier(.22, .61, .36, 1) both; }
.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 24px 26px; margin-top: 16px;
  box-shadow: var(--shadow);
}
.card h3 {
  margin: 26px 0 12px; font-size: 11.5px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
}
.card h3:first-child { margin-top: 0; }

/* --- итог --- */
.verdict {
  margin-top: 22px; border-radius: var(--radius); border: 1px solid var(--border-soft);
  background: var(--surface); padding: 26px; box-shadow: var(--shadow);
}
.verdict-top { display: flex; align-items: flex-start; gap: 18px; }
.verdict-badge {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: 21px; font-weight: 600;
}
.verdict.ok .verdict-badge { background: var(--ok-soft); color: var(--ok); }
.verdict.issues .verdict-badge { background: var(--issue-soft); color: var(--issue); }
.verdict.pending .verdict-badge { background: var(--pending-soft); color: var(--pending); }
.verdict-text { min-width: 0; }
.verdict-title { font-size: 21px; font-weight: 600; margin: 0 0 5px; letter-spacing: -.024em; }
.verdict-doc { font-size: 14.5px; overflow-wrap: anywhere; }
.verdict-sub { color: var(--muted); font-size: 13.5px; margin-top: 4px; overflow-wrap: anywhere; }

/* --- условия проверки --- */
.notes {
  margin-top: 14px; padding: 15px 18px; border-radius: var(--radius-md);
  background: var(--pending-soft); border: 1px solid transparent; color: var(--pending);
}
.notes-title { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em;
  font-weight: 600; margin-bottom: 5px; opacity: .85; }
.notes-line { margin: 0; font-size: 13.3px; line-height: 1.5; }
.notes-line + .notes-line { margin-top: 5px; }

/* --- переключатель видов (iOS segmented control) --- */
.segmented {
  display: inline-flex; gap: 2px; padding: 2px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border-soft); margin: 24px 0 0;
}
.segmented button {
  border: none; background: none; font: inherit; font-size: 13px;
  padding: 6px 18px; border-radius: 8px; color: var(--text); cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease;
}
.segmented button.is-active { background: var(--surface); font-weight: 600;
  box-shadow: var(--shadow-sm); }

.view { display: none; }
.view.is-active { display: block; }

/* --- регламент --- */
.section {
  display: grid; grid-template-columns: 24px 46px minmax(0, 1fr) minmax(0, auto);
  align-items: center; gap: 6px 14px; padding: 12px 10px; margin: 0 -10px;
  border-radius: var(--radius-sm); font-size: 13.5px; transition: background .15s ease;
}
.section + .section { box-shadow: inset 0 1px 0 var(--border-soft); }
.section:hover { background: var(--surface-2); }
.section-mark {
  width: 20px; height: 20px; border-radius: 50%; display: grid;
  place-items: center; font-size: 11px; font-weight: 700;
}
.is-ok .section-mark { background: var(--ok-soft); color: var(--ok); }
.is-issues .section-mark { background: var(--issue-soft); color: var(--issue); }
.is-not_checked .section-mark { background: var(--pending-soft); color: var(--pending); }
.section-code {
  color: var(--muted); font-size: 11.5px; font-variant-numeric: tabular-nums;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.section-title { min-width: 0; overflow-wrap: anywhere; }
.section-summary { text-align: right; color: var(--muted); font-size: 12.8px;
  min-width: 0; overflow-wrap: anywhere; }
.is-issues .section-summary { color: var(--issue); }
.is-not_checked .section-summary { color: var(--pending); }
.section-body { grid-column: 3 / -1; }
.section-note {
  font-size: 12.5px; color: var(--pending); margin-top: 6px;
  padding: 9px 12px; background: var(--pending-soft); border-radius: 10px;
}
@media (max-width: 680px) {
  .section { grid-template-columns: 24px 46px minmax(0, 1fr); align-items: start; }
  .section-summary { grid-column: 3; text-align: left; }
  .section-body { grid-column: 1 / -1; }
}

/* --- находка --- */
.finding {
  border: 1px solid var(--border-soft); border-left: 3px solid var(--border);
  border-radius: var(--radius-md); padding: 15px 17px; margin-top: 10px;
  background: var(--surface-2);
}
.finding.confirmed { border-left-color: var(--issue); }
.finding.manual_review { border-left-color: var(--pending); }
.finding.uncertain { border-left-color: var(--accent); }
.finding.rejected { border-left-color: var(--ok); }
.finding-head { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 7px; }
.finding-field { font-weight: 600; font-size: 13.5px; }
.tag {
  font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted);
  border: 1px solid var(--border); border-radius: 980px; padding: 2px 9px;
}
.finding-reason { font-size: 13.3px; }
.values { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; font-size: 13.5px; }
.values > div {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 8px 13px; min-width: 100px;
}
.values span { display: block; color: var(--muted); font-size: 10px;
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px; }
.where { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.where button {
  background: var(--surface); border: 1px solid var(--border); color: var(--accent);
  font: inherit; font-size: 12.5px; cursor: pointer; padding: 5px 12px;
  border-radius: 980px; transition: background .18s ease, border-color .18s ease;
}
.where button:hover { background: var(--accent-soft); border-color: var(--accent); }
.where button:disabled { color: var(--muted); cursor: default; background: var(--surface-2); }
.where button.feedback { color: var(--muted); }
.where button.feedback:hover { color: var(--text); background: var(--surface-2);
  border-color: var(--muted); }

/* --- отчёт о проверке --- */
.report-title {
  font-size: 17px; font-weight: 600; letter-spacing: -.02em; margin: 0 0 14px;
  overflow-wrap: anywhere;
}
.report-line { margin: 0 0 7px; font-size: 13.6px; line-height: 1.6; }
.report-section { padding: 16px 0 4px; border-top: 1px solid var(--border-soft); margin-top: 14px; }
.report-head { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.report-mark {
  width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; flex: none;
  background: var(--surface-2); color: var(--muted);
}
.report-section.is-ok .report-mark { background: var(--ok-soft); color: var(--ok); }
.report-section.is-issues .report-mark { background: var(--issue-soft); color: var(--issue); }
.report-section.is-not_checked .report-mark { background: var(--pending-soft); color: var(--pending); }
.report-section-title { margin: 0; font-size: 14px; font-weight: 600; letter-spacing: -.015em; }
.report-actions { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-soft); }

/* --- документ --- */
.doc-title { font-size: 18px; font-weight: 600; margin: 0 0 4px; letter-spacing: -.022em;
  overflow-wrap: anywhere; }
.doc-subtitle { color: var(--muted); font-size: 13.5px; margin: 0 0 6px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border-soft); }
.req { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px; margin: 0; }
.req-item { background: var(--surface-2); border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); padding: 11px 14px; min-width: 0; }
.req-item.wide { grid-column: 1 / -1; }
.req-key { color: var(--muted); font-size: 10.5px; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 3px; overflow-wrap: anywhere; }
.req-value { font-size: 13.5px; line-height: 1.45; overflow-wrap: anywhere; }
@media (max-width: 520px) { .req { grid-template-columns: minmax(0, 1fr); } }

.scroll { overflow-x: auto; margin: 0 -6px; padding: 0 6px; }
table.doc { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0;
  font-size: 13px; }
table.doc th {
  text-align: left; color: var(--muted); font-weight: 600; font-size: 11px;
  letter-spacing: .05em; text-transform: uppercase; padding: 10px 12px;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
table.doc td {
  padding: 11px 12px; border-bottom: 1px solid var(--border-soft); vertical-align: top;
  white-space: pre-line; overflow-wrap: anywhere; line-height: 1.5;
}
table.doc td:first-child { color: var(--muted); width: 46px; }
table.doc tbody tr:hover td { background: var(--surface-2); }
table.doc td:last-child { font-weight: 600; }
td.hit, .paragraph.hit { background: var(--issue-soft);
  box-shadow: inset 0 0 0 2px var(--issue); border-radius: 8px; }
.paragraph { padding: 5px 10px; font-size: 13.3px; margin: 0 -10px; border-radius: 8px;
  color: var(--muted); line-height: 1.55; }
.paragraph.heading { font-weight: 600; margin-top: 16px; color: var(--text); }

/* --- списки --- */
.item {
  border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 15px 17px;
  margin-top: 10px; background: var(--surface); font-size: 13.5px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.item:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.item.is-clickable { cursor: pointer; }
.item.is-clickable:hover { transform: translateY(-1px); }
.item .row { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  align-items: center; }
.muted { color: var(--muted); }
.pill { font-size: 11.5px; border-radius: 980px; padding: 3px 11px; font-weight: 500;
  border: 1px solid currentColor; white-space: nowrap; }
.pill.ok { color: var(--ok); background: var(--ok-soft); }
.pill.issue { color: var(--issue); background: var(--issue-soft); }
.pill.pending { color: var(--pending); background: var(--pending-soft); }

.journal-group { margin: 22px 0 4px; font-size: 13px; font-weight: 600;
  letter-spacing: -.01em; }
.journal-group:first-of-type { margin-top: 8px; }
.journal-row { font-size: 13px; }
.journal-row + .journal-row { margin-top: 4px; }

.btn {
  background: var(--accent); color: #fff; border: none; border-radius: 980px;
  padding: 9px 20px; font: inherit; font-size: 13.5px; font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: filter .18s ease, transform .1s ease;
}
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .45; cursor: default; }
.btn.ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn.ghost:hover { background: var(--surface-2); filter: none; }

.footnote {
  margin-top: 26px; font-size: 11px; color: var(--muted); text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace; opacity: .65;
}
.banner {
  margin-top: 18px; padding: 18px 20px; border-radius: var(--radius);
  border: 1px solid var(--issue); background: var(--issue-soft); color: var(--issue);
}
.banner h3 { margin: 0 0 6px; font-size: 15px; color: inherit; text-transform: none;
  letter-spacing: -.015em; }
.banner p { margin: 0; font-size: 13.3px; line-height: 1.5; }
.banner p + p { margin-top: 6px; }
/* Старый формат записи — не ошибка проверки, а её неполнота: красный тон
   прочитался бы как нарушение в документе. */
.banner.legacy {
  border-color: transparent; background: var(--pending-soft); color: var(--pending);
}

/* --- шапка: пользователь, отдел, выход --- */
.top-side { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.user-name { font-size: 13px; color: var(--muted); white-space: nowrap; max-width: 22ch;
  overflow: hidden; text-overflow: ellipsis; }
.btn.small { padding: 5px 12px; font-size: 12.5px; }
.select {
  font: inherit; font-size: 13px; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px; padding: 6px 10px;
  max-width: 100%;
}
.select.dept { max-width: 220px; }
.tabs.sub { margin: 0 0 18px; }

/* --- экраны --- */
.apanel { display: none; }
.apanel.is-active { display: block;
  animation: rise .3s cubic-bezier(.22, .61, .36, 1) both; }
@media (prefers-reduced-motion: reduce) { .apanel.is-active { animation: none; } }

/* --- вход и первичная настройка --- */
.auth-card { max-width: 420px; margin: 60px auto 0; }
.auth-title { margin: 0 0 4px; font-size: 22px; font-weight: 600; letter-spacing: -.022em; }
.form-error { color: var(--issue); font-size: 13px; margin: 4px 0 0; }

/* --- формы --- */
.form { display: block; margin-top: 14px; }
.field { margin-top: 12px; }
.field-label { color: var(--muted); font-size: 10.5px; text-transform: uppercase;
  letter-spacing: .07em; margin-bottom: 4px; }
.input {
  font: inherit; font-size: 13.5px; color: var(--text); background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px; padding: 8px 11px;
  width: 100%; max-width: 100%;
}
.input:focus-visible { border-color: var(--accent); }
textarea.area { resize: vertical; line-height: 1.5; font-family: inherit; }
.check { display: inline-flex; align-items: center; gap: 7px; font-size: 13px;
  color: var(--muted); margin-top: 10px; cursor: pointer; }
.check input { accent-color: var(--accent); }
.actions, .toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-end;
  margin-top: 12px; }
.toolbar .field { margin-top: 0; }
.card-form { border-top: 1px solid var(--border-soft); margin-top: 16px; padding-top: 14px; }
.edit:empty { display: none; }

/* Нормы правятся построчно: норма — это продукция, показатель, единица и
   формулировка сразу, по частям она не проверяема. */
.norms { margin-top: 6px; }
/* Восемь колонок: к тексту нормы добавлена её формулировка — по алгоритму
   сверяется и она, а не только предел. */
.norm-row { display: grid; gap: 6px; margin-top: 6px;
  grid-template-columns: 1.3fr 1.3fr .7fr 1.3fr 1fr .6fr .6fr 32px;
  align-items: center; }
.norm-head { color: var(--muted); font-size: 10.5px; text-transform: uppercase;
  letter-spacing: .07em; margin-top: 0; }
@media (max-width: 720px) { .norm-row { grid-template-columns: minmax(0, 1fr); } }

/* --- таблицы данных --- */
table.grid { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
table.grid th {
  text-align: left; color: var(--muted); font-weight: 600; font-size: 10.5px;
  letter-spacing: .05em; text-transform: uppercase; padding: 9px 12px;
  border-bottom: 1px solid var(--border); white-space: nowrap;
}
table.grid td {
  padding: 9px 12px; border-bottom: 1px solid var(--border-soft); vertical-align: top;
  overflow-wrap: anywhere; line-height: 1.5;
}
table.grid tbody tr:hover td { background: var(--surface-2); }
/* Неудачный вызов модели обязан отличаться от удачного с одного взгляда. */
table.grid tbody tr.is-failed td { color: var(--issue); background: var(--issue-soft); }

/* --- итоговое решение --- */
.decision { border-left: 3px solid var(--border); }
.decision.is-ok { border-left-color: var(--ok); }
.decision.is-issues { border-left-color: var(--issue); }
.decision.is-pending { border-left-color: var(--pending); }
.decision-label { font-size: 18px; font-weight: 600; letter-spacing: -.02em; margin-bottom: 8px; }
.decision.is-ok .decision-label { color: var(--ok); }
.decision.is-issues .decision-label { color: var(--issue); }
.decision.is-pending .decision-label { color: var(--pending); }
.decision-basis { margin: 0 0 5px; font-size: 13.3px; line-height: 1.55; }
.decision-unchecked {
  margin-top: 10px; padding: 9px 12px; border-radius: 10px; font-size: 12.8px;
  background: var(--pending-soft); color: var(--pending);
}

/* Расход показывается всегда: проверка, которая ничего не стоила, и проверка,
   цена которой неизвестна, — разные состояния. */
.usage {
  margin-top: 12px; font-size: 12.5px; color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.card .usage { margin-top: 14px; }
