/* ===========================================================================
 * Design tokens. Light is the default. Twilight (dark) overrides via the
 * prefers-color-scheme media query at the bottom of this section.
 * ========================================================================= */
:root {
  /* Core */
  --fg: #0a0a0a;
  --muted: #5f5f5f;
  --bg: #faf9f7;
  --surface: #ffffff;          /* inputs, dropdowns, code blocks */
  --surface-2: #f8fafc;        /* email gate, secondary panels */
  --surface-3: #f3f4f6;        /* neutral hover / placeholder badges */
  --border: #e5e5e5;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

  /* Semantic colors */
  --accent: #1d4ed8;
  --stab: #047857;
  --not: #6b7280;
  --unk: #b45309;
  --warn: #9a3412;

  /* Primary button */
  --btn-bg: #0a0a0a;
  --btn-fg: #ffffff;

  /* Banners (large soft-tinted blocks) */
  --banner-warn-bg: #fff7ed;
  --banner-warn-fg: #7c2d12;
  --banner-stab-bg: #ecfdf5;
  --banner-stab-fg: #047857;
  --banner-unk-bg: #fef9f4;
  --banner-unk-border: #d97706;
  --banner-bad-bg: #fef2f2;
  --banner-bad-fg: #7f1d1d;
  --banner-bad-border: #b91c1c;

  /* Inline badges (small pills) */
  --badge-warn-bg: #fef3c7;
  --badge-warn-fg: #92400e;
  --badge-orange-bg: #fed7aa;
  --badge-orange-fg: #9a3412;
  --badge-red-bg: #fecaca;
  --badge-red-fg: #991b1b;
}

/* Twilight palette — deep indigo backgrounds, soft lavender foregrounds,
 * muted-vivid accent. Not pitch black. Triggered by the OS / browser theme
 * preference; no in-app toggle (yet). */
@media (prefers-color-scheme: dark) {
  :root {
    --fg: #e8e6f5;
    --muted: #9aa3c8;
    --bg: #131426;
    --surface: #1c1e3a;
    --surface-2: #21244a;
    --surface-3: #2a2d57;
    --border: #383b6a;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.6);

    --accent: #a5b4fc;
    --stab: #6ee7b7;
    --not: #94a3b8;
    --unk: #fbbf24;
    --warn: #fb923c;

    --btn-bg: #a5b4fc;
    --btn-fg: #1a1c33;

    --banner-warn-bg: #2e1f0c;
    --banner-warn-fg: #fcd34d;
    --banner-stab-bg: #0e3325;
    --banner-stab-fg: #6ee7b7;
    --banner-unk-bg: #2e1f0c;
    --banner-unk-border: #fbbf24;
    --banner-bad-bg: #2b1518;
    --banner-bad-fg: #fca5a5;
    --banner-bad-border: #ef4444;

    --badge-warn-bg: #382808;
    --badge-warn-fg: #fcd34d;
    --badge-orange-bg: #381e0c;
    --badge-orange-fg: #fdba74;
    --badge-red-bg: #381618;
    --badge-red-fg: #fca5a5;
  }
}

/* Honor the HTML `hidden` attribute regardless of any explicit `display:`
 * rule below. Without this, `#result { display: grid }` and similar layout
 * rules would clobber `<section hidden>` and render the element anyway. */
[hidden] { display: none !important; }

/* Smooth theme transitions when the OS toggles dark mode while the page is open */
* { box-sizing: border-box; }
body, button, input, a {
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

/* Respect user OS-level preference for reduced motion (WCAG 2.3.3, 2.2.2). */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* Skip-to-main link — WCAG 2.4.1 (Bypass Blocks). Visually hidden until
 * focused; jumps keyboard users past the header. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: var(--surface);
  color: var(--accent);
  padding: 10px 14px;
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  text-decoration: none;
}

/* Visually-hidden utility for accessible labels. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Visible focus indicator — WCAG 2.4.7. Applies to anything that can
 * receive focus that doesn't already have a custom :focus rule. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  /* Tell the browser our color scheme so form controls + scrollbars adapt. */
  color-scheme: light dark;
}

/* Layout containers — narrow by default; bumped on desktop below. */
header, main, footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
}

header {
  padding-top: 64px;
  padding-bottom: 32px;
}

h1 {
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

h1 a { color: inherit; text-decoration: none; }

/* -- Wordmark / logo styling --------------------------------------------- */
.logo {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 10px;
  display: inline-block;
}
.logo a {
  text-decoration: none;
  display: inline-block;
  /* Reset inherited link color so spans below control their own colors. */
  color: inherit;
}
.logo .logo-stem { color: var(--fg); }
.logo .logo-mark {
  color: var(--accent);
  /* Subtle tracking adjustment so NYC reads as a distinct mark, not the
   * tail of "Stabilized". */
  letter-spacing: -0.015em;
  padding-left: 1px;
}
/* Hover affordance on the linked logo (used in legal/about/report pages) */
.logo a:hover .logo-mark {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Dark mode: lavender-violet NYC against soft warm-white "Stabilized" reads
 * exactly like twilight. No theme-specific overrides needed because the
 * accent variable already swaps. */

.tagline {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.autocomplete-wrap { position: relative; }

input[type="text"],
input[type="email"] {
  width: 100%;
  font-size: 17px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--fg);
  font-family: inherit;
}

/* Lookup input reserves space for the clear-x button on the right. */
.autocomplete-wrap input[type="text"] {
  padding-right: 44px;
}

/* Clear-x button overlaid on the autocomplete input. Shown only when the
 * input has content. */
.input-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.input-clear:hover {
  background: var(--surface-3);
  color: var(--fg);
}
.input-clear:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}

#suggestions {
  position: absolute;
  z-index: 10;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-height: 280px;
  overflow-y: auto;
}

#suggestions li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 15px;
  color: var(--fg);
}

#suggestions li:hover,
#suggestions li[aria-selected="true"] { background: var(--surface-3); }

button {
  align-self: flex-start;
  font-size: 16px;
  font-weight: 600;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

button:hover { opacity: 0.9; }
button:disabled { opacity: 0.5; cursor: wait; }

/* Secondary button — surface bg, foreground text, bordered. */
button.secondary {
  background: var(--surface);
  color: var(--fg);
  border: 1px solid var(--border);
}

#verdict-headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

#verdict-headline.stab { color: var(--stab); }
#verdict-headline.not  { color: var(--not); }
#verdict-headline.unk  { color: var(--unk); }

#verdict-confidence {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.auth-state {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.auth-state a,
.auth-state .link-button {
  color: var(--accent);
  text-decoration: none;
}
.auth-state a:hover,
.auth-state .link-button:hover { text-decoration: underline; }
.auth-state .auth-email { color: var(--fg); font-weight: 600; }
/* Button rendered visually like a link (for actions that aren't navigation) */
.link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--accent);
}

.building-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
}

.building-actions .save-status {
  font-size: 13px;
  color: var(--muted);
}

.building-actions .save-status.saved { color: var(--stab); font-weight: 600; }

.email-gate {
  margin: 16px 0 0;
  padding: 16px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.email-gate-prompt {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
}

.email-gate form {
  display: flex;
  gap: 8px;
  margin: 0;
}

.email-gate form input {
  flex: 1;
  font-size: 15px;
  padding: 10px 12px;
}

.email-gate form button {
  padding: 10px 16px;
  align-self: auto;
}

.email-gate-tos {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.email-gate-sent {
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: 14px;
  background: var(--banner-stab-bg);
  border-left: 3px solid var(--stab);
  border-radius: 0 4px 4px 0;
  color: var(--banner-stab-fg);
}

.email-gate-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: 14px;
  background: var(--banner-bad-bg);
  border-left: 3px solid var(--banner-bad-border);
  border-radius: 0 4px 4px 0;
  color: var(--banner-bad-fg);
}

.saved-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.saved-list li {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--surface);
}

.saved-list .saved-meta {
  font-size: 13px;
  color: var(--muted);
}

.saved-list .saved-remove {
  font-size: 12px;
  color: var(--banner-bad-fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.headline-disclaimer {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 24px;
  padding: 8px 12px;
  background: var(--banner-unk-bg);
  border-left: 2px solid var(--banner-unk-border);
  border-radius: 0 4px 4px 0;
}

#warnings {
  background: var(--banner-warn-bg);
  border-left: 3px solid var(--warn);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--banner-warn-fg);
  display: none;
}
#warnings.show { display: block; }

h2 {
  font-size: 18px;
  margin: 32px 0 8px;
  letter-spacing: -0.01em;
}

#reasons { padding-left: 20px; margin: 8px 0; }
#reasons li { margin-bottom: 6px; color: var(--fg); }

#actions { padding-left: 20px; margin: 8px 0; }
#actions li { margin-bottom: 16px; }
#actions a { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 16px; }
#actions a:hover { text-decoration: underline; }
#actions .action-desc { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; }

#actions .sponsored-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  background: var(--badge-warn-bg);
  color: var(--badge-warn-fg);
  margin-right: 6px;
  vertical-align: middle;
}

#profile { margin-top: 24px; }

#profile dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 16px;
  row-gap: 6px;
  margin: 8px 0;
  font-size: 14px;
}

#profile dt { color: var(--muted); font-weight: 600; }
#profile dd { margin: 0; color: var(--fg); }
#profile dd.warn { color: var(--warn); }

.streetview-panel {
  margin: 0 0 16px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-3);
  border: 1px solid var(--border);
}

.streetview-link {
  display: block;
  text-decoration: none;
  color: var(--accent);
}

.streetview-link img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--surface-3);
}

#streetview-label {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
}

.streetview-link img[hidden] + #streetview-label {
  padding: 24px 16px;
  text-align: center;
}

#profile details { margin-top: 12px; font-size: 14px; }

#profile details summary {
  cursor: pointer;
  color: var(--accent);
  font-weight: 600;
  padding: 4px 0;
}

#profile .record-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border-left: 2px solid var(--border);
}

#profile .record-list li {
  padding: 8px 12px;
  margin-bottom: 4px;
}

#profile .record-list .meta {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

#profile .record-list .body {
  color: var(--fg);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

#profile .record-list .body.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

#profile .record-list .body.clamped::after {
  content: " more ↓";
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

#profile .record-list .body.expanded::after {
  content: " less ↑";
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

#profile .record-list .show-all-row {
  list-style: none;
  margin-top: 8px;
  padding: 0;
}

#profile .record-list .show-all-row button {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  width: auto;
}

#profile .record-list .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  margin-right: 6px;
  background: var(--surface-3);
  color: var(--muted);
  text-transform: uppercase;
}

#profile .record-list .badge.cls-A,
#profile .record-list .badge.status-OPEN {
  background: var(--badge-warn-bg);
  color: var(--badge-warn-fg);
}
#profile .record-list .badge.cls-B {
  background: var(--badge-orange-bg);
  color: var(--badge-orange-fg);
}
#profile .record-list .badge.cls-C {
  background: var(--badge-red-bg);
  color: var(--badge-red-fg);
}
#profile .record-list .badge.status-CLOSE {
  background: var(--surface-3);
  color: var(--muted);
}

.unit-history {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.unit-history .series {
  color: var(--fg);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  margin-left: 4px;
}

#evidence { margin-top: 32px; font-size: 13px; }
#evidence summary { cursor: pointer; color: var(--muted); }

#evidence pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
  overflow-x: auto;
  font-size: 12px;
  color: var(--fg);
}

.footer-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

#error {
  padding: 12px 16px;
  background: var(--banner-bad-bg);
  border-left: 3px solid var(--banner-bad-border);
  border-radius: 4px;
  color: var(--banner-bad-fg);
}

footer {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 12px;
}

footer .legal-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--banner-warn-bg);
  border-left: 3px solid var(--warn);
  padding: 12px 14px;
  border-radius: 0 4px 4px 0;
  margin: 0 0 16px;
}

/* Landing state (no verdict yet) — hide the heavy "Not legal advice"
 * disclaimer block. Surface it the moment a verdict renders, since that's
 * when the user might rely on something we said. */
body.no-verdict footer .legal-disclaimer { display: none; }

footer .footer-nav a {
  color: var(--muted);
  text-decoration: none;
  margin-right: 4px;
}

footer .footer-nav a:hover {
  color: var(--fg);
  text-decoration: underline;
}

footer .publisher {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ===========================================================================
 * Ad slot placeholders. Stay [hidden] until AdSense approves the account and
 * we paste the real slot ID into the corresponding <ins data-ad-slot>.
 *
 * Visual treatment when active: a contained, slightly-recessed block with a
 * small "Ad" label in the corner so users can clearly distinguish the ad
 * from our own content (FTC + tenant-trust positioning).
 * ========================================================================= */
.ad-slot {
  position: relative;
  margin: 24px 0;
  padding: 24px 12px 12px;
  min-height: 120px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.ad-slot::before {
  content: "Ad";
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.ad-slot ins {
  display: block;
  width: 100%;
}

/* ===========================================================================
 * Desktop layout (≥ 980px) — split the verdict into two columns:
 *   .result-main on the left (decision content),
 *   .result-aside on the right (building context + raw evidence).
 * Mobile + tablet keep the default single-column stacked flow.
 * ========================================================================= */
@media (min-width: 980px) {
  header, main, footer {
    max-width: 1080px;
    padding-left: 32px;
    padding-right: 32px;
  }

  form#lookup {
    max-width: 640px;
    margin-left: 0;
    margin-right: auto;
  }

  #result {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
    column-gap: 48px;
    align-items: start;
  }

  /* Children of result-main / result-aside cannot overflow their column. */
  .result-main, .result-aside { min-width: 0; }

  /* The first h2 ("Why") in result-main already has 32px top margin from
   * default rules — that creates uneven top alignment with the aside which
   * starts at the streetview panel. Trim that on desktop. */
  .result-main > h2:first-of-type { margin-top: 8px; }

  /* On desktop the aside has its own first h2 ("About this building").
   * Align it visually with the verdict headline by removing top margin. */
  .result-aside #profile > h2 { margin-top: 0; }

  /* Tighter row gaps on desktop — content density. */
  #profile dl { row-gap: 8px; }

  /* Saved list as 2-col grid when there's a wider main. */
  .saved-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
  }
}

@media (min-width: 1280px) {
  header, main, footer { max-width: 1200px; }
}

/* ===========================================================================
 * Mobile (≤ 600px). Tablet uses default styles.
 * Optimized for touch targets (44pt min), one-handed reading, iPhone widths.
 * ========================================================================= */
@media (max-width: 600px) {
  header, main, footer { padding: 16px; }
  header { padding-top: 32px; padding-bottom: 16px; }
  h1 { font-size: 24px; }
  .logo { font-size: 30px; margin-bottom: 8px; }
  .tagline { font-size: 15px; }
  .auth-state { font-size: 12px; line-height: 1.8; }

  input[type="text"],
  input[type="email"] {
    font-size: 16px; /* prevents iOS zoom on focus */
    padding: 14px 14px;
  }
  button {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    min-height: 44px;
  }
  #suggestions { max-height: 220px; }

  #verdict-headline { font-size: 22px; line-height: 1.25; }
  .headline-disclaimer { font-size: 12px; }

  .building-actions { flex-direction: column; align-items: stretch; }
  .building-actions button { width: 100%; }
  .building-actions .save-status { text-align: center; }

  .email-gate form { flex-direction: column; }
  .email-gate form input,
  .email-gate form button { width: 100%; }

  #profile dl { column-gap: 8px; }
  #actions li { margin-bottom: 20px; }

  footer .legal-disclaimer { font-size: 12px; padding: 10px 12px; }
  footer .footer-nav { line-height: 2; }

  #streetview-label { font-size: 13px; padding: 8px 12px; }

  .saved-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  h1 { font-size: 22px; }
  .logo { font-size: 26px; }
  #verdict-headline { font-size: 20px; }
  header, main, footer { padding: 12px; }
}

/* ===========================================================================
 * Print — force light tokens so dark-mode users get a light, paper-friendly
 * page when they print a report.
 * ========================================================================= */
@media print {
  :root {
    --fg: #0a0a0a;
    --muted: #5f5f5f;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --surface-3: #f3f4f6;
    --border: #e5e5e5;
    --accent: #1d4ed8;
    --stab: #047857;
    --not: #6b7280;
    --unk: #b45309;
    --warn: #9a3412;
    --btn-bg: #0a0a0a;
    --btn-fg: #ffffff;
    --banner-warn-bg: #fff7ed;
    --banner-warn-fg: #7c2d12;
    --banner-stab-bg: #ecfdf5;
    --banner-stab-fg: #047857;
    --banner-unk-bg: #fef9f4;
    --banner-unk-border: #d97706;
    --banner-bad-bg: #fef2f2;
    --banner-bad-fg: #7f1d1d;
    --banner-bad-border: #b91c1c;
    --badge-warn-bg: #fef3c7;
    --badge-warn-fg: #92400e;
    --badge-orange-bg: #fed7aa;
    --badge-orange-fg: #9a3412;
    --badge-red-bg: #fecaca;
    --badge-red-fg: #991b1b;
  }
}
