:root {
  --navy: #1b2a3d;
  --navy-2: #22344a;
  --gold: #d9a441;
  --gold-light: #f0c878;
  --bg: #eef1f5;
  --card: #ffffff;
  --text: #1b2a3d;
  --text-muted: #6b7688;
  --border: #dde2e9;
  --green: #2f9e5b;
  --green-bg: #e7f6ed;
  --red: #d64545;
  --red-bg: #fbeaea;
  --radius: 14px;

  /* Question-UI reading + cool-blue accents (question stem, answer cards,
     confidence buttons). Deliberately muted: no royal blue, no glow. */
  --q-font: "Atkinson Hyperlegible", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --blue: #3d6fa5;
  --blue-strong: #2f5c8a;
  --blue-border: #b7cce3;
  --blue-soft: #f0f5fa;
  --blue-softer: #f7fafd;
  --border-strong: #cfd7e2;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hidden { display: none !important; }

button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- VIEW SHELL ----------
   Each .view is a full-height flex column: an optional header/footer of
   intrinsic height, plus one .view-main that grows to fill the rest.
   .view-main centers its content with margin:auto, which centers short
   content vertically+horizontally without clipping when content overflows
   and the page needs to scroll. */
.view {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: 100%;
}
.view-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  padding: 32px 20px;
}

/* ---------- HOME ---------- */
.home-wrap {
  max-width: 720px;
  width: 100%;
  margin: auto;
  padding: 24px;
  text-align: center;
}
.home-title {
  font-size: 2.4rem;
  margin: 0 0 8px;
  color: var(--navy);
}
.home-sub {
  color: var(--text-muted);
  margin: 0 0 40px;
  font-size: 1.05rem;
}
.cert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 560px) {
  .cert-cards { grid-template-columns: 1fr; }
}
.cert-card {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: left;
  box-shadow: 0 6px 18px rgba(27,42,61,0.18);
  transition: transform 0.12s ease;
}
.cert-card:hover { transform: translateY(-3px); }
.cert-card-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.cert-card-name { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.cert-card-tagline { color: #b9c4d4; font-size: 0.92rem; margin-bottom: 14px; }
.cert-card-count { color: var(--gold-light); font-size: 0.85rem; font-weight: 600; }

/* ---------- TOPBAR (modules / setup) ---------- */
.topbar {
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}
.back-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.9rem;
}
.topbar-title { display: flex; align-items: center; gap: 12px; }
.topbar-icon { font-size: 1.6rem; }
.topbar-name { font-weight: 700; font-size: 1.1rem; }
.topbar-tagline { color: #b9c4d4; font-size: 0.85rem; }
.topbar-spacer { flex: 1; }

.modules-wrap, .setup-wrap {
  max-width: 720px;
  width: 100%;
  margin: auto;
  padding: 24px 20px;
}

.weak-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff7e8;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
  text-align: left;
}
.weak-flag { font-size: 1.5rem; color: var(--gold); }
.weak-sub { color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

.course-group { margin-bottom: 22px; }
.course-title { font-weight: 700; color: var(--navy); margin: 0 0 10px; font-size: 1rem; }
.module-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  text-align: left;
}
.module-row:hover { border-color: var(--gold); }
.module-row-name { font-weight: 600; }
.module-row-count { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- SETUP ---------- */
.setup-label { font-weight: 600; margin-bottom: 14px; }
.setup-options { display: flex; gap: 12px; flex-wrap: wrap; }
.setup-opt {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
.setup-opt:hover, .setup-opt.selected {
  border-color: var(--gold);
  background: #fff7e8;
}

/* ---------- QUIZ ---------- */
#view-quiz {
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}
.quiz-header {
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.quiz-header-title { display: flex; align-items: center; gap: 12px; }
.quiz-icon { font-size: 1.5rem; }
.quiz-cert-name { font-weight: 700; font-size: 1rem; }
.quiz-module-name { color: #b9c4d4; font-size: 0.82rem; }
.quit-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 0.88rem;
}

.progress-track {
  height: 5px;
  background: #2c3e56;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.25s ease;
}

.quiz-body {
  flex: 1;
  display: flex;
  min-height: 0;
  padding: 28px 20px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.quiz-content {
  max-width: 640px;
  width: 100%;
  margin: auto;
  text-align: center;
}
.q-counter-badge {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.q-counter { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px; }

.q-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 4px 16px rgba(27,42,61,0.08);
  text-align: left;
}
.q-text {
  font-family: var(--q-font);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.005em;
  margin: 0 0 32px;
  max-width: 60ch;
  text-align: left;
  text-wrap: pretty;
}
.q-answers { display: flex; flex-direction: column; gap: 12px; }
.q-answer {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fbfcfd;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.98rem;
  text-align: left;
  color: var(--text);
}
.q-answer:hover:not(:disabled) {
  background: var(--blue-softer);
  border-color: var(--blue-border);
}
.q-answer:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.q-answer:active:not(:disabled) { background: var(--blue-soft); }
.q-answer-letter {
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--navy);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.q-answer.correct { border-color: var(--green); background: var(--green-bg); }
.q-answer.correct .q-answer-letter { background: var(--green); }
.q-answer.incorrect { border-color: var(--red); background: var(--red-bg); }
.q-answer.incorrect .q-answer-letter { background: var(--red); }
.q-answer:disabled { cursor: default; }

.confidence-picker {
  background: #f7f8fa;
  margin-top: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 16px;
  text-align: center;
}
.confidence-label { display: block; color: var(--text-muted); font-size: 0.84rem; margin-bottom: 9px; }
.confidence-options { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.confidence-btn {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
}
.confidence-btn:hover:not(:disabled),
.confidence-btn:focus-visible {
  border-color: var(--blue-border);
  color: var(--blue-strong);
  background: var(--blue-soft);
}
.confidence-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.confidence-btn:active:not(:disabled) { background: #e6eef7; }
.confidence-btn.selected,
.confidence-btn.selected:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue-strong);
  background: #e4edf6;
}
.confidence-btn:disabled { cursor: default; opacity: 0.65; }

.q-feedback { margin-top: 22px; border-top: 1px solid var(--border); padding-top: 18px; }
.feedback-banner {
  font-weight: 700;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  font-size: 0.9rem;
}
.feedback-banner.correct { background: var(--green-bg); color: var(--green); }
.feedback-banner.incorrect { background: var(--red-bg); color: var(--red); }
.feedback-explain { margin: 0 0 8px; line-height: 1.5; }
.feedback-contrast { margin: 0 0 14px; line-height: 1.5; color: var(--text-muted); font-size: 0.92rem; }
.quiz-footer {
  background: var(--navy);
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  flex-shrink: 0;
}
.footer-btn {
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 0.92rem;
}
.footer-btn:disabled { opacity: 0.35; cursor: default; }
.footer-btn-primary { background: var(--gold); color: var(--navy); margin-left: auto; }

/* ---------- RESULTS ---------- */
.results-wrap { max-width: 640px; width: 100%; margin: auto; padding: 24px 20px; text-align: center; }
.results-title { color: var(--navy); margin-bottom: 6px; }
.results-score { font-size: 3rem; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.results-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.stat-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.88rem;
}
.stat-pill b { display: block; font-size: 1.15rem; }
.stat-pill.correct b { color: var(--green); }
.stat-pill.incorrect b { color: var(--red); }
.stat-pill.guessed b { color: var(--gold); }
.stat-pill.unsure b { color: #8a6415; }

.results-review { text-align: left; margin-bottom: 30px; }
.review-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.review-q { font-weight: 600; margin: 0 0 8px; }
.review-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-right: 6px;
  margin-bottom: 8px;
}
.review-tag.wrong { background: var(--red-bg); color: var(--red); }
.review-tag.guessed { background: #fff7e8; color: var(--gold); }
.review-tag.unsure { background: #fff7e8; color: #8a6415; }
.review-your { font-size: 0.88rem; color: var(--red); margin: 4px 0; }
.review-correct { font-size: 0.88rem; color: var(--green); margin: 4px 0; }
.review-explain { font-size: 0.85rem; color: var(--text-muted); margin: 6px 0 0; }
.review-contrast { font-size: 0.85rem; color: var(--text-muted); margin: 6px 0 0; }
.review-contrast strong { color: var(--text); }

.results-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.results-actions .footer-btn { background: var(--navy); }
.results-actions .footer-btn-primary { background: var(--gold); color: var(--navy); margin-left: 0; }

/* ---------- IMPORT ---------- */
.import-row { margin-top: 28px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.import-btn {
  background: transparent;
  border: 1.5px dashed var(--border);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
}
.import-btn:hover { border-color: var(--gold); color: var(--navy); }
.import-btn:disabled { opacity: 0.45; cursor: default; }
.log-summary { margin-top: 10px; color: var(--text-muted); font-size: 0.8rem; }
.import-result {
  margin: 14px auto 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  white-space: pre-wrap;
  text-align: left;
  max-width: 480px;
}
.import-result-ok { background: var(--green-bg); color: var(--green); }
.import-result-warn { background: #fff7e8; color: #8a6415; }
.import-result-error { background: var(--red-bg); color: var(--red); }

/* ---------- NARROW / MOBILE ---------- */
@media (max-width: 480px) {
  .topbar, .quiz-header, .quiz-footer { padding-left: 14px; padding-right: 14px; }
  .quiz-body { padding: 20px 14px; }
  .q-card { padding: 22px 18px; }
  .q-text { font-size: 1.13rem; max-width: none; }
  .home-title { font-size: 1.9rem; }
}

/* ================================================================
   SEC+ QUIZ ADDITIONS
   Everything above is the shared Cert_Quiz_App design language.
   Below: the bits specific to this single-cert, domain-driven app.
   ================================================================ */

/* ---------- HOME: domain list ---------- */
.home-wrap { max-width: 760px; }
.home-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.domain-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.domain-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-align: left;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(27,42,61,0.06);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.domain-card:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.domain-card:disabled {
  cursor: default;
  opacity: 0.55;
  border-left-color: var(--border);
  box-shadow: none;
}
.domain-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.domain-card:disabled .domain-num { background: var(--text-muted); }
.domain-body { flex: 1; min-width: 0; }
.domain-name { display: block; font-weight: 700; font-size: 1.02rem; }
.domain-meta { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 3px; }
.domain-go { color: var(--gold); font-size: 1.3rem; font-weight: 700; flex-shrink: 0; }
.domain-card:disabled .domain-go { color: var(--text-muted); font-size: 0.78rem; font-weight: 700; }

/* ---------- SETUP: custom count ---------- */
.setup-wrap { text-align: left; }
.setup-hint { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 20px; }
.setup-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.setup-custom label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.setup-custom input {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  width: 92px;
  padding: 11px 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--card);
}
.setup-custom input:focus { outline: none; border-color: var(--gold); }
.setup-start {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
}
.setup-start:disabled { opacity: 0.4; cursor: default; }

/* ---------- QUIZ: keyboard hint ---------- */
.kbd-hint {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-align: center;
}
.kbd-hint kbd {
  background: var(--card);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 1px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  color: var(--text);
}

/* ---------- RESULTS: pass/fail banner ---------- */
.results-verdict {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 14px;
}
.results-verdict.pass { background: var(--green-bg); color: var(--green); }
.results-verdict.fail { background: var(--red-bg); color: var(--red); }
.results-source { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 18px; }
.review-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  text-align: left;
}

/* --- Question exhibits -------------------------------------------------
   Some book questions ship a config listing, a rule list or a figure. The
   stem cannot be answered without it, so it sits between the question and
   the answers, in both the quiz view and the results review list. */
.q-exhibit {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: left;
  white-space: pre-wrap;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 14px 16px;
  margin: 0 0 24px;
  overflow-x: auto;
}
.q-figure {
  margin: 0 0 24px;
  text-align: center;
}
.q-figure img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
}

/* --- Mock exam ---------------------------------------------------------
   90 questions in 90 minutes, weighted like the real SY0-701. The card
   leads the home screen because a timed mixed mock is the only session
   type that measures exam readiness rather than topic knowledge. */
.mock-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  text-align: left;
  color: #fff;
}
.mock-card:disabled { opacity: 0.5; }
.mock-flag { font-size: 1.5rem; color: var(--gold-light); }
.mock-sub { color: #c8d2df; font-size: 0.85rem; margin-top: 2px; }

/* Countdown in the quiz header. Amber under 10 minutes, red under 5 --
   the point is to train pacing, so the clock has to be noticeable. */
.quiz-timer {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  margin-left: auto;
  margin-right: 12px;
}
.quiz-timer.warning { background: var(--gold); color: var(--navy); }
.quiz-timer.critical { background: var(--red); color: #fff; }

/* Per-domain breakdown on the results screen. */
.results-domains { margin: 0 0 28px; text-align: left; }
.domain-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.domain-row-num {
  font-weight: 700;
  color: var(--navy);
  min-width: 30px;
  font-size: 0.9rem;
}
.domain-row-name {
  flex: 1 1 auto;
  color: var(--text-muted);
  font-size: 0.88rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.domain-row-bar {
  flex: 0 0 110px;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.domain-row-fill { display: block; height: 100%; }
.domain-row-fill.pass { background: var(--green); }
.domain-row-fill.warn { background: var(--gold); }
.domain-row-fill.fail { background: var(--red); }
.domain-row-score {
  flex: 0 0 92px;
  text-align: right;
  font-weight: 700;
  font-size: 0.85rem;
}
.domain-row-score.pass { color: var(--green); }
.domain-row-score.warn { color: #a8781f; }
.domain-row-score.fail { color: var(--red); }
.domain-hint {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Objective picker -------------------------------------------------
   One row per exam objective within a domain. The exam publishes 28 of
   these across the five domains, and they are the grain at which "what
   should I study tonight" is actually answerable -- a domain score of 40%
   hides a 0/3 objective sitting beside a 6/6 one. Colour bands match the
   results breakdown deliberately: same meaning, same colour, everywhere. */
.objective-list { display: flex; flex-direction: column; gap: 8px; }
.objective-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
}
.objective-row:hover { border-color: var(--navy); }
.objective-row-all {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.objective-row-all .objective-num,
.objective-row-all .objective-meta { color: #fff; }
.objective-num {
  flex: 0 0 38px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.objective-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.92rem;
  line-height: 1.35;
}
/* The bank size, and how many of them have been answered before. Small on
   purpose: it is context for the score, not the headline. */
.objective-count {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.objective-meta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 0.85rem;
}
.objective-score { font-weight: 700; }
.objective-score.pass { color: var(--green); }
.objective-score.warn { color: #a8781f; }
.objective-score.fail { color: var(--red); }
/* "not tried" has to read as absence of data, not as a bad score. */
.objective-score.untried {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8rem;
}
.objective-weak {
  font-size: 0.75rem;
  color: var(--red);
}
@media (max-width: 560px) {
  .objective-num { flex-basis: 32px; font-size: 0.85rem; }
  .objective-name { font-size: 0.85rem; }
}
