:root {
  --ink: #10131a;
  --ink-2: #181c25;
  --paper: #f5f3ee;
  --paper-2: #ebe8e0;
  --white: #fff;
  --muted: #686d77;
  --line: #d8d4ca;
  --amber: #f5a623;
  --amber-2: #ffd27a;
  --red: #e0443e;
  --orange: #ed7b2f;
  --blue: #3e75c3;
  --green: #268c63;
  --shadow: 0 14px 36px rgb(16 19 26 / 8%);
  --shell: min(1180px, calc(100vw - 40px));
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
img { max-width: 100%; }
button, input, select { font: inherit; }
textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
[hidden] { display: none !important; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 9px 14px; background: var(--white); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.flash-stack { position: relative; z-index: 30; }
.flash { margin-top: 14px; padding: 12px 16px; background: #e8f5ef; border: 1px solid #a9d5c2; color: #185f43; font-size: 13px; font-weight: 700; }

.site-header { position: relative; z-index: 20; background: var(--ink); color: var(--white); border-bottom: 1px solid rgb(255 255 255 / 10%); }
.nav-shell { height: 72px; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 760; letter-spacing: -.04em; }
.brand-mark { display: inline-flex; width: 34px; height: 34px; }
.brand-word { font-size: 20px; }
.brand-word span { color: var(--amber); }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a, .nav-rss { color: #b9bdc6; text-decoration: none; font-size: 14px; font-weight: 650; }
.site-nav a:hover, .site-nav a[aria-current="page"], .nav-rss:hover { color: var(--white); }
.site-nav a[aria-current="page"] { position: relative; }
.site-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -25px; height: 2px; background: var(--amber); }
.nav-rss { margin-left: 4px; padding-left: 26px; border-left: 1px solid rgb(255 255 255 / 14%); }
.nav-toggle { display: none; border: 0; background: transparent; color: inherit; padding: 8px; }
.nav-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; background: currentColor; margin: 4px; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--ink); padding: 78px 0 0; }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; right: -160px; top: -310px; border: 1px solid rgb(245 166 35 / 18%); border-radius: 50%; box-shadow: 0 0 0 100px rgb(245 166 35 / 3%), 0 0 0 200px rgb(245 166 35 / 2%); }
.hero-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right, transparent, #000 80%); }
.hero-inner { position: relative; z-index: 1; padding-bottom: 78px; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: #adb1ba; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgb(38 140 99 / 16%); }
.hero h1 { max-width: 850px; margin: 24px 0 20px; font-size: clamp(52px, 7vw, 86px); line-height: .98; letter-spacing: -.064em; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-lede { max-width: 670px; margin: 0; color: #bec2ca; font-size: 19px; line-height: 1.65; }
.hero-lede strong { color: var(--white); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 35px; }
.button { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 46px; padding: 10px 18px; border: 1px solid transparent; text-decoration: none; font-size: 14px; font-weight: 760; cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--amber); color: var(--ink); }
.button--primary:hover { background: var(--amber-2); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: #2a2f3b; }
.text-link { font-weight: 700; text-decoration: none; }
.text-link span { color: var(--amber); }
.hero .text-link { color: var(--white); }
.metrics-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--ink-2); border-top: 1px solid rgb(255 255 255 / 10%); }
.metrics-strip > div { min-height: 96px; padding: 22px 26px; border-right: 1px solid rgb(255 255 255 / 10%); }
.metrics-strip > div:last-child { border: 0; }
.metrics-strip strong { display: block; color: var(--white); font-family: var(--mono); font-size: 24px; line-height: 1.2; }
.metrics-strip span { color: #8f949f; font-size: 12px; }

.feed-section { padding: 82px 0 100px; }
.feed-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.section-kicker { display: block; color: #9b650b; margin-bottom: 8px; }
.feed-heading h2, .accountability-inner h2, .related h2, .vendor-layout h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.14; letter-spacing: -.04em; }
.feed-heading > p { max-width: 400px; color: var(--muted); margin: 0 0 5px; text-align: right; }
.filters { display: grid; grid-template-columns: minmax(220px, 1fr) 145px 145px 135px 150px auto auto; align-items: center; gap: 8px; padding: 10px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 5px 18px rgb(16 19 26 / 4%); }
.filters select, .filters input { width: 100%; height: 42px; color: var(--ink); background: #f8f7f4; border: 1px solid #e4e1d9; padding: 0 11px; font-size: 13px; }
.search-box { position: relative; display: block; }
.search-box svg { position: absolute; left: 12px; top: 12px; width: 18px; fill: none; stroke: #8b9098; stroke-width: 1.8; }
.search-box input { padding-left: 38px; }
.button--filter { min-height: 42px; background: var(--ink); color: var(--white); }
.clear-filters { padding: 6px; color: var(--muted); font-size: 12px; }
.result-row { display: flex; justify-content: space-between; padding: 18px 4px 10px; color: var(--muted); font-size: 12px; }
.result-row > div { display: flex; gap: 8px; }
.result-row a { color: var(--ink); font-weight: 700; }
.commit-list { display: grid; gap: 14px; }
.commit-card { position: relative; display: grid; grid-template-columns: 5px 1fr; min-width: 0; background: var(--white); border: 1px solid var(--line); box-shadow: 0 3px 12px rgb(16 19 26 / 3%); transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.commit-card:hover { transform: translateY(-2px); border-color: #bcb6a8; box-shadow: var(--shadow); }
.commit-card--featured { border-color: #c6b07d; }
.commit-card__rail { width: 5px; }
.severity-rail--critical { background: var(--red); }
.severity-rail--high { background: var(--orange); }
.severity-rail--moderate { background: var(--amber); }
.severity-rail--low { background: var(--blue); }
.severity-rail--informational { background: #9298a2; }
.commit-card__body { min-width: 0; padding: 23px 26px 19px; }
.analysis-link { text-decoration: none; }
.analysis-link:hover { text-decoration: underline; }
.commit-card__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.analysis-labels { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.machine-label { padding: 4px 7px; color: #5f6570; background: #eff0f2; border: 1px solid #d9dce1; text-transform: uppercase; letter-spacing: .09em; font-size: 8px; font-weight: 850; }
.commit-card__top time { color: var(--muted); font-family: var(--mono); font-size: 11px; }
.severity { display: inline-flex; align-items: center; gap: 7px; width: fit-content; padding: 4px 8px; border: 1px solid currentColor; text-transform: uppercase; letter-spacing: .08em; font-size: 10px; font-weight: 850; line-height: 1.2; }
.severity > span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.severity b { padding-left: 7px; border-left: 1px solid currentColor; font-family: var(--mono); }
.severity--critical { color: #b8211c; background: #fff0ef; }
.severity--high { color: #b95715; background: #fff4eb; }
.severity--moderate { color: #90600d; background: #fff8e7; }
.severity--low { color: #2d62ab; background: #eef5ff; }
.severity--informational { color: #626976; background: #f1f2f4; }
.project-line { display: flex; align-items: center; gap: 10px; margin-top: 19px; }
.vendor-monogram { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 32px; height: 32px; background: var(--ink); color: var(--amber); border: 1px solid #333846; font-family: var(--mono); font-size: 10px; font-weight: 800; }
.vendor-monogram--large { width: 42px; height: 42px; font-size: 12px; }
.vendor-monogram--xl { width: 92px; height: 92px; font-size: 24px; }
.project-line > span:nth-child(2) { display: flex; align-items: baseline; gap: 8px; }
.project-line strong { font-size: 13px; }
.project-line small { color: var(--muted); }
.topic-chip { display: inline-flex; align-items: center; padding: 3px 7px; background: var(--paper-2); color: #666157; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; font-weight: 800; }
.commit-card h2 { max-width: 900px; margin: 15px 0 8px; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.2; letter-spacing: -.03em; }
.commit-card__summary { max-width: 920px; color: #535863; margin: 0; line-height: 1.65; }
.signal-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.signal-row span { padding: 3px 8px; color: #6c4b12; background: #fff6df; border: 1px solid #eed8a6; font-size: 10px; font-weight: 700; }
.commit-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 20px; padding-top: 15px; border-top: 1px solid #ece9e2; }
.commit-ref { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; color: var(--muted); font-family: var(--mono); font-size: 10px; }
.commit-ref code { color: var(--ink); font-weight: 800; }
.diff-plus { color: var(--green); }
.diff-minus { color: var(--red); }
.disclosure-state { display: flex; align-items: center; gap: 7px; color: #9b4a22; font-size: 10px; font-weight: 700; }
.disclosure-state::before { content: "!"; display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; border: 1px solid currentColor; border-radius: 50%; font-size: 9px; }
.disclosure-state.is-disclosed { color: var(--green); }
.disclosure-state.is-disclosed::before { content: "✓"; }
.commit-card__actions { display: flex; gap: 18px; margin-top: 13px; }
.commit-card__actions a { color: #6f480b; font-size: 11px; font-weight: 800; }
.empty-state { padding: 70px 30px; text-align: center; background: var(--white); border: 1px dashed #c6c1b6; }
.empty-state h3 { margin: 8px 0; font-size: 24px; }
.empty-state p { color: var(--muted); margin: 0 auto 24px; }
.empty-icon { color: var(--amber); font-size: 46px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 24px; margin-top: 30px; font-size: 13px; }
.pagination span { color: var(--muted); }

.accountability-cta { color: var(--white); background: var(--amber); }
.accountability-inner { min-height: 300px; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 45px; }
.accountability-inner .big-number { color: rgb(16 19 26 / 18%); font-family: var(--mono); font-size: 90px; font-weight: 900; line-height: 1; }
.accountability-inner .section-kicker { color: #684104; }
.accountability-inner p { max-width: 700px; color: #493006; margin-bottom: 0; }

.site-footer { padding: 58px 0 22px; color: #b9bdc5; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 60px; }
.footer-brand { color: var(--white); }
.footer-grid p { color: #868b95; margin: 12px 0 0; font-size: 13px; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a { width: fit-content; color: #aeb2bb; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--amber); }
.footer-note { font-size: 12px; }
.footer-note .live-dot { margin-right: 8px; }
.footer-note small { display: block; color: #737985; margin-top: 15px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 18px; border-top: 1px solid rgb(255 255 255 / 9%); color: #666c77; font-family: var(--mono); font-size: 10px; }
.footer-credit a { color: #858b95; text-decoration: none; }
.footer-credit a:hover { color: var(--amber); }

.analysis-hero, .entity-hero { color: var(--white); background: var(--ink); }
.analysis-hero { padding: 38px 0 50px; border-bottom: 4px solid var(--amber); }
.back-link { display: inline-flex; color: #a9aeb7; text-decoration: none; font-size: 12px; font-weight: 700; margin-bottom: 30px; }
.back-link:hover { color: var(--white); }
.analysis-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.analysis-meta-row time { color: #8f949e; font-family: var(--mono); font-size: 10px; }
.analysis-hero h1 { max-width: 930px; margin: 20px 0 28px; font-size: clamp(35px, 5vw, 58px); line-height: 1.08; letter-spacing: -.05em; }
.analysis-project { display: flex; align-items: center; gap: 13px; }
.analysis-project > div { display: flex; align-items: center; gap: 8px; }
.analysis-project a { color: var(--white); font-size: 13px; font-weight: 700; }
.analysis-project > div span { color: #5e6571; }
.analysis-project .commit-link { display: inline-flex; align-items: center; gap: 9px; margin-left: auto; color: #aeb3bd; text-decoration: none; font-family: var(--mono); font-size: 10px; }
.commit-link code { color: var(--amber); }
.analysis-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 55px; padding-top: 55px; padding-bottom: 80px; }
.analysis-main { min-width: 0; }
.reading-toggle { display: inline-flex; padding: 4px; background: #e7e4dc; margin-bottom: 34px; }
.reading-toggle button { min-width: 145px; padding: 10px 14px; color: #656a73; border: 0; background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }
.reading-toggle button[aria-selected="true"] { color: var(--ink); background: var(--white); box-shadow: 0 2px 8px rgb(16 19 26 / 8%); }
.reading-panel h2, .score-explainer h2 { margin: 7px 0 20px; font-size: clamp(28px, 4vw, 40px); line-height: 1.17; letter-spacing: -.04em; }
.reading-panel h3 { margin: 38px 0 17px; font-size: 20px; }
.plain-summary, .method-content .lede, .story-main .lede { margin: 0; color: #333842; font-size: 20px; line-height: 1.72; }
.action-callout { margin: 30px 0; padding: 20px 22px; background: #fff6de; border-left: 4px solid var(--amber); }
.action-callout > span { color: #8b5b0c; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 850; }
.action-callout p { margin: 5px 0 0; }
.signal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.signal-grid > div { display: grid; grid-template-columns: 32px 1fr; gap: 10px; padding: 15px; background: var(--white); border: 1px solid var(--line); }
.signal-grid span { color: #ac7416; font-family: var(--mono); font-size: 11px; }
.signal-grid p { margin: 0; font-size: 13px; line-height: 1.5; }
.prose { color: #333842; font-size: 16px; line-height: 1.75; }
.prose h2, .prose h3 { color: var(--ink); margin: 1.5em 0 .5em; }
.prose code { padding: 2px 5px; background: #e7e4dc; font-family: var(--mono); font-size: .88em; }
.prose pre { overflow: auto; padding: 18px; color: #dce0e8; background: var(--ink); }
.prose pre code { padding: 0; background: transparent; }
.file-list { display: flex; flex-wrap: wrap; gap: 7px; }
.file-list code { padding: 5px 8px; color: #3f4753; background: #e8e5de; font-size: 11px; }
.diff-details { margin-top: 30px; background: var(--ink); color: #d7dbe3; }
.diff-details summary { display: flex; justify-content: space-between; padding: 16px 18px; cursor: pointer; font-size: 12px; font-weight: 750; }
.diff-details summary span { color: var(--amber); font-family: var(--mono); }
.diff-details pre { max-height: 680px; overflow: auto; margin: 0; padding: 20px; border-top: 1px solid #323744; color: #abb3c2; font: 11px/1.6 var(--mono); white-space: pre-wrap; }
.score-explainer { margin-top: 55px; padding-top: 45px; border-top: 1px solid var(--line); }
.score-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.score-head a { margin-bottom: 25px; color: #80520c; font-size: 12px; font-weight: 700; }
.score-bars { display: grid; gap: 16px; }
.score-bars > div > span { display: flex; justify-content: space-between; margin-bottom: 6px; color: #50555e; font-size: 12px; }
.score-bars b { color: var(--ink); font-family: var(--mono); }
.score-bars i { display: block; height: 6px; background: #dcd8cf; }
.score-bars u { display: block; height: 100%; max-width: 100%; background: var(--amber); text-decoration: none; }
.analysis-sidebar { display: grid; align-content: start; gap: 14px; }
.risk-dial, .evidence-card, .provenance-card { background: var(--white); border: 1px solid var(--line); }
.risk-dial { display: flex; flex-direction: column; align-items: center; padding: 26px; border-top-width: 5px; }
.severity-border--critical { border-top-color: var(--red); }
.severity-border--high { border-top-color: var(--orange); }
.severity-border--moderate { border-top-color: var(--amber); }
.severity-border--low { border-top-color: var(--blue); }
.severity-border--informational { border-top-color: #858c97; }
.risk-dial > span, .provenance-card > span { color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 850; }
.risk-dial strong { margin-top: 10px; font: 68px/.95 var(--mono); letter-spacing: -.08em; }
.risk-dial em { color: #565c66; font-style: normal; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.risk-dial small { margin-top: 18px; padding-top: 13px; width: 100%; border-top: 1px solid #ece9e2; color: var(--muted); text-align: center; font-size: 10px; }
.evidence-card, .provenance-card { padding: 21px; }
.evidence-card dl { margin: 14px 0 0; }
.evidence-card dl > div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid #ece9e2; }
.evidence-card dt { color: var(--muted); font-size: 11px; }
.evidence-card dd { margin: 0; font-size: 11px; font-weight: 800; text-align: right; }
.evidence-card dd.yes { color: var(--green); }
.evidence-card dd.no { color: #a44f25; }
.evidence-card > a { display: inline-flex; margin-top: 13px; font-size: 11px; font-weight: 750; }
.provenance-card { background: #ebe8e0; }
.provenance-card p { margin: 9px 0; font-size: 11px; line-height: 1.55; }
.provenance-card small { color: var(--muted); font-size: 9px; }
.related { padding-bottom: 90px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.related-grid .commit-card__foot, .related-grid .signal-row { display: none; }
.related-grid .commit-card__body { padding: 18px; }
.related-grid .commit-card h2 { font-size: 17px; }
.related-grid .commit-card__summary { font-size: 12px; }

.page-hero { color: var(--white); background: var(--ink); padding: 75px 0 70px; border-bottom: 4px solid var(--amber); }
.page-hero .section-kicker { color: var(--amber); }
.page-hero h1 { max-width: 900px; margin: 10px 0 17px; font-size: clamp(44px, 6vw, 72px); line-height: 1.02; letter-spacing: -.06em; }
.page-hero p { max-width: 760px; color: #b7bbc4; margin: 0; font-size: 19px; }
.page-hero p strong { color: var(--white); }
.section-pad { padding-top: 70px; padding-bottom: 90px; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.project-card { display: flex; flex-direction: column; min-height: 340px; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.project-card:hover { border-color: #bcb6a8; box-shadow: var(--shadow); }
.project-card__top { display: flex; align-items: start; justify-content: space-between; }
.watch-state { display: inline-flex; align-items: center; padding: 4px 7px; text-transform: uppercase; letter-spacing: .08em; font-size: 9px; font-weight: 800; }
.watch-state--normal { color: #3d6a5c; background: #e7f3ed; }
.watch-state--elevated { color: #8a5708; background: #fff2ce; }
.watch-state--active { color: #a42c28; background: #ffe6e4; }
.project-card > span { margin-top: 24px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 800; }
.project-card h2 { margin: 4px 0 9px; font-size: 25px; line-height: 1.15; }
.project-card h2 a { text-decoration: none; }
.project-card p { color: var(--muted); margin: 0; font-size: 13px; }
.project-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; padding: 10px 0; border-block: 1px solid #ece9e2; }
.project-stats > span { display: grid; gap: 2px; }
.project-stats b { font: 16px var(--mono); }
.project-stats small { color: var(--muted); font-size: 9px; }
.topic-row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-top: 17px; }
.project-card footer { display: grid; gap: 4px; margin-top: auto; padding-top: 18px; border-top: 1px solid #ece9e2; }
.project-card footer a { overflow: hidden; color: #3d424c; font: 10px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.project-card footer small { color: #92969e; font-size: 9px; }

.entity-hero { padding: 50px 0; border-bottom: 4px solid var(--amber); }
.entity-row { display: grid; grid-template-columns: 92px minmax(0, 1fr) auto; align-items: center; gap: 30px; }
.entity-row .back-link { margin-bottom: 20px; }
.entity-row h1 { margin: 5px 0 7px; font-size: clamp(38px, 5vw, 58px); line-height: 1; letter-spacing: -.05em; }
.entity-row p { max-width: 650px; color: #aeb2bb; margin: 0; }
.entity-actions { display: grid; justify-items: start; gap: 13px; }
.vendor-score { display: flex; flex-direction: column; align-items: center; min-width: 190px; padding: 20px 28px; background: #171b24; border: 1px solid #343946; }
.vendor-score > span { color: #a5aab4; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 800; }
.vendor-score strong { color: var(--amber); font: 55px/1.1 var(--mono); }
.vendor-score em { color: #fff; font-style: normal; font-size: 10px; font-weight: 750; }
.vendor-score small { color: #777d88; margin-top: 10px; font-size: 9px; }
.vendor-layout { display: grid; grid-template-columns: 1fr 330px; gap: 70px; }
.score-bars--vendor { margin-top: 30px; }
.vendor-notes { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.method-note { height: fit-content; padding: 26px; background: var(--ink); color: #bbc0c8; border-top: 4px solid var(--amber); }
.method-note > span { color: var(--white); font-weight: 800; }
.method-note p { font-size: 13px; }
.method-note a { color: var(--amber); font-size: 12px; font-weight: 750; }
.section-rule { border-top: 1px solid var(--line); }
.coverage-section { padding-top: 60px; padding-bottom: 60px; }
.coverage-head { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.coverage-head h2 { margin: 4px 0 8px; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; letter-spacing: -.04em; }
.coverage-head p { max-width: 700px; color: var(--muted); margin: 0; }
.coverage-totals { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 2px 8px; padding: 15px 20px; background: var(--white); border: 1px solid var(--line); }
.coverage-totals strong { font: 25px var(--mono); }
.coverage-totals span { color: var(--muted); font-size: 10px; }
.window-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; border: 1px solid var(--line); background: var(--white); }
.window-grid > div { padding: 20px; border-right: 1px solid var(--line); }
.window-grid > div:last-child { border: 0; }
.window-grid strong { display: block; font: 25px var(--mono); }
.window-grid span { color: var(--muted); font-size: 10px; }
.scan-list { margin-top: 15px; background: var(--ink); color: #c4c8d0; }
.scan-list > span { display: block; padding: 13px 16px; color: var(--amber); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; font-weight: 800; border-bottom: 1px solid #303541; }
.scan-list > div { display: grid; grid-template-columns: 1fr 100px 120px 90px; gap: 15px; padding: 10px 16px; border-bottom: 1px solid #262b35; font-size: 10px; }
.scan-list code { color: #fff; }
.scan-status { text-align: right; text-transform: uppercase; font-size: 8px; }
.scan-status--complete { color: #65c49d; }
.scan-status--error { color: #f07b75; }
.communication-section { padding: 65px 0 70px; background: #e9e6de; }
.communication-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: 55px; align-items: start; }
.communication-summary h2 { margin: 6px 0 10px; font-size: 34px; line-height: 1.08; letter-spacing: -.04em; }
.communication-summary > p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.65; }
.message-average { display: flex; align-items: baseline; gap: 9px; margin-top: 24px; }
.message-average strong { font: 50px/.9 var(--mono); letter-spacing: -.08em; }
.message-average span { color: var(--muted); font-size: 10px; }
.quality-distribution { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin: 22px 0; }
.quality-distribution > div { display: grid; gap: 2px; padding: 12px; background: var(--white); border-top: 3px solid; }
.quality-distribution strong { font: 20px var(--mono); }
.quality-distribution span { color: var(--muted); font-size: 9px; }
.quality-border--strong { border-color: #397862 !important; }
.quality-border--adequate { border-color: #48799c !important; }
.quality-border--thin { border-color: var(--amber) !important; }
.quality-border--opaque { border-color: #b95049 !important; }
.opaque-alert { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; padding: 12px; color: #8f352f; background: #f7dfdc; border: 1px solid #e9c4c0; }
.opaque-alert strong { font: 22px var(--mono); }
.opaque-alert span { font-size: 10px; font-weight: 750; }
.contributor-record { min-width: 0; background: var(--white); border: 1px solid var(--line); }
.contributor-head { display: flex; justify-content: space-between; align-items: end; gap: 25px; padding: 22px; border-bottom: 1px solid var(--line); }
.contributor-head h3 { margin: 4px 0 0; font-size: 24px; }
.contributor-head p { max-width: 270px; color: var(--muted); margin: 0; font-size: 10px; text-align: right; }
.contributor-table { overflow-x: auto; }
.contributor-row { display: grid; grid-template-columns: minmax(180px, 1.6fr) repeat(5, minmax(68px, .6fr)); align-items: center; min-width: 650px; border-bottom: 1px solid #ece9e2; }
.contributor-row:last-child { border-bottom: 0; }
.contributor-row > * { padding: 11px 10px; color: #555b65; font: 10px var(--mono); text-align: right; }
.contributor-row > :first-child { overflow: hidden; color: var(--ink); font-family: var(--sans); font-size: 11px; text-align: left; text-overflow: ellipsis; white-space: nowrap; }
.contributor-row--head { background: #f5f3ee; }
.contributor-row--head > * { color: #7a7f88; text-transform: uppercase; letter-spacing: .06em; font-size: 8px; font-weight: 850; }
.ai-banner { color: #fff; background: #493205; border-bottom: 1px solid #765718; }
.ai-banner .shell { display: flex; align-items: center; gap: 18px; min-height: 48px; font-size: 12px; }
.ai-banner strong { color: var(--amber); text-transform: uppercase; letter-spacing: .11em; font-size: 9px; }
.ai-banner span { color: #f1e6cf; }

.evidence-trail { padding: 70px 0; color: #d9dde5; background: var(--ink); }
.evidence-trail .section-kicker { color: var(--amber); }
.evidence-trail .feed-heading h2 { color: #fff; }
.evidence-trail .feed-heading > p { color: #969ca7; }
.reference-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.reference-grid article { padding: 24px; background: #181c25; border: 1px solid #343946; border-top: 3px solid var(--amber); }
.reference-grid article > span { color: var(--amber); text-transform: uppercase; letter-spacing: .11em; font-size: 8px; font-weight: 850; }
.reference-grid h3 { color: #fff; margin: 7px 0 10px; font-size: 20px; line-height: 1.25; }
.reference-grid p { color: #aeb3bd; margin: 0 0 20px; font-size: 13px; }
.reference-grid footer { display: flex; align-items: center; flex-wrap: wrap; gap: 7px 14px; padding-top: 14px; border-top: 1px solid #303541; font-size: 10px; }
.reference-grid footer time { color: #858b96; font-family: var(--mono); }
.reference-grid footer a { margin-left: auto; color: var(--amber); font-weight: 750; }

.commit-explorer { background: #ebe8e0; border-top: 1px solid var(--line); }
.explorer-filters { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.explorer-filters a { padding: 7px 11px; color: #555b65; background: #f7f5f0; border: 1px solid var(--line); text-decoration: none; font-size: 10px; font-weight: 800; }
.explorer-filters a[aria-current="page"] { color: var(--ink); background: var(--amber); border-color: var(--amber); }
.explorer-list { display: grid; gap: 7px; }
.explorer-commit { background: var(--white); border: 1px solid var(--line); }
.explorer-commit[open] { border-color: #b9ae97; box-shadow: 0 8px 24px rgb(16 19 26 / 6%); }
.explorer-commit > summary { display: grid; grid-template-columns: 125px minmax(0, 1fr) 140px 90px 60px; align-items: center; gap: 15px; padding: 15px 18px; cursor: pointer; list-style: none; }
.explorer-commit > summary::-webkit-details-marker { display: none; }
.triage-mark { width: fit-content; padding: 3px 7px; text-transform: uppercase; letter-spacing: .07em; font-size: 8px; font-weight: 850; }
.triage-mark--candidate { color: #8b4f0b; background: #fff1cf; }
.triage-mark--routine { color: #5f6771; background: #eceef1; }
.triage-mark--untriaged { color: #7a4441; background: #f6e7e6; }
.explorer-title { display: grid; min-width: 0; }
.explorer-title strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.explorer-title small { color: var(--muted); font-size: 9px; }
.explorer-title code { color: var(--ink); }
.explorer-score { color: #6c4b12; font: 9px var(--mono); text-transform: uppercase; }
.message-grade { display: inline-flex; width: fit-content; padding: 5px 7px; border: 1px solid; font: 8px var(--mono); font-weight: 800; text-transform: uppercase; }
.message-grade--strong { color: #286b54; background: #e5f3ed; border-color: #b9dccd; }
.message-grade--adequate { color: #376b8d; background: #e6f0f6; border-color: #c0d8e6; }
.message-grade--thin { color: #85570e; background: #fff2d5; border-color: #ebd29e; }
.message-grade--opaque { color: #9a3d37; background: #f8e3e1; border-color: #e8c0bd; }
.message-text--strong { color: #286b54; }
.message-text--adequate { color: #376b8d; }
.message-text--thin { color: #85570e; }
.message-text--opaque { color: #9a3d37; }
.expand-label { color: var(--muted); font-size: 9px; font-weight: 750; text-align: right; }
.expand-label::after { content: "+"; margin-left: 6px; color: var(--amber); font: 15px var(--mono); }
.explorer-commit[open] .expand-label::after { content: "−"; }
.explorer-body { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 35px; padding: 23px; border-top: 1px solid #ece9e2; background: #faf9f6; }
.explorer-copy > span, .explorer-body aside > span { color: #8a5a0c; text-transform: uppercase; letter-spacing: .11em; font-size: 8px; font-weight: 850; }
.explorer-copy > p { color: #444a54; margin: 6px 0 18px; font-size: 13px; }
.message-quality-record { display: grid; grid-template-columns: 145px 1fr; gap: 15px; margin: 10px 0 22px; padding: 14px; background: #eeece6; border: 1px solid #dfdbd2; }
.message-quality-record > div:first-child { display: grid; align-content: start; gap: 2px; }
.message-quality-record strong { font: 12px var(--mono); }
.message-quality-record > div:first-child span { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.message-quality-record > div:last-child, .message-quality-signals { display: flex; flex-wrap: wrap; gap: 5px; }
.quality-reason, .quality-flag { padding: 3px 6px; font-size: 9px; font-weight: 700; }
.quality-reason { color: #2f6d56; background: #e3f0ea; }
.quality-flag { color: #923c36; background: #f5dfdd; }
.explorer-analysis { margin-top: 20px; padding: 17px; background: #fff4da; border-left: 3px solid var(--amber); }
.explorer-analysis p { margin: 5px 0 0; font-size: 12px; }
.explorer-files { display: grid; gap: 4px; margin-top: 7px; }
.explorer-files code { overflow: hidden; padding: 4px 6px; background: #e9e6de; color: #4d535d; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.explorer-files small { color: var(--muted); font-size: 9px; }
.explorer-actions { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.explorer-actions .button { min-height: 38px; font-size: 11px; }
.commit-message-record { display: grid; grid-template-columns: 1fr auto; gap: 16px 25px; margin-bottom: 28px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--amber); }
.commit-message-record h2 { margin: 4px 0 2px; font-size: 25px; letter-spacing: -.03em; }
.commit-message-record > .message-grade { align-self: start; justify-self: end; }
.commit-message-record > div:first-child p { color: var(--muted); margin: 0; font-size: 11px; }
.commit-message-record blockquote { grid-column: 1 / -1; margin: 0; padding: 17px; color: #353b45; background: #eeece6; border-left: 3px solid #b9b3a7; font: 12px/1.65 var(--mono); white-space: normal; }
.message-quality-signals { grid-column: 1 / -1; }

.community-section { padding: 75px 0 85px; background: #e9e6de; border-block: 1px solid var(--line); }
.community-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 65px; align-items: start; }
.community-record h2 { margin: 5px 0 10px; font-size: clamp(32px, 4vw, 44px); line-height: 1.1; letter-spacing: -.04em; }
.community-lede { max-width: 720px; color: #535863; margin: 0 0 28px; }
.note-list { display: grid; gap: 12px; }
.community-note, .no-notes, .note-submit { background: var(--white); border: 1px solid var(--line); }
.community-note { padding: 22px; border-left: 4px solid var(--green); }
.community-note header { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 12px; padding-bottom: 12px; border-bottom: 1px solid #ece9e2; }
.community-note header strong { font-size: 14px; }
.community-note header span { padding: 3px 7px; color: #266c51; background: #e5f3ed; text-transform: uppercase; letter-spacing: .08em; font-size: 8px; font-weight: 850; }
.community-note time { margin-left: auto; color: var(--muted); font: 9px var(--mono); }
.community-note p { color: #414650; margin: 16px 0; }
.community-note > a { color: #7a4e08; font-size: 11px; font-weight: 750; }
.no-notes { padding: 25px; border-style: dashed; }
.no-notes p { color: var(--muted); margin: 5px 0 0; font-size: 13px; }
.note-submit { padding: 25px; border-top: 4px solid var(--amber); }
.note-submit h3 { margin: 3px 0 7px; font-size: 23px; line-height: 1.2; }
.note-submit > p { color: var(--muted); margin: 0 0 20px; font-size: 12px; }
.note-submit form { display: grid; gap: 14px; }
.note-submit label { display: grid; gap: 5px; }
.note-submit label > span { color: #4e535d; font-size: 10px; font-weight: 800; }
.note-submit input, .note-submit textarea { width: 100%; padding: 10px 11px; color: var(--ink); background: #f8f7f4; border: 1px solid #dcd8ce; font-size: 13px; }
.note-submit textarea { resize: vertical; min-height: 140px; }
.note-submit form > small { color: var(--muted); font-size: 9px; line-height: 1.5; }
.field-error, .form-errors { color: #a42c28; font-size: 10px; font-weight: 700; }

.donate-layout { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 80px; align-items: start; }
.donate-layout main h2 { margin: 5px 0 15px; font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -.04em; }
.donate-layout main > p { color: #515762; font-size: 17px; }
.donate-principles { display: grid; gap: 8px; margin-top: 30px; }
.donate-principles > div { display: grid; grid-template-columns: 130px 1fr; gap: 15px; padding: 16px; background: var(--white); border: 1px solid var(--line); }
.donate-principles span { color: var(--muted); font-size: 12px; }
.donation-card { padding: 28px; color: #fff; background: var(--ink); border-top: 5px solid var(--amber); }
.donation-card .section-kicker { color: var(--amber); }
.donation-card h3 { margin: 7px 0; font-size: 25px; }
.donation-card p { color: #b9bec8; }
.donation-card > code { display: block; overflow-wrap: anywhere; padding: 16px; color: var(--amber-2); background: #1d222c; border: 1px solid #3a404c; font: 13px/1.6 var(--mono); }
.donation-actions { display: flex; gap: 8px; margin: 18px 0; }
.donation-card > small { display: block; color: #858c97; font-size: 10px; }

.method-layout { display: grid; grid-template-columns: 210px minmax(0, 760px); justify-content: center; gap: 80px; }
.method-nav { position: sticky; top: 25px; display: grid; align-content: start; gap: 8px; height: fit-content; padding-left: 17px; border-left: 2px solid var(--line); }
.method-nav span { margin-bottom: 5px; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 850; }
.method-nav a { color: var(--muted); text-decoration: none; font-size: 12px; }
.method-nav a:hover { color: var(--ink); }
.method-content > section { scroll-margin-top: 30px; margin-bottom: 80px; }
.method-content h2, .story-main h2, .narrow-page h2 { margin: 8px 0 18px; font-size: clamp(30px, 4vw, 42px); line-height: 1.13; letter-spacing: -.04em; }
.method-content > section > p:not(.lede) { color: #4e535d; font-size: 17px; }
.dimension-list { display: grid; gap: 8px; margin-top: 30px; }
.dimension-list article { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 20px; background: var(--white); border: 1px solid var(--line); }
.dimension-list article > strong { color: var(--amber); font: 38px/1 var(--mono); }
.dimension-list h3 { margin: 0 0 4px; font-size: 16px; }
.dimension-list p { color: var(--muted); margin: 0; font-size: 13px; }
.severity-table { border: 1px solid var(--line); background: var(--white); }
.severity-table > div { display: grid; grid-template-columns: 160px 80px 1fr; align-items: center; gap: 15px; padding: 15px 18px; border-bottom: 1px solid #ece9e2; }
.severity-table > div:last-child { border: 0; }
.severity-table strong { font-family: var(--mono); }
.severity-table p { color: var(--muted); margin: 0; font-size: 12px; }
.principle-callout { margin-top: 28px; padding: 27px; color: var(--white); background: var(--ink); border-left: 5px solid var(--amber); }
.principle-callout p { color: #b8bdc6; margin-bottom: 0; }
.process-list { list-style: none; padding: 0; }
.process-list li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; color: var(--ink); background: var(--amber); font-family: var(--mono); font-weight: 800; }
.process-list strong { font-size: 16px; }
.process-list p { color: var(--muted); margin: 1px 0 0; font-size: 13px; }

.story-layout { display: grid; grid-template-columns: minmax(0, 760px) 330px; justify-content: center; gap: 80px; }
.story-main > p:not(.lede) { color: #4d525c; font-size: 17px; }
.story-main h2:not(:first-of-type) { margin-top: 55px; }
.story-main blockquote { margin: 40px 0; padding: 10px 0 10px 27px; border-left: 5px solid var(--amber); }
.story-main blockquote p { margin: 0; font-size: 28px; font-weight: 750; line-height: 1.35; letter-spacing: -.03em; }
.story-aside { height: fit-content; padding: 28px; background: var(--white); border: 1px solid var(--line); }
.story-aside .big-number { color: var(--amber); font: 60px/1 var(--mono); font-weight: 900; }
.story-aside h3 { font-size: 20px; }
.story-aside ul { padding-left: 17px; }
.story-aside li { margin: 14px 0; color: var(--muted); font-size: 12px; }
.story-aside li strong { color: var(--ink); }
.narrow-page { max-width: 780px; }
.narrow-page h2 { margin-top: 45px; font-size: 30px; }
.narrow-page > p { color: #4d525c; font-size: 17px; }
.error-page { min-height: 65vh; display: flex; flex-direction: column; align-items: start; justify-content: center; }
.error-page > span { color: var(--amber); font: 80px/1 var(--mono); font-weight: 900; }
.error-page h1 { margin: 12px 0 0; font-size: 52px; letter-spacing: -.05em; }
.error-page p { color: var(--muted); margin-bottom: 25px; }

@media (max-width: 980px) {
  .filters { grid-template-columns: 1fr 1fr 1fr; }
  .search-box { grid-column: 1 / -1; }
  .analysis-layout { grid-template-columns: 1fr; }
  .analysis-sidebar { grid-template-columns: repeat(3, 1fr); }
  .related-grid, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .accountability-inner { grid-template-columns: 90px 1fr; padding: 45px 0; }
  .accountability-inner .button { grid-column: 2; width: fit-content; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { grid-column: 1 / -1; }
  .vendor-layout, .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .community-layout { grid-template-columns: 1fr; gap: 35px; }
  .communication-layout { grid-template-columns: 1fr; }
  .donate-layout { grid-template-columns: 1fr; gap: 40px; }
  .donation-card { max-width: 620px; }
  .note-submit { max-width: 620px; }
  .method-note, .story-aside { max-width: 600px; }
}

@media (max-width: 740px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .nav-shell { height: 64px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 64px; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 14px 18px; background: var(--ink); border-top: 1px solid #2d323e; box-shadow: 0 12px 20px rgb(0 0 0 / 30%); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 7px; border-bottom: 1px solid #242934; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .nav-rss { margin: 0; padding-left: 0; border: 0; }
  .brand-word { font-size: 18px; }
  .hero { padding-top: 58px; }
  .hero-inner { padding-bottom: 55px; }
  .hero h1 { font-size: clamp(46px, 15vw, 64px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: start; flex-direction: column; gap: 18px; }
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metrics-strip > div:nth-child(2) { border-right: 0; }
  .metrics-strip > div { min-height: 82px; padding: 17px; border-bottom: 1px solid rgb(255 255 255 / 10%); }
  .feed-section { padding: 58px 0 70px; }
  .feed-heading { align-items: start; flex-direction: column; gap: 10px; }
  .feed-heading > p { text-align: left; }
  .filters { grid-template-columns: 1fr 1fr; }
  .button--filter { width: 100%; }
  .commit-card__body { padding: 19px 17px 16px; }
  .project-line { align-items: start; flex-wrap: wrap; }
  .project-line > span:nth-child(2) { flex-direction: column; gap: 0; }
  .commit-card h2 { font-size: 21px; }
  .commit-card__summary { font-size: 14px; }
  .commit-card__foot { align-items: start; flex-direction: column; gap: 9px; }
  .accountability-inner { grid-template-columns: 1fr; gap: 20px; }
  .accountability-inner .big-number { font-size: 60px; }
  .accountability-inner .button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-note { grid-column: auto; }
  .analysis-hero { padding-top: 27px; }
  .analysis-hero h1 { font-size: 36px; }
  .analysis-project { flex-wrap: wrap; }
  .analysis-project .commit-link { width: 100%; margin: 10px 0 0; }
  .analysis-layout { padding-top: 35px; gap: 35px; }
  .reading-toggle { display: flex; width: 100%; }
  .reading-toggle button { min-width: 0; flex: 1; }
  .plain-summary { font-size: 18px; }
  .signal-grid { grid-template-columns: 1fr; }
  .score-head { align-items: start; flex-direction: column; }
  .score-head a { margin: -10px 0 20px; }
  .analysis-sidebar { grid-template-columns: 1fr; }
  .related-grid, .project-grid { grid-template-columns: 1fr; }
  .reference-grid { grid-template-columns: 1fr; }
  .entity-row { grid-template-columns: 60px 1fr; align-items: start; }
  .vendor-monogram--xl { width: 60px; height: 60px; font-size: 16px; }
  .entity-actions, .vendor-score { grid-column: 1 / -1; margin-top: 10px; }
  .entity-actions { width: 100%; }
  .vendor-score { width: 100%; }
  .method-layout { grid-template-columns: 1fr; gap: 35px; }
  .coverage-head { grid-template-columns: 1fr; gap: 20px; }
  .coverage-totals { width: 100%; }
  .window-grid { grid-template-columns: repeat(2, 1fr); }
  .window-grid > div:nth-child(2) { border-right: 0; }
  .window-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .scan-list > div { grid-template-columns: 1fr 1fr; }
  .scan-status { text-align: left; }
  .method-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .method-nav span { grid-column: 1 / -1; }
  .severity-table > div { grid-template-columns: 1fr auto; }
  .severity-table p { grid-column: 1 / -1; }
  .story-main blockquote p { font-size: 23px; }
  .ai-banner .shell { align-items: start; flex-direction: column; gap: 3px; padding-block: 10px; }
  .community-section { padding: 55px 0; }
  .community-note time { width: 100%; margin-left: 0; }
  .explorer-commit > summary { grid-template-columns: 1fr auto; gap: 8px 12px; }
  .triage-mark { grid-column: 1; }
  .explorer-title { grid-column: 1 / -1; grid-row: 2; }
  .explorer-score { grid-column: 1; grid-row: 3; }
  .message-grade { grid-column: 2; grid-row: 3; }
  .expand-label { grid-column: 2; grid-row: 1; }
  .explorer-body { grid-template-columns: 1fr; gap: 22px; padding: 18px; }
  .message-quality-record { grid-template-columns: 1fr; }
  .commit-message-record { grid-template-columns: 1fr; }
  .commit-message-record .message-grade, .commit-message-record blockquote, .message-quality-signals { grid-column: 1; }
  .commit-message-record > .message-grade { justify-self: start; }
  .donation-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 7px; }
}

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