/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in oklch, var(--surface) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(8px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 18px; height: 60px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-word { font-size: 16px; }
.brand-dot { color: var(--muted); font-weight: 500; }
.primary-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.primary-nav > a { color: var(--text); font-weight: 500; font-size: 15px; }
.primary-nav > a:hover { color: var(--accent); text-decoration: none; }
.nav-tools { display: flex; align-items: center; gap: 10px; margin-left: 8px; padding-left: 16px; border-left: 1px solid var(--border); }
.acct-link { font-weight: 600; font-size: 14px; }
.lang-switch select, .theme-toggle { background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 8px; color: var(--text); cursor: pointer; }
.theme-toggle { display: inline-flex; padding: 7px; }
.menu-toggle { display: none; margin-left: auto; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px; color: var(--text); cursor: pointer; }

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav { position: fixed; inset: 60px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 8px 24px 16px;
    margin: 0; display: none; }
  .primary-nav.open { display: flex; }
  .primary-nav > a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-tools { border-left: 0; padding-left: 0; margin: 12px 0 0; }
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: 40px; background: var(--surface-2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; padding-block: 44px 24px; }
.footer-col h2 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.footer-col a { display: block; color: var(--text); padding: 4px 0; font-size: 14px; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-note { color: var(--muted); font-size: 13px; margin-top: 12px; }
.footer-base { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 18px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; flex-wrap: wrap; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- hero ---------- */
.hero { padding-block: clamp(40px, 7vw, 76px) 24px; max-width: 820px; }
.hero-h1 { font-size: clamp(30px, 5vw, 50px); }
.hero-lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 60ch; }
.hero-search { display: flex; gap: 10px; margin-top: 24px; max-width: 520px; }
.hero-search input { flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: 11px; padding: 13px 16px; }
.page-lede { font-size: 18px; color: var(--muted); max-width: 64ch; }

/* ---------- trust bar ---------- */
.trust-bar { display: flex; flex-wrap: wrap; gap: 14px; padding: 18px 24px; margin-top: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.trust-item { display: flex; flex-direction: column; padding: 6px 20px 6px 0; }
.trust-item + .trust-item { border-left: 1px solid var(--border); padding-left: 20px; }
.trust-num { font-family: 'IBM Plex Mono', monospace; font-weight: 600; font-size: 22px; }
.trust-lbl { font-size: 13px; color: var(--muted); }
.trust-claim { margin-left: auto; justify-content: center; }

/* ---------- section heads ---------- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.section-head-solo { margin-bottom: 22px; }
.link-more { font-weight: 600; font-size: 14px; white-space: nowrap; }

/* ---------- product cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.pcard { display: flex; flex-direction: column; gap: 10px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.pcard-top { display: flex; align-items: flex-start; justify-content: space-between; }
.pcard-badges { display: flex; gap: 6px; align-items: center; }
.pcard-name { margin: 0; font-size: 17px; }
.pcard-name a { color: var(--text); }
.pcard-name a:hover { color: var(--accent); }
.pcard-line { margin: 0; color: var(--muted); font-size: 14px; flex: 1; }
.pcard-meta { display: flex; align-items: center; gap: 10px; }
.cat-tag { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); }
.cws-mini { font-size: 12px; color: var(--muted); margin-left: auto; }
.pcard-cta { display: flex; gap: 8px; margin-top: 4px; }
.pcard-cta .btn { flex: 1; padding: 9px 12px; font-size: 13.5px; }

/* ---------- badges ---------- */
.badge { display: inline-flex; align-items: center; font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 20px; border: 1px solid var(--border); }
.badge-free { color: oklch(0.5 0.12 165); border-color: color-mix(in oklch, var(--good) 40%, var(--border)); }
.badge-coming { color: var(--muted); }
.badge-flag { color: oklch(0.6 0.16 var(--accent-h)); border-color: color-mix(in oklch, var(--accent) 40%, var(--border)); }
.badge-lg { font-size: 13px; padding: 8px 14px; }

/* ---------- category entries ---------- */
.cat-entries { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.cat-entry { display: flex; align-items: center; justify-content: space-between; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; color: var(--text); }
.cat-entry:hover { border-color: var(--accent); text-decoration: none; }
.cat-entry-name { font-weight: 600; }
.cat-entry-count { font-family: 'IBM Plex Mono', monospace; color: var(--muted); }

/* ---------- bundle banner ---------- */
.bundle-banner { padding-block: 20px; }
.bundle-banner-in { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; background: var(--accent-tint); border: 1px solid color-mix(in oklch, var(--accent) 30%, var(--border));
  border-radius: var(--radius-lg); padding: 28px 32px; }
.bundle-banner-in h2 { margin: 0 0 4px; }
.bundle-banner-in p { margin: 0; color: var(--muted); }

/* ---------- catalog filter ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; padding-block: 8px 24px; }
.filter-bar input[type="search"] { flex: 1; min-width: 220px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px; padding: 11px 14px; }
.filter-bar select { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 11px 12px; }
.cat-group { padding-block: 18px; scroll-margin-top: 76px; }
.cat-group-head { display: flex; align-items: baseline; gap: 10px; }
.cat-group-count { font-family: 'IBM Plex Mono', monospace; color: var(--muted); font-size: 15px; }
.no-results { text-align: center; padding: 60px 0; }

/* ---------- detail ---------- */
.crumb { padding-block: 18px 0; font-size: 14px; }
.detail-hero { padding-block: 24px 8px; }
.detail-title { display: flex; align-items: center; gap: 16px; }
.detail-hero h1 { margin: 4px 0 0; font-size: clamp(24px, 3.4vw, 36px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 18px; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cws-chip { font-family: 'IBM Plex Mono', monospace; font-size: 13px; background: var(--surface-2);
  border: 1px solid var(--border); border-radius: 20px; padding: 5px 12px; }
.is-coming { text-align: center; max-width: 620px; margin-inline: auto; }
.is-coming .logo-lg { margin: 0 auto 14px; }

/* benefit cards */
.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.benefit { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.benefit h3 { margin-bottom: 8px; }
.benefit p { color: var(--muted); font-size: 14.5px; margin-bottom: 10px; }
.benefit-detail { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--accent); }

/* exclusive (mode C) */
.exclusive-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; margin-bottom: 24px; }
.exc-block { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.audit-perms code { background: var(--surface-2); border: 1px solid var(--border); border-radius: 6px; padding: 2px 7px; font-size: 12.5px; }
.audit-finding { color: var(--good); font-size: 14px; margin-top: 12px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-list li { position: relative; padding: 6px 0 6px 24px; color: var(--muted); font-size: 14.5px; }
.fit-list.good li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.fit-list.bad li::before { content: "—"; position: absolute; left: 0; color: var(--bad); }
.cross-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 24px; padding: 20px 24px; background: var(--accent-tint); border-radius: var(--radius-lg); }
.cross-cta p { margin: 0; }
@media (max-width: 720px) { .exclusive-grid, .fit-grid { grid-template-columns: 1fr; } }

/* data tables */
.data-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.data-table th, .data-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.data-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.data-table td.num, .data-table th.num { text-align: right; }
.table-scroll { overflow-x: auto; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.pricing-3 { max-width: 820px; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 14px; }
.price-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.ribbon { position: absolute; top: -12px; left: 24px; background: var(--accent); color: var(--accent-fg);
  font-size: 11px; font-weight: 600; font-family: 'IBM Plex Mono', monospace; padding: 4px 12px; border-radius: 20px; }
.price { margin: 0; }
.price-num { font-size: 34px; font-weight: 700; font-family: 'IBM Plex Mono', monospace; }
.price-per { color: var(--muted); font-size: 14px; margin-left: 4px; }
.bill-switch { display: inline-flex; gap: 3px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 9px; padding: 3px; }
.bill-switch button { border: 0; background: transparent; color: var(--muted); font-size: 13px;
  padding: 6px 12px; border-radius: 7px; cursor: pointer; }
.bill-switch button[aria-selected="true"] { background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
.feature-list li { position: relative; padding: 5px 0 5px 22px; font-size: 14px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--good); }
.bundle-cross { margin-top: 20px; }
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

/* privacy negative list */
.privacy-block .neg-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.neg-list li { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; }

/* faq */
.faq { max-width: 760px; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { padding: 16px 0; font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 20px; }
.faq details[open] summary::after { content: "–"; }
.faq-a { padding: 0 0 18px; color: var(--muted); }

/* gallery */
.gallery { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
@media (min-width: 900px) { .gallery { grid-auto-flow: row; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); overflow: visible; } }
.shot { margin: 0; scroll-snap-align: start; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.shot-chrome { display: flex; align-items: center; gap: 10px; padding: 8px 12px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.shot-dots { display: inline-flex; gap: 5px; }
.shot-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.shot-cap { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted); }
.shot-frame { position: relative; width: 100%; background: repeating-linear-gradient(45deg, var(--surface-2), var(--surface-2) 10px, var(--surface) 10px, var(--surface) 20px); }
.shot-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* misc */
.notify-form { display: flex; gap: 10px; max-width: 420px; margin: 18px auto 8px; }
.notify-form input { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.waitlist-card { max-width: 520px; margin-inline: auto; text-align: center; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.anchor-table { max-width: 620px; }
.anchor-sum td, .anchor-bundle td { border-bottom: 0; padding-top: 14px; }
.anchor-bundle td { font-size: 18px; }
.included-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.promises { margin-top: 18px; }
.promise { color: var(--good); font-weight: 500; }
.section-404 { text-align: center; padding-block: 80px; }
.err-num { font-family: 'IBM Plex Mono', monospace; font-size: 80px; font-weight: 700; color: var(--accent); margin: 0; }
.section-404 .cta-row { justify-content: center; }

/* ---------- account portal ---------- */
.auth-wrap { display: flex; justify-content: center; }
.auth-card { width: 100%; max-width: 420px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.auth-brand { margin-bottom: 18px; }
.field { display: block; margin: 14px 0; }
.field > span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input { width: 100%; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; }
.btn-block { width: 100%; }
.code-input { display: flex; gap: 8px; margin: 10px 0; }
.code-input input { flex: 1; text-align: center; font-size: 22px; font-family: 'IBM Plex Mono', monospace;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 0; }
.auth-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; align-items: center; }
.link-btn { background: none; border: 0; color: var(--accent); cursor: pointer; font-size: 14px; padding: 4px; }
.auth-sent { color: var(--good); font-size: 14px; }
.auth-first { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.acct { max-width: 760px; }
.acct-cards { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 12px; }
.acct-card { display: flex; align-items: center; gap: 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.acct-card-main { flex: 1; }
.acct-card-main h2 { margin: 0; font-size: 16px; }
.acct-status { margin: 4px 0 0; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-active { background: var(--good); }
.acct-help { margin-top: 20px; border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 16px; }
.acct-help summary { padding: 12px 0; font-weight: 600; }

/* ---------- welcome / steps ---------- */
.welcome-badge { width: 56px; height: 56px; border-radius: 50%; background: var(--good); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 12px; }
.steps { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.steps li { display: flex; gap: 14px; align-items: flex-start; }
.steps h2 { font-size: 16px; margin: 0 0 2px; }
.steps p { margin: 0; }
.step-n { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--accent-tint);
  color: var(--accent); font-family: 'IBM Plex Mono', monospace; font-weight: 600; display: flex;
  align-items: center; justify-content: center; }

/* ---------- blog ---------- */
.col-tabs { display: flex; gap: 8px; flex-wrap: wrap; padding-block: 8px 24px; }
.col-tab { font-size: 14px; font-weight: 500; padding: 7px 14px; border-radius: 20px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); }
.col-tab:hover, .col-tab.active { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.post-card { display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; }
.post-col { font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); }
.post-card h2 { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 20px; margin: 0; }
.post-card h2 a { color: var(--text); }
.post-card h2 a:hover { color: var(--accent); }
.post-excerpt { color: var(--muted); font-size: 14.5px; flex: 1; margin: 0; }
.post-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-tint); color: var(--accent);
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
.pager { display: flex; justify-content: space-between; padding-block: 24px; }

/* ---------- article ---------- */
.article { max-width: 720px; margin-inline: auto; }
.article-head h1 { font-family: 'IBM Plex Serif', Georgia, serif; font-weight: 500; }
.article-byline { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.disclosure { display: flex; gap: 10px; align-items: flex-start; background: var(--surface-2); border: 1px solid var(--border);
  border-left: 3px solid var(--warn); border-radius: 8px; padding: 12px 14px; font-size: 13.5px; color: var(--muted); margin: 16px 0; }
.answer-box { background: var(--accent-tint); border: 1px solid color-mix(in oklch, var(--accent) 30%, var(--border));
  border-radius: var(--radius); padding: 18px 20px; margin: 20px 0; }
.answer-box h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); margin: 0 0 8px; }
.prose { font-family: 'IBM Plex Serif', Georgia, serif; font-size: 17.5px; line-height: 1.75; }
.prose :is(h2,h3) { font-family: 'IBM Plex Sans', sans-serif; margin-top: 1.6em; }
.prose blockquote { border-left: 3px solid var(--accent); margin: 1.2em 0; padding: 4px 0 4px 18px; color: var(--muted); font-style: italic; }
.prose blockquote cite { display: block; font-size: 13px; font-style: normal; margin-top: 6px; }
.prose table { width: 100%; border-collapse: collapse; font-family: 'IBM Plex Sans', sans-serif; font-size: 15px; margin: 1.2em 0; }
.prose th, .prose td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border); }
.alt-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 20px 0; }
.alt-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.badge-ours { background: var(--accent-tint); color: var(--accent); }
.footnotes { font-size: 13.5px; color: var(--muted); border-top: 1px solid var(--border); margin-top: 32px; padding-top: 16px; }
.updated-tag { background: var(--good); color: #fff; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; }

/* ---------- tool / converter ---------- */
.tool-drop { border: 2px dashed var(--border); border-radius: var(--radius-lg); padding: 48px 24px; text-align: center;
  background: var(--surface); cursor: pointer; transition: border-color .15s, background .15s; }
.tool-drop.drag { border-color: var(--accent); background: var(--accent-tint); }
.tool-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; margin-top: 16px; }
.tool-preview { background: repeating-conic-gradient(var(--surface-2) 0% 25%, var(--surface) 0% 50%) 0 / 20px 20px;
  border: 1px solid var(--border); border-radius: var(--radius); min-height: 200px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tool-preview img { max-width: 100%; max-height: 340px; }
.tool-controls { display: flex; flex-direction: column; gap: 14px; }
.tool-noupload { display: inline-flex; gap: 8px; align-items: center; color: var(--good); font-size: 13.5px; font-weight: 500; }
.seg { display: inline-flex; gap: 3px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 9px; padding: 3px; }
.seg button { border: 0; background: transparent; color: var(--muted); padding: 7px 14px; border-radius: 7px; cursor: pointer; font-size: 14px; }
.seg button[aria-pressed="true"] { background: var(--surface); color: var(--text); box-shadow: var(--shadow); }
.tool-size { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--muted); }
@media (max-width: 700px) { .tool-panel { grid-template-columns: 1fr; } }

/* changelog */
.changelog { display: flex; flex-direction: column; gap: 24px; }
.cl-head { display: flex; align-items: baseline; gap: 12px; }
.cl-head h2 { margin: 0; font-family: 'IBM Plex Mono', monospace; }
.cl-tag { font-family: 'IBM Plex Mono', monospace; font-size: 10px; text-transform: uppercase; padding: 2px 7px; border-radius: 6px; margin-right: 6px; }
.cl-new { background: color-mix(in oklch, var(--good) 20%, transparent); color: var(--good); }
.cl-fix { background: color-mix(in oklch, var(--warn) 20%, transparent); color: var(--warn); }
.cl-change { background: var(--accent-tint); color: var(--accent); }
