:root {
  --bg: #f7f8fa;
  --paper: #ffffff;
  --ink: #171a20;
  --muted: #59616b;
  --muted-2: #757066;
  --line: #d8dee8;
  --line-strong: #b3bdca;
  --link: #1d4ed8;
  --link-visited: #4f46e5;
  --brand: #1e3a8a;
  --brand-2: #9f1239;
  --good: #08743f;
  --good-bg: #27c95d;
  --qualified: #0b5f87;
  --qualified-bg: #44b8dc;
  --performative: #9b7600;
  --performative-bg: #f5d943;
  --extractive: #aa4f0d;
  --extractive-bg: #e87925;
  --malignant: #712a30;
  --malignant-bg: #9f4a4b;
  --review: #5c6070;
  --review-bg: #ececf0;
  --ai: #a2a8b0;
  --ai-bg: #eeeeec;
  --radius: 8px;
  --max: 1120px;
  --directory-sticky-select-width: 3rem;
  --directory-sticky-mark-width: 4.5rem;
  --directory-sticky-dietary-width: 3.5rem;
  --directory-name-width: 15rem;
  --directory-sticky-name-width: var(--directory-name-width);
  --directory-sticky-score-width: 8rem;
  --directory-description-width: 36rem;
  --directory-type-width: 10rem;
  --directory-parent-owner-width: 11rem;
  --directory-industry-width: 8.75rem;
  --directory-political-spending-width: 12rem;
  --directory-confidence-width: 10rem;
  --directory-thoroughness-width: 7.75rem;
  --directory-date-added-width: 7.75rem;
  --directory-last-updated-width: 7.75rem;
  --directory-row-hover: #e3ecfb;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, var(--bg) 280px, #eef2f7 100%);
  font: 16px/1.48 ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-width: 320px;
}

body > main,
.page-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

main.page-shell {
  padding: 20px 0 34px;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:visited {
  color: var(--link-visited);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: 2.05rem;
  line-height: 1.14;
  font-weight: 720;
}

h2 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.2;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
  line-height: 1.25;
}

p {
  margin-bottom: 10px;
}

ul {
  padding-left: 1.1rem;
}

pre {
  overflow-x: auto;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 720;
  text-decoration: none;
}

.brand-mark {
  width: 72px;
  height: 81px;
  flex: 0 0 auto;
  display: block;
  filter: none;
}

.site-brand-wordmark {
  white-space: nowrap;
}

.nav-links,
.nav-account,
.footer-links,
.hero-actions,
.inline-actions,
.form-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a,
.nav-links .current-page-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.93rem;
  text-decoration: none;
}

.nav-links a:hover {
  background: #e7edf7;
}

.nav-links {
  margin-left: auto;
  justify-content: flex-end;
}

.nav-links .current-page-link {
  background: #e7edf7;
  font-weight: 760;
}

.nav-account {
  margin-left: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-account-link {
  display: inline-flex;
  align-items: center;
  max-width: 15rem;
  min-height: 34px;
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-account-link:hover,
.nav-account-link:focus-visible {
  text-decoration: underline;
}

.nav-account-link.is-login {
  padding: 5px 10px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--paper);
}

.nav-account-link.is-login:hover,
.nav-account-link.is-login:focus-visible {
  background: #e7edf7;
}

.nav-account-link [data-account-button-label] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-account-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  width: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--brand);
  line-height: 1.1;
  cursor: pointer;
}

.nav-account-menu-button:hover,
.nav-account-menu-button:focus-visible,
.nav-account-menu-button[aria-expanded="true"] {
  background: #e7edf7;
}

.account-menu-dots {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 14px;
  height: 20px;
}

.account-menu-dots span {
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: currentColor;
}

.nav-account-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  min-width: 11.5rem;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

.nav-account-menu[hidden] {
  display: none;
}

.nav-account-menu-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  appearance: none;
  font: inherit;
  font-size: 0.93rem;
  font-weight: 650;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.nav-account-menu-item:hover,
.nav-account-menu-item:focus-visible {
  background: #e7edf7;
}

.nav-account-menu-item-danger {
  color: #9f1d35;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 18px 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  justify-content: center;
}

.footer-links a,
.footer-links .current-page-link {
  color: var(--ink);
}

.footer-links .current-page-link {
  font-weight: 760;
}

.site-copyright {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.kicker {
  margin-bottom: 7px;
  color: var(--brand-2);
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0.07em;
}

.lede {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-header {
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--line);
}

.page-header.compact {
  padding-bottom: 14px;
}

.directory-scope-note {
  max-width: 840px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(176px, auto);
  gap: clamp(24px, 7vw, 92px);
  align-items: start;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: start;
}

.hero-copy .lede {
  margin-bottom: 14px;
}

.hero-scoreboard {
  display: grid;
  grid-template-columns: repeat(2, 84px);
  grid-template-rows: repeat(3, auto);
  justify-content: end;
  justify-self: end;
  align-self: start;
  gap: 6px 8px;
}

.hero-scoreboard .gcd-badge-compact:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.hero-scoreboard .gcd-badge-compact:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.hero-scoreboard .gcd-badge-compact:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.hero-scoreboard .gcd-badge-compact:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.hero-scoreboard .gcd-badge-compact:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 680;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
button[type="submit"] {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.button.secondary {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.78);
}

.button.danger {
  border-color: #c08497;
  background: #fff5f7;
  color: #9f1239;
}

.button.danger:hover,
.button.danger:focus-visible {
  border-color: #9f1239;
  background: #ffe4ea;
}

button:disabled {
  border-color: #cbd3df;
  background: #eef1f5;
  color: #8a94a3;
  box-shadow: none;
  opacity: 1;
  cursor: not-allowed;
}

.section-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.featured-grid,
.usp-grid,
.method-grid,
.definition-grid,
.maintenance-grid,
.score-summary-grid,
.mission-grid {
  display: grid;
  gap: 10px;
}

.featured-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.featured-industry-context {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.featured-industry-context a {
  color: var(--accent-strong);
  text-decoration: none;
}

.featured-industry-context a:hover,
.featured-industry-context a:focus-visible {
  text-decoration: underline;
}

.usp-grid,
.method-grid,
.definition-grid,
.mission-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  max-width: 920px;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 940px;
}

.method-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 116px;
  padding: 17px;
  border: 1px solid #d5dde8;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 252, 0.78)),
    var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.82) inset, 0 8px 22px rgba(35, 48, 65, 0.06);
}

.method-list article > span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #cbd7e4;
  border-radius: 999px;
  background: #eef4f8;
  color: #7a1424;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.method-list h3 {
  margin-bottom: 7px;
  font-size: 1.13rem;
  line-height: 1.18;
}

.method-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.42;
}

.score-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  margin: 12px 0;
}

.rubric-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 20px;
}

.rubric-snapshot article,
.rubric-rule-grid > div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.rubric-snapshot strong,
.rubric-rule-grid strong {
  font-size: 0.92rem;
}

.rubric-snapshot span,
.rubric-rule-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.rubric-panel {
  display: grid;
  gap: 10px;
}

.rubric-panel > h2 {
  margin-bottom: 0;
}

.rubric-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rubric-steps {
  counter-reset: rubric-step;
  list-style: none;
  padding-left: 0;
}

.rubric-steps li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 10px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.rubric-steps li:last-child {
  border-bottom: 0;
}

.rubric-steps li::before {
  counter-increment: rubric-step;
  content: counter(rubric-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.rubric-steps strong,
.rubric-steps span {
  grid-column: 2;
}

.rubric-steps span {
  color: var(--muted);
}

.rubric-page {
  gap: 22px;
}

.rubric-hero .lede {
  max-width: 780px;
}

.rubric-sequence {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
}

.rubric-sequence article,
.rubric-item,
.rubric-formula-card,
.rubric-grade-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.rubric-sequence article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 13px;
  align-items: center;
  padding: 14px 16px;
}

.rubric-sequence article > span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 900;
}

.rubric-sequence strong {
  font-size: 1.13rem;
  line-height: 1.15;
}

.rubric-sequence p,
.rubric-block-heading p,
.rubric-item p {
  margin: 0;
  color: var(--muted);
}

.rubric-block {
  display: grid;
  gap: 16px;
  padding: 30px 0 28px;
  border-top: 1px solid var(--line);
}

.rubric-block-heading {
  display: grid;
  gap: 5px;
  max-width: 800px;
}

.rubric-block-heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.04;
}

.rubric-block-heading .kicker {
  font-size: 0.96rem;
}

.rubric-grade-stack,
.rubric-item-list {
  display: grid;
  gap: 10px;
}

.rubric-grade-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  overflow: hidden;
}

.rubric-grade-row > strong {
  display: grid;
  place-items: center;
  min-height: 5rem;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
}

.rubric-grade-row.label-good > strong { background: linear-gradient(145deg, #2f9861, #0f5d39); }
.rubric-grade-row.label-qualified > strong { background: linear-gradient(145deg, #4387e8, #154da7); }
.rubric-grade-row.label-performative > strong { background: linear-gradient(145deg, #f0cf43, #a97802); }
.rubric-grade-row.label-extractive > strong { background: linear-gradient(145deg, #de8b32, #8f4314); }
.rubric-grade-row.label-malignant > strong { background: linear-gradient(145deg, #c8515c, #82262c); }

.rubric-grade-row div {
  padding: 12px 14px 12px 0;
}

.rubric-grade-row span {
  display: block;
  font-size: 1.24rem;
  font-weight: 900;
}

.rubric-grade-row p {
  margin: 2px 0 0;
  color: var(--muted);
}

.rubric-formula-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 243, 250, 0.92));
}

.rubric-formula-card strong {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.rubric-formula-card code {
  width: fit-content;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-size: clamp(1rem, 2.4vw, 1.55rem);
  white-space: normal;
}

.rubric-item {
  display: grid;
  grid-template-columns: minmax(9rem, 14rem) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(28, 39, 57, 0.05);
}

.rubric-item-score {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 14px;
  background: #eef3fa;
  color: #19315b;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
}

.rubric-item-material .rubric-item-score {
  background: linear-gradient(145deg, #eef7f0, #cfe8d6);
  color: #0f5d39;
}

.rubric-item-bonus .rubric-item-score {
  background: linear-gradient(145deg, #edf6ff, #cadffb);
  color: #154da7;
}

.rubric-item-penalty .rubric-item-score {
  background: linear-gradient(145deg, #fff0ee, #f1c8c4);
  color: #8a2730;
}

.rubric-item-meta .rubric-item-score {
  background: linear-gradient(145deg, #f8f4e8, #e4d6b2);
  color: #6d4a05;
}

.rubric-item-body {
  display: grid;
  gap: 7px;
  padding: 15px 16px;
}

.rubric-item h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2.1vw, 1.7rem);
  line-height: 1.08;
}

.rubric-item-detail {
  color: var(--ink) !important;
}

.rubric-scale-island {
  margin-top: 10px;
  padding: 16px;
  border: 1px solid rgba(138, 39, 48, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 251, 245, 0.97), rgba(255, 236, 232, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.rubric-scale-island h4 {
  margin: 0 0 12px;
  color: #8a2730;
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  line-height: 1.05;
}

.rubric-scale-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rubric-scale-list li {
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(138, 39, 48, 0.14);
}

.rubric-scale-list li:last-child {
  border-bottom: 0;
}

.rubric-scale-list strong {
  color: #8a2730;
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.05;
}

.rubric-scale-list span {
  color: var(--ink);
}

.rubric-size-list strong {
  color: #6d4a05;
}

.rubric-item-meta .rubric-scale-island {
  border-color: rgba(109, 74, 5, 0.22);
  background: linear-gradient(145deg, rgba(255, 252, 243, 0.97), rgba(239, 229, 200, 0.9));
}

.rubric-item-meta .rubric-scale-island h4 {
  color: #6d4a05;
}

.rubric-block-materials .rubric-block-heading h2,
.rubric-item-material h3 {
  color: #0f5d39;
}

.rubric-block-bonuses .rubric-block-heading h2,
.rubric-item-bonus h3 {
  color: #154da7;
}

.rubric-block-penalties .rubric-block-heading h2,
.rubric-item-penalty h3 {
  color: #8a2730;
}

.rubric-procedure-list {
  counter-reset: rubric-procedure;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rubric-procedure-list li {
  counter-increment: rubric-procedure;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.rubric-procedure-list li:last-child {
  border-bottom: 0;
}

.rubric-procedure-list li::before {
  content: counter(rubric-procedure);
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: #eef3fa;
  color: var(--brand-blue);
  font-weight: 900;
}

.rubric-procedure-list span {
  color: var(--muted);
}

.rubric-civic-note {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 221, 0.9));
}

.entity-card,
.usp-grid article,
.principle-list article,
.audit-entry,
.claim-card,
.score-summary-grid article,
.mission-card,
.definition-grid article,
.method-grid .panel,
.maintenance-grid .panel,
.review-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.entity-card {
  padding: 12px;
}

.entity-card-main {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.entity-card h3 a,
.directory-name a {
  color: var(--ink);
}

.entity-card h3 {
  margin-bottom: 2px;
  font-size: 1.08rem;
}

.entity-card h3 a {
  text-decoration: none;
}

.entity-card p,
.directory-description {
  color: var(--muted);
}

.entity-card .entity-type {
  margin-bottom: 7px;
  font-size: 0.92rem;
}

.ownership-note {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--muted);
}

.parent-owner-fact a {
  color: inherit;
  font-weight: 700;
}

.entity-type,
.directory-meta,
.entity-card-footer,
.claim-meta,
.entity-facts {
  color: var(--muted-2);
  font-size: 0.86rem;
}

.entity-card-footer,
.footer-inline,
.entity-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.footer-inline p,
.badge-wrap p {
  margin: 0;
}

.badge-wrap {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.gcd-badge {
  position: relative;
  isolation: isolate;
  flex: 0 0 auto;
  display: inline-grid;
  box-sizing: border-box;
  border: 1px solid color-mix(in srgb, var(--badge-deep) 72%, #ffffff 28%);
  border-radius: 6px;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.46) inset,
    0 -1px 0 rgba(0, 0, 0, 0.28) inset,
    1px 0 0 rgba(255, 255, 255, 0.16) inset,
    -1px 0 0 rgba(0, 0, 0, 0.18) inset,
    0 7px 16px rgba(23, 26, 32, 0.14);
}

.gcd-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 82% 13%, rgba(255, 255, 255, 0.42) 0 6%, rgba(255, 255, 255, 0.18) 15%, rgba(255, 255, 255, 0) 31%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08) 15%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, var(--badge-light), var(--badge) 48%, var(--badge-deep));
}

.gcd-badge::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 -1px 0 rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.gcd-badge-large {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  grid-template-areas:
    "grade label"
    "grade score";
  align-items: center;
  width: 178px;
  min-height: 104px;
  padding: 16px 13px 15px;
  gap: 0 8px;
}

.gcd-badge-compact {
  display: inline-grid;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "grade"
    "label";
  align-items: stretch;
  justify-items: stretch;
  width: 84px;
  height: 68px;
  padding: 4px 6px 5px;
  gap: 2px;
  border-radius: 5px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38) inset,
    0 -1px 0 rgba(0, 0, 0, 0.24) inset,
    1px 0 0 rgba(255, 255, 255, 0.12) inset,
    -1px 0 0 rgba(0, 0, 0, 0.14) inset,
    0 5px 12px rgba(23, 26, 32, 0.14);
}

.gcd-badge-featured {
  display: inline-grid;
  grid-template-columns: minmax(86px, 1fr) 50px;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "grade score"
    "label score";
  align-items: stretch;
  justify-items: stretch;
  width: 154px;
  height: 86px;
  padding: 6px 8px 7px;
  gap: 3px 6px;
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.38) inset,
    0 -1px 0 rgba(0, 0, 0, 0.24) inset,
    1px 0 0 rgba(255, 255, 255, 0.12) inset,
    -1px 0 0 rgba(0, 0, 0, 0.14) inset,
    0 6px 14px rgba(23, 26, 32, 0.15);
}

.gcd-badge-compact::after {
  display: none;
}

.gcd-badge-featured::after {
  display: none;
}

.badge-watermark {
  position: absolute;
  left: 11px;
  top: 50%;
  z-index: -1;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  opacity: 0.14;
  transform: translateY(-50%) rotate(-2deg);
  filter: grayscale(1) brightness(0) invert(1);
}

.badge-label {
  grid-area: label;
  align-self: end;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.badge-score {
  grid-area: score;
  align-self: start;
  margin-top: 4px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.22);
}

.badge-score.score-ai {
  color: #d1d5db;
}

.badge-score-compact {
  display: none;
}

.badge-grade {
  grid-area: grade;
  justify-self: start;
  color: #ffffff;
  font-size: 3.65rem;
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: 0;
  text-shadow:
    0 1px 1px rgba(0, 0, 0, 0.3),
    0 -1px 0 rgba(255, 255, 255, 0.14);
}

.gcd-badge-compact .badge-grade {
  display: block;
  place-self: center;
  font-size: 2.2rem;
  font-weight: 820;
  line-height: 0.86;
}

.gcd-badge-featured .badge-grade {
  display: block;
  place-self: center;
  font-size: 3.05rem;
  font-weight: 850;
  line-height: 0.86;
}

.gcd-badge-compact .badge-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  align-self: end;
  padding-top: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.47rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.gcd-badge-featured .badge-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  align-self: end;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.gcd-badge-featured .score-featured {
  display: flex;
  grid-area: score;
  align-self: stretch;
  justify-self: stretch;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-left: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 1.14rem;
  line-height: 1;
  text-align: center;
}

.badge-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
}

.icon-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-button[data-copied="true"] {
  border-color: var(--good);
  color: var(--good);
}

.badge-good {
  --badge: #176a42;
  --badge-light: #2f8758;
  --badge-deep: #0b472d;
}

.badge-qualified {
  --badge: #1e57b7;
  --badge-light: #3f7fe0;
  --badge-deep: #183f86;
}

.badge-performative {
  --badge: #aa8100;
  --badge-light: #e3bf28;
  --badge-deep: #735500;
}

.badge-extractive {
  --badge: #b7550d;
  --badge-light: #e37b28;
  --badge-deep: #7a3404;
}

.badge-malignant {
  --badge: #a34145;
  --badge-light: #c46163;
  --badge-deep: #72262e;
}

.badge-review {
  --badge: var(--review);
  --badge-light: #7a8698;
  --badge-deep: #485263;
}

.label-good {
  color: var(--good);
}

.label-qualified {
  color: var(--qualified);
}

.label-performative {
  color: var(--performative);
}

.label-extractive {
  color: var(--extractive);
}

.label-malignant {
  color: var(--malignant);
}

.label-color-swatch {
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--line);
}

.label-color-swatch.label-good {
  background: var(--good-bg);
  border-color: var(--good);
}

.label-color-swatch.label-qualified {
  background: var(--qualified-bg);
  border-color: var(--qualified);
}

.label-color-swatch.label-performative {
  background: var(--performative-bg);
  border-color: var(--performative);
}

.label-color-swatch.label-extractive {
  background: var(--extractive-bg);
  border-color: var(--extractive);
}

.label-color-swatch.label-malignant {
  background: var(--malignant-bg);
  border-color: var(--malignant);
}

.label-bg-good {
  background: linear-gradient(90deg, var(--good-bg), transparent 62%);
}

.label-bg-qualified {
  background: linear-gradient(90deg, var(--qualified-bg), transparent 62%);
}

.label-bg-performative {
  background: linear-gradient(90deg, var(--performative-bg), transparent 62%);
}

.label-bg-extractive {
  background: linear-gradient(90deg, var(--extractive-bg), transparent 62%);
}

.label-bg-malignant {
  background: linear-gradient(90deg, var(--malignant-bg), transparent 62%);
}

.label-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.label-review {
  color: var(--review);
  background: var(--review-bg);
}

.label-ai {
  background: color-mix(in srgb, currentColor 10%, var(--paper));
}

.score-ai {
  color: var(--ai);
}

.ai-footnote {
  display: block;
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--ai);
  font-size: 0.88rem;
  line-height: 1.35;
}

.usp-grid article,
.principle-list article,
.definition-grid article,
.mission-card,
.method-grid .panel,
.maintenance-grid .panel,
.score-summary-grid article {
  padding: 12px;
}

.mission-card dl {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
}

.mission-protocol-grid,
.commons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mission-protocol-grid article,
.commons-stats article {
  display: grid;
  gap: 4px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.mission-protocol-grid span,
.commons-stats span,
.commons-list small,
.mission-queue-list small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.mission-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.mission-card-head h3 {
  margin-bottom: 4px;
}

.mission-type {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mission-copy-button {
  flex: 0 0 auto;
}

.mission-copy-button[data-copied="true"] {
  border-color: var(--good);
  color: var(--good);
  background: #e8f7ee;
}

.mission-card dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.mission-card dd {
  margin: 2px 0 0;
}

.mission-difficulty,
.mission-status-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.mission-prompt {
  display: block;
  max-width: 760px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.mission-submit-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.mission-submit-disclosure {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 220ms ease,
    opacity 180ms ease,
    margin-top 220ms ease;
}

.mission-submit-disclosure[hidden] {
  display: none;
}

.mission-submit-disclosure.is-open {
  grid-template-rows: 1fr;
  margin-top: 2px;
  opacity: 1;
}

.mission-submit-inner {
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.mission-submit-form .form-row.wide,
.mission-submit-form .form-row.wide textarea {
  width: 100%;
}

.mission-submit-form textarea:not(.mission-prompt-source) {
  min-height: 8rem;
  resize: vertical;
}

.mission-submit-row {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px;
}

.mission-submit-row .form-row {
  flex: 1 1 13rem;
  max-width: 19rem;
}

.mission-submit-row .form-status {
  flex: 1 1 12rem;
  align-self: center;
}

.mission-queue-list {
  display: grid;
  gap: 7px;
  max-width: 980px;
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
}

.mission-queue-list li,
.commons-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 680;
}

.mission-queue-list li > div,
.commons-list li {
  min-width: 0;
}

.mission-queue-list strong,
.commons-list strong {
  display: block;
}

.commons-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.commons-stats article {
  min-width: 150px;
}

.commons-stats strong {
  font-size: 1.7rem;
  line-height: 1;
}

.commons-grid h3 {
  margin-bottom: 8px;
}

.commons-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.help-route-grid,
.contribution-context-grid {
  display: grid;
  gap: 12px;
}

.help-route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.help-route-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.help-route-grid article > * {
  margin-bottom: 0;
}

.contribution-context-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contextual-contribution-panel {
  min-width: 0;
}

.contribution-disclosure {
  min-width: 0;
}

.contribution-disclosure > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.contribution-disclosure > summary::-webkit-details-marker {
  display: none;
}

.contribution-disclosure > summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.contribution-disclosure[open]:not([data-closing]) > summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.contribution-disclosure > summary span {
  font-size: 1.08rem;
  font-weight: 760;
}

.contribution-disclosure > summary small {
  grid-column: 1 / -1;
  max-width: 44rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contribution-body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 220ms ease,
    opacity 180ms ease,
    margin-top 220ms ease;
}

.contribution-body-inner {
  overflow: hidden;
}

.contribution-disclosure[open]:not([data-closing]) .contribution-body {
  grid-template-rows: 1fr;
  margin-top: 14px;
  opacity: 1;
}

.context-submit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(min(100%, 190px), 1fr));
  gap: 10px 14px;
  max-width: 760px;
  align-items: end;
}

.context-submit-form .form-row.wide textarea {
  width: min(100%, 42rem);
}

.context-submit-form input[readonly] {
  color: var(--muted);
  background: #eef1f5;
}

.roadmap-list {
  display: grid;
  gap: 12px;
}

.roadmap-phase {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.roadmap-phase h2 {
  margin-bottom: 8px;
}

.roadmap-phase-highlight {
  border-color: color-mix(in srgb, var(--good) 42%, var(--line));
  background: linear-gradient(90deg, color-mix(in srgb, var(--good-bg) 18%, #ffffff), rgba(255, 255, 255, 0.86) 66%);
}

.text-page .panel > p,
.founder-story {
  max-width: 820px;
}

.founder-story p {
  font-size: 1.02rem;
}

.inline-actions {
  margin-top: 12px;
}

.callout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 4px;
}

.panel {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.panel > :last-child,
.callout-row > div > :last-child,
.entity-card > :last-child,
.claim-card > :last-child {
  margin-bottom: 0;
}

.claim-pulse {
  animation: claim-pulse 850ms ease-in-out 3;
}

@keyframes claim-expand {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes claim-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(35, 134, 82, 0);
    border-color: var(--line);
  }
  35% {
    box-shadow: 0 0 0 5px rgba(35, 134, 82, 0.18);
    border-color: rgba(35, 134, 82, 0.7);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(35, 134, 82, 0);
    border-color: var(--line);
  }
}

.directory-tools {
  display: grid;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.directory-tools label,
.form-row label {
  color: var(--muted);
  font-weight: 700;
}

.directory-primary-tools {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.directory-industry-tools {
  display: inline-flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px 12px;
  width: fit-content;
  max-width: 100%;
}

.directory-suggest-strip {
  display: grid;
  gap: 8px;
  padding: 10px 0 8px;
}

.directory-suggest-head {
  display: flex;
  justify-content: flex-end;
}

.directory-suggest-toggle {
  width: fit-content;
}

.directory-suggest-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    grid-template-rows 220ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.directory-suggest-panel[data-open="true"] {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.directory-suggest-card {
  min-width: 0;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 760px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 18px rgba(23, 26, 32, 0.08);
}

#suggest-listing.context-submit-form {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  max-width: none;
  width: 100%;
}

#suggest-listing .form-row {
  display: grid;
  grid-template-columns: minmax(150px, max-content) minmax(18rem, 1fr);
  align-items: center;
  gap: 8px 10px;
}

#suggest-listing .form-row label {
  text-align: right;
  white-space: nowrap;
}

#suggest-listing .form-row input {
  width: 100%;
  max-width: none;
}

#suggest-listing .form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.directory-detail-control {
  margin-right: 4px;
}

.directory-customize-columns-link {
  align-self: center;
  width: fit-content;
  min-height: 30px;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.directory-customize-columns-link:hover,
.directory-customize-columns-link:focus-visible {
  color: var(--ink);
}

.directory-column-popover {
  position: fixed;
  z-index: 60;
  width: min(92vw, 420px);
  max-height: min(70vh, 620px);
  padding: 10px;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--bg);
  box-shadow: 0 18px 42px rgba(23, 26, 32, 0.18);
}

.directory-column-popover[hidden] {
  display: none;
}

.directory-column-popover-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--ink);
}

.directory-column-popover-close {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}

.directory-column-popover-close:hover,
.directory-column-popover-close:focus-visible {
  border-color: var(--line);
  background: rgba(23, 26, 32, 0.06);
  color: var(--ink);
}

.directory-column-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 4px 8px;
}

.directory-column-choice {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  min-height: 30px;
  gap: 7px;
  padding: 4px 5px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 680;
}

.directory-column-choice:hover,
.directory-column-choice:focus-within {
  background: rgba(35, 134, 82, 0.08);
}

.directory-column-choice input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--ink);
}

.directory-column-choice span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browse-icon,
.fullscreen-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.browse-icon {
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.browse-icon::before,
.browse-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  width: 5px;
  border-top: 2px solid currentColor;
}

.browse-icon::before {
  top: 2px;
}

.browse-icon::after {
  bottom: 2px;
}

.fullscreen-icon::before,
.fullscreen-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid currentColor;
}

.fullscreen-icon::before {
  clip-path: polygon(0 0, 42% 0, 42% 18%, 18% 18%, 18% 42%, 0 42%);
}

.fullscreen-icon::after {
  clip-path: polygon(58% 82%, 82% 82%, 82% 58%, 100% 58%, 100% 100%, 58% 100%);
}

.filter-field {
  display: grid;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
}

.filter-field-search {
  flex: 0 1 23rem;
  width: min(23rem, calc(100vw - 32px));
  min-width: min(100%, 16rem);
  max-width: min(23rem, calc(100vw - 32px));
}

.filter-search-shell {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: min(23rem, calc(100vw - 32px));
  max-width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.filter-search-shell:focus-within {
  border-color: var(--brand);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(35, 77, 150, 0.14);
}

.filter-search-shell input[type="search"] {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 40px;
  padding: 8px 42px 8px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
}

.filter-search-shell input[type="search"]::-webkit-search-cancel-button,
.filter-search-shell input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.filter-clear-button {
  position: absolute;
  top: 50%;
  right: 6px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-height: 0;
  padding: 0 0 2px;
  border: 0;
  border-radius: 999px;
  background: #dfe7f2;
  box-shadow: inset 0 0 0 1px rgba(35, 77, 150, 0.14);
  color: #4b5b70;
  cursor: pointer;
  font-family: Arial, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 24px;
  transform: translateY(-50%);
}

.filter-clear-button:hover,
.filter-clear-button:focus-visible {
  background: #dce6f4;
  color: var(--brand);
  outline: 0;
}

.filter-clear-button[hidden] {
  display: none;
}

input,
select,
textarea {
  width: min(100%, 32rem);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 36px;
  padding: 7px 9px;
}

textarea {
  min-height: 120px;
  padding: 9px;
  resize: vertical;
}

select {
  width: fit-content;
  max-width: min(100%, 32rem);
}

.directory-more-filters {
  display: grid;
  justify-items: center;
  width: fit-content;
  max-width: 100%;
  justify-self: center;
}

.directory-more-filters summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand);
  font-weight: 760;
  cursor: pointer;
  user-select: none;
  margin-inline: auto;
}

.filter-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 14px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.filter-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 4px;
  border-top: 2px solid currentColor;
}

.filter-icon::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  right: 1px;
  top: -5px;
  border: 2px solid currentColor;
  border-radius: 999px;
  background: var(--paper);
  box-shadow:
    -9px 6px 0 -2px var(--paper),
    -9px 6px 0 0 currentColor,
    -3px 12px 0 -2px var(--paper),
    -3px 12px 0 0 currentColor;
}

.directory-more-filters summary::-webkit-details-marker {
  display: none;
}

.directory-more-filters[open] summary {
  border-color: var(--brand);
  background: #e7edf7;
}

.directory-filter-grid {
  display: flex;
  align-items: end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  max-height: 0;
  margin-top: 0;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition:
    max-height 240ms ease,
    margin-top 240ms ease,
    padding 240ms ease,
    border-color 240ms ease,
    opacity 180ms ease,
    transform 240ms ease;
}

.directory-filter-grid select {
  max-width: min(calc(100vw - 32px), 28rem);
}

.directory-more-filters[open]:not([data-closing="true"]) .directory-filter-grid {
  max-height: 18rem;
  margin-top: 10px;
  padding: 12px;
  border-color: var(--line);
  opacity: 1;
  transform: translateY(0);
}

.directory-filter-toggles {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  min-height: 36px;
}

.directory-browse-layout {
  display: grid;
  gap: 12px;
  align-items: start;
  margin-top: 12px;
  position: relative;
}

.directory-browse-layout[data-browse-active="true"] {
  position: fixed;
  inset: 0;
  z-index: 1000;
  grid-template-rows: minmax(18rem, 42vh) minmax(0, 1fr);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 12px;
  background: var(--bg);
  box-shadow: 0 0 0 1px var(--line);
  transform: none;
  overflow: hidden;
  align-items: stretch;
}

.directory-browse-layout[data-browse-active="true"] .directory-table-wrap {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-top: 0;
  transform: translateX(0) !important;
  transition: max-width 220ms ease;
}

.directory-browse-close {
  position: absolute;
  z-index: 30;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}

.directory-browse-close[hidden] {
  display: none;
}

.directory-browse-close:hover,
.directory-browse-close:focus-visible {
  color: var(--ink);
  outline: none;
  border-color: var(--ink);
}

.directory-browse-panel {
  min-width: 0;
  min-height: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
}

.directory-browse-layout[data-browse-active="true"] .directory-browse-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
}

.directory-browse-head,
.browse-listbox-heading,
.directory-table-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.directory-browse-head {
  padding: 1px 2px 9px;
  border-bottom: 1px solid var(--line);
}

.directory-browse-head h2,
.browse-listbox-heading h2 {
  margin: 0;
  font-size: 0.94rem;
}

.directory-browse-head button,
.browse-listbox-heading button {
  width: fit-content;
  min-height: 0;
  padding: 3px 6px;
  border: 0;
  background: transparent;
  color: var(--link);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 720;
  cursor: pointer;
}

.directory-browse-stack {
  display: grid;
  gap: 7px;
  min-height: 0;
  padding-top: 8px;
}

.browse-listbox-panel,
.browse-select-panel,
.browse-score-panel {
  min-width: 0;
  min-height: 0;
}

.browse-select-panel {
  display: grid;
  gap: 4px;
}

.browse-select-panel label {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 760;
}

.browse-select-panel select {
  width: 100%;
}

.browse-score-choices,
.browse-score-choices p {
  display: grid;
  grid-template-columns: repeat(5, minmax(42px, 1fr));
  gap: 4px;
  margin: 0;
  width: 100%;
}

.browse-score-choice {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 42px;
  width: 100%;
  min-height: 30px;
  padding: 0 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 820;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.browse-score-choice input {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--brand);
}

.browse-score-choice span {
  min-width: 0;
  line-height: 1;
}

.browse-score-choice:has(input:checked) {
  border-color: var(--brand);
  background: #dfe9f6;
  color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(36, 77, 148, 0.12);
}

.browse-score-choice:has(input:focus-visible) {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.browse-score-choice:hover {
  border-color: var(--line-strong);
  background: #eef3f8;
}

.browse-listbox-heading {
  margin-bottom: 5px;
}

.browse-listbox {
  display: grid;
  align-content: start;
  gap: 2px;
  height: 5.4rem;
  min-height: 0;
  max-height: none;
  overflow: auto;
  resize: none;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.directory-browse-layout[data-browse-active="true"] .directory-browse-stack {
  height: 100%;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(3, minmax(0, 1fr)) auto auto;
  overflow: hidden;
}

.directory-browse-layout[data-browse-active="true"] .browse-listbox-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
}

.directory-browse-layout[data-browse-active="true"] .browse-listbox {
  height: auto;
}

.browse-listbox button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
  width: 100%;
  min-height: 30px;
  padding: 4px 7px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.browse-listbox button:hover,
.browse-listbox button:focus-visible {
  background: #eef3f8;
  outline: none;
}

.browse-listbox button[aria-selected="true"] {
  background: #dfe9f6;
  color: var(--brand);
  font-weight: 760;
}

.browse-listbox span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.25;
}

.browse-listbox small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.directory-table-region {
  display: flex;
  flex-direction: column;
  width: calc(100vw - 32px);
  max-width: calc(100vw - 32px);
  min-width: 0;
  margin-left: calc(50% - 50vw + 16px);
  margin-right: 0;
  overflow: visible;
}

.directory-browse-layout[data-browse-active="true"] .directory-table-region {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: auto;
  max-width: none;
  margin-left: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.directory-table-topline {
  display: grid;
  grid-template-columns: minmax(2.75rem, 1fr) auto minmax(2.75rem, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin-bottom: 8px;
}

.directory-table-status {
  grid-column: 2;
  width: fit-content;
  max-width: min(100%, 34rem);
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-table-actions {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  min-height: 34px;
}

.directory-fullscreen-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.84);
  border-color: var(--line-strong);
}

.directory-fullscreen-toggle:hover,
.directory-fullscreen-toggle:focus-visible,
.directory-fullscreen-toggle[aria-pressed="true"] {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.directory-browse-layout[data-browse-active="true"] .directory-table-actions {
  visibility: hidden;
}

.directory-browse-layout[data-browse-active="true"] .directory-table-topline {
  grid-row: 2;
  margin-top: 8px;
  margin-bottom: 0;
}

@media (min-width: 1020px) {
  .directory-browse-layout[data-browse-active="true"] {
    grid-template-columns: minmax(16rem, 19rem) minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .directory-browse-panel {
    position: sticky;
    top: 12px;
    max-height: none;
    overflow: visible;
  }

  .directory-browse-layout[data-browse-active="true"] .directory-browse-panel {
    position: static;
  }
}

@media (min-width: 700px) and (max-width: 1019px) {
  .directory-browse-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-browse-layout[data-browse-active="true"] .directory-browse-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .browse-listbox {
    height: 5.2rem;
  }
}

.directory-table-wrap {
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-gutter: stable;
  touch-action: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  transform: none;
  transition:
    max-width 220ms ease,
    transform 220ms ease;
}

.directory-browse-layout:not([data-browse-active="true"]) .directory-table-wrap {
  transform: none;
}

.directory-browse-layout[data-browse-active="true"] .directory-table-wrap {
  grid-row: 1;
  order: 0;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: auto;
  margin-left: 0;
  margin-top: 0;
  transform: translateX(0) !important;
  overflow: auto;
  transition: max-width 220ms ease;
}

.directory-table-wrap.is-panning {
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
}

.directory-table-wrap.is-panning * {
  user-select: none;
  -webkit-user-select: none;
}

.directory-table-wrap[data-directory-expanded="true"] {
  width: max-content;
  max-width: 100%;
}

.directory-empty-state {
  width: fit-content;
  max-width: min(100%, 42rem);
  margin: 10px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-weight: 680;
  text-align: center;
}

.sortable-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.directory-table {
  width: max-content;
  min-width: 0;
  table-layout: auto;
  border-top: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
}

.directory-table-wrap[data-directory-expanded="true"] .directory-table {
  min-width: 0;
}

.directory-table thead th,
.sortable-table thead th {
  position: sticky;
  top: 0;
  z-index: 8;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
  vertical-align: middle;
}

.directory-table thead th {
  border-right: 1px solid var(--line);
}

.directory-table thead th:first-child {
  border-left: 1px solid var(--line);
}

.directory-table th[data-directory-resizable-column] {
  position: sticky;
  padding-right: 16px;
}

.directory-column-resizer {
  position: absolute;
  top: 0;
  right: -4px;
  z-index: 20;
  display: block;
  width: 8px;
  height: 100%;
  cursor: col-resize;
  touch-action: none;
}

.directory-column-resizer::before {
  content: none;
}

.directory-table th[data-directory-resizable-column]:hover .directory-column-resizer::before,
.directory-table th[data-directory-resizable-column].is-resizing .directory-column-resizer::before {
  content: none;
}

body.is-directory-column-resizing {
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.directory-table th,
.directory-table td,
.sortable-table th,
.sortable-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.directory-table tbody td {
  background: var(--bg);
}

.directory-row {
  cursor: pointer;
}

.directory-row a,
.directory-row input,
.directory-row label,
.directory-row button,
.directory-row select,
.directory-row textarea {
  cursor: revert;
}

.directory-row:hover {
  background: var(--directory-row-hover);
}

.directory-table .directory-row:hover td {
  background: var(--directory-row-hover);
}

.directory-row-focus,
.directory-table .directory-row-focus td {
  animation: directory-row-focus-pulse 850ms ease-in-out 3;
}

@keyframes directory-row-focus-pulse {
  0%,
  100% {
    background: var(--bg);
  }
  45% {
    background: #dff7dc;
  }
}

.directory-row:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: -2px;
}

.directory-entity-heading,
.directory-name {
  width: var(--directory-sticky-name-width);
  min-width: var(--directory-sticky-name-width);
  max-width: var(--directory-sticky-name-width);
}

.directory-name {
  cursor: pointer;
  font-weight: 700;
}

.directory-select-heading,
.directory-select,
.directory-mark-heading,
.directory-mark-cell,
.directory-dietary-heading,
.directory-dietary-cell,
.directory-entity-heading,
.directory-name,
.directory-score-heading,
.directory-table .directory-score {
  position: sticky;
  background: var(--bg);
}

.directory-select-heading,
.directory-select {
  left: 0;
  z-index: 5;
  width: var(--directory-sticky-select-width);
  min-width: var(--directory-sticky-select-width);
  max-width: var(--directory-sticky-select-width);
  text-align: center;
}

.directory-mark-heading,
.directory-mark-cell {
  left: var(--directory-sticky-select-width);
  z-index: 6;
  width: var(--directory-sticky-mark-width);
  min-width: var(--directory-sticky-mark-width);
  max-width: var(--directory-sticky-mark-width);
  text-align: center;
  vertical-align: middle;
}

.directory-dietary-heading,
.directory-dietary-cell {
  left: calc(var(--directory-sticky-select-width) + var(--directory-sticky-mark-width));
  z-index: 6;
  width: var(--directory-sticky-dietary-width);
  min-width: var(--directory-sticky-dietary-width);
  max-width: var(--directory-sticky-dietary-width);
  text-align: center;
  vertical-align: middle;
}

.directory-mark-cell .entity-mark-stack {
  justify-content: center;
}

.directory-mark-cell .small-business-seal,
.directory-dietary-cell .dietary-badge,
.directory-mark-cell .policy-bad-actor-badge,
.directory-mark-cell .private-government-badge {
  margin: 0 auto;
}

.directory-entity-heading,
.directory-name {
  left: calc(var(--directory-sticky-select-width) + var(--directory-sticky-mark-width) + var(--directory-sticky-dietary-width));
  z-index: 6;
}

.directory-score-heading,
.directory-table .directory-score {
  right: 0;
  z-index: 7;
  width: var(--directory-sticky-score-width);
  min-width: var(--directory-sticky-score-width);
  max-width: var(--directory-sticky-score-width);
}

.directory-select input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  cursor: pointer;
}

.directory-select {
  vertical-align: middle;
}

.directory-select label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-height: 38px;
  cursor: pointer;
}

.directory-table thead .directory-select-heading,
.directory-table thead .directory-mark-heading,
.directory-table thead .directory-dietary-heading,
.directory-table thead .directory-entity-heading,
.directory-table thead .directory-score-heading {
  z-index: 12;
  background: var(--bg);
}

.directory-name a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  text-decoration: none;
}

.directory-name a > span {
  min-width: 0;
}

.directory-row:hover .directory-name a,
.directory-row:focus-visible .directory-name a,
.directory-name:hover a,
.directory-name:focus-within a,
.directory-name a:hover,
.directory-name a:focus-visible {
  text-decoration: underline;
}

.directory-description,
.directory-description-heading {
  width: var(--directory-description-width);
  min-width: var(--directory-description-width);
  max-width: var(--directory-description-width);
}

.directory-description {
  line-height: 1.5;
  white-space: normal;
}

.directory-type-heading,
.directory-table .directory-type-cell {
  width: var(--directory-type-width);
  min-width: var(--directory-type-width);
  max-width: var(--directory-type-width);
}

.directory-parent-heading,
.directory-table .directory-parent-cell {
  width: var(--directory-parent-owner-width);
  min-width: var(--directory-parent-owner-width);
  max-width: var(--directory-parent-owner-width);
}

.directory-table .directory-parent-cell .parent-owner-link {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--link);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.directory-table .directory-parent-cell:has(.parent-owner-link) {
  cursor: pointer;
}

.directory-table .directory-parent-cell .parent-owner-link:hover,
.directory-table .directory-parent-cell .parent-owner-link:focus-visible {
  color: var(--brand);
}

.directory-table .directory-parent-cell .parent-owner-text {
  color: var(--ink);
}

.directory-political-spending-heading,
.directory-table .directory-political-spending-cell {
  width: var(--directory-political-spending-width);
  min-width: var(--directory-political-spending-width);
  max-width: var(--directory-political-spending-width);
}

.directory-industry-heading,
.directory-table .directory-industry-cell {
  width: var(--directory-industry-width);
  min-width: var(--directory-industry-width);
  max-width: var(--directory-industry-width);
}

.directory-confidence-heading,
.directory-table .directory-confidence-cell {
  width: var(--directory-confidence-width);
  min-width: var(--directory-confidence-width);
  max-width: var(--directory-confidence-width);
}

.directory-table .directory-meta {
  text-align: center;
  white-space: normal;
}

.directory-thoroughness-heading,
.directory-table .directory-thoroughness-cell {
  width: var(--directory-thoroughness-width);
  min-width: var(--directory-thoroughness-width);
  max-width: var(--directory-thoroughness-width);
  text-align: center;
  white-space: nowrap;
}

.directory-date-added-heading,
.directory-table .directory-date-added-cell {
  width: var(--directory-date-added-width);
  min-width: var(--directory-date-added-width);
  max-width: var(--directory-date-added-width);
  text-align: center;
  white-space: nowrap;
}

.directory-last-updated-heading,
.directory-table .directory-last-updated-cell {
  width: var(--directory-last-updated-width);
  min-width: var(--directory-last-updated-width);
  max-width: var(--directory-last-updated-width);
  text-align: center;
  white-space: nowrap;
}

.directory-number-heading,
.directory-number-cell {
  width: 3.3rem;
  min-width: 3.3rem;
  max-width: 3.3rem;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.directory-table th.directory-number-heading,
.directory-table td.directory-number-cell {
  padding-left: 3px;
  padding-right: 3px;
  text-align: center;
  vertical-align: middle;
}

.directory-table th.directory-number-heading {
  height: 3.8rem;
  padding-top: 6px;
  padding-bottom: 6px;
  vertical-align: bottom;
  transition:
    height 220ms ease,
    width 220ms ease,
    min-width 220ms ease,
    max-width 220ms ease,
    padding 220ms ease;
}

.directory-toxic,
.directory-toxic-heading {
  width: 8.5rem;
  min-width: 8.5rem;
  max-width: 8.5rem;
  text-align: center;
  white-space: nowrap;
  transition:
    width 220ms ease,
    min-width 220ms ease,
    max-width 220ms ease;
}

.directory-table-wrap[data-directory-expanded="true"] .directory-table th.directory-number-heading {
  height: 16rem;
}

.directory-table-wrap[data-directory-expanded="true"] .directory-toxic,
.directory-table-wrap[data-directory-expanded="true"] .directory-toxic-heading {
  width: 4.2rem;
  min-width: 4.2rem;
  max-width: 4.2rem;
}

.directory-table tr:last-child td {
  border-bottom: 0;
}

.directory-table .directory-score,
.directory-table .directory-meta,
.directory-toxic,
.directory-score-component {
  color: var(--muted);
  font-size: 0.95rem;
}

.directory-number-cell {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 760;
}

.directory-toxic {
  vertical-align: middle;
}

.directory-toxic small {
  display: block;
  margin-top: 4px;
  color: var(--muted-2);
  font-weight: 700;
}

.toxic-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1;
}

.toxic-chip-limited {
  border-color: #cbd5e1;
  background: #eef2f7;
  color: #475569;
}

.toxic-chip-material {
  border-color: #f4c16d;
  background: #fff7d6;
  color: #854d0e;
}

.toxic-chip-yes {
  border-color: #fb923c;
  background: #ffedd5;
  color: #9a3412;
}

.toxic-chip-core,
.toxic-chip-severe {
  border-color: #fb7185;
  background: #ffe4e6;
  color: #9f1239;
}

.toxic-chip-severe {
  background: #fecdd3;
}

.directory-rating-cell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.directory-table .directory-rating-cell .gcd-badge-compact {
  grid-template-columns: minmax(66px, 1fr) 38px;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "grade score"
    "label score";
  width: 118px;
  height: 64px;
  padding: 4px 6px 5px;
  gap: 2px 4px;
  cursor: pointer;
}

.directory-table .directory-rating-cell .badge-score-compact {
  display: flex;
  grid-area: score;
  align-self: stretch;
  justify-self: stretch;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-left: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
}

.directory-table .gcd-badge-compact .badge-label {
  font-size: 0.49rem;
}

.directory-sort {
  border: 0;
  padding: 0;
  width: auto;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: normal;
  line-height: 1.15;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.directory-table thead .directory-sort {
  width: 100%;
  min-height: 34px;
}

.directory-number-heading .directory-sort {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 3rem;
  padding: 0;
  overflow: visible;
  transition: min-height 220ms ease;
}

.directory-table-wrap[data-directory-expanded="true"] .directory-number-heading .directory-sort {
  min-height: 15.2rem;
}

.directory-header-label {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  width: max-content;
  max-width: none;
  transform: rotate(-90deg);
  transform-origin: left center;
  text-align: left;
  white-space: nowrap;
  transition:
    left 220ms ease,
    bottom 220ms ease,
    transform 220ms ease;
}

.directory-toxic-heading .directory-header-label {
  left: 50%;
  bottom: 1.55rem;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: center center;
  text-align: center;
}

.directory-table-wrap[data-directory-expanded="true"] .directory-toxic-heading .directory-header-label {
  left: 50%;
  bottom: 1.7rem;
  transform: rotate(-90deg);
  transform-origin: left center;
  text-align: left;
}

.directory-number-heading .directory-sort::after {
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  transform: translateX(-50%);
}

.directory-sort::after {
  content: "↕";
  color: var(--muted);
  font-size: 0.88rem;
}

.directory-sort[aria-sort="asc"]::after {
  content: "↑";
}

.directory-sort[aria-sort="desc"]::after {
  content: "↓";
}

.score-missing {
  color: var(--muted);
}

.checkbox-control {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 6px 8px;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
  user-select: none;
}

.checkbox-control input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--ink);
}

.checkbox-control:has(input:disabled) {
  border-color: #d6dce5;
  background: #edf0f4;
  color: #8a94a3;
  cursor: not-allowed;
}

.checkbox-control:has(input:disabled) input,
input[type="checkbox"]:disabled {
  accent-color: #aab3c1;
  cursor: not-allowed;
}

.checkbox-control:has(input:disabled) span {
  color: #8a94a3;
}

.entity-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  padding: 18px clamp(16px, 3vw, 28px) 20px;
  border-bottom: 1px solid var(--line);
}

.entity-hero.under-review {
  align-items: center;
}

.entity-industry-line {
  margin: 3px 0 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.entity-industry-line a {
  color: var(--brand);
  font-weight: 760;
  text-decoration: none;
}

.entity-industry-line a:hover,
.entity-industry-line a:focus-visible {
  text-decoration: underline;
}

.why-line {
  max-width: 820px;
  color: var(--ink);
}

.score-panel,
.review-box {
  min-width: 220px;
  padding: 12px;
  display: grid;
  gap: 7px;
  justify-items: start;
  background: rgba(255, 255, 255, 0.86);
}

.small-business-seal {
  --seal-blue: #74a8ee;
  --seal-blue-deep: #4d82d0;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  transform: rotate(-9deg);
  clip-path: polygon(
    50% 0%,
    57% 9%,
    66% 4%,
    71% 15%,
    82% 13%,
    85% 24%,
    96% 28%,
    91% 39%,
    100% 50%,
    91% 61%,
    96% 72%,
    85% 76%,
    82% 87%,
    71% 85%,
    66% 96%,
    57% 91%,
    50% 100%,
    43% 91%,
    34% 96%,
    29% 85%,
    18% 87%,
    15% 76%,
    4% 72%,
    9% 61%,
    0% 50%,
    9% 39%,
    4% 28%,
    15% 24%,
    18% 13%,
    29% 15%,
    34% 4%,
    43% 9%
  );
  color: #ffffff;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.58), transparent 26%),
    linear-gradient(145deg, #8db9f4 0%, var(--seal-blue) 48%, var(--seal-blue-deep) 100%);
  box-shadow:
    0 1px 2px rgba(18, 50, 96, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.45),
    inset 0 -1px 2px rgba(26, 65, 125, 0.38);
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1;
  text-transform: lowercase;
}

.entity-mark-stack {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.private-government-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  border: 1px solid #8b111f;
  border-radius: 4px;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.38), transparent 24%),
    linear-gradient(145deg, #c52136 0%, #9f1527 54%, #6e0f1b 100%);
  box-shadow:
    0 1px 2px rgba(86, 13, 24, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.34),
    inset 0 -1px 2px rgba(57, 5, 14, 0.46);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.policy-bad-actor-badge {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  border: 1px solid #1f1114;
  border-radius: 4px;
  color: #fff6f2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 4px, rgba(0, 0, 0, 0.08) 4px 8px),
    linear-gradient(145deg, #a71925 0%, #6f111a 55%, #221114 100%);
  box-shadow:
    0 1px 2px rgba(48, 8, 13, 0.34),
    inset 0 1px 1px rgba(255, 255, 255, 0.24),
    inset 0 -1px 2px rgba(11, 5, 6, 0.52);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.dietary-badge {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 1px solid #5b9f37;
  border-radius: 50%;
  color: #17330f;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(145deg, #b8ee7d 0%, #8fce55 54%, #5e9d35 100%);
  box-shadow:
    0 1px 2px rgba(48, 101, 33, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.48),
    inset 0 -1px 2px rgba(50, 92, 25, 0.34);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
}

.dietary-badge-vegan {
  width: 26px;
  height: 26px;
  transform: rotate(-8deg);
  clip-path: polygon(
    50% 0%,
    57% 9%,
    66% 4%,
    71% 15%,
    82% 13%,
    85% 24%,
    96% 28%,
    91% 39%,
    100% 50%,
    91% 61%,
    96% 72%,
    85% 76%,
    82% 87%,
    71% 85%,
    66% 96%,
    57% 91%,
    50% 100%,
    43% 91%,
    34% 96%,
    29% 85%,
    18% 87%,
    15% 76%,
    4% 72%,
    9% 61%,
    0% 50%,
    9% 39%,
    4% 28%,
    15% 24%,
    18% 13%,
    29% 15%,
    34% 4%,
    43% 9%
  );
  border-color: #0a6f35;
  color: #ffffff;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.5), transparent 26%),
    linear-gradient(145deg, #20c466 0%, #10823d 52%, #075226 100%);
  box-shadow:
    0 1px 2px rgba(13, 85, 40, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.42),
    inset 0 -1px 2px rgba(4, 60, 27, 0.42);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.small-business-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 16px 0 4px;
  padding: 12px 14px;
  border: 1px solid #b9d5fa;
  border-radius: var(--radius);
  background: #eef6ff;
  color: #16345f;
}

.small-business-notice .small-business-seal {
  width: 32px;
  height: 32px;
  font-size: 1.05rem;
}

.small-business-notice strong {
  display: block;
  margin-bottom: 3px;
}

.small-business-notice p {
  max-width: 820px;
  margin-bottom: 4px;
}

.small-business-notice small {
  color: #49698f;
  font-weight: 700;
}

.private-government-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 16px 0 4px;
  padding: 12px 14px;
  border: 1px solid #e4a1aa;
  border-radius: var(--radius);
  background: #fff1f3;
  color: #5b0b18;
}

.private-government-notice .private-government-badge {
  min-width: 42px;
  height: 32px;
  font-size: 0.84rem;
}

.private-government-notice strong {
  display: block;
  margin-bottom: 3px;
}

.private-government-notice p {
  max-width: 880px;
  margin-bottom: 4px;
}

.private-government-notice small {
  color: #7d2431;
  font-weight: 700;
}

.policy-bad-actor-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 16px 0 4px;
  padding: 12px 14px;
  border: 1px solid #d28891;
  border-radius: var(--radius);
  background: #fff4f2;
  color: #4d1016;
}

.policy-bad-actor-notice .policy-bad-actor-badge {
  min-width: 42px;
  height: 32px;
  font-size: 0.84rem;
}

.policy-bad-actor-notice strong {
  display: block;
  margin-bottom: 3px;
}

.policy-bad-actor-notice p {
  max-width: 880px;
  margin-bottom: 4px;
}

.policy-bad-actor-notice small {
  color: #7c202a;
  font-weight: 700;
}

.dietary-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 16px 0 4px;
  padding: 12px 14px;
  border: 1px solid #a9d9b9;
  border-radius: var(--radius);
  background: #effaf3;
  color: #113d24;
}

.dietary-notice .dietary-badge {
  min-width: 42px;
  height: 32px;
  font-size: 0.84rem;
}

.dietary-notice strong {
  display: block;
  margin-bottom: 3px;
}

.dietary-notice p {
  max-width: 880px;
  margin-bottom: 4px;
}

.dietary-notice small {
  color: #2f6846;
  font-weight: 700;
}

.verification-seal {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  min-width: 104px;
  height: 28px;
  border: 1px solid #a77a18;
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.06) 46%, rgba(55, 38, 0, 0.08) 47%, rgba(55, 38, 0, 0.18)),
    linear-gradient(90deg, #f3cd57 0%, #e4ad23 42%, #0e7041 43%, #0a5a35 100%);
  color: #ffffff;
  box-shadow:
    0 1px 1px rgba(23, 26, 32, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.verification-seal-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1rem;
}

.verification-seal-unverified {
  min-width: 118px;
  border-color: #a66b00;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08) 46%, rgba(72, 42, 0, 0.08) 47%, rgba(72, 42, 0, 0.2)),
    linear-gradient(90deg, #f0c44d 0%, #d89316 100%);
  color: #3a2600;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.verification-seal-unverified .verification-seal-check {
  color: #3a2600;
  border-right-color: rgba(58, 38, 0, 0.22);
  background: rgba(255, 255, 255, 0.16);
}

.verification-seal > span:last-child {
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
}

.entity-mark-stack .verification-seal {
  min-width: 76px;
  height: 24px;
  font-size: 0.58rem;
}

.entity-mark-stack .verification-seal-check {
  width: 24px;
  font-size: 0.82rem;
}

.verification-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin: 16px 0 4px;
  padding: 12px 14px;
  border: 1px solid #d5c28a;
  border-radius: var(--radius);
  background: #fffaf0;
  color: #382d0d;
}

.verification-notice-verified {
  border-color: #9fc79f;
  background: #f0faf3;
  color: #0f3e27;
}

.verification-notice strong {
  display: block;
  margin-bottom: 3px;
}

.verification-notice p {
  max-width: 880px;
  margin-bottom: 7px;
}

.verification-notice small {
  color: #59616b;
  font-weight: 700;
}

.verification-page .page-header {
  max-width: 850px;
}

.verification-seal-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.verification-seal-panel p,
.verification-method-panel p,
.verification-process-panel p,
.verification-pricing-panel p {
  max-width: 840px;
  color: var(--muted);
}

.pricing-table th,
.pricing-table td {
  vertical-align: top;
}

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 780;
  white-space: nowrap;
}

.verification-form-panel {
  scroll-margin-top: 24px;
}

.verification-form-panel.is-locked .verification-form {
  display: none;
}

.verification-form-panel.is-locked::after {
  content: "Log in with Nostr above to request verification.";
  display: block;
  color: var(--muted);
  font-weight: 650;
}

.score-panel > strong {
  font-size: 3rem;
  line-height: 1;
}

.score-label,
.score-summary-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.score-summary-grid strong {
  display: block;
  font-size: 1.35rem;
}

.score-summary-grid small {
  color: var(--muted);
}

.confidence-basis-panel {
  display: grid;
  gap: 14px;
}

.confidence-basis-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.confidence-basis-header p {
  max-width: 680px;
  margin: 4px 0 0;
  color: var(--muted);
}

.confidence-basis-score {
  display: grid;
  justify-items: end;
  min-width: 104px;
}

.confidence-basis-score span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidence-basis-score strong {
  font-size: 1.55rem;
}

.confidence-basis-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.confidence-basis-counts span,
.confidence-cap-note {
  width: fit-content;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f6f8fb;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.confidence-cap-note {
  border-radius: var(--radius);
  background: #fff8e1;
  color: #6b5214;
}

.confidence-factor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.confidence-factor {
  display: grid;
  gap: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.confidence-factor-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.confidence-factor-head strong {
  font-size: 0.9rem;
}

.confidence-factor-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.confidence-factor p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

.confidence-meter {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce3ee;
}

.confidence-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #234f9b;
}

.alternatives-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.parent-warning-notice {
  display: grid;
  gap: 4px;
  margin: 14px 0;
  padding: 10px 12px;
  border: 1px solid #d6a2a2;
  border-radius: var(--radius);
  background: #fff4f4;
  color: #421414;
}

.parent-warning-notice strong {
  font-size: 0.98rem;
}

.parent-warning-notice p {
  max-width: 900px;
  color: #5d2b2b;
  font-size: 0.93rem;
}

.parent-warning-notice .parent-owner-link {
  color: inherit;
  font-weight: 850;
}

.alternatives-heading h2 {
  margin: 0;
  font-size: 0.95rem;
  white-space: nowrap;
}

.alternatives-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  grid-auto-rows: 54px;
  flex: 1 1 auto;
  gap: 6px;
  min-width: 0;
  max-height: 54px;
  overflow: hidden;
  padding-bottom: 0;
}

.competitor-comparison-bar {
  margin-top: -6px;
  background: rgba(248, 250, 253, 0.86);
}

.alternative-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: none;
  min-height: 54px;
  padding: 5px 6px 5px 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
}

.alternative-card:hover,
.alternative-card:focus-visible {
  border-color: var(--line-strong);
  background: #ffffff;
}

.alternative-copy {
  display: grid;
  flex: 1 1 auto;
  gap: 3px;
  min-width: 0;
}

.alternative-card .gcd-badge-compact {
  grid-template-columns: minmax(44px, 1fr) 28px;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "grade score"
    "label score";
  width: 82px;
  height: 46px;
  gap: 1px 3px;
  padding: 4px 5px;
}

.alternative-card .badge-score-compact {
  display: flex;
  grid-area: score;
  align-self: stretch;
  justify-self: stretch;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-left: 3px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  line-height: 1;
  text-align: center;
}

.alternative-card .gcd-badge-compact .badge-grade {
  font-size: 1.72rem;
}

.alternative-card .gcd-badge-compact .badge-label {
  font-size: 0.41rem;
}

.alternative-copy strong,
.alternative-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alternative-copy small {
  color: var(--muted);
}

.rationale-text {
  max-width: 820px;
}

.table-panel {
  overflow-x: auto;
}

.table-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-bottom: 16px;
}

.table-summary div {
  display: grid;
  gap: 2px;
}

.table-summary strong {
  font-size: 1.4rem;
  line-height: 1;
}

.table-summary span {
  color: var(--muted);
}

.numeric {
  text-align: right;
}

.score-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.score-table th,
.score-table td {
  padding: 9px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.score-table th {
  width: 180px;
}

.score-row-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rubric-help {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.rubric-help summary {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  list-style: none;
}

.rubric-help summary::-webkit-details-marker {
  display: none;
}

.rubric-help[open] summary,
.rubric-help summary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.rubric-help div {
  position: absolute;
  z-index: 20;
  top: calc(100% + 7px);
  left: 0;
  width: min(320px, 70vw);
  padding: 10px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgb(15 23 42 / 0.16);
  color: var(--text);
  font-weight: 520;
  line-height: 1.4;
}

.industry-rank-table th:first-child {
  width: 260px;
}

.industry-rank-table .gcd-badge-compact {
  min-width: 108px;
}

.industry-steward-band {
  display: grid;
  gap: 12px;
  padding: 12px 0 4px;
  border-bottom: 1px solid var(--line);
}

.industry-steward-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.industry-steward-card h2 {
  margin: 0 0 2px;
  font-size: 1.08rem;
}

.industry-steward-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #e8eef7;
  color: var(--brand);
  font-weight: 850;
}

.industry-steward-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-steward-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.industry-public-notes {
  display: grid;
  gap: 8px;
}

.industry-public-notes h2 {
  margin: 0;
  font-size: 1rem;
}

.industry-note-card {
  display: grid;
  gap: 6px;
  max-width: 860px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.industry-note-card h3,
.industry-note-card p {
  margin: 0;
}

.industry-note-card footer {
  color: var(--muted);
  font-size: 0.86rem;
}

.score-reasoning-table td:last-child {
  width: min(720px, 62vw);
}

.profile-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.5fr);
  gap: 22px;
  align-items: start;
}

.profile-overview h2 {
  margin-bottom: 8px;
}

.profile-overview-copy {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.profile-overview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.profile-overview-metrics article {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.profile-overview-metrics h3 {
  margin-bottom: 9px;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-overview-metrics ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-overview-metrics li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(min-content, auto);
  align-items: start;
  gap: 10px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.25;
}

.profile-overview-metrics li span {
  min-width: 0;
}

.profile-overview-metrics strong {
  min-width: 0;
  max-width: 100%;
  color: var(--ink);
  text-align: right;
  overflow-wrap: anywhere;
}

.evidence-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 3px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.evidence-chip-confidence {
  border-color: #b7c7df;
  background: #eef5ff;
}

.evidence-chip-thoroughness {
  border-color: #bdd7c7;
  background: #effaf3;
}

.profile-overview-value-negative {
  color: #9f1d33;
}

.profile-overview-value-positive {
  color: #0c6b42;
}

.profile-overview-empty {
  color: var(--muted);
  font-style: italic;
}

.score-judgment {
  display: grid;
  gap: 7px;
  max-width: 760px;
  line-height: 1.45;
}

.score-judgment p,
.collapsible-text p {
  margin: 0;
}

.collapsible-text {
  display: grid;
  gap: 6px;
}

.collapsible-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 220ms ease, opacity 180ms ease;
}

.collapsible-text.is-expanded .collapsible-preview {
  display: none;
}

.collapsible-text.is-expanded .collapsible-full {
  max-height: var(--expanded-height, 480px);
  opacity: 1;
}

.text-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--accent-strong);
}

.profile-detail-stack {
  display: grid;
  gap: 10px;
}

.profile-detail-disclosure {
  padding: 0;
  overflow: clip;
}

.profile-detail-disclosure > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 18px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.profile-detail-disclosure > summary::-webkit-details-marker {
  display: none;
}

.profile-detail-disclosure > summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 900;
}

.profile-detail-disclosure[open] > summary::after {
  content: "−";
}

.profile-detail-disclosure > summary span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.profile-detail-disclosure > summary p {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.profile-detail-disclosure-body {
  padding: 0 16px 16px;
}

.profile-detail-disclosure-body > .panel,
.profile-detail-disclosure-body > .confidence-basis-panel,
.profile-detail-disclosure-body > .evidence-state-panel {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.score-status-row {
  min-height: 1.35rem;
}

.evidence-status {
  display: inline-flex;
  width: fit-content;
  padding: 3px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
}

.evidence-status-weak {
  border-color: #d6a84d;
  background: #fff7e2;
  color: #6f4b00;
}

.score-evidence-note {
  padding: 7px 9px;
  border-left: 3px solid #d6a84d;
  background: #fffaf0;
  color: #5b4a2b;
}

.score-evidence-note ul {
  margin: 4px 0 0;
  padding-left: 1.1rem;
}

.score-comparison,
.score-counterevidence {
  color: var(--muted);
}

.score-evidence-details {
  width: fit-content;
  max-width: 100%;
}

.score-evidence-details summary {
  color: var(--ink);
  font-weight: 720;
  cursor: pointer;
}

.score-evidence-details[open] {
  width: 100%;
}

.score-evidence-details > p {
  margin: 6px 0;
  color: var(--muted);
}

.score-no-finding {
  color: var(--muted);
  font-style: italic;
}

.score-claim-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 1.15rem;
}

.score-claim-reference {
  color: var(--text);
  line-height: 1.35;
}

.score-claim-reference.is-context {
  color: #5f6b7a;
}

.claim-support-kind {
  display: inline-block;
  margin-right: 4px;
  padding: 1px 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-size: 0.72em;
  font-style: normal;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.score-claim-reference.is-duplicate {
  color: #9aa3af;
  font-size: 0.88em;
}

.score-claim-reference.is-duplicate .claim-footnote {
  border-color: var(--line);
  color: #7f8a98;
  opacity: 0.72;
}

.claim-footnote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.45em;
  min-height: 1.45em;
  margin-left: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  vertical-align: super;
}

.claim-footnote:hover,
.claim-footnote:focus-visible {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.formula {
  display: inline-block;
  max-width: 100%;
  margin: 3px 0 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.procedure-list {
  max-width: 860px;
  display: grid;
  gap: 5px;
  margin-bottom: 0;
}

.claim-list,
.audit-list {
  display: grid;
  gap: 8px;
}

.audit-list.table-panel {
  overflow: visible;
}

.audit-log-viewer {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.audit-timeline-widget {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.audit-timeline-labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.audit-timeline-labels output {
  max-width: min(46vw, 34rem);
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audit-timeline-labels span:last-child {
  text-align: right;
}

.audit-timeline-track {
  position: relative;
  height: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(35, 77, 150, 0.08), rgba(35, 134, 82, 0.12)),
    var(--paper);
  cursor: pointer;
  touch-action: none;
}

.audit-timeline-track:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.audit-timeline-selection {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 100%;
  width: 1.2%;
  border-radius: 999px;
  background: rgba(35, 77, 150, 0.26);
}

.audit-timeline-thumb {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 16px;
  height: 16px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.audit-log-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.audit-log-controls [data-audit-page-status] {
  min-width: min(100%, 16rem);
  color: var(--muted);
  font-weight: 700;
}

.audit-table-frame {
  max-height: min(60vh, 36rem);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  scrollbar-gutter: stable;
}

.audit-table {
  min-width: 940px;
}

.audit-table thead th {
  background: #f4f6f9;
}

.audit-table td:last-child {
  min-width: 360px;
  max-width: 720px;
}

.claim-card,
.audit-entry {
  padding: 11px 12px;
}

.claim-card {
  scroll-margin-top: 90px;
}

.claim-card summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  cursor: pointer;
  font-weight: 680;
  line-height: 1.38;
  list-style: none;
}

.claim-card summary::-webkit-details-marker {
  display: none;
}

.claim-card summary::after {
  content: "+";
  justify-self: end;
  grid-column: 3;
  grid-row: 1;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.claim-card[open] summary::after {
  content: "-";
}

.claim-card-body {
  padding-top: 8px;
}

.claim-card[open] .claim-card-body {
  animation: claim-expand 180ms ease-out;
}

.claim-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 850;
}

.claim-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.claim-meta span,
.claim-meta time {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8f4ea;
}

.claim-meta .ai-origin {
  color: var(--ai);
  background: var(--ai-bg);
}

.source-list {
  margin: 6px 0 0;
}

.source-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.source-assessment {
  display: inline-flex;
  width: fit-content;
  padding: 1px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f6f8fb;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
}

.maintenance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 2px;
}

.audit-entry {
  display: grid;
  grid-template-columns: 190px 130px 150px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.audit-entry time,
.audit-entry span {
  color: var(--muted);
  font-size: 0.88rem;
}

.submission-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 12px 18px;
  max-width: 920px;
}

.review-workbench {
  display: grid;
  grid-template-columns: minmax(170px, 210px) minmax(280px, 0.82fr) minmax(340px, 1fr);
  gap: 0;
  align-items: stretch;
  margin: 16px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.review-console-layout {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin: 16px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.review-type-sidebar,
.review-list-panel,
.review-queue-panel,
.review-detail-panel {
  min-width: 0;
}

.review-type-sidebar {
  padding: 10px;
  border-right: 1px solid var(--line);
  background: #f1f4f8;
}

.review-list-panel {
  padding: 12px;
  border-right: 1px solid var(--line);
  background: #f7f8fa;
}

.review-queue-panel {
  padding: 14px;
  border-right: 1px solid var(--line);
  background: #f5f7fa;
}

.review-detail-panel {
  padding: 14px;
  background: rgba(255, 255, 255, 0.54);
  overflow: auto;
}

.review-panel-header,
.review-submission-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.review-panel-header h2,
.review-submission-head h2 {
  margin-bottom: 2px;
}

.review-type-nav {
  display: grid;
  gap: 4px;
  margin-top: 10px;
}

.review-type-button {
  width: 100%;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  text-align: left;
  font-weight: 500;
}

.review-type-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-type-button[aria-current="true"] {
  border-color: var(--line-strong);
  background: #ffffff;
}

.review-type-button:hover,
.review-type-button:focus-visible {
  border-color: #9fb0c7;
  background: #ffffff;
}

.review-type-count,
.review-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 20px;
  padding: 1px 7px;
  border-radius: 999px;
  border: 1px solid #b9c8dd;
  background: linear-gradient(180deg, #ffffff 0%, #e9eff7 100%);
  color: #1f4b86;
  font-size: 0.74rem;
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.review-type-count-muted {
  border-color: #d2d9e3;
  background: #eef2f7;
  color: var(--muted);
}

.review-list-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-list-head h2 {
  margin-bottom: 0;
}

.review-table-wrap {
  overflow: auto;
  max-height: min(72vh, 760px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.review-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.88rem;
  table-layout: fixed;
}

.review-table th:nth-child(1),
.review-table td:nth-child(1) {
  width: 42%;
}

.review-table th:nth-child(2),
.review-table td:nth-child(2) {
  width: 20%;
}

.review-table th:nth-child(3),
.review-table td:nth-child(3) {
  width: 18%;
}

.review-table th:nth-child(4),
.review-table td:nth-child(4) {
  width: 20%;
}

.review-table th,
.review-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  text-align: left;
}

.review-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f3f5f8;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-table-row {
  cursor: pointer;
}

.review-table-row[aria-selected="true"] {
  background: #e8eef8;
}

.review-table-row:hover,
.review-table-row:focus-visible {
  background: #f0f5ff;
  outline: none;
}

.review-table td strong,
.review-table td small {
  display: block;
}

.review-table td small {
  margin-top: 2px;
  color: var(--muted);
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.review-table-empty {
  color: var(--muted);
  text-align: center;
}

.review-queue-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  max-height: min(70vh, 720px);
  overflow: auto;
  padding-right: 3px;
}

.review-queue-item {
  width: 100%;
  min-height: auto;
  justify-content: start;
  display: grid;
  gap: 6px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-align: left;
  box-shadow: none;
}

.review-queue-item[aria-selected="true"] {
  border-color: var(--brand);
  border-left-color: var(--brand);
  background: #e7edf7;
}

.review-queue-item:hover,
.review-queue-item:focus-visible {
  border-color: #9fb0c7;
  border-left-color: var(--brand);
  background: #eef4ff;
}

.review-item-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 9px;
}

.review-item-top strong {
  min-width: 0;
  font-size: 0.98rem;
  line-height: 1.18;
}

.review-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.review-item-preview {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.32;
}

.review-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 2px 7px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.1;
}

.review-type-ai-research-request .review-pill {
  color: #5c6070;
  background: #eeeeec;
}

.review-type-challenge .review-pill {
  color: #9f1239;
  background: #fff5f7;
}

.review-facts dt {
  color: var(--muted);
}

.review-detail,
.empty-state {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.review-submission-head,
.review-facts,
.review-evidence-panel,
.review-source-panel,
.review-decision-panel,
.empty-state {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.review-detail {
  display: grid;
  gap: 12px;
}

.review-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.review-facts div {
  display: grid;
  gap: 2px;
}

.review-facts dd {
  margin: 0;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.review-claim-text {
  max-width: none;
  margin: 0;
  padding: 10px 12px;
  border-left: 4px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.review-json-preview {
  max-height: 420px;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8fa;
  font-size: 0.82rem;
}

.review-evidence-panel h3,
.review-source-panel h3,
.review-decision-panel h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.review-source-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.review-source-panel > div {
  min-width: min(100%, 18rem);
  flex: 1 1 22rem;
}

.review-source-panel p {
  margin: 0;
  overflow-wrap: anywhere;
}

.review-decision-panel {
  border-color: var(--line-strong);
}

.review-decision-panel .review-action-form {
  margin-top: 12px;
}

.review-action-form,
.review-export-grid,
.review-import-panel,
.review-component-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px 18px;
}

.review-staged-counts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, max-content));
  gap: 8px 14px;
  margin: 0;
}

.review-staged-counts div {
  display: grid;
  gap: 2px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.review-staged-counts dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.review-staged-counts dd {
  margin: 0;
  font-weight: 750;
}

.review-export-grid textarea {
  min-height: 170px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
}

.claim-reference {
  max-width: 980px;
  margin-top: 14px;
}

.claim-reference summary {
  cursor: pointer;
  font-weight: 700;
}

.claim-reference-row {
  width: 100%;
  min-height: auto;
  justify-content: start;
  display: grid;
  gap: 2px;
  margin-top: 7px;
  padding: 8px 10px;
  border-radius: var(--radius);
  text-align: left;
}

.claim-reference-row span,
.claim-reference-row small {
  color: var(--muted);
}

.form-row {
  display: grid;
  align-content: start;
  gap: 5px;
}

.form-row.wide,
.form-actions {
  grid-column: 1 / -1;
}

.form-row.wide textarea {
  width: 100%;
}

.form-status {
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status.is-error {
  color: var(--malignant);
}

.annual-needs-grid {
  display: grid;
  gap: 14px;
}

.need-card {
  display: grid;
  grid-template-columns: minmax(13rem, 0.72fr) minmax(0, 1.45fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.need-card:last-child {
  border-bottom: 1px solid var(--line);
}

.need-card-head h2 {
  margin-bottom: 5px;
}

.need-card-head p,
.need-gap {
  color: var(--muted);
}

.need-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.need-card-meta a,
.need-option-more summary {
  color: var(--blue-strong);
}

.need-rule {
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.35;
}

.need-option-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.need-option a {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  color: var(--ink);
  text-decoration: none;
}

.need-option a:hover strong,
.need-option a:focus-visible strong {
  text-decoration: underline;
}

.need-option-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.need-option-copy small {
  color: var(--muted);
}

.need-option-more {
  grid-column: 2;
  align-self: start;
}

.need-option-more summary {
  width: fit-content;
  cursor: pointer;
  font-weight: 800;
  list-style-position: outside;
}

.need-option-more summary:hover,
.need-option-more summary:focus-visible {
  text-decoration: underline;
}

.need-option-list-expanded {
  margin-top: 8px;
}

.map-page {
  width: min(1280px, calc(100% - 32px));
  padding-top: 14px;
}

.map-app {
  display: grid;
  gap: 12px;
}

.map-topbar {
  position: relative;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.map-search-form {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.map-search-form label {
  align-self: center;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.map-search-shell {
  width: min(27rem, calc(100vw - 168px));
}

.map-settings-shell {
  position: relative;
  display: inline-grid;
}

.map-settings-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand);
}

.map-settings-toggle:hover,
.map-settings-toggle:focus-visible,
.map-settings-toggle[aria-expanded="true"] {
  border-color: var(--brand);
  background: #e5edf7;
  outline: none;
}

.map-settings-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.map-settings-icon::before,
.map-settings-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.map-settings-icon::before {
  inset: 2px;
  border: 2px solid currentColor;
}

.map-settings-icon::after {
  top: 7px;
  left: 7px;
  width: 4px;
  height: 4px;
  background: currentColor;
  box-shadow:
    0 -8px 0 -1px currentColor,
    0 8px 0 -1px currentColor,
    8px 0 0 -1px currentColor,
    -8px 0 0 -1px currentColor;
}

.map-settings-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 900;
  display: grid;
  gap: 5px;
  width: max-content;
  max-width: min(20rem, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(23, 26, 32, 0.16);
}

.map-settings-popover[hidden] {
  display: none;
}

.map-settings-popover .checkbox-control {
  min-height: 32px;
  padding: 4px 7px;
  color: var(--ink);
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 23rem) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-height: min(720px, calc(100vh - 160px));
}

.map-results-panel {
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.map-results-heading {
  display: grid;
  gap: 4px;
}

.map-results-heading h1 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
}

.map-results-heading p,
.map-selected p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-selected {
  display: grid;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map-selected h2 {
  margin: 0;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.map-selected-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.map-selected-actions .button,
.map-directions-form .button {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 0.9rem;
}

.map-directions-form {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 7px 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.map-directions-form label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.map-directions-form input {
  width: min(100%, 18rem);
  min-height: 34px;
  padding: 6px 8px;
}

.map-directions-form button {
  grid-column: 2;
}

.map-result-list {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 0;
  overflow: auto;
}

.map-result-list h2 {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.map-result-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 7px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-align: left;
}

.map-result-item:hover,
.map-result-item:focus-visible {
  border-color: var(--line-strong);
  background: #eef4fb;
  outline: none;
}

.map-result-main {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.map-result-main strong,
.map-result-main small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-result-main small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
}

.map-result-main .map-result-tags {
  color: #4c5d61;
  font-size: 0.72rem;
  font-weight: 620;
}

.map-result-badge {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 30px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  color: #ffffff;
  box-shadow: 0 2px 7px rgba(23, 26, 32, 0.18);
  font-size: 1rem;
  font-weight: 880;
  line-height: 1;
}

.map-result-badge::before,
.gcd-map-score-badge::before,
.map-legend-score::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 34%),
    linear-gradient(180deg, var(--badge-light), var(--badge) 48%, var(--badge-deep));
}

.map-result-badge-stack {
  display: inline-grid;
  justify-items: center;
  gap: 2px;
  width: 38px;
}

.map-result-mini-row,
.gcd-map-mini-row {
  display: flex;
  justify-content: center;
  gap: 2px;
  min-height: 14px;
}

.map-result-mini-badge,
.gcd-map-mini-badge,
.map-legend-mini {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(23, 26, 32, 0.2);
  font-size: 0.42rem;
  font-style: normal;
  font-weight: 920;
  line-height: 1;
  letter-spacing: 0;
}

.map-result-mini-badge-vegan,
.gcd-map-mini-badge-vegan,
.map-legend-vegan {
  background: #08743f;
}

.map-result-mini-badge-vegetarian,
.gcd-map-mini-badge-vegetarian,
.map-legend-vegetarian {
  background: #0b7d75;
}

.map-result-mini-badge-small,
.gcd-map-mini-badge-small,
.map-legend-small {
  background: #394150;
}

.map-result-mini-badge-policy,
.gcd-map-mini-badge-policy {
  background: #8b1c32;
}

.map-result-mini-badge-private-government,
.gcd-map-mini-badge-private-government {
  background: #5f3a8d;
}

.map-result-badge-feature {
  background: #255f85;
  font-size: 0.62rem;
}

.map-result-badge-feature::before {
  display: none;
}

.map-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.map-canvas-shell {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #dce7ea;
}

.map-canvas {
  width: 100%;
  height: min(720px, calc(100vh - 160px));
  min-height: 520px;
}

.map-canvas .leaflet-container,
.leaflet-container {
  font: inherit;
}

.gcd-map-marker {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.gcd-map-marker-stack {
  display: inline-grid;
  justify-items: center;
  gap: 2px;
}

.gcd-map-score-badge {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 36px;
  height: 32px;
  border: 3px solid #ffffff;
  border-radius: 6px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(23, 26, 32, 0.26);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.gcd-map-marker.is-regional .gcd-map-score-badge {
  border-style: dashed;
  opacity: 0.78;
}

.map-popup {
  display: grid;
  gap: 4px;
  min-width: 13rem;
}

.map-popup strong {
  font-size: 0.96rem;
}

.map-popup span {
  color: var(--muted);
}

.map-popup-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.map-popup-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #eaf0f6;
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 760;
}

.map-legend,
.map-service-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.map-legend {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 500;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  border: 1px solid rgba(179, 189, 202, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 22px rgba(23, 26, 32, 0.14);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.map-legend-score {
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 20px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.map-legend-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px #ffffff;
}

.map-service-links {
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .map-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .map-results-panel {
    grid-template-rows: auto auto auto auto auto auto;
    overflow: visible;
  }

  .map-result-list {
    max-height: 240px;
  }
}

@media (max-width: 560px) {
  .map-page {
    width: min(100% - 22px, 1280px);
  }

  .map-topbar {
    align-items: stretch;
  }

  .map-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    width: 100%;
  }

  .map-search-form label {
    grid-column: 1 / -1;
  }

  .map-search-shell {
    width: 100%;
  }

  .map-settings-shell {
    justify-self: end;
  }

  .map-directions-form {
    grid-template-columns: 1fr;
  }

  .map-directions-form button {
    grid-column: auto;
  }

  .map-directions-form input {
    width: 100%;
  }

  .map-canvas,
  .map-canvas-shell {
    min-height: 470px;
  }

  .map-legend {
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 8px;
  }
}

@media (max-width: 720px) {
  .need-card {
    grid-template-columns: 1fr;
  }

  .need-option-more {
    grid-column: auto;
  }
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(11rem, max-content) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.account-section-list {
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.account-section-list a,
.account-section-list span {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
}

.account-section-list span,
.account-section-list [aria-selected="true"] {
  background: #e7edf7;
  font-weight: 760;
}

.account-section-list a:hover,
.account-section-list a:focus-visible {
  background: #eef2f7;
}

.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.account-tabs a,
.account-tabs span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 10px;
  color: var(--ink);
  text-decoration: none;
}

.account-tabs span {
  border-bottom: 2px solid var(--brand);
  font-weight: 760;
}

.account-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.account-profile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.account-profile-head > div:last-child {
  display: grid;
  gap: 2px;
}

.account-profile-head strong {
  font-size: 1.05rem;
}

.account-profile-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.account-profile-image {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #e8eef7;
  color: var(--brand);
  font-weight: 850;
}

.account-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-facts div {
  display: grid;
  grid-template-columns: minmax(7rem, max-content) minmax(0, 1fr);
  gap: 12px;
}

.account-facts dt {
  color: var(--muted);
  font-weight: 720;
}

.account-facts dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.account-profile-form {
  display: grid;
  gap: 10px;
  max-width: 32rem;
  margin: 0 0 14px;
}

.account-profile-form.is-locked {
  display: none;
}

.account-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.account-link-card {
  color: var(--ink);
  text-decoration: none;
}

.account-link-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.account-page.is-locked .review-console-layout,
.account-page.is-locked .review-workbench,
.account-page.is-locked .panel:not(.account-login-required) {
  display: none;
}

.account-page.is-locked .stewardship-console {
  display: none;
}

.stewardship-console {
  display: grid;
  gap: 12px;
}

.stewardship-console-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.stewardship-console-head h2 {
  margin-bottom: 2px;
}

.stewardship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.stewardship-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.stewardship-panel h3,
.stewardship-panel h4 {
  margin: 0;
}

.stewardship-action-panel {
  grid-column: 1 / -1;
  padding-block: 10px;
}

.stewardship-industry-picker label {
  display: inline-grid;
  gap: 5px;
  color: var(--muted);
  font-weight: 700;
}

.stewardship-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.stewardship-promotion-panel,
.stewardship-recent-panel {
  grid-column: 1 / -1;
}

.stewardship-active-list,
.stewardship-recent-columns {
  display: grid;
  gap: 8px;
}

.stewardship-recent-columns {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stewardship-active-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.stewardship-active-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.stewardship-active-row strong,
.stewardship-active-row span {
  display: block;
}

.stewardship-active-row span,
.stewardship-recent-columns span {
  color: var(--muted);
  font-size: 0.86rem;
}

.stewardship-recent-columns article {
  display: grid;
  gap: 4px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.stewardship-recent-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.note-panel {
  padding-top: 16px;
}

.compact-list {
  display: grid;
  gap: 4px;
}

@media (max-width: 860px) {
  .site-nav,
  .site-footer,
  .hero-panel,
  .entity-hero,
  .callout-row {
    align-items: stretch;
  }

  .site-nav,
  .site-footer,
  .hero-panel,
  .entity-hero,
  .callout-row {
    flex-direction: column;
  }

  .nav-links,
  .nav-account {
    margin-left: 0;
    justify-content: flex-start;
  }

  .hero-panel,
  .entity-hero {
    grid-template-columns: 1fr;
  }

  .hero-scoreboard {
    grid-template-columns: repeat(6, 43px);
    grid-template-rows: none;
    justify-content: center;
    justify-self: center;
    width: calc(84px * 3 + 13px * 2);
    max-width: 100%;
  }

  .hero-scoreboard .gcd-badge-compact {
    grid-column: span 2;
    grid-row: auto;
  }

  .hero-scoreboard .gcd-badge-compact:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .hero-scoreboard .gcd-badge-compact:nth-child(1),
  .hero-scoreboard .gcd-badge-compact:nth-child(2),
  .hero-scoreboard .gcd-badge-compact:nth-child(3),
  .hero-scoreboard .gcd-badge-compact:nth-child(5) {
    grid-column: span 2;
  }

  .featured-grid,
  .usp-grid,
  .principle-list,
  .rubric-snapshot,
  .rubric-rule-grid,
  .method-list,
  .method-grid,
  .mission-grid,
  .mission-protocol-grid,
  .commons-grid,
  .definition-grid,
  .maintenance-grid,
  .alternatives-bar,
  .score-summary-grid,
  .confidence-factor-grid,
  .profile-overview,
  .profile-overview-metrics {
    grid-template-columns: 1fr;
  }

  .rubric-block {
    padding: 20px 0;
  }

  .rubric-grade-row,
  .rubric-item {
    grid-template-columns: 1fr;
  }

  .rubric-grade-row > strong {
    min-height: 4rem;
  }

  .rubric-grade-row div {
    padding: 12px 14px 14px;
  }

  .rubric-scale-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .profile-overview-metrics li {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .confidence-basis-header {
    display: grid;
  }

  .confidence-basis-score {
    justify-items: start;
  }

  .method-list article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .directory-score {
    min-width: 0;
    justify-items: start;
  }

  .submission-form {
    grid-template-columns: 1fr;
  }

  .review-console-layout,
  .review-workbench,
  .review-action-form,
  .review-component-form,
  .review-import-panel,
  .review-export-grid,
  .review-facts,
  .review-staged-counts,
  .help-route-grid,
  .contribution-context-grid,
  .context-submit-form {
    grid-template-columns: 1fr;
  }

  .account-layout {
    grid-template-columns: 1fr;
  }

  .audit-entry {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 720px) and (max-width: 860px) {
  .hero-panel {
    grid-template-columns: minmax(0, 1fr) minmax(84px, auto);
    gap: clamp(24px, 7vw, 92px);
    align-items: start;
  }

  .hero-scoreboard {
    grid-template-columns: repeat(2, 84px);
    grid-template-rows: repeat(3, auto);
    justify-content: end;
    justify-self: end;
    width: auto;
    max-width: none;
  }

  .hero-scoreboard .gcd-badge-compact:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-scoreboard .gcd-badge-compact:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-scoreboard .gcd-badge-compact:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .hero-scoreboard .gcd-badge-compact:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }

  .hero-scoreboard .gcd-badge-compact:nth-child(5) {
    grid-column: 2;
    grid-row: 3;
  }
}

@media (max-width: 560px) {
  body > main,
  .page-shell,
  .site-nav,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  .directory-table-wrap {
    width: max-content;
    max-width: 100%;
  }

  .directory-browse-layout:not([data-browse-active="true"]) .directory-table-wrap {
    transform: none;
  }

  .directory-table-region {
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
    margin-left: calc(50% - 50vw + 11px);
  }

  .directory-browse-layout[data-browse-active="true"] .directory-table-region {
    width: auto;
    max-width: none;
    margin-left: 0;
  }

  h1 {
    font-size: 1.62rem;
  }

  .site-brand-wordmark {
    white-space: normal;
  }

  .hero-scoreboard {
    justify-content: center;
  }

  .entity-card-main {
    display: grid;
  }

  .directory-suggest-head {
    justify-content: flex-start;
  }

  #suggest-listing .form-row {
    grid-template-columns: 1fr;
  }

  #suggest-listing .form-row label {
    text-align: left;
  }

  #suggest-listing .form-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
