/* ==========================================================================
   M-KOPA Repeat Phone Regroup - design system (vanilla CSS, no frameworks)
   Brand: M-KOPA green on deep charcoal and white. Bright, legible, compact.
   Type scale: 14px body; headings 24 / 17 / 14.5; figures 22-30. Spacing on
   a 4px grid with a fluid gutter. Responsive: fluid spacing, priority table
   columns, card-style tables on phones, no horizontal scrolling at any width.
   ========================================================================== */
:root {
  --green: #43b049;
  --green-600: #379a3e;
  --green-700: #2b7f32;
  --green-800: #1f6127;
  --mint: #e8f6ea;
  --mint-2: #d2eed6;
  --mint-3: #b9e4bf;
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --line: #e3e9e5;
  --line-2: #cbd5d0;
  --bg: #f1f5f2;
  --card: #ffffff;
  --amber: #f59e0b;
  --amber-bg: #fff4dc;
  --red: #e11d48;
  --red-bg: #ffe4ea;
  --blue: #2563eb;
  --blue-bg: #e0eaff;
  --violet: #7c3aed;
  --violet-bg: #ede9fe;
  --sidebar-bg: #0c1a10;
  --sidebar-bg-2: #142a1b;
  --sidebar-ink: #c5d3c8;
  --sidebar-w: 248px;
  --sidebar-w-collapsed: 76px;
  --topbar-h: 64px;
  --gutter: clamp(14px, 2.2vw, 26px);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 30px -12px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 50px -20px rgba(15, 23, 42, 0.25);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; }
body { font-family: var(--font); color: var(--body); background: var(--bg); font-size: 14px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: clip; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; overflow-wrap: anywhere; }
h1 { font-size: clamp(20px, 1vw + 14px, 24px); }
h2 { font-size: clamp(15px, 0.4vw + 13px, 17px); }
h3 { font-size: 14.5px; }
p { margin: 0 0 8px; }
img, svg { max-width: 100%; }
code, .mono { font-family: var(--mono); font-size: 12.5px; }
code { background: var(--bg); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; overflow-wrap: anywhere; white-space: normal; }
.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.tiny { font-size: 11.5px; }
.strong { font-weight: 700; color: var(--ink); }
.nowrap { white-space: nowrap; }
.right { text-align: right; }
.center { text-align: center; }
.hidden { display: none !important; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 26px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 26px; }
.flex { display: flex; align-items: center; gap: 10px; min-width: 0; }
.flex-wrap { flex-wrap: wrap; }
.grow { flex: 1; min-width: 0; }
.gap-2 { gap: 16px; }
.stack { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.stack > *, .grid > * { min-width: 0; }

/* --------------------------------------------------------------------------
   App shell: sidebar + topbar + content
   -------------------------------------------------------------------------- */
.app { display: flex; min-height: 100vh; }
.sidebar {
  position: fixed; inset: 0 auto 0 0; width: var(--sidebar-w); color: var(--sidebar-ink);
  background: linear-gradient(180deg, var(--sidebar-bg-2) 0%, var(--sidebar-bg) 60%);
  display: flex; flex-direction: column; transition: width 0.2s ease; z-index: 40;
}
.sidebar .brand { display: flex; align-items: center; gap: 10px; padding: 9px 12px 9px 16px; min-height: var(--topbar-h); border-bottom: 1px solid rgba(255,255,255,0.07); }
.sidebar .brand a { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; min-width: 0; flex: 1; }
.sidebar .brand .mark { flex: 0 0 38px; width: 38px; height: 38px; filter: drop-shadow(0 6px 14px rgba(67,176,73,0.35)); }
.sidebar .brand .wordmark { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; overflow: hidden; }
.sidebar .brand .wordmark strong { color: #fff; font-size: 16px; letter-spacing: 0.1em; font-weight: 800; }
.sidebar .brand .wordmark small { color: var(--green); font-size: 10px; letter-spacing: 0.32em; font-weight: 800; margin-top: 2px; }
.sidebar .brand .wordmark span { color: var(--sidebar-ink); font-size: 11px; margin-top: 3px; opacity: 0.75; }
.hamburger {
  flex: 0 0 36px; width: 36px; height: 36px; border-radius: 9px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; padding: 0; transition: background 0.15s;
}
.hamburger:hover { background: rgba(67,176,73,0.22); border-color: rgba(67,176,73,0.5); }
.hamburger svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; }
.nav { padding: 12px 12px; display: flex; flex-direction: column; gap: 3px; flex: 1; overflow-y: auto; overflow-x: hidden; }
.nav .section { padding: 14px 10px 5px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(197,211,200,0.7); white-space: nowrap; font-weight: 700; }
.nav a {
  display: flex; align-items: center; gap: 12px; padding: 9px 12px; border-radius: 10px; color: var(--sidebar-ink);
  font-weight: 600; font-size: 13.5px; white-space: nowrap; transition: background 0.15s, color 0.15s; position: relative;
}
.nav a:hover { background: rgba(255,255,255,0.06); color: #fff; text-decoration: none; }
.nav a.active { background: linear-gradient(90deg, rgba(67,176,73,0.28), rgba(67,176,73,0.08)); color: #fff; box-shadow: inset 3px 0 0 var(--green); }
.nav a svg { flex: 0 0 20px; width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.nav a .pill { margin-left: auto; background: var(--green); color: #fff; font-size: 11px; font-weight: 800; border-radius: 999px; padding: 1px 7px; font-style: normal; }
.sidebar-foot { padding: 12px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-direction: column; gap: 6px; }
.sidebar-foot .user { display: flex; align-items: center; gap: 10px; padding: 6px 8px; white-space: nowrap; overflow: hidden; }
.sidebar-foot .user .who { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.sidebar-foot .user .who strong { color: #fff; font-size: 13px; overflow: hidden; text-overflow: ellipsis; }
.sidebar-foot .user .who span { font-size: 11.5px; opacity: 0.7; overflow: hidden; text-overflow: ellipsis; }
.sidebar-foot form { margin: 0; }
.ghost-btn {
  background: transparent; border: 1px solid rgba(255,255,255,0.12); color: var(--sidebar-ink); border-radius: 9px; padding: 8px 10px;
  cursor: pointer; display: flex; align-items: center; gap: 8px; width: 100%; font: inherit; font-size: 13px; white-space: nowrap;
}
.ghost-btn:hover { background: rgba(255,255,255,0.06); color: #fff; }
.ghost-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex: 0 0 16px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--green), var(--green-700)); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; flex: 0 0 34px; letter-spacing: 0.02em; }

.main { margin-left: var(--sidebar-w); flex: 1; min-width: 0; transition: margin-left 0.2s ease; display: flex; flex-direction: column; overflow-x: clip; }
.topbar {
  position: sticky; top: 0; z-index: 30; min-height: var(--topbar-h); background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 10px; padding: 0 var(--gutter); min-width: 0;
}
.topbar .menu-btn { display: none; flex: 0 0 auto; }
.topbar .search { flex: 1 1 160px; max-width: 680px; min-width: 0; position: relative; }
.topbar .search input {
  width: 100%; height: 40px; border: 1px solid var(--line-2); border-radius: 999px; padding: 0 46px 0 42px; font: inherit; font-size: 14px; background: var(--bg); color: var(--ink);
  text-overflow: ellipsis;
}
.topbar .search input:focus { outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 4px rgba(67,176,73,0.16); }
.topbar .search svg { position: absolute; left: 15px; top: 11px; width: 18px; height: 18px; stroke: var(--muted); fill: none; stroke-width: 2; }
.topbar .search kbd { position: absolute; right: 12px; top: 10px; font: 11.5px var(--mono); background: #fff; border: 1px solid var(--line-2); border-radius: 6px; padding: 1px 7px; color: var(--muted); }
.topbar .spacer { flex: 1; }
.topbar .pill-running { display: inline-flex; align-items: center; gap: 8px; background: var(--mint); color: var(--green-800); font-weight: 700; border-radius: 999px; padding: 7px 14px; font-size: 13px; border: 1px solid var(--mint-3); white-space: nowrap; flex: 0 0 auto; }
.topbar .pill-running:hover { text-decoration: none; background: var(--mint-2); }
.topbar .btn { flex: 0 0 auto; white-space: nowrap; }
.topbar .user-chip { display: flex; align-items: center; gap: 8px; padding: 4px 10px 4px 4px; border-radius: 999px; border: 1px solid var(--line); background: #fff; flex: 0 0 auto; }
.topbar .user-chip .name { font-weight: 700; color: var(--ink); font-size: 13px; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; flex: 0 0 8px; }
.dot.pulse { animation: pulse 1.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.7); opacity: 0.45; } }

.content { padding: var(--gutter); max-width: 1400px; width: 100%; min-width: 0; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; min-width: 0; }
.page-head > div { min-width: 0; }
.page-head .eyebrow { color: var(--green-700); font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 6px; }
.page-head .sub { color: var(--muted); margin-top: 6px; font-size: 14px; max-width: 72ch; overflow-wrap: anywhere; }
.page-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* collapsed sidebar */
body.sidebar-collapsed .sidebar { width: var(--sidebar-w-collapsed); }
body.sidebar-collapsed .main { margin-left: var(--sidebar-w-collapsed); }
body.sidebar-collapsed .sidebar .wordmark, body.sidebar-collapsed .nav a span, body.sidebar-collapsed .nav a .pill, body.sidebar-collapsed .nav .section,
body.sidebar-collapsed .sidebar-foot .user .who, body.sidebar-collapsed .ghost-btn span { display: none; }
body.sidebar-collapsed .sidebar .brand { flex-direction: column; gap: 10px; padding: 12px 10px; }
body.sidebar-collapsed .sidebar .brand a { justify-content: center; flex: 0 0 auto; }
body.sidebar-collapsed .nav { padding: 12px 10px; overflow: visible; } /* short enough not to scroll; lets tooltips escape */
body.sidebar-collapsed .nav a { justify-content: center; padding: 12px 0; }
body.sidebar-collapsed .ghost-btn { justify-content: center; }
body.sidebar-collapsed .sidebar-foot .user { justify-content: center; }
.nav a[data-tip] { position: relative; }
body.sidebar-collapsed .nav a[data-tip]:hover::after, body.sidebar-collapsed .nav a[data-tip]:focus-visible::after {
  content: attr(data-tip); position: absolute; left: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff;
  padding: 6px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 600; white-space: nowrap; z-index: 50; box-shadow: var(--shadow-lg);
}
.nav a:focus-visible, .ghost-btn:focus-visible, .hamburger:focus-visible, .btn:focus-visible, .input:focus-visible { outline: 3px solid rgba(67,176,73,0.45); outline-offset: 2px; }

/* --------------------------------------------------------------------------
   Hero panel
   -------------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; border-radius: 18px; padding: clamp(18px, 2.4vw, 28px); color: #fff; min-width: 0;
  background: radial-gradient(900px 400px at 110% -20%, rgba(255,255,255,0.18), transparent 60%), linear-gradient(120deg, var(--green-800) 0%, var(--green-600) 55%, var(--green) 100%);
  box-shadow: var(--shadow-lg); display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 22px; align-items: center;
}
.hero > * { min-width: 0; }
.hero::before { content: ""; position: absolute; right: -80px; bottom: -120px; width: 280px; height: 280px; border-radius: 50%; border: 38px solid rgba(255,255,255,0.08); }
.hero::after { content: ""; position: absolute; right: 150px; top: -80px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.07); }
.hero h1, .hero h2 { color: #fff; }
.hero h1 { font-size: clamp(20px, 1.2vw + 14px, 26px); }
.hero .lede { color: rgba(255,255,255,0.86); font-size: 14.5px; max-width: 520px; margin: 8px 0 16px; }
.hero .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero .btn-light { background: #fff; color: var(--green-800); border-color: #fff; }
.hero .btn-light:hover { background: var(--mint); }
.hero .btn-outline { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.2); }
.hero .flow { position: relative; z-index: 1; }
/* Dark glass on the green gradient so the small labels keep AA contrast at the light end of the gradient. */
.hero .flow .node { background: rgba(0,0,0,0.22); border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(4px); color: #fff; }
.hero .flow .node.dest { background: rgba(0,0,0,0.3); }
.hero .flow .node .k { color: #fff; font-size: 11.5px; }
.hero .flow .node .v, .hero .flow .node .id { color: #fff; }
.hero .flow .arrow { color: #fff; }
@media (max-width: 1100px) { .hero { grid-template-columns: 1fr; } }

.flow { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; min-width: 0; }
.flow .node { flex: 1 1 180px; min-width: 0; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: var(--mint); }
.flow .node.dest { background: #fff; }
.flow .node .k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-800); font-weight: 800; }
.flow .node .v { font-size: 16px; font-weight: 800; color: var(--ink); margin-top: 5px; line-height: 1.25; overflow-wrap: anywhere; }
.flow .node .id { font-family: var(--mono); color: var(--body); font-size: 12px; margin-top: 5px; overflow-wrap: anywhere; }
.flow .arrow { display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--green); font-weight: 800; padding: 0 2px; flex: 0 0 auto; }
.flow .arrow svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
@media (max-width: 560px) {
  .flow { flex-direction: column; }
  .flow .node { flex-basis: auto; }   /* the 180px basis is a width in row mode; stacked, it would become a minimum height */
  .flow .arrow svg { transform: rotate(90deg); animation: none; }
}

/* --------------------------------------------------------------------------
   Cards, stats, grids
   -------------------------------------------------------------------------- */
.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 var(--gutter); border-bottom: 1px solid var(--line); flex-wrap: wrap; min-width: 0; }
.card-head .hint { color: var(--muted); font-size: 12.5px; }
.card-body { padding: var(--gutter); min-width: 0; }
.card-body.tight { padding: 0; }
.grid { display: grid; gap: 18px; min-width: 0; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-main { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); }
.grid-side { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
@media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-main, .grid-side, .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 680px) { .grid-4, .grid-2 { grid-template-columns: 1fr; } .grid { gap: 14px; } }

.stat { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; position: relative; overflow: hidden; --accent: var(--green); --accent-bg: var(--mint); }
.stat.amber { --accent: var(--amber); --accent-bg: var(--amber-bg); }
.stat.blue { --accent: var(--blue); --accent-bg: var(--blue-bg); }
.stat.violet { --accent: var(--violet); --accent-bg: var(--violet-bg); }
.stat.red { --accent: var(--red); --accent-bg: var(--red-bg); }
.stat::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.stat .icon { position: absolute; right: 16px; top: 16px; width: 40px; height: 40px; border-radius: 12px; background: var(--accent-bg); display: grid; place-items: center; }
.stat .icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.stat .label { color: var(--muted); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; padding-right: 52px; }
.stat .value { font-size: clamp(24px, 1.4vw + 14px, 30px); font-weight: 800; color: var(--ink); line-height: 1.05; letter-spacing: -0.03em; overflow-wrap: anywhere; }
.stat .value.green { color: var(--green-700); }
.stat .value.red { color: var(--red); }
.stat .value.sm { font-size: 16px; }
.stat .sub { color: var(--muted); font-size: 12.5px; }

/* --------------------------------------------------------------------------
   Buttons, forms, badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 10px; padding: 9px 15px; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink); text-decoration: none; line-height: 1.2; transition: background 0.15s, border-color 0.15s, transform 0.08s;
  max-width: 100%;
}
.btn:hover { background: var(--bg); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn svg { width: 16px; height: 16px; flex: 0 0 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--green); border-color: var(--green); color: #fff; box-shadow: 0 8px 20px -8px rgba(67,176,73,0.7); }
.btn-primary:hover { background: var(--green-600); border-color: var(--green-600); }
.btn-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-dark:hover { background: #1e293b; }
.btn-danger { background: #fff; border-color: var(--red); color: var(--red); }
.btn-danger:hover { background: var(--red-bg); }
.btn-lg { padding: 12px 22px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 8px 12px; font-size: 12.5px; border-radius: 8px; min-height: 32px; }
.btn[disabled], .btn.disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.btn-ms { background: #fff; color: #1f2937; border-color: #cfd6dd; justify-content: center; }
.btn-ms:hover { background: #f3f4f6; }
.btn-ms .ms-logo { width: 16px; height: 16px; }

.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; min-width: 0; }
.form-row label { font-weight: 700; color: var(--ink); }
.form-row .help { color: var(--muted); font-size: 12.5px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
@media (max-width: 800px) { .form-grid { grid-template-columns: 1fr; } }
.input, select.input, textarea.input {
  width: 100%; max-width: 100%; border: 1px solid var(--line-2); border-radius: 10px; padding: 10px 12px; font: inherit; font-size: 14px; background: #fff; color: var(--ink);
}
.input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(67,176,73,0.16); }
.input-lg { font-size: 26px; font-weight: 800; padding: 12px 16px; max-width: 280px; letter-spacing: -0.02em; }
.checkbox { width: 18px; height: 18px; accent-color: var(--green); }
.errorlist { margin: 5px 0 0; padding: 0; list-style: none; color: var(--red); font-size: 12.5px; }
.group-name { font-size: 12.5px; margin-top: 4px; min-height: 18px; }
.group-name.ok { color: var(--green-700); font-weight: 700; }
.group-name.bad { color: var(--red); }

/* segmented radio (lead types) */
fieldset.segmented-wrap { border: 0; padding: 0; margin: 0 0 16px; min-width: 0; }
fieldset.segmented-wrap legend { padding: 0; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.segmented { display: flex; gap: 8px; flex-wrap: wrap; }
.segmented label { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1.5px solid var(--line-2); border-radius: 10px; cursor: pointer; font-weight: 700; color: var(--ink); background: #fff; transition: all 0.15s; user-select: none; flex: 1 1 auto; justify-content: center; }
.segmented label:hover { border-color: var(--green); }
.segmented input { position: absolute; opacity: 0; width: 0; height: 0; }
.segmented label:has(input:checked) { border-color: var(--green); background: var(--mint); box-shadow: 0 0 0 4px rgba(67,176,73,0.14); }
.segmented label:has(input:focus-visible) { outline: 3px solid rgba(67,176,73,0.45); }
.segmented .sw { width: 11px; height: 11px; border-radius: 50%; flex: 0 0 11px; }
.sw.hot { background: var(--red); } .sw.warm { background: var(--amber); } .sw.both { background: linear-gradient(90deg, var(--red) 50%, var(--amber) 50%); }

/* toggle switch */
.switch { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 700; color: var(--ink); min-height: 32px; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch .track { width: 42px; height: 24px; border-radius: 999px; background: var(--line-2); position: relative; transition: background 0.15s; flex: 0 0 42px; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: left 0.15s; }
.switch input:checked + .track { background: var(--amber); }
.switch input:checked + .track::after { left: 21px; }
.switch input:focus-visible + .track { outline: 3px solid rgba(67,176,73,0.45); }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; white-space: nowrap; background: var(--bg); color: var(--body); border: 1px solid var(--line); line-height: 1.2; max-width: 100%; }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.8; flex: 0 0 6px; }
.badge-updated, .badge-completed, .badge-success { background: var(--mint); color: var(--green-800); border-color: var(--mint-3); }
.badge-running, .badge-pending, .badge-preview { background: var(--blue-bg); color: #1d4ed8; border-color: #c7d7fe; }
.badge-failed, .badge-error { background: var(--red-bg); color: #be123c; border-color: #fecdd3; }
.badge-completed_with_errors, .badge-warning, .badge-skipped { background: var(--amber-bg); color: #b45309; border-color: #fde68a; }
.badge-cancelled { background: #eef0ee; color: #4b5563; }
.badge-hot { background: var(--red-bg); color: #be123c; border-color: #fecdd3; }
.badge-warm { background: var(--amber-bg); color: #b45309; border-color: #fde68a; }

/* --------------------------------------------------------------------------
   Messages and callouts
   -------------------------------------------------------------------------- */
.messages { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.msg { padding: 12px 16px; border-radius: 10px; border: 1px solid var(--line); background: #fff; display: flex; gap: 10px; align-items: flex-start; font-weight: 600; overflow-wrap: anywhere; }
.msg.success { background: var(--mint); border-color: var(--mint-3); color: var(--green-800); }
.msg.error { background: var(--red-bg); border-color: #fecdd3; color: #be123c; }
.msg.warning { background: var(--amber-bg); border-color: #fde68a; color: #b45309; }
.msg.info { background: var(--blue-bg); border-color: #c7d7fe; color: #1d4ed8; }
.callout { border-left: 4px solid var(--green); background: var(--mint); padding: 12px 16px; border-radius: 10px; color: var(--green-800); font-weight: 600; overflow-wrap: anywhere; }
.callout.warn { border-left-color: var(--amber); background: var(--amber-bg); color: #92400e; }
.callout.danger { border-left-color: var(--red); background: var(--red-bg); color: #9f1239; }

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; max-width: 100%; -webkit-overflow-scrolling: touch; }
table.table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.table th, .table td { padding: 11px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.table th { background: #f7faf7; color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; position: sticky; top: 0; z-index: 1; white-space: nowrap; }
.table td { overflow-wrap: anywhere; }
.table td.nowrap, .table td.num { white-space: nowrap; }
.table tbody tr:nth-child(even) td { background: #fbfdfb; }
.table tbody tr:hover td { background: var(--mint); }
.table td.wrap { white-space: normal; min-width: 200px; }
.table .num { font-family: var(--mono); font-size: 12.5px; }
.table tr.row-failed td { background: #fff5f7; }
.filter-row th { background: #f1f5f2; padding: 7px 8px; position: sticky; top: 40px; }
.filter-input { width: 100%; min-width: 90px; border: 1px solid var(--line-2); border-radius: 8px; padding: 7px 9px; font: inherit; font-size: 12.5px; background: #fff; }
.filter-input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(67,176,73,0.16); }
.filter-bar { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; padding: 12px var(--gutter); border-bottom: 1px solid var(--line); background: #f7faf7; min-width: 0; }
.filter-bar .f { display: flex; flex-direction: column; gap: 4px; min-width: 0; max-width: 100%; }
.filter-bar .f label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 800; white-space: nowrap; }
.filter-bar .filter-input { max-width: 100%; }
.ticket-link { font-family: var(--mono); font-weight: 800; color: var(--green-700); font-size: 13px; white-space: nowrap; }
.ticket-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.2; margin-left: 4px; vertical-align: -1px; }
.empty { padding: 40px 20px; text-align: center; color: var(--muted); font-size: 14px; }
.empty svg { width: 40px; height: 40px; stroke: var(--line-2); fill: none; stroke-width: 1.6; margin-bottom: 8px; }

/* Priority columns: drop the least important ones as the screen narrows, keep them all in the phone card view. */
.table .when { white-space: nowrap; line-height: 1.3; }
.table .when .tiny { display: block; }
.table .batch-ref .tiny { overflow-wrap: anywhere; white-space: normal; }
@media (max-width: 1680px) {   /* also covers 1441-1680px, where the expanded sidebar leaves the same room as a folded one at 1440px */
  .col-lg { display: none; }
  .table th, .table td { padding: 10px 8px; }
  .table th { white-space: normal; }
  .table .badge { white-space: normal; text-align: left; }
  .filter-input { min-width: 0; }
  table.table { font-size: 13px; }
}
@media (max-width: 1180px) { .col-md { display: none; } }
@media (max-width: 980px) { .col-sm { display: none; } }

.pagination { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px var(--gutter); border-top: 1px solid var(--line); flex-wrap: wrap; }
.pagination .pages { display: flex; gap: 6px; flex-wrap: wrap; }
.pagination a, .pagination span.cur { padding: 6px 10px; border-radius: 8px; border: 1px solid var(--line); background: #fff; font-size: 12.5px; font-weight: 600; white-space: nowrap; }
.pagination span.cur { background: var(--green); color: #fff; border-color: var(--green); }

/* Phone view: every row becomes a card with the column name in front of each value. */
@media (max-width: 720px) {
  table.table.responsive thead { display: none; }
  table.table.responsive, table.table.responsive tbody, table.table.responsive tr { display: block; width: 100%; }
  table.table.responsive tr { border: 1px solid var(--line); border-radius: 12px; margin: 10px; padding: 5px 0; background: #fff; box-shadow: var(--shadow); width: auto; }
  table.table.responsive td { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; padding: 7px 12px; border: 0; white-space: normal; text-align: right; background: transparent !important; }
  table.table.responsive td::before { content: attr(data-label); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 800; text-align: left; flex: 0 0 38%; }
  table.table.responsive td:not([data-label])::before { content: none; }
  table.table.responsive td:not([data-label]) { justify-content: flex-start; text-align: left; }
  table.table.responsive td.wrap { min-width: 0; }
  table.table.responsive td:empty, table.table.responsive td.empty-cell { display: none; }
  table.table.responsive .col-lg, table.table.responsive .col-md, table.table.responsive .col-sm { display: flex; }
  table.table.responsive td .badge { white-space: normal; }
  table.table.responsive td .tiny { display: block; }
  .table-wrap .small.muted[style] { display: none; }
}

/* --------------------------------------------------------------------------
   Progress, KPIs, logs, charts
   -------------------------------------------------------------------------- */
.progress { height: 14px; border-radius: 999px; background: #e4ebe6; overflow: hidden; }
.progress .bar { height: 100%; background: linear-gradient(90deg, var(--green-600), var(--green)); width: 0; transition: width 0.4s ease; border-radius: 999px; }
.progress .bar.striped { background-image: linear-gradient(45deg, rgba(255,255,255,0.28) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0.28) 75%, transparent 75%, transparent); background-size: 30px 30px; animation: stripes 1s linear infinite; }
@keyframes stripes { from { background-position: 0 0; } to { background-position: 30px 0; } }
.ring { position: relative; width: 130px; height: 130px; flex: 0 0 130px; }
.ring svg { width: 130px; height: 130px; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 12; stroke-linecap: round; }
.ring .track { stroke: #e4ebe6; }
.ring .fill { stroke: var(--green); transition: stroke-dashoffset 0.5s ease; }
.ring .label { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.ring .label strong { font-size: 26px; font-weight: 800; color: var(--ink); line-height: 1; }
.ring .label small { display: block; font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.kpi-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr)); gap: 10px; }
.kpi { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff; --accent: var(--line-2); box-shadow: inset 0 3px 0 var(--accent); min-width: 0; }
.kpi.green { --accent: var(--green); } .kpi.red { --accent: var(--red); } .kpi.amber { --accent: var(--amber); } .kpi.blue { --accent: var(--blue); }
.kpi .k { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }
.kpi .v { font-size: 22px; font-weight: 800; color: var(--ink); margin-top: 3px; letter-spacing: -0.02em; overflow-wrap: anywhere; }
.kpi.green .v { color: var(--green-700); } .kpi.red .v { color: var(--red); } .kpi.amber .v { color: #b45309; }
.console { background: #0c1a10; color: #d5e2d8; font-family: var(--mono); font-size: 12.5px; border-radius: 12px; padding: 14px 16px; max-height: 340px; overflow: auto; line-height: 1.6; border: 1px solid #1f3526; }
.console .line { display: flex; gap: 10px; }
.console .line span { min-width: 0; overflow-wrap: anywhere; }
.console .t { color: #7d9484; flex: 0 0 62px; }
.console .l-success { color: #86efac; } .console .l-warning { color: #fcd34d; } .console .l-error { color: #fda4af; } .console .l-info { color: #d5e2d8; }
.summary-box { background: var(--mint); border: 1px solid var(--mint-3); border-radius: 12px; padding: 14px 16px; font-size: 14px; color: var(--green-800); font-weight: 600; line-height: 1.55; overflow-wrap: anywhere; }

.chart { width: 100%; height: auto; display: block; }
.chart .grid-line { stroke: var(--line); stroke-width: 1; }
.chart .axis { fill: var(--muted); font-size: 11px; font-weight: 600; }
.chart .bar { fill: url(#barGradient); rx: 6; }
.chart .bar:hover { fill: var(--green-700); }
.chart .val { fill: var(--ink); font-size: 11.5px; font-weight: 800; text-anchor: middle; }
.donut { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.donut svg { width: 140px; height: 140px; flex: 0 0 140px; transform: rotate(-90deg); }
.donut circle { fill: none; stroke-width: 22; }
.donut .wrap { position: relative; width: 140px; height: 140px; flex: 0 0 140px; }
.donut .wrap .mid { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.donut .wrap .mid strong { font-size: 24px; color: var(--ink); line-height: 1; }
.donut .wrap .mid small { display: block; color: var(--muted); font-size: 11px; letter-spacing: 0.1em; font-weight: 800; margin-top: 4px; }
.legend { display: flex; flex-direction: column; gap: 8px; min-width: 0; flex: 1 1 150px; }
.legend .li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.legend .sw { width: 12px; height: 12px; border-radius: 4px; flex: 0 0 12px; }
.legend .n { margin-left: auto; font-weight: 800; color: var(--ink); font-family: var(--mono); }

.dl { display: grid; grid-template-columns: max-content minmax(0, 1fr); gap: 8px 18px; margin: 0; }
.dl dt { color: var(--muted); font-weight: 700; }
.dl dd { margin: 0; color: var(--ink); min-width: 0; overflow-wrap: anywhere; }
@media (max-width: 560px) { .dl { grid-template-columns: 1fr; gap: 2px 0; } .dl dd { margin-bottom: 8px; } }
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { padding: 12px 0 12px 26px; position: relative; border-left: 2px solid var(--line); margin-left: 10px; overflow-wrap: anywhere; }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 18px; width: 14px; height: 14px; border-radius: 50%; background: var(--green); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line-2); }
.timeline li.failed::before { background: var(--red); }
.timeline li.skipped::before, .timeline li.cancelled::before { background: var(--amber); }
.timeline li.preview::before { background: var(--blue); }
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 14px; }
.steps li { counter-increment: step; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px 14px 14px 54px; position: relative; line-height: 1.5; min-width: 0; }
.steps li::before { content: counter(step); position: absolute; left: 14px; top: 14px; width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 13px; }
.steps li strong { display: block; color: var(--ink); margin-bottom: 2px; }

/* --------------------------------------------------------------------------
   Login
   -------------------------------------------------------------------------- */
.login-wrap { min-height: 100vh; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); background: var(--bg); }
.login-brand { position: relative; overflow: hidden; color: #fff; padding: clamp(24px, 3.5vw, 48px); display: flex; flex-direction: column; justify-content: space-between; background: radial-gradient(800px 500px at 20% 10%, rgba(255,255,255,0.14), transparent 60%), linear-gradient(160deg, #0c1a10 0%, #17301d 45%, var(--green-800) 100%); }
.login-brand::after { content: ""; position: absolute; right: -140px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%; border: 54px solid rgba(67,176,73,0.22); }
.login-brand .mark { width: 64px; height: 64px; }
.login-brand h1 { color: #fff; font-size: clamp(26px, 2.6vw, 36px); margin: 24px 0 10px; max-width: 520px; }
.login-brand .lede { color: rgba(255,255,255,0.8); font-size: 15.5px; max-width: 520px; }
.login-brand ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; max-width: 520px; }
.login-brand li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,0.88); font-size: 14px; }
.login-brand li svg { width: 20px; height: 20px; flex: 0 0 20px; stroke: var(--green); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.login-brand .foot { color: rgba(255,255,255,0.7); font-size: 12.5px; position: relative; z-index: 1; margin-top: 24px; }
.login-form { display: grid; place-items: center; padding: clamp(18px, 3.5vw, 36px) 16px; }
.login-card { width: 100%; max-width: 420px; background: #fff; border-radius: 18px; padding: clamp(22px, 3.5vw, 34px); box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.login-card h2 { font-size: 22px; margin-bottom: 4px; }
.login-card .or { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12.5px; margin: 18px 0; }
.login-card .or::before, .login-card .or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
@media (max-width: 960px) { .login-wrap { grid-template-columns: 1fr; } .login-brand ul { display: none; } }

/* --------------------------------------------------------------------------
   Medium screens: the sidebar folds to icons automatically (the user can re-open it).
   -------------------------------------------------------------------------- */
@media (max-width: 1440px) and (min-width: 961px) {
  body.sidebar-auto .sidebar { width: var(--sidebar-w-collapsed); }
  body.sidebar-auto .main { margin-left: var(--sidebar-w-collapsed); }
  body.sidebar-auto .sidebar .wordmark, body.sidebar-auto .nav a span, body.sidebar-auto .nav a .pill, body.sidebar-auto .nav .section,
  body.sidebar-auto .sidebar-foot .user .who, body.sidebar-auto .ghost-btn span { display: none; }
  body.sidebar-auto .sidebar .brand { flex-direction: column; gap: 10px; padding: 12px 10px; }
  body.sidebar-auto .sidebar .brand a { justify-content: center; flex: 0 0 auto; }
  body.sidebar-auto .nav { padding: 12px 10px; overflow: visible; }
  body.sidebar-auto .nav a { justify-content: center; padding: 12px 0; }
  body.sidebar-auto .ghost-btn, body.sidebar-auto .sidebar-foot .user { justify-content: center; }
  body.sidebar-auto .nav a[data-tip]:hover::after, body.sidebar-auto .nav a[data-tip]:focus-visible::after {
    content: attr(data-tip); position: absolute; left: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--ink); color: #fff;
    padding: 6px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 600; white-space: nowrap; z-index: 50; box-shadow: var(--shadow-lg);
  }
}
@media (max-width: 1180px) {
  .topbar .btn .label, .topbar .pill-running .label { display: none; }
  .topbar .pill-running { padding: 7px 10px; min-width: 40px; min-height: 40px; justify-content: center; }
}

/* --------------------------------------------------------------------------
   Small screens: the sidebar becomes a drawer
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .sidebar { transform: translateX(-100%); width: min(var(--sidebar-w), 86vw); transition: transform 0.2s ease; }
  body.sidebar-open .sidebar { transform: translateX(0); box-shadow: var(--shadow-lg); }
  /* The drawer always shows the full menu, even when the desktop "collapsed" preference is stored. */
  body.sidebar-collapsed .sidebar { width: min(var(--sidebar-w), 86vw); }
  body.sidebar-collapsed .sidebar .wordmark, body.sidebar-collapsed .sidebar-foot .user .who { display: flex; }
  body.sidebar-collapsed .nav a span, body.sidebar-collapsed .ghost-btn span, body.sidebar-collapsed .nav a .pill { display: inline; }
  body.sidebar-collapsed .nav .section { display: block; }
  body.sidebar-collapsed .sidebar .brand { flex-direction: row; gap: 10px; padding: 9px 12px 9px 16px; }
  body.sidebar-collapsed .sidebar .brand a { justify-content: flex-start; flex: 1; }
  body.sidebar-collapsed .nav { padding: 12px 12px; overflow-y: auto; overflow-x: hidden; }
  body.sidebar-collapsed .nav a { justify-content: flex-start; padding: 9px 12px; }
  body.sidebar-collapsed .ghost-btn, body.sidebar-collapsed .sidebar-foot .user { justify-content: flex-start; }
  body.sidebar-collapsed .nav a[data-tip]:hover::after { display: none; }
  /* Touch targets in the drawer: 40px minimum. */
  .hamburger { width: 40px; height: 40px; flex: 0 0 40px; }
  .nav a { min-height: 40px; }
  .ghost-btn { min-height: 40px; }
  .main, body.sidebar-collapsed .main { margin-left: 0; }
  .topbar { padding: 0 14px; gap: 8px; }
  .topbar .menu-btn { display: inline-flex; justify-content: center; width: 40px; height: 40px; padding: 0; background: var(--ink); border-color: var(--ink); color: #fff; }
  .topbar .search kbd, .topbar .user-chip .name { display: none; }
  .topbar .search input { padding-left: 40px; padding-right: 12px; }
  .topbar .user-chip { padding: 4px; border: 0; background: transparent; }
  .page-head { margin-bottom: 16px; }
  .hero { padding: 20px 16px; border-radius: 16px; }
  .stat { padding: 16px; }
  .card-head { padding: 12px var(--gutter); }
  .ring { width: 110px; height: 110px; flex-basis: 110px; }
  .ring svg { width: 110px; height: 110px; }
  .ring .label strong { font-size: 22px; }
}
@media (max-width: 720px) {
  .topbar .btn-primary { display: none; }   /* the Run page is one tap away in the menu */
  .page-actions { width: 100%; }
  .page-actions .btn, .page-actions form { flex: 1 1 auto; }
  .page-actions .btn { justify-content: center; }
  .page-actions form .btn { width: 100%; justify-content: center; }
  .input-lg { max-width: 100%; font-size: 22px; }
  .filter-bar .f { flex: 1 1 140px; }
  .filter-bar .f label { white-space: normal; }
  .filter-bar .grow { display: none; }
  .btn-lg { padding: 11px 16px; font-size: 14.5px; }
  .hero .actions .btn { flex: 1 1 auto; justify-content: center; }
  .card-head h2 { flex: 1 1 100%; }
  .card-head .flex { width: 100%; }
  /* Touch targets: 40px minimum for everything tappable. */
  .btn, .filter-input, .pagination a, .pagination span.cur, .switch { min-height: 40px; }
  .pagination a, .pagination span.cur { display: inline-flex; align-items: center; }
  /* SVG text scales with the chart, so it needs bigger units on narrow screens to stay legible. */
  .chart .axis, .chart .val { font-size: 18px; }
}
@media (max-width: 420px) {
  body { font-size: 13.5px; }
  .segmented label { padding: 9px 10px; }
  .kpi .v { font-size: 20px; }
  .chart .axis, .chart .val { font-size: 24px; }
}
.scrim { position: fixed; inset: 0; background: rgba(15,23,42,0.45); z-index: 35; display: none; }
body.sidebar-open .scrim { display: block; }
@media print {
  .sidebar, .topbar, .page-actions, .filter-row, .pagination, .scrim { display: none !important; }
  .main { margin-left: 0; }
}

/* ------------------------------------------------------------------ Microsoft 365 sign-in activation */
.btn.is-disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.sso-off { text-align: center; }
.sso-off .tiny { margin-top: 6px; }
.check-list { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.check-list li { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 10px; align-items: start; font-size: 13px; line-height: 1.45; overflow-wrap: anywhere; }
.check-list li::before { content: "?"; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 11.5px; background: var(--amber-bg); color: #b45309; }
.check-list li.ok::before { content: "\2713"; background: var(--mint); color: var(--green-800); }
.check-list li.failed::before { content: "\2715"; background: var(--red-bg); color: #be123c; }
.check-list li.info::before { content: "i"; background: var(--blue-bg); color: #1d4ed8; }
.check-list li strong { display: block; color: var(--ink); }
