/* License Manager — dashboard styles.
   Mobile first: a top bar and slide-out menu below 1024px, a fixed sidebar above.
   No build step; this file is served as it is. */

:root {
    --plum: #4F213B;
    --plum-700: #3E1A2E;
    --plum-900: #2A1220;
    --plum-50: #F8F1F5;
    --plum-100: #EFDFE8;
    --gold: #B8935A;
    --gold-300: #E3CDA6;
    --ink: #1F1B1D;
    --body: #4A4348;
    --muted: #7C7378;
    --line: #E8E1DA;
    --line-strong: #D8CEC4;
    --bg: #F6F3EF;
    --card: #FFFFFF;

    --green: #17663F;
    --green-bg: #E5F4EB;
    --amber: #8A5A00;
    --amber-bg: #FCF1D8;
    --red: #B42318;
    --red-bg: #FDECEA;
    --blue: #22529F;
    --blue-bg: #E7EEFA;
    --violet: #5B3AA8;
    --violet-bg: #EFE9FB;
    --gray: #5F585C;
    --gray-bg: #EFEBE7;

    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 1px 2px rgba(31, 27, 29, .04), 0 6px 20px -12px rgba(79, 33, 59, .18);
    --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans Bengali", "Hind Siliguri", sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
    --sidebar: 256px;
    --tap: 44px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--body);
    font: 15px/1.55 var(--font);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); line-height: 1.25; margin: 0; }
h1 { font-size: 24px; font-weight: 700; letter-spacing: -.01em; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
h2 { font-size: 16px; font-weight: 650; }
p { margin: 0; }
a { color: var(--plum); text-decoration: none; }
a:hover { text-decoration: underline; }
code, .mono { font-family: var(--mono); font-size: .92em; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.nowrap { white-space: nowrap; }
.upper { text-transform: uppercase; }
.sr-only, .skip-link:not(:focus) {
    position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 100; background: #fff; padding: 8px 12px; border-radius: 8px; }
.icon { flex: none; display: block; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------------------------------------------------------------- Frame */

.app { min-height: 100vh; }

.topbar {
    position: sticky; top: 0; z-index: 30;
    display: flex; align-items: center; gap: 8px;
    height: 56px; padding: 0 8px;
    padding-top: env(safe-area-inset-top);
    background: var(--plum-900); color: #fff;
}
.topbar-title { flex: 1; min-width: 0; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.icon-btn {
    display: inline-grid; place-items: center;
    width: var(--tap); height: var(--tap);
    border: 0; border-radius: 10px; background: transparent; color: inherit; cursor: pointer;
}
.icon-btn:hover { background: rgba(255, 255, 255, .1); text-decoration: none; }

.sidebar {
    position: fixed; inset: 0 auto 0 0; z-index: 50;
    width: min(86vw, 300px);
    display: flex; flex-direction: column; gap: 18px;
    padding: 18px 14px calc(18px + env(safe-area-inset-bottom));
    background: var(--plum-900); color: #F3E9EE;
    transform: translateX(-104%);
    transition: transform .22s ease;
    overflow-y: auto;
}
body.nav-open .sidebar { transform: none; box-shadow: 12px 0 40px rgba(0, 0, 0, .3); }
.backdrop { position: fixed; inset: 0; z-index: 40; background: rgba(20, 8, 14, .45); opacity: 0; pointer-events: none; transition: opacity .2s; }
body.nav-open .backdrop { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

.brand { display: flex; align-items: center; gap: 10px; padding: 0 6px; font-weight: 700; font-size: 16px; color: #fff; }
.brand-name { flex: 1; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--plum); color: var(--gold-300); }

.nav { display: flex; flex-direction: column; gap: 2px; }
.nav-link {
    display: flex; align-items: center; gap: 12px;
    min-height: var(--tap); padding: 0 12px;
    border: 0; border-radius: 10px; background: transparent;
    color: #E6D5DE; font: inherit; font-weight: 500; text-align: left; cursor: pointer; width: 100%;
}
.nav-link:hover { background: rgba(255, 255, 255, .07); color: #fff; text-decoration: none; }
.nav-link.is-active { background: rgba(227, 205, 166, .14); color: #fff; }
.nav-link.is-active .icon { color: var(--gold-300); }

.sidebar-foot { margin-top: auto; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 12px; display: flex; flex-direction: column; gap: 4px; }
.sidebar-foot form { margin: 0; }
.who { padding: 0 12px; font-size: 12.5px; color: #B9A3AF; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.main { padding: 16px 16px calc(40px + env(safe-area-inset-bottom)); max-width: 1240px; margin: 0 auto; }

@media (min-width: 1024px) {
    .topbar, .backdrop, .nav-close { display: none; }
    .app { display: grid; grid-template-columns: var(--sidebar) minmax(0, 1fr); }
    .sidebar { position: sticky; top: 0; height: 100vh; width: auto; transform: none; transition: none; }
    body.nav-open { overflow: auto; }
    .main { padding: 32px 40px 56px; width: 100%; }
}

/* ---------------------------------------------------------------- Page parts */

.page-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 16px; margin: 4px 0 20px; }
.page-head > div { min-width: 0; }
.page-head p { margin-top: 4px; }
.back { display: inline-block; margin-bottom: 6px; font-size: 13.5px; color: var(--muted); }

.section { margin-top: 28px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.section-actions { display: flex; gap: 14px; }
.link { font-size: 14px; font-weight: 500; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 0; }
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.card-body { padding: 18px; }
.card-flush { overflow: hidden; }
.narrow { max-width: 680px; }

.split { display: grid; gap: 16px; margin-top: 16px; }
.split > .section { margin-top: 12px; }
@media (min-width: 900px) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }
    .split-wide { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}

.stack { display: flex; flex-direction: column; gap: 16px; }
.button-row { display: flex; flex-wrap: wrap; gap: 8px; }
.button-row .btn { flex: 1 1 auto; }
.form-actions { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }

/* ---------------------------------------------------------------- Stats */

.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; } }
.stats-compact { margin-bottom: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat {
    display: flex; flex-direction: column; gap: 2px;
    padding: 14px 16px; border-radius: var(--radius);
    background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); color: var(--body);
}
a.stat:hover { border-color: var(--plum-100); text-decoration: none; }
.stat-label { font-size: 12.5px; color: var(--muted); }
.stat-num { font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1.2; font-variant-numeric: tabular-nums; overflow-wrap: anywhere; }
.stats-compact .stat-num { font-size: 20px; }
.stat-amber { background: var(--amber-bg); border-color: #F1DDAE; }
.stat-amber .stat-num { color: var(--amber); }
.stat-red { background: var(--red-bg); border-color: #F6CDC8; }
.stat-red .stat-num { color: var(--red); }

/* ---------------------------------------------------------------- Products */

.product-grid { display: grid; gap: 12px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); } }
.product-card {
    display: flex; align-items: center; gap: 14px;
    padding: 16px; border-radius: var(--radius);
    background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); color: var(--body);
    transition: border-color .15s, transform .15s;
}
.product-card:hover { border-color: var(--plum-100); transform: translateY(-1px); text-decoration: none; }
.product-card.is-archived { opacity: .6; }
.product-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; flex: none; }
.product-icon-theme { background: var(--plum-50); color: var(--plum); }
.product-icon-plugin { background: var(--blue-bg); color: var(--blue); }
.product-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.product-name { font-weight: 650; color: var(--ink); font-size: 16px; }
.product-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.product-stats { display: flex; gap: 14px; font-size: 13px; color: var(--muted); }
.product-stats strong { color: var(--ink); }
.product-chevron { color: var(--line-strong); }

/* ---------------------------------------------------------------- Tabs and chips */

.tabs {
    display: flex; gap: 4px; margin: 0 0 16px; border-bottom: 1px solid var(--line-strong);
    overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
    display: inline-flex; align-items: center; gap: 8px; flex: none;
    min-height: var(--tap); padding: 0 14px; margin-bottom: -1px;
    border-bottom: 2px solid transparent; color: var(--muted); font-weight: 550;
}
.tab:hover { color: var(--ink); text-decoration: none; }
.tab.is-active { color: var(--plum); border-bottom-color: var(--plum); }

.chips { display: flex; gap: 6px; margin: 12px 0 14px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip {
    flex: none; display: inline-flex; align-items: center; min-height: 34px; padding: 0 14px;
    border: 1px solid var(--line-strong); border-radius: 999px; background: var(--card);
    color: var(--body); font-size: 13.5px; font-weight: 500;
}
.chip:hover { border-color: var(--plum); color: var(--plum); text-decoration: none; }
.chip.is-active { background: var(--plum); border-color: var(--plum); color: #fff; }

/* ---------------------------------------------------------------- Filters */

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters .search { flex: 1 1 240px; }
.filters select { flex: 1 1 140px; width: auto; }
.filters .btn { flex: 0 0 auto; }
.search { position: relative; }
.search .icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search input { padding-left: 38px; }
.count { margin-bottom: 8px; }

/* ---------------------------------------------------------------- Tables → cards on phones */

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; padding: 10px 16px; background: #FBF9F7; border-bottom: 1px solid var(--line); }
.table td { padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: #FCFAF8; }
.table tr.is-dim { opacity: .55; }
.table .mono { white-space: nowrap; }
.cell-primary strong { color: var(--ink); }
.cell-primary .badge { margin-left: 4px; }
.cell-link { display: flex; flex-direction: column; color: var(--body); }
.cell-link:hover { text-decoration: none; }
.cell-link:hover strong { color: var(--plum); text-decoration: underline; }
.cell-primary > .small { display: block; }
.cell-actions { text-align: right; white-space: nowrap; }
.cell-actions form { margin: 0; }

@media (max-width: 759px) {
    .stack-on-mobile thead { display: none; }
    .stack-on-mobile, .stack-on-mobile tbody { display: block; }
    .stack-on-mobile tr { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
    .stack-on-mobile tbody tr:last-child { border-bottom: 0; }
    .stack-on-mobile td { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; padding: 0; border: 0; min-width: 0; }
    .stack-on-mobile td[data-label]::before { content: attr(data-label); font-size: 11.5px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
    .stack-on-mobile .cell-primary { grid-column: 1 / -1; font-size: 15px; }
    .stack-on-mobile .cell-actions { grid-column: 1 / -1; text-align: left; align-items: stretch; }
    .stack-on-mobile .cell-actions:empty { display: none; }
    .stack-on-mobile .cell-actions .btn { width: 100%; }
}

/* ---------------------------------------------------------------- Rows, facts, events */

.rows { list-style: none; margin: 0; padding: 0; }
.row { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-bottom: 1px solid var(--line); }
.row:last-child { border-bottom: 0; }
.row-top { align-items: flex-start; }
.row form { margin: 0; flex: none; }
.row-actions { display: flex; gap: 6px; flex: none; }
.row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; color: var(--body); }
a.row-main:hover { text-decoration: none; }
a.row-main:hover strong { color: var(--plum); }
.row-main strong { color: var(--ink); }
.row-main .badge { align-self: flex-start; }
.changelog { margin-top: 6px; font-size: 13.5px; white-space: normal; }

.facts { margin: 0; padding: 6px 18px; }
.facts > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.facts > div:last-child { border-bottom: 0; }
.facts dt { color: var(--muted); font-size: 14px; }
.facts dd { margin: 0; text-align: right; color: var(--ink); font-weight: 500; min-width: 0; overflow-wrap: anywhere; }

.actions-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; border-top: 1px solid var(--line); }
.actions-grid form { margin: 0; }
.actions-grid .btn { padding: 0 10px; font-size: 14px; white-space: nowrap; }

.events { list-style: none; margin: 0; padding: 6px 0; }
.event { display: flex; gap: 12px; padding: 10px 18px; }
.event-dot { flex: none; width: 8px; height: 8px; margin-top: 8px; border-radius: 50%; background: var(--green); }
.event-warn .event-dot { background: var(--red); }
.event-body { min-width: 0; display: flex; flex-direction: column; }
.event-title { color: var(--ink); font-weight: 500; }
.event-meta { overflow-wrap: anywhere; }

.empty { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 36px 20px; text-align: center; color: var(--muted); }
.empty .icon { color: var(--line-strong); }
.empty-page { min-height: 50vh; justify-content: center; }
.empty-inline { padding: 18px; color: var(--muted); font-size: 14px; }

.pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }

/* ---------------------------------------------------------------- Badges */

.badge {
    display: inline-flex; align-items: center; gap: 4px; vertical-align: middle;
    padding: 2px 9px; border-radius: 999px;
    font-size: 12px; font-weight: 600; line-height: 1.6; white-space: nowrap;
    background: var(--gray-bg); color: var(--gray);
}
.badge .icon { width: 13px; height: 13px; }
.badge-active { background: var(--green-bg); color: var(--green); }
.badge-expiring { background: var(--amber-bg); color: var(--amber); }
.badge-expired, .badge-suspended { background: var(--red-bg); color: var(--red); }
.badge-revoked { background: var(--gray-bg); color: var(--gray); }
.badge-lifetime { background: var(--violet-bg); color: var(--violet); }
.badge-yearly { background: var(--blue-bg); color: var(--blue); }
.badge-theme { background: var(--plum-50); color: var(--plum); }
.badge-plugin { background: var(--blue-bg); color: var(--blue); }
h1 .badge { font-size: 12.5px; }

/* ---------------------------------------------------------------- Buttons */

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: var(--tap); padding: 0 18px;
    border: 1px solid var(--plum); border-radius: 10px;
    background: var(--plum); color: #fff;
    font: inherit; font-weight: 600; line-height: 1.2; text-align: center; cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: var(--plum-700); border-color: var(--plum-700); text-decoration: none; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-light { background: var(--card); color: var(--ink); border-color: var(--line-strong); }
.btn-light:hover { background: var(--plum-50); border-color: var(--plum-100); color: var(--plum); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--plum-900); }
.btn-gold:hover { background: var(--gold-300); border-color: var(--gold-300); color: var(--plum-900); }
.btn-ghost-danger { background: transparent; color: var(--red); border-color: #F2C4BE; }
.btn-ghost-danger:hover { background: var(--red-bg); border-color: var(--red); color: var(--red); }
.btn-sm { min-height: 36px; padding: 0 12px; font-size: 13.5px; border-radius: 8px; }
.btn-lg { min-height: 50px; font-size: 16px; }
.btn-block { width: 100%; }
.btn.is-copied { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------------------------------------------------------------- Forms */

fieldset { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
legend { font-weight: 650; color: var(--ink); margin-bottom: 10px; padding: 0; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-weight: 600; color: var(--ink); font-size: 14px; }
.field small, .toggle small { color: var(--muted); font-size: 12.5px; }

input:where(:not([type=radio], [type=checkbox], [type=file])), select, textarea {
    width: 100%; min-height: var(--tap);
    padding: 10px 12px;
    border: 1px solid var(--line-strong); border-radius: 10px;
    background: #fff; color: var(--ink);
    font: inherit; font-size: 16px; /* 16px stops iOS zooming in */
}
textarea { min-height: 88px; resize: vertical; line-height: 1.5; }
input:focus, select:focus, textarea:focus { border-color: var(--plum); box-shadow: 0 0 0 3px rgba(79, 33, 59, .12); }
input[disabled], input[readonly], textarea[readonly] { background: #FAF7F4; color: var(--body); }
@media (min-width: 760px) {
    input:where(:not([type=radio], [type=checkbox], [type=file])), select, textarea { font-size: 15px; }
}

.grid-2 { display: grid; gap: 12px 16px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.choices { display: grid; gap: 10px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 520px) { .choices-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.choice {
    position: relative; display: flex; flex-direction: column; gap: 2px;
    padding: 14px 14px 14px 44px; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
    background: #fff; cursor: pointer;
}
.choice input { position: absolute; left: 14px; top: 16px; width: 18px; height: 18px; accent-color: var(--plum); }
.choice-title { display: flex; align-items: center; gap: 6px; font-weight: 650; color: var(--ink); }
.choice-text { font-size: 13px; color: var(--muted); }
.choice:has(input:checked) { border-color: var(--plum); background: var(--plum-50); }

.toggle { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.toggle input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--plum); flex: none; }
.toggle span { display: flex; flex-direction: column; }
.toggle strong { color: var(--ink); }

.dropzone {
    position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 22px 16px; border: 1.5px dashed var(--line-strong); border-radius: var(--radius);
    background: #FCFAF8; text-align: center; color: var(--muted); cursor: pointer;
}
.dropzone:hover, .dropzone:focus-within { border-color: var(--plum); color: var(--plum); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone span { font-weight: 600; color: var(--ink); overflow-wrap: anywhere; }

.copy-field { display: flex; gap: 8px; }
.copy-field input { flex: 1; min-width: 0; font-family: var(--mono); font-size: 13px; }
.copy-field .btn { flex: none; padding: 0 14px; }

.keybox {
    padding: 22px 12px; border: 2px dashed var(--plum-100); border-radius: var(--radius);
    background: var(--plum-50); color: var(--plum);
    font-family: var(--mono); font-size: clamp(13px, 3.7vw, 26px); font-weight: 700;
    letter-spacing: .03em; text-align: center; overflow-wrap: anywhere; user-select: all;
}

/* ---------------------------------------------------------------- Flash */

.flash { padding: 12px 14px; border-radius: 10px; margin-bottom: 14px; font-size: 14.5px; border: 1px solid transparent; }
.flash-success { background: var(--green-bg); color: var(--green); border-color: #C9E8D5; }
.flash-error { background: var(--red-bg); color: var(--red); border-color: #F6CDC8; }
.flash-info { background: var(--blue-bg); color: var(--blue); border-color: #CCDAF3; }
.stack > .flash { margin-bottom: 0; }

/* ---------------------------------------------------------------- Sign-in and installer */

body.bare {
    min-height: 100vh;
    background: radial-gradient(1200px 600px at 10% -10%, #5E2A47 0%, transparent 60%), var(--plum-900);
}
.bare-main { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 40px 16px calc(40px + env(safe-area-inset-bottom)); }
.bare-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 17px; }
.bare-card { width: 100%; max-width: 420px; }
.bare-card-wide { max-width: 640px; }
.bare-title { font-size: 22px; margin-bottom: 4px; }
.bare-card .card-body { padding: 24px; }
.bare-card .card-body > .muted { margin-bottom: 18px; }

.checks { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; }
.checks small { color: var(--muted); }
.check-mark { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; flex: none; font-weight: 700; font-size: 13px; }
.checks .ok .check-mark { background: var(--green-bg); color: var(--green); }
.checks .warn .check-mark { background: var(--amber-bg); color: var(--amber); }
.checks .bad .check-mark { background: var(--red-bg); color: var(--red); }

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