:root {
  --bg: #f7f8fa;
  --panel: #fff;
  --text: #111827;
  --muted: #64748b;
  --line: #d9e0e8;
  --accent: #0f766e;
  --blue: #1d4ed8;
  --orange: #b45309;
  --purple: #7c3aed;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 252, 0.96);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  min-height: 64px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto minmax(220px, 1fr);
  gap: 20px;
  align-items: center;
}

.site-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.brand {
  display: flex;
  flex: none;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 4px;
  background: #171916;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.brand strong { font-size: 14px; }

.site-company-context {
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  padding-left: 14px;
  color: #687168;
  font-size: 12px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-self: stretch;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.nav a {
  display: grid;
  align-items: center;
  border-bottom: 2px solid transparent;
  padding: 0 15px;
}

.nav a:hover { color: var(--text); }

.nav a.active {
  border-bottom-color: #16a777;
  color: #171916;
}

.site-career-link {
  justify-self: end;
  border-radius: 4px;
  background: #171916;
  color: #fff;
  padding: 11px 15px;
  font-size: 11px;
  font-weight: 820;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: stretch;
  margin-bottom: 26px;
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  margin: 10px 0 16px;
}

h2 {
  font-size: 27px;
  margin: 36px 0 14px;
}

h3 {
  font-size: 19px;
  margin: 20px 0 8px;
}

p,
li {
  color: #334155;
  line-height: 1.65;
}

code {
  background: #eef2f7;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
}

.lede {
  font-size: 18px;
  max-width: 760px;
}

.panel,
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel {
  padding: 22px;
}

.card {
  padding: 18px;
}

.demo-banner {
  border: 1px solid #f1c27d;
  border-radius: var(--radius);
  background: #fff7ed;
  color: #7c2d12;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-intro { align-self: center; padding: 18px 0; }

.home-company-list {
  display: grid;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.home-company-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
  color: #1c241e;
}

.home-company-list a:last-child { border-bottom: 0; }
.home-company-list a > span { display: grid; gap: 3px; }
.home-company-list strong { font-size: 14px; }
.home-company-list small { color: var(--muted); font-size: 11px; }
.home-company-list b { color: var(--accent); font-size: 11px; text-align: right; white-space: nowrap; }
.home-company-list b i { font-size: 16px; font-style: normal; }
.home-company-list a:hover strong { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }

.home-overview {
  padding: 36px 0 16px;
}

.home-overview-hero {
  max-width: 920px;
  padding: 26px 0 44px;
}

.home-overview-hero h1 {
  max-width: 850px;
}

.home-route-list,
.flow-launcher-list {
  border-top: 1px solid var(--line);
}

.home-route-list > a {
  display: grid;
  grid-template-columns: 48px 190px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
  padding: 18px 12px;
}

.home-route-list > a:hover,
.flow-launcher-list > a:hover {
  background: #fff;
}

.home-route-list > a > span,
.flow-launcher-index {
  color: #94a09a;
  font-size: 11px;
  font-weight: 850;
}

.home-route-list div {
  display: grid;
  gap: 5px;
}

.home-route-list strong {
  color: #171916;
  font-size: 20px;
}

.home-route-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.home-route-list b,
.flow-launcher-action {
  color: #168e69;
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

.home-sample-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 24px 12px 0;
  color: #687168;
  font-size: 11px;
}

.home-sample-line > span {
  color: #168e69;
  font-weight: 850;
  text-transform: uppercase;
}

.home-sample-line b { color: #39423b; }
.home-sample-line em { color: #7c857d; font-style: normal; font-weight: 650; }

.flow-launcher-hero {
  max-width: 860px;
  padding: 44px 0 38px;
}

.flow-launcher-list > a {
  display: grid;
  grid-template-columns: 38px minmax(170px, 1.3fr) repeat(3, minmax(110px, 0.75fr)) auto;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
  padding: 18px 12px;
}

.flow-launcher-company,
.flow-launcher-stat {
  display: grid;
  gap: 4px;
}

.flow-launcher-company strong {
  color: #171916;
  font-size: 18px;
}

.flow-launcher-company small,
.flow-launcher-stat small {
  color: var(--muted);
  font-size: 11px;
}

.flow-launcher-stat b {
  color: #171916;
  font-size: 18px;
}

/* Shared editorial workspace shell for Companies, Briefs, Compare, and support pages. */
.briefs-active,
.compare-active,
.methodology-active {
  background: #f5f4ef;
}

.briefs-active .page,
.methodology-active .page {
  max-width: 1360px;
  padding-top: 0;
}

.workspace-page {
  color: #171a17;
}

.workspace-page .eyebrow {
  color: #128765;
  letter-spacing: 0;
}

.workspace-hero {
  padding: 52px 0 30px;
  border-bottom: 1px solid #cfd5ce;
}

.workspace-hero-copy {
  max-width: 900px;
}

.workspace-hero h1 {
  max-width: 850px;
  margin: 10px 0 15px;
  font-size: clamp(46px, 7vw, 82px);
  letter-spacing: 0;
}

.workspace-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: #526057;
  font-size: 18px;
  line-height: 1.6;
}

.workspace-meta-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  align-items: center;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 2px solid #171a17;
  color: #5d695f;
  font-size: 12px;
  font-weight: 760;
}

.workspace-meta-rail span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #16a777;
  vertical-align: 1px;
}

.workspace-meta-rail b {
  color: #263129;
  font-variant-numeric: tabular-nums;
}

.workspace-meta-rail a {
  margin-left: auto;
  color: #167d62;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.workspace-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, .7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 24px;
}

.workspace-section-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.workspace-section-heading > p {
  margin: 0;
  color: #647068;
  font-size: 14px;
}

.brief-library-hero {
  max-width: none;
}

.brief-directory {
  padding: 44px 0 54px;
}

.brief-library-list {
  border-top: 1px solid var(--line);
}

.brief-library-item {
  display: grid;
  grid-template-columns: 42px 180px minmax(0, 1fr) 170px 24px;
  gap: 20px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid var(--line);
  padding: 22px 12px;
  transition: background 160ms ease;
}

.brief-library-item:hover {
  background: #fff;
  box-shadow: inset 3px 0 #16a777;
}

.brief-library-index {
  color: #94a09a;
  font-size: 11px;
  font-weight: 850;
}

.brief-library-company,
.brief-library-copy,
.brief-library-evidence {
  display: grid;
  gap: 6px;
}

.brief-library-company strong {
  color: #168e69;
  font-size: 13px;
  text-transform: uppercase;
}

.brief-library-company small,
.brief-library-copy small,
.brief-library-evidence small,
.brief-library-evidence em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}

.brief-library-copy b {
  color: #171916;
  font-size: 21px;
  line-height: 1.2;
}

.brief-library-copy small {
  max-width: 620px;
  font-size: 13px;
}

.brief-library-evidence b {
  color: #171916;
  font-size: 22px;
}

.brief-library-arrow {
  color: #168e69;
  font-size: 22px;
}

/* Aggregate-only editorial briefs generated from the public data layer. */
.brief-page {
  --brief-accent: #0f8b6d;
  --brief-accent-soft: #e7f5ef;
  max-width: 1060px;
  margin: 0 auto;
  padding-bottom: 36px;
}

.brief-active .footer { display: none; }

.brief-openai { --brief-accent: #d95f48; --brief-accent-soft: #fff0ec; }
.brief-cursor { --brief-accent: #187a61; --brief-accent-soft: #e8f8f1; }
.brief-anthropic { --brief-accent: #376fd6; --brief-accent-soft: #edf3ff; }
.brief-xai { --brief-accent: #9a5bc9; --brief-accent-soft: #f6effc; }
.brief-google-deepmind { --brief-accent: #b78400; --brief-accent-soft: #fff7df; }

.brief-hero {
  display: block;
  padding: 50px 0 30px;
  border-bottom: 1px solid var(--line);
}

.brief-hero .eyebrow,
.brief-section > .eyebrow,
.brief-chart .eyebrow,
.brief-toc .eyebrow {
  color: var(--brief-accent);
}

.brief-style {
  display: inline-block;
  margin: 11px 0 0;
  color: var(--brief-accent);
  font-size: 13px;
  font-weight: 800;
}

.brief-hero h1 {
  max-width: 710px;
  margin: 10px 0 17px;
  letter-spacing: 0;
}

.brief-hero > div { max-width: 760px; }

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
}

.brief-actions .pill {
  background: #171a17;
  color: #fff;
  border-color: #171a17;
}

.text-link {
  color: #3d4b43;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--brief-accent);
  text-underline-offset: 4px;
}

.brief-snapshot {
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.brief-snapshot-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 10px;
}

.brief-snapshot-heading .eyebrow { color: var(--brief-accent); }
.brief-snapshot-heading small { color: var(--muted); font-size: 12px; }

.brief-snapshot-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--brief-accent);
}

.brief-snapshot-stats div {
  display: grid;
  gap: 5px;
  min-height: 112px;
  align-content: center;
  padding: 16px 22px 18px;
  border-right: 1px solid var(--line);
}

.brief-snapshot-stats div:first-child { padding-left: 0; }
.brief-snapshot-stats div:last-child { border-right: 0; }
.brief-snapshot-stats span { color: #516057; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.brief-snapshot-stats strong { color: #18201b; font-size: 27px; line-height: 1; }
.brief-snapshot-stats small { color: #5b685f; font-size: 12px; line-height: 1.35; }
.brief-snapshot-stats a { width: fit-content; margin-top: 3px; color: var(--brief-accent); font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.brief-disclosure {
  margin: 24px 0 38px;
  padding: 14px 17px;
  border-left: 3px solid var(--brief-accent);
  background: #f0f4ef;
  color: #435047;
  font-size: 14px;
  line-height: 1.55;
}

.brief-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 54px;
}

.brief-toc {
  position: sticky;
  top: 94px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding-top: 8px;
}

.brief-toc a,
.brief-toc button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 6px;
  width: 100%;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: #5c695f;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  text-align: left;
}

.brief-toc a:hover,
.brief-toc button:hover { color: #131914; }
.brief-toc b { color: var(--brief-accent); font-size: 10px; }

.brief-section {
  padding: 0 0 44px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.brief-section h2 {
  max-width: 690px;
  margin: 8px 0 15px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
  line-height: 1.05;
}

.brief-section > p {
  max-width: 720px;
  margin: 0 0 15px;
  color: #354038;
  font-size: 17px;
}

.brief-chart {
  margin-top: 27px;
  padding: 19px 20px 15px;
  border-top: 3px solid var(--brief-accent);
  box-shadow: none;
}

.brief-chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 15px;
}

.brief-chart-heading h3 { margin: 5px 0 0; }
.brief-chart-heading > span { color: var(--muted); font-size: 12px; text-align: right; }
.brief-chart-heading > div:last-child { display: grid; gap: 4px; justify-items: end; color: var(--muted); font-size: 12px; text-align: right; }
.brief-chart-heading > div:last-child a { color: var(--brief-accent); font-size: 11px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.brief-chart .bar-row { grid-template-columns: minmax(130px, 1fr) minmax(130px, 1.6fr) 80px; }

.brief-close { border-bottom: 0; padding-bottom: 0; }
.brief-guides { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 25px 0 20px; }
.brief-guides > div { border-top: 2px solid var(--brief-accent); padding-top: 13px; }
.brief-guides h3 { margin: 0 0 7px; }
.brief-guides ul { margin: 0; padding-left: 18px; }
.brief-guides li { margin: 7px 0; font-size: 14px; }

.brief-method-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-top: 28px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.brief-method-note p { max-width: 610px; margin: 7px 0 0; font-size: 14px; }
.brief-method-note .text-link { flex: 0 0 auto; margin-bottom: 4px; }

@media (max-width: 760px) {
  .brief-hero { padding-top: 34px; }
  .brief-snapshot-stats { grid-template-columns: 1fr; }
  .brief-snapshot-stats div,
  .brief-snapshot-stats div:first-child { min-height: 0; padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .brief-snapshot-stats div:last-child { border-bottom: 0; }
  .brief-layout { display: block; }
  .brief-toc { position: static; grid-template-columns: 1fr 1fr; gap: 2px 20px; margin-bottom: 32px; }
  .brief-toc .eyebrow { grid-column: 1 / -1; }
  .brief-section { margin-bottom: 31px; padding-bottom: 34px; }
  .brief-chart-heading { display: block; }
  .brief-chart-heading > span,
  .brief-chart-heading > div:last-child { display: block; margin-top: 6px; text-align: left; }
  .brief-chart-heading > div:last-child a { display: inline-block; margin-top: 5px; }
  .brief-chart .bar-row { grid-template-columns: minmax(96px, 1fr) minmax(90px, 1fr) 64px; }
  .brief-guides { grid-template-columns: 1fr; gap: 22px; }
  .brief-method-note { display: block; }
  .brief-method-note .text-link { display: inline-block; margin-top: 12px; }
}

.metric-grid + .metric-grid {
  margin-top: 12px;
}

.metric {
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-value {
  display: block;
  font-size: 27px;
  font-weight: 850;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 18px;
  align-items: start;
  margin: 18px 0 28px;
}

.free-source-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  margin: 30px 0;
}

.snapshot-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 12px;
  padding: 16px;
  border: 1px solid #b8e3d5;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #f3fbf8;
}

.snapshot-card span,
.snapshot-card strong {
  display: block;
}

.snapshot-card span {
  color: #48635c;
  font-size: 12px;
  font-weight: 750;
}

.snapshot-card strong {
  margin-top: 4px;
  color: #123d34;
  font-size: 16px;
}

.snapshot-card p {
  grid-column: 1 / -1;
  margin: 0;
  color: #48635c;
  font-size: 12px;
}

.legacy-section {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px dashed #cbd5e1;
}

.toc-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
}

.toc {
  position: sticky;
  top: 82px;
  align-self: start;
  color: var(--muted);
  font-size: 14px;
}

.toc a {
  display: block;
  padding: 7px 0;
}

.toc a:hover {
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
}

th {
  color: #475569;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

tr:last-child td {
  border-bottom: 0;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.input,
.select {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 0 12px;
  color: var(--text);
}

.input {
  min-width: 260px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: #475569;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 800;
}

button.pill {
  cursor: pointer;
}

button.pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.small-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.evidence-panel {
  margin: 18px 0 24px;
}

.evidence-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.evidence-heading h3 {
  margin-top: 6px;
}

.evidence-heading span {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 8px 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.evidence-funnel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.evidence-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfe;
  padding: 12px;
}

.evidence-step-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 8px;
}

.evidence-step-top strong {
  font-size: 13px;
}

.evidence-step-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.evidence-step p {
  min-height: 38px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.coverage-callout {
  border-left: 3px solid var(--accent);
  background: #ecfdf5;
  color: #134e4a;
  padding: 10px 12px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  font-weight: 700;
}

.transition-band-chart {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.transition-band-row {
  display: grid;
  grid-template-columns: 48px minmax(120px, 1fr) 150px;
  align-items: center;
  gap: 10px;
  min-height: 26px;
}

.transition-band-year {
  color: #475569;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.transition-band-track {
  position: relative;
  height: 14px;
  overflow: hidden;
  background: #eef2f6;
  border-radius: 3px;
}

.transition-band-possible,
.transition-band-estimate,
.transition-band-exact {
  position: absolute;
  inset: 0 auto 0 0;
}

.transition-band-possible { background: #cbd5e1; }
.transition-band-estimate { background: #60a5fa; }
.transition-band-exact { background: #1d4ed8; }

.transition-band-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  color: #64748b;
  font-size: 11px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.transition-band-values strong { color: #1d4ed8; }

.transition-band-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: 58px;
  color: #64748b;
  font-size: 11px;
}

.transition-band-legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.transition-band-legend i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.transition-band-legend .exact { background: #1d4ed8; }
.transition-band-legend .estimate { background: #60a5fa; }
.transition-band-legend .possible { background: #cbd5e1; }

@media (max-width: 700px) {
  .transition-band-row {
    grid-template-columns: 42px minmax(90px, 1fr);
  }

  .transition-band-values {
    grid-column: 2;
  }

  .transition-band-legend {
    margin-left: 52px;
  }
}

/* Company Signal Landscape: the aggregate-first front door to Flow Studio. */
.companies-active {
  background: #f4f3ee;
}

.companies-active .page {
  max-width: 1400px;
  padding: 0 28px 96px;
}

.companies-active .footer {
  background: #f4f3ee;
}

.company-landscape {
  color: #171a17;
}

.company-landscape .eyebrow {
  color: #128765;
  letter-spacing: 0;
}

.company-landscape-hero {
  padding: 38px 0 20px;
  border-bottom: 1px solid #cbd1ca;
}

.company-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: 44px;
  align-items: end;
}

.company-landscape-hero h1 {
  margin: 8px 0 0;
  max-width: 790px;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0;
}

.company-landscape-hero p {
  max-width: 610px;
  margin: 0 0 4px;
  color: #59645c;
  font-size: 16px;
  line-height: 1.55;
}

.company-trust-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 2px solid #171a17;
  color: #677168;
  font-size: 11px;
  font-weight: 720;
}

.company-trust-rail b {
  color: #171a17;
  font-variant-numeric: tabular-nums;
}

.company-trust-rail span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #19a779;
  vertical-align: 1px;
}

.company-trust-rail a {
  margin-left: auto;
  color: #107b5b;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.company-lens-tabs {
  display: flex;
  min-height: 58px;
  overflow-x: auto;
  border-bottom: 1px solid #cbd1ca;
}

.company-lens-tabs,
.companies-active .nav {
  scrollbar-width: none;
}

.company-lens-tabs::-webkit-scrollbar,
.companies-active .nav::-webkit-scrollbar {
  display: none;
}

.company-lens-tabs button {
  flex: none;
  min-width: 150px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #707970;
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
}

.company-lens-tabs button:hover,
.company-lens-tabs button:focus-visible {
  color: #171a17;
}

.company-lens-tabs button.is-active {
  border-bottom-color: #16a777;
  color: #171a17;
}

.company-landscape-stage {
  padding: 26px 0 0;
}

.company-stage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 36px;
  align-items: end;
  margin-bottom: 18px;
}

.company-stage-heading h2 {
  margin: 5px 0 0;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.company-stage-heading p {
  margin: 0;
  color: #6a746c;
  font-size: 12px;
  text-align: right;
}

.company-signal-legend,
.company-signal-lane {
  display: grid;
  grid-template-columns: minmax(210px, 1.05fr) minmax(420px, 2.4fr) 132px 46px 54px;
  gap: 16px;
  align-items: center;
}

.company-mobile-signal-picker {
  display: none;
}

.company-signal-legend {
  min-height: 48px;
  border-top: 2px solid #171a17;
  border-bottom: 1px solid #bfc7bf;
  color: #778078;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-signal-legend > div,
.company-lane-signature {
  display: grid;
  grid-template-columns: repeat(var(--signal-columns), minmax(42px, 1fr));
  gap: 6px;
  min-width: 0;
}

.company-signal-legend > div {
  align-self: stretch;
}

.company-signal-legend button {
  display: grid;
  min-width: 0;
  place-content: center;
  gap: 5px;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #69736b;
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
}

.company-signal-legend button i {
  width: 100%;
  height: 3px;
  background: #df735e;
}

.company-signal-lane {
  position: relative;
  min-height: 72px;
  border-bottom: 1px solid #d4d9d3;
  padding: 9px 0 9px 12px;
  transition: background 160ms ease, opacity 160ms ease;
}

.company-signal-lane::before {
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  background: #df735e;
  content: '';
}

.company-accent-cursor::before { background: #17a77b; }
.company-accent-anthropic::before { background: #3b72df; }
.company-accent-xai::before { background: #7b64bd; }
.company-accent-google-deepmind::before { background: #d2a125; }

.company-signal-lane:hover,
.company-signal-lane.is-selected {
  background: #fff;
}

.company-signal-lane.is-selected::before {
  width: 6px;
}

.company-lane-identity {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.company-lane-identity a {
  width: fit-content;
}

.company-lane-identity strong {
  color: #171a17;
  font-size: 16px;
}

.company-lane-identity a:hover strong {
  text-decoration: underline;
  text-decoration-color: #16a777;
  text-underline-offset: 4px;
}

.company-lane-identity small,
.company-lane-identity span {
  overflow: hidden;
  color: #7a837b;
  font-size: 9px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-lane-identity span {
  color: #49534b;
  font-weight: 720;
}

.company-lane-signature {
  height: 50px;
}

.signal-mark {
  display: grid;
  grid-template-rows: 34px 12px;
  min-width: 0;
  gap: 3px;
  border: 0;
  background: transparent;
  color: #667169;
  cursor: pointer;
  opacity: 1;
  transition: opacity 140ms ease, background 140ms ease;
}

.signal-mark-track {
  display: flex;
  height: 34px;
  align-items: end;
  justify-content: center;
  border-bottom: 1px solid #bcc5bd;
  background: #eceee9;
}

.signal-mark-track i {
  display: block;
  width: 58%;
  height: var(--signal-size);
  min-height: 3px;
  background: #df735e;
}

.signal-mark:nth-child(2) .signal-mark-track i,
.company-signal-legend button:nth-child(2) i { background: #d8a42d; }
.signal-mark:nth-child(3) .signal-mark-track i,
.company-signal-legend button:nth-child(3) i { background: #3c74df; }
.signal-mark:nth-child(4) .signal-mark-track i,
.company-signal-legend button:nth-child(4) i { background: #56bfa2; }
.signal-mark:nth-child(5) .signal-mark-track i,
.company-signal-legend button:nth-child(5) i { background: #7e67bd; }
.signal-mark:nth-child(6) .signal-mark-track i,
.company-signal-legend button:nth-child(6) i { background: #252b26; }
.signal-mark:nth-child(7) .signal-mark-track i,
.company-signal-legend button:nth-child(7) i { background: #8b948c; }

.signal-mark-value {
  overflow: hidden;
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  font-weight: 780;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-mark.is-missing .signal-mark-track {
  background: transparent;
}

.signal-mark.is-missing .signal-mark-track i {
  width: 1px;
  min-height: 8px;
  background: #c7cec7;
}

.signal-mark.is-internal .signal-mark-track {
  outline: 2px solid #171a17;
  outline-offset: -2px;
}

[data-company-signal].is-dimmed {
  opacity: .17;
}

[data-company-signal].is-highlighted {
  opacity: 1;
}

.signal-mark.is-highlighted {
  background: #e7f4ee;
}

.company-lane-coverage {
  display: grid;
  gap: 3px;
  text-align: right;
}

.company-lane-coverage strong {
  color: #171a17;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.company-lane-coverage strong span {
  color: #899189;
  font-weight: 650;
}

.company-lane-coverage small {
  color: #6f7971;
  font-size: 9px;
}

.company-inspect-button,
.company-compare-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #bdc5bd;
  border-radius: 3px;
  background: transparent;
  color: #323a34;
  cursor: pointer;
  font-weight: 850;
}

.company-compare-toggle.is-selected {
  border-color: #171a17;
  background: #171a17;
  color: #fff;
  font-size: 9px;
}

.company-inspect-button:hover,
.company-compare-toggle:hover,
.company-inspect-button:focus-visible,
.company-compare-toggle:focus-visible,
.signal-mark:focus-visible,
.company-signal-legend button:focus-visible,
.company-lens-tabs button:focus-visible {
  outline: 2px solid #16a777;
  outline-offset: 2px;
}

.company-shared-inspector {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(420px, 1.5fr) minmax(190px, .7fr);
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  border-left: 5px solid #64d9b7;
  background: #171a17;
  padding: 24px 26px;
  color: #fff;
}

.company-inspector-heading {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}

.company-inspector-heading h2 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 28px;
}

.company-inspector-heading > strong {
  display: grid;
  color: #64d9b7;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.company-inspector-heading strong small {
  max-width: 120px;
  color: #aeb7af;
  font-size: 8px;
  line-height: 1.25;
  font-weight: 650;
}

.company-inspector-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid #3a423c;
}

.company-inspector-facts p {
  margin: 0;
  border-right: 1px solid #3a423c;
  padding: 5px 18px;
  color: #c4cbc5;
  font-size: 11px;
  line-height: 1.5;
}

.company-inspector-actions {
  display: grid;
  gap: 6px;
}

.company-inspector-actions a,
.company-inspector-actions button {
  min-height: 36px;
  border: 1px solid #586159;
  border-radius: 3px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 9px 11px;
  font-size: 10px;
  font-weight: 800;
  text-align: left;
}

.company-inspector-actions .company-primary-action {
  display: flex;
  justify-content: space-between;
  border-color: #64d9b7;
  background: #64d9b7;
  color: #112019;
}

.company-directory {
  padding-top: 62px;
}

.company-directory-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 32px;
  align-items: end;
  margin-bottom: 20px;
}

.company-directory-heading h2 {
  margin: 7px 0 0;
  font-size: 34px;
  letter-spacing: 0;
}

.company-directory-heading label {
  display: grid;
  gap: 7px;
  color: #69736b;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-directory-heading input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #bdc5bd;
  border-radius: 3px;
  background: #fff;
  padding: 0 12px;
  color: #171a17;
}

.company-directory-table {
  border-top: 2px solid #171a17;
}

.company-directory-header,
.company-directory-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.4fr) repeat(4, minmax(96px, .7fr)) 40px;
  gap: 16px;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid #cbd1ca;
  padding: 8px 10px;
}

.company-directory-header {
  min-height: 38px;
  background: #e9ebe6;
  color: #6c756d;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-directory-row:hover {
  background: #fff;
}

.company-directory-row > span {
  display: grid;
  gap: 2px;
}

.company-directory-row strong {
  font-size: 13px;
}

.company-directory-row small {
  color: #79827a;
  font-size: 9px;
}

.company-directory-row b {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.company-directory-row a {
  color: #11815f;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.company-preview {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(0, 2fr);
  gap: 34px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid #cbd1ca;
}

.company-preview p {
  max-width: 330px;
  margin: 7px 0 0;
  color: #707a72;
  font-size: 11px;
}

.company-preview ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-preview li {
  display: grid;
  min-width: 0;
  gap: 4px;
  border-left: 1px solid #cbd1ca;
  padding: 8px 14px;
}

.company-preview li span {
  overflow: hidden;
  font-size: 12px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-preview li small {
  color: #8a928b;
  font-size: 8px;
}

.company-directory-empty {
  border-bottom: 1px solid #cbd1ca;
  padding: 30px 10px;
  color: #707a72;
  font-size: 12px;
}

.company-compare-tray {
  position: fixed;
  z-index: 18;
  right: 28px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto 32px;
  gap: 14px;
  align-items: center;
  min-width: 520px;
  border: 1px solid #343b35;
  border-left: 4px solid #64d9b7;
  background: #171a17;
  padding: 12px 14px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(20, 27, 22, .18);
}

.company-compare-tray > div {
  display: grid;
  gap: 5px;
}

.company-compare-tray > div > span {
  display: flex;
  gap: 12px;
  align-items: center;
  overflow: hidden;
  font-size: 10px;
  font-weight: 760;
  white-space: nowrap;
}

.company-compare-tray > div > span b {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  margin-right: -7px;
  border: 1px solid #64d9b7;
  color: #64d9b7;
  font-size: 8px;
}

.company-compare-tray small {
  color: #aeb7af;
  font-size: 9px;
}

.company-compare-tray > a,
.company-compare-tray > button:not(.company-compare-clear) {
  min-height: 38px;
  border: 1px solid #64d9b7;
  border-radius: 3px;
  background: #64d9b7;
  color: #112019;
  padding: 10px 13px;
  font-size: 10px;
  font-weight: 850;
}

.company-compare-tray > button:disabled {
  border-color: #4b554d;
  background: #303832;
  color: #8f9991;
}

.company-compare-clear {
  border: 0;
  background: transparent;
  color: #c8cec9;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 1050px) {
  .company-signal-legend,
  .company-signal-lane {
    grid-template-columns: minmax(170px, .9fr) minmax(350px, 2fr) 112px 42px 46px;
    gap: 10px;
  }

  .company-lane-identity {
    grid-column: 1;
    grid-row: 1;
  }

  .company-shared-inspector {
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.4fr);
  }

  .company-inspector-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .companies-active .page {
    padding-inline: 16px;
  }

  .company-landscape-hero {
    padding-top: 26px;
  }

  .company-hero-copy,
  .company-stage-heading,
  .company-directory-heading,
  .company-preview {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .company-landscape-hero h1 {
    font-size: 42px;
  }

  .company-stage-heading p {
    text-align: left;
  }

  .company-trust-rail a {
    margin-left: 0;
  }

  .company-lens-tabs button {
    min-width: 128px;
  }

  .company-signal-legend {
    display: none;
  }

  .company-mobile-signal-picker {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
    color: #69736b;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
  }

  .company-mobile-signal-picker select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #bdc5bd;
    border-radius: 3px;
    background: #fff;
    padding: 0 12px;
    color: #171a17;
    font-size: 12px;
    font-weight: 750;
    text-transform: none;
  }

  .company-signal-lane {
    grid-template-columns: minmax(0, 1fr) 110px 38px 42px;
    gap: 8px;
    min-height: 144px;
    padding: 12px 0 12px 10px;
  }

  .company-lane-signature {
    grid-column: 1 / -1;
    grid-row: 2;
    height: 54px;
  }

  .company-lane-coverage,
  .company-inspect-button,
  .company-compare-toggle {
    grid-row: 1;
  }


  .company-lane-coverage { grid-column: 2; }
  .company-inspect-button { grid-column: 3; }
  .company-compare-toggle { grid-column: 4; }

  .company-shared-inspector {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .company-inspector-facts {
    grid-template-columns: 1fr;
    border-top: 1px solid #3a423c;
    border-left: 0;
  }

  .company-inspector-facts p {
    border-right: 0;
    border-bottom: 1px solid #3a423c;
    padding: 10px 0;
  }

  .company-inspector-actions {
    grid-template-columns: 1fr;
  }

  .company-directory-header {
    display: none;
  }

  .company-directory-row {
    grid-template-columns: minmax(0, 1fr) repeat(2, 64px) 34px;
    gap: 8px;
  }

  .company-directory-row b:nth-of-type(3),
  .company-directory-row b:nth-of-type(4) {
    display: none;
  }

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

  .company-compare-tray {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .company-landscape-hero h1 {
    font-size: 34px;
  }

  .company-lens-tabs button {
    min-width: 116px;
  }

  .company-signal-lane {
    grid-template-columns: minmax(0, 1fr) 88px 36px 38px;
  }

  .company-lane-coverage strong {
    font-size: 11px;
  }

  .company-compare-tray {
    grid-template-columns: minmax(0, 1fr) auto 28px;
  }

  .company-compare-tray > div > span {
    max-width: 170px;
  }
}

.bar-chart {
  width: 100%;
}

.bar-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
  margin: 9px 0;
}

.bar-label {
  font-size: 13px;
  color: #334155;
}

.bar-track {
  height: 11px;
  background: #edf2f7;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
}

.bar-value {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.line-chart {
  width: 100%;
  height: 260px;
}

.empty {
  padding: 24px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px 20px 38px;
  font-size: 13px;
}

.site-footer {
  display: flex;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
  padding-inline: max(20px, calc((100vw - 1360px) / 2));
  background: #f7f8fa;
  text-align: left;
}

.site-footer > div {
  display: grid;
  gap: 5px;
}

.site-footer strong {
  color: #202720;
  font-size: 13px;
}

.site-footer span {
  color: #68736b;
  font-size: 11px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: end;
}

.site-footer a {
  color: #315347;
  font-size: 11px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 860px) {
  .topbar-inner {
    min-height: auto;
    grid-template-columns: 1fr auto;
    gap: 0 12px;
    padding: 10px 16px 0;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    overflow-x: auto;
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
  }

  .nav a { flex: none; padding: 0 12px; }
  .site-career-link { grid-column: 2; grid-row: 1; }
  .site-company-context { max-width: 150px; }

  .home-route-list > a { grid-template-columns: 36px 150px minmax(0, 1fr); }
  .home-route-list > a > b { grid-column: 3; }

  .flow-launcher-list > a {
    grid-template-columns: 32px minmax(150px, 1fr) repeat(2, minmax(90px, 0.7fr)) auto;
  }

  .flow-launcher-stat:nth-of-type(5) { display: none; }

  .brief-library-item {
    grid-template-columns: 34px 130px minmax(0, 1fr) 24px;
  }

  .brief-library-evidence { display: none; }

  .hero,
  .grid-2,
  .grid-3,
  .section-grid,
  .toc-layout {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-card {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-funnel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 14px;
  }
}

@media (max-width: 520px) {
  .brand strong { display: none; }
  .site-identity { gap: 8px; }
  .site-company-context { max-width: 132px; padding-left: 8px; font-size: 11px; }
  .site-career-link { padding: 9px 10px; font-size: 10px; }

  .home-overview { padding-top: 16px; }
  .home-overview-hero,
  .flow-launcher-hero { padding: 24px 0; }
  .home-route-list > a { grid-template-columns: 28px minmax(0, 1fr); gap: 10px; padding: 16px 4px; }
  .home-route-list > a > b { grid-column: 2; }
  .home-sample-line { display: grid; grid-template-columns: 1fr 1fr; padding-inline: 4px; }
  .home-sample-line > span { grid-column: 1 / -1; }

  .flow-launcher-list > a { grid-template-columns: 28px minmax(0, 1fr) auto; gap: 10px; padding: 16px 4px; }
  .flow-launcher-company { grid-column: 2; }
  .flow-launcher-stat { display: none; }
  .flow-launcher-action { grid-column: 3; grid-row: 1; }

  .brief-library-hero { padding: 28px 0 24px; }
  .brief-library-item { grid-template-columns: 28px minmax(0, 1fr) 20px; gap: 10px; padding: 18px 4px; }
  .brief-library-company { grid-column: 2; }
  .brief-library-copy { grid-column: 2; }
  .brief-library-index { grid-row: 1 / span 2; }
  .brief-library-arrow { grid-column: 3; grid-row: 1 / span 2; }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-card {
    grid-template-columns: 1fr;
  }

  .evidence-heading {
    flex-direction: column;
  }

  .evidence-funnel {
    grid-template-columns: 1fr;
  }

  .input,
  .select {
    width: 100%;
  }
}

.methodology-principles {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(260px, .85fr));
  gap: 0;
  border-bottom: 1px solid #cfd5ce;
}

.methodology-principles > div {
  padding: 36px 30px 40px;
  border-right: 1px solid #cfd5ce;
}

.methodology-principles > div:first-child {
  padding-left: 0;
}

.methodology-principles > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.methodology-principles h2,
.methodology-principles h3 {
  margin: 8px 0 12px;
  letter-spacing: 0;
}

.methodology-principles h2 {
  font-size: 30px;
}

.methodology-principles h3 {
  font-size: 18px;
}

.methodology-principles p,
.methodology-principles li {
  color: #556158;
  font-size: 13px;
}

.methodology-principles ul {
  margin: 0;
  padding-left: 18px;
}

.methodology-coverage {
  padding: 44px 0 54px;
}

.methodology-coverage .table-wrap {
  border-top: 2px solid #171a17;
}

.methodology-coverage table {
  background: transparent;
}

@media (max-width: 760px) {
  .briefs-active .page,
  .methodology-active .page {
    padding-inline: 16px;
  }

  .workspace-hero {
    padding-top: 36px;
  }

  .workspace-hero h1 {
    font-size: 44px;
  }

  .workspace-meta-rail a {
    width: 100%;
    margin-left: 0;
  }

  .workspace-section-heading,
  .methodology-principles {
    grid-template-columns: 1fr;
  }

  .workspace-section-heading {
    gap: 12px;
  }

  .methodology-principles > div,
  .methodology-principles > div:first-child,
  .methodology-principles > div:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #cfd5ce;
  }

  .methodology-principles > div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: start;
  }
}

/* Focused, aggregate-only cross-company comparison workspace. */
.compare-active {
  background: #f5f4ef;
}

.compare-active .page {
  max-width: 1360px;
  padding-top: 0;
}

.compare-page {
  color: #171a17;
}

.compare-hero {
  padding: 58px 0 34px;
  border-bottom: 1px solid #cfd5ce;
}

.compare-hero h1 {
  max-width: 850px;
  margin: 10px 0 15px;
  font-size: clamp(46px, 7vw, 82px);
  letter-spacing: 0;
}

.compare-hero > p {
  max-width: 760px;
  margin: 0;
  color: #526057;
  font-size: 18px;
}

.compare-snapshot-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  align-items: center;
  margin-top: 34px;
  padding-top: 17px;
  border-top: 2px solid #171a17;
  color: #5d695f;
  font-size: 12px;
  font-weight: 760;
}

.compare-snapshot-rail span::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #16a777;
  vertical-align: 1px;
}

.compare-snapshot-rail a {
  margin-left: auto;
  color: #167d62;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.compare-readiness,
.compare-workspace {
  padding: 44px 0 54px;
  border-bottom: 1px solid #cfd5ce;
}

.compare-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(270px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 24px;
}

.compare-section-heading h2 {
  max-width: 760px;
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.compare-section-heading > p {
  margin: 0;
  color: #647068;
  font-size: 14px;
}

.readiness-table {
  border-top: 2px solid #171a17;
  border-bottom: 1px solid #cfd5ce;
}

.readiness-row {
  display: grid;
  grid-template-columns: minmax(165px, 1.3fr) minmax(100px, .7fr) repeat(4, minmax(130px, 1fr));
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid #d8ddd7;
  padding: 12px 14px;
}

.readiness-row:last-child {
  border-bottom: 0;
}

.readiness-header {
  min-height: 48px;
  background: #eceee9;
  color: #667067;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.readiness-row > strong {
  font-size: 15px;
}

.readiness-sample {
  display: grid;
  gap: 2px;
  font-size: 15px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.readiness-sample small,
.readiness-cell small {
  color: #7a847c;
  font-size: 10px;
  font-weight: 650;
}

.readiness-cell {
  display: grid;
  grid-template-columns: 44px minmax(48px, 1fr);
  gap: 8px;
  align-items: center;
}

.readiness-cell b {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.readiness-cell > i {
  display: block;
  height: 5px;
  overflow: hidden;
  background: #d8ddd7;
}

.readiness-cell > i > em {
  display: block;
  height: 100%;
  background: #16a777;
}

.compare-workspace {
  border-bottom: 1px solid #cfd5ce;
}

.compare-page > .compare-readiness:last-child {
  border-bottom: 0;
}

.compare-selector {
  position: sticky;
  top: 64px;
  z-index: 8;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  border: 1px solid #c8cec7;
  border-top: 3px solid #171a17;
  background: rgba(252, 252, 248, .97);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(29, 37, 31, .06);
  backdrop-filter: blur(12px);
}

.compare-selector-main {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.compare-selector label {
  display: grid;
  min-width: 220px;
  gap: 7px;
}

.compare-selector label > span {
  color: #6c766e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.compare-company-select {
  min-height: 46px;
  border: 1px solid #bfc6bf;
  border-radius: 3px;
  background: #fff;
  padding: 0 38px 0 13px;
  color: #171a17;
  font-weight: 780;
}

.compare-swap,
.compare-add-reference,
.compare-remove-reference {
  min-height: 46px;
  border: 1px solid #bfc6bf;
  border-radius: 3px;
  background: transparent;
  color: #263129;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.compare-swap {
  width: 46px;
  font-size: 20px;
}

.compare-add-reference,
.compare-remove-reference {
  padding: 0 14px;
}

.compare-add-reference:hover,
.compare-swap:hover {
  border-color: #16a777;
  color: #0b7e5e;
}

.compare-remove-reference {
  border-color: transparent;
  color: #7c5147;
}

.compare-selector-note {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: #707b72;
  font-size: 10px;
  font-weight: 750;
}

.compare-selector-note a {
  color: #137f62;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compare-lenses {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid #cfd5ce;
  margin-top: 28px;
}

.compare-lenses button {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  padding: 15px 18px 13px;
  color: #6a756c;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.compare-lenses button.active {
  border-bottom-color: #16a777;
  color: #171a17;
}

.compare-insight {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin: 28px 0;
  border-left: 4px solid #16a777;
  background: #e5f3ed;
  padding: 17px 20px;
}

.compare-insight > span {
  color: #0e7659;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.compare-insight p {
  margin: 0;
  color: #354139;
  font-size: 14px;
  line-height: 1.55;
}

.compare-evidence-section {
  border-top: 2px solid #171a17;
  padding-top: 24px;
}

.compare-chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
  margin-bottom: 24px;
}

.compare-chart-heading h3 {
  margin: 0 0 6px;
  font-size: 26px;
}

.compare-chart-heading p {
  max-width: 690px;
  margin: 0;
  color: #657068;
  font-size: 13px;
}

.compare-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: end;
  color: #4e5a51;
  font-size: 11px;
  font-weight: 760;
}

.compare-legend span,
.compare-category-legend span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.compare-legend i,
.compare-category-legend i {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.compare-legend small {
  color: #818a83;
  font-size: 9px;
}

.compare-matrix {
  border-top: 1px solid #cfd5ce;
}

.compare-matrix-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.15fr) repeat(var(--compare-columns), minmax(150px, 1fr));
  gap: 22px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid #d8ddd7;
  padding: 10px 12px;
}

.compare-matrix-header {
  min-height: 52px;
  background: #eceee9;
  color: #667067;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.compare-matrix-header span {
  display: grid;
  gap: 2px;
}

.compare-matrix-header small {
  color: #879088;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.compare-matrix-row > strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-matrix-cell {
  display: grid;
  grid-template-columns: minmax(50px, 1fr) 45px;
  gap: 8px;
  align-items: center;
}

.compare-matrix-cell > i {
  display: block;
  height: 7px;
  background: #dce0dc;
}

.compare-matrix-cell > i > em {
  display: block;
  height: 100%;
}

.compare-matrix-cell b {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.compare-matrix-cell small {
  grid-column: 1 / -1;
  color: #848d86;
  font-size: 9px;
  text-align: right;
}

.compare-stacked-list,
.compare-timing-list {
  display: grid;
  gap: 26px;
}

.compare-stacked-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.compare-stacked-meta,
.compare-timing-meta {
  display: grid;
  gap: 4px;
}

.compare-stacked-meta strong,
.compare-timing-meta strong {
  font-size: 16px;
}

.compare-stacked-meta span,
.compare-timing-meta span {
  color: #78827a;
  font-size: 11px;
}

.compare-stacked-bar {
  display: flex;
  height: 38px;
  overflow: hidden;
  background: #dfe3de;
}

.compare-stacked-bar i {
  min-width: 1px;
  height: 100%;
  border-right: 1px solid rgba(255,255,255,.8);
}

.compare-category-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 26px;
  padding-top: 17px;
  border-top: 1px solid #d8ddd7;
  color: #59645c;
  font-size: 10px;
}

.compare-category-legend i {
  border-radius: 1px;
}

.compare-timing-row {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0 24px;
  align-items: end;
}

.compare-time-bars {
  display: grid;
  gap: 5px;
  align-items: end;
  height: 110px;
  border-bottom: 1px solid #aab2ab;
}

.compare-time-bars i {
  display: block;
  min-height: 0;
}

.compare-time-axis {
  grid-column: 2;
  display: grid;
  gap: 5px;
  margin-top: 7px;
  color: #7b857d;
  font-size: 9px;
  text-align: center;
}

.compare-method-callout {
  display: flex;
  gap: 15px 24px;
  justify-content: space-between;
  margin-top: 30px;
  padding: 14px 0;
  border-top: 1px solid #cfd5ce;
  color: #647068;
  font-size: 11px;
}

.compare-method-callout strong {
  color: #243028;
}

.compare-empty {
  border-top: 2px solid #171a17;
  padding: 32px 0;
  color: #68736b;
}

.compare-company-select:focus-visible,
.compare-selector button:focus-visible,
.compare-lenses button:focus-visible {
  outline: 3px solid rgba(22, 167, 119, .35);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .readiness-table {
    overflow-x: auto;
  }

  .readiness-row {
    min-width: 930px;
  }

  .compare-selector {
    position: static;
    grid-template-columns: 1fr;
  }

  .compare-selector-note {
    display: none;
  }

  .compare-matrix {
    overflow-x: auto;
  }

  .compare-matrix-row {
    min-width: 760px;
  }
}

@media (max-width: 700px) {
  .compare-active .page {
    padding-inline: 16px;
  }

  .compare-hero {
    padding-top: 38px;
  }

  .compare-hero h1 {
    font-size: 46px;
  }

  .compare-snapshot-rail a {
    width: 100%;
    margin-left: 0;
  }

  .compare-section-heading,
  .compare-insight,
  .compare-stacked-row,
  .compare-timing-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .compare-selector-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
  }

  .compare-selector label {
    min-width: 0;
  }

  .compare-reference,
  .compare-add-reference,
  .compare-remove-reference {
    grid-column: 1 / -1;
  }

  .compare-company-select {
    width: 100%;
  }

  .compare-chart-heading {
    display: block;
  }

  .compare-legend {
    justify-content: start;
    margin-top: 14px;
  }

  .compare-time-axis {
    grid-column: 1;
  }

  .compare-method-callout {
    display: grid;
  }
}
