:root {
  --cookbook-max: 1180px;
  --cookbook-reading: 720px;
  --cookbook-radius: 10px;
  --cookbook-code: var(--navy-light);
  --cookbook-accent-soft: var(--mint-soft);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.cookbook-page {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.cookbook-page main a {
  color: var(--blue);
}

.cookbook-page main a:hover {
  color: var(--blue-hover);
}

.cookbook-page > main {
  padding-top: 64px;
}

.cookbook-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--white) !important;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.cookbook-button:hover {
  background: var(--navy-light);
  border-color: var(--border-mid);
  transform: translateY(-1px);
}

.cookbook-button--primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--navy) !important;
}

.cookbook-button--primary:hover {
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  color: var(--navy) !important;
}

.cookbook-button--quiet {
  background: var(--surface-card);
}

.cookbook-shell {
  width: min(calc(100% - 40px), var(--cookbook-max));
  margin: 0 auto;
}

.cookbook-hero {
  padding: clamp(64px, 8vw, 112px) 0 64px;
  border-bottom: 1px solid var(--border-light);
}

.cookbook-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: center;
}

.cookbook-kicker {
  margin: 0 0 18px;
  color: var(--eyebrow);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cookbook-hero h1,
.cookbook-index-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.cookbook-hero__lede,
.cookbook-index-hero__lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-cool);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.cookbook-meta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.cookbook-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookbook-terminal {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-lg);
}

.cookbook-terminal__bar {
  min-height: 42px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.cookbook-terminal__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cookbook-terminal__status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--marker-alt);
  content: "";
}

.cookbook-terminal__query {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-light);
  background: var(--cookbook-code);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.7;
  white-space: pre;
}

.cookbook-terminal__result {
  padding: 8px 20px 16px;
}

.mini-company {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.mini-company:last-child {
  border-bottom: 0;
}

.mini-company__rank {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.mini-company__name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.mini-company__location {
  margin: 2px 0 0;
  color: var(--text-faint);
  font-size: 0.72rem;
}

.mini-company__score {
  color: var(--eyebrow);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.cookbook-statline {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-light);
  background: var(--navy-light);
}

.cookbook-statline div {
  padding: 0 14px;
  border-right: 1px solid var(--border-light);
}

.cookbook-statline div:first-child {
  padding-left: 0;
}

.cookbook-statline div:last-child {
  padding-right: 0;
  border-right: 0;
}

.cookbook-statline strong,
.cookbook-statline span {
  display: block;
}

.cookbook-statline strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.15;
}

.cookbook-statline span {
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 0.68rem;
}

.cookbook-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, var(--cookbook-reading));
  gap: clamp(50px, 8vw, 112px);
  justify-content: center;
  padding: 72px 0 100px;
}

.cookbook-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}

.cookbook-toc p {
  margin: 0 0 12px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookbook-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cookbook-toc a {
  display: block;
  padding: 7px 0;
  color: var(--text-faint);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.cookbook-toc a:hover {
  color: var(--white);
}

.cookbook-article section {
  padding: 0 0 72px;
  scroll-margin-top: 96px;
}

.cookbook-step {
  margin: 0 0 14px;
  color: var(--eyebrow);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cookbook-article h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.cookbook-article h3 {
  margin: 36px 0 12px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.cookbook-article p,
.cookbook-article li {
  color: var(--text-light);
  font-size: 1rem;
}

.cookbook-article p {
  margin: 0 0 18px;
}

.cookbook-article ul {
  margin: 18px 0;
  padding-left: 22px;
}

.cookbook-thesis {
  margin: 28px 0;
  padding: 26px 28px;
  border-left: 4px solid var(--blue);
  background: var(--navy-light);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.4;
}

.cookbook-callout {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid var(--border-light);
  border-radius: var(--cookbook-radius);
  background: var(--cookbook-accent-soft);
}

.cookbook-callout p:last-child {
  margin-bottom: 0;
}

.cookbook-callout__label {
  margin: 0 0 8px !important;
  color: var(--eyebrow) !important;
  font-family: var(--font-mono);
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookbook-code {
  position: relative;
  margin: 26px 0;
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--cookbook-code);
}

.cookbook-code__header {
  min-height: 42px;
  padding: 0 12px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.cookbook-copy {
  border: 1px solid var(--border-light);
  border-radius: 6px;
  background: var(--surface-card);
  color: var(--text-light);
  padding: 6px 10px;
  font: 600 0.68rem var(--font-sans);
  cursor: pointer;
}

.cookbook-copy:hover {
  color: var(--white);
}

.cookbook-code pre {
  margin: 0;
  padding: 20px;
  overflow-x: auto;
}

.cookbook-code code,
.cookbook-inline-code {
  font-family: var(--font-mono);
}

.cookbook-code code {
  color: var(--white);
  font-size: 0.77rem;
  line-height: 1.72;
}

.cookbook-inline-code {
  border: 1px solid var(--border-light);
  border-radius: 5px;
  background: var(--navy-light);
  padding: 0.1em 0.35em;
  color: var(--white);
  font-size: 0.83em;
}

.cookbook-filter-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  border-top: 1px solid var(--border-mid);
}

.cookbook-filter-table th,
.cookbook-filter-table td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
  vertical-align: top;
}

.cookbook-filter-table th {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookbook-filter-table td {
  color: var(--text-light);
  font-size: 0.86rem;
}

.cookbook-filter-table td:last-child {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.cookbook-results-header {
  margin-bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.cookbook-results-header p {
  margin: 0;
}

.cookbook-results {
  display: grid;
  gap: 10px;
}

.company-result {
  padding: 20px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border-light);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.company-result__logo {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--logo-tile-border);
  border-radius: 8px;
  background: var(--logo-tile-bg);
  color: var(--text-faint);
  font-family: var(--font-display);
  font-weight: 700;
}

.company-result__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.company-result h3 {
  margin: 0;
  font-size: 1.02rem;
}

.company-result h3 a {
  color: var(--white);
  text-decoration: none;
}

.company-result h3 a:hover {
  color: var(--blue);
}

.company-result__tagline {
  margin: 4px 0 0 !important;
  color: var(--text-faint) !important;
  font-size: 0.8rem !important;
  line-height: 1.4;
}

.company-result__facts {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.company-result__score {
  min-width: 72px;
  text-align: right;
}

.company-result__score strong,
.company-result__score span {
  display: block;
}

.company-result__score strong {
  color: var(--eyebrow);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.company-result__score span {
  margin-top: 5px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.cookbook-download {
  padding: 32px;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--navy-light);
}

.cookbook-download h3 {
  margin-top: 0;
}

.cookbook-footer-cta {
  padding: 72px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.cookbook-footer-cta h2 {
  max-width: 14ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.cookbook-footer-cta p {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--text-light);
}

.cookbook-footer-cta .cookbook-actions {
  justify-content: center;
}

.cookbook-index-hero {
  padding: clamp(72px, 10vw, 136px) 0 72px;
}

.cookbook-index-hero h1 {
  max-width: 9ch;
}

.cookbook-index-grid {
  padding: 0 0 112px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 24px;
  align-items: start;
}

.cookbook-index-list {
  display: grid;
  gap: 24px;
}

.cookbook-card {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
}

.cookbook-card__number {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.cookbook-card h2 {
  max-width: 15ch;
  margin: 58px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.cookbook-card p {
  max-width: 580px;
  margin: 0;
  color: var(--text-light);
}

.cookbook-card__footer {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookbook-card__meta {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.cookbook-card--compact {
  background: var(--navy-light);
}

.cookbook-card--compact h2 {
  margin-top: 36px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.watchlist-baseline {
  margin: 28px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  overflow: hidden;
}

.watchlist-baseline div {
  padding: 20px;
  border-right: 1px solid var(--border-light);
  background: var(--surface-card);
}

.watchlist-baseline div:last-child {
  border-right: 0;
}

.watchlist-baseline strong,
.watchlist-baseline span {
  display: block;
}

.watchlist-baseline strong {
  color: var(--eyebrow);
  font: 650 1rem var(--font-display);
}

.watchlist-baseline span {
  margin-top: 5px;
  color: var(--text-faint);
  font-size: 0.75rem;
}

.watchlist-snapshot {
  display: grid;
  gap: 26px;
}

.watchlist-snapshot__companies {
  border-top: 1px solid var(--border-mid);
}

.watchlist-company {
  min-height: 74px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 86px 74px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.watchlist-company__identity h3 {
  margin: 0;
  font-size: 0.96rem;
}

.watchlist-company__identity h3 a {
  color: var(--white);
  text-decoration: none;
}

.watchlist-company__identity p {
  margin: 2px 0 0;
  color: var(--text-faint);
  font-size: 0.74rem;
}

.watchlist-company__metric {
  text-align: right;
}

.watchlist-company__metric strong,
.watchlist-company__metric span {
  display: block;
}

.watchlist-company__metric strong {
  font: 650 1.05rem var(--font-display);
}

.watchlist-company__metric span {
  color: var(--text-faint);
  font: 0.62rem var(--font-mono);
  text-transform: uppercase;
}

.watchlist-snapshot__signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.watchlist-snapshot__signals > section {
  padding: 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
}

.watchlist-snapshot__signals h3 {
  margin: 0 0 12px;
  font: 650 0.82rem var(--font-display);
}

.watchlist-snapshot__signals ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.watchlist-event {
  padding: 13px 0;
  border-top: 1px solid var(--border-light);
}

.watchlist-event:first-child {
  border-top: 0;
}

.watchlist-event__kind {
  display: block;
  margin-bottom: 3px;
  color: var(--eyebrow);
  font: 650 0.58rem var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.watchlist-event strong {
  display: block;
  font-size: 0.76rem;
}

.watchlist-event p {
  margin: 3px 0 !important;
  color: var(--text-light) !important;
  font-size: 0.72rem !important;
  line-height: 1.35;
}

.watchlist-event small {
  color: var(--text-faint);
  font: 0.6rem var(--font-mono);
}

.cookbook-index-note {
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--cookbook-radius);
  background: var(--navy-light);
}

.cookbook-index-note p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.cookbook-index-note p + p {
  margin-top: 14px;
}

.cookbook-loading {
  padding: 22px;
  border: 1px dashed var(--border-mid);
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.company-brief {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-md);
}

.company-brief__header {
  padding: 24px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.company-brief__logo {
  width: 56px;
  height: 56px;
}

.company-brief__header h3 {
  margin: 0;
  font-size: 1.45rem;
}

.company-brief__header h3 a {
  color: var(--white);
  text-decoration: none;
}

.company-brief__header > div > p:last-child {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 0.82rem;
}

.company-brief__rating {
  color: var(--text-faint);
  font: 0.62rem var(--font-mono);
  text-align: right;
  text-transform: uppercase;
}

.company-brief__rating strong {
  display: block;
  color: var(--eyebrow);
  font: 650 1.55rem var(--font-display);
}

.company-brief__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-light);
}

.company-brief__metrics > div {
  padding: 20px;
  border-right: 1px solid var(--border-light);
}

.company-brief__metrics > div:last-child {
  border-right: 0;
}

.company-brief__metrics span,
.company-brief__metrics strong,
.company-brief__metrics small {
  display: block;
}

.company-brief__metrics span {
  color: var(--text-faint);
  font: 0.62rem var(--font-mono);
  text-transform: uppercase;
}

.company-brief__metrics strong {
  margin-top: 7px;
  font: 650 1.3rem var(--font-display);
}

.company-brief__metrics small {
  margin-top: 3px;
  color: var(--text-faint);
  font-size: 0.68rem;
}

.company-brief__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--border-light);
}

.company-brief__facts > section {
  padding: 24px;
}

.company-brief__facts > section:first-child {
  border-right: 1px solid var(--border-light);
}

.company-brief dl {
  margin: 0;
}

.company-brief dl div {
  padding: 9px 0;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border-light);
}

.company-brief dt {
  color: var(--text-faint);
  font-size: 0.7rem;
}

.company-brief dd {
  margin: 0;
  color: var(--text-light);
  font-size: 0.75rem;
  text-align: right;
}

.company-brief__tags {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.company-brief__tags span {
  padding: 5px 8px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  color: var(--text-faint);
  font: 0.62rem var(--font-mono);
}

.company-brief__lead {
  margin: 0 0 14px !important;
}

.company-brief__lead strong,
.company-brief__lead span {
  display: block;
}

.company-brief__lead strong {
  color: var(--white);
  font: 650 1.15rem var(--font-display);
}

.company-brief__lead span {
  margin-top: 3px;
  color: var(--text-faint);
  font: 0.66rem var(--font-mono);
}

.company-brief__evidence {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.company-brief__evidence > section {
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
}

.company-brief__evidence > section:nth-child(odd) {
  border-right: 1px solid var(--border-light);
}

.company-brief__evidence h3 {
  margin: 0 0 14px;
  font-size: 0.98rem;
}

.company-brief__evidence ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-brief__round {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.company-brief__round time,
.company-brief__round span,
.company-brief__investors span,
.company-brief__person span {
  color: var(--text-faint);
  font: 0.62rem var(--font-mono);
}

.company-brief__round strong,
.company-brief__round span {
  display: block;
}

.company-brief__round strong,
.company-brief__round b {
  font-size: 0.72rem;
}

.company-brief__investors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.company-brief__investors li {
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--border-light);
  border-radius: 7px;
  background: var(--navy-light);
}

.company-brief__investors strong,
.company-brief__investors span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-brief__investors strong {
  font-size: 0.7rem;
}

.company-brief__team {
  display: grid;
  gap: 8px;
}

.company-brief__person {
  padding: 8px 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.company-brief__person:first-child {
  border-top: 0;
}

.company-brief__person strong,
.company-brief__person span {
  display: block;
}

.company-brief__person strong,
.company-brief__person strong a {
  color: var(--white);
  font-size: 0.75rem;
  text-decoration: none;
}

.company-brief__mix li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 0.74rem;
}

.company-brief__mix b {
  color: var(--eyebrow);
  font-family: var(--font-mono);
}

.company-brief__limits {
  padding: 22px 24px;
  background: var(--cookbook-accent-soft);
}

.company-brief__limits ul {
  margin: 0;
  padding-left: 18px;
}

.company-brief__limits li {
  margin: 6px 0;
  color: var(--text-light);
  font-size: 0.75rem;
}

.similar-landscape {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.similar-landscape__anchor {
  padding: 22px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  background: var(--navy-light);
}

.similar-landscape__anchor h3,
.similar-company h3 {
  margin: 0;
  font-size: 1rem;
}

.similar-landscape__anchor h3 a,
.similar-company h3 a {
  color: var(--text-main);
  text-decoration: none;
}

.similar-landscape__anchor p,
.similar-company__tagline {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.45;
}

.similar-landscape__anchor-label {
  color: var(--eyebrow);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.similar-landscape__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.similar-company {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 28px 46px minmax(0, 1fr) minmax(150px, 0.5fr);
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.similar-company:last-child {
  border-bottom: 0;
}

.similar-company__rank {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.similar-company__facts {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.similar-company__overlap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.similar-company__overlap span,
.similar-landscape__tags span {
  padding: 5px 8px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--navy-light);
  color: var(--text-cool);
  font-size: 0.67rem;
  line-height: 1.2;
}

.similar-landscape__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.investor-shortlist {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.investor-shortlist__target {
  padding: 22px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  background: var(--navy-light);
}

.investor-shortlist__target h3,
.investor-fit__item h3 {
  margin: 0;
  font-size: 1rem;
}

.investor-shortlist__target h3 a,
.investor-fit__item h3 a {
  color: var(--text-main);
  text-decoration: none;
}

.investor-shortlist__target h3 a:hover,
.investor-shortlist__target h3 a:focus-visible,
.investor-fit__item h3 a:hover,
.investor-fit__item h3 a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.investor-shortlist__target p,
.investor-fit__identity > p {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.45;
}

.investor-shortlist__tags,
.investor-fit__reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.investor-shortlist__tags {
  justify-content: flex-end;
}

.investor-shortlist__tags span,
.investor-fit__reasons span {
  padding: 5px 8px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--navy-light);
  color: var(--text-cool);
  font-size: 0.67rem;
  line-height: 1.2;
}

.investor-fit__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.investor-fit__item {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 28px 46px minmax(0, 1fr) 110px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.investor-fit__item:last-child {
  border-bottom: 0;
}

.investor-fit__rank {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.investor-fit__facts {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.investor-fit__reasons {
  margin-top: 9px;
}

.investor-fit__match {
  text-align: right;
}

.investor-fit__match strong,
.investor-fit__match span {
  display: block;
}

.next-round-queue {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.next-round-queue__header {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--border-light);
  background: var(--navy-light);
}

.next-round-queue__header h3 {
  margin: 2px 0 0;
  font-size: 1rem;
}

.next-round-queue__thresholds {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.next-round-queue__thresholds span {
  padding: 5px 8px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--surface-card);
  color: var(--text-cool);
  font: 0.67rem var(--font-mono);
}

.next-round-queue ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.next-round-company {
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 28px 46px minmax(0, 1fr) 92px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border-light);
}

.next-round-company:last-child {
  border-bottom: 0;
}

.next-round-company__rank {
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.next-round-company__identity h3 {
  margin: 0;
  font-size: 1rem;
}

.next-round-company__identity h3 a {
  color: var(--text-main);
  text-decoration: none;
}

.next-round-company__identity h3 a:hover,
.next-round-company__identity h3 a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.next-round-company__identity > p {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.45;
}

.next-round-company__facts {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.next-round-company__signal {
  text-align: right;
}

.next-round-company__signal strong,
.next-round-company__signal span {
  display: block;
}

.next-round-company__signal strong {
  color: var(--eyebrow);
  font: 650 1.5rem var(--font-display);
  line-height: 1;
}

.next-round-company__signal span {
  margin-top: 5px;
  color: var(--text-faint);
  font: 0.6rem var(--font-mono);
  text-transform: uppercase;
}

.investor-fit__match strong {
  color: var(--eyebrow);
  font: 650 1.5rem var(--font-display);
  line-height: 1;
}

.investor-fit__match span {
  margin-top: 5px;
  color: var(--text-faint);
  font: 0.6rem var(--font-mono);
  text-transform: uppercase;
}

.quantum-mini-series {
  padding-top: 5px;
}

.quantum-mini__row {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid var(--border-light);
}

.quantum-mini__row:last-child {
  border-bottom: 0;
}

.quantum-mini__year {
  color: var(--text-faint);
  font: 0.68rem var(--font-mono);
}

.quantum-mini__values {
  color: var(--text-cool);
  font-size: 0.75rem;
}

.quantum-mini__values strong {
  margin-right: 5px;
  color: var(--white);
  font-size: 0.9rem;
}

.quantum-mini__values small {
  display: block;
  margin-top: 2px;
  color: var(--text-faint);
  font: 0.64rem var(--font-mono);
}

.quantum-pulse {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.quantum-pulse__summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border-light);
  background: var(--navy-light);
}

.quantum-pulse__summary > div {
  padding: 19px 18px;
  border-right: 1px solid var(--border-light);
}

.quantum-pulse__summary > div:last-child {
  border-right: 0;
}

.quantum-pulse__summary span,
.quantum-pulse__summary strong {
  display: block;
}

.quantum-pulse__summary span {
  color: var(--text-faint);
  font: 0.62rem var(--font-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quantum-pulse__summary strong {
  margin-top: 7px;
  color: var(--white);
  font: 650 1.45rem var(--font-display);
  line-height: 1;
}

.quantum-pulse__chart,
.quantum-pulse__companies {
  padding: 22px;
}

.quantum-pulse__companies {
  padding-bottom: 0;
  border-top: 1px solid var(--border-light);
}

.quantum-pulse__section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.quantum-pulse__section-heading h3 {
  margin: 2px 0 0;
  font-size: 1rem;
}

.quantum-pulse__section-heading > span {
  color: var(--text-faint);
  font: 0.65rem var(--font-mono);
  white-space: nowrap;
}

.quantum-pulse__section-heading .cookbook-callout__label {
  margin-bottom: 0;
}

.quantum-chart__legend {
  margin: 18px 0 2px;
  display: flex;
  gap: 18px;
  color: var(--text-cool);
  font: 0.67rem var(--font-mono);
}

.quantum-chart__legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.quantum-chart__key {
  width: 18px;
  height: 2px;
  display: inline-block;
  background: var(--text-faint);
}

.quantum-chart__key--europe {
  background: var(--blue);
}

.quantum-chart__scroll {
  overflow-x: auto;
}

.quantum-chart {
  width: 100%;
  min-width: 620px;
  height: auto;
  display: block;
}

.quantum-chart__grid {
  stroke: var(--border-light);
  stroke-width: 1;
}

.quantum-chart__axis {
  fill: var(--text-faint);
  font: 10px var(--font-mono);
}

.quantum-chart__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.quantum-chart__line--global {
  stroke: var(--text-faint);
}

.quantum-chart__line--europe {
  stroke: var(--blue);
  stroke-width: 3;
}

.quantum-chart__dot {
  stroke: var(--surface-card);
  stroke-width: 2;
}

.quantum-chart__dot--global {
  fill: var(--text-faint);
}

.quantum-chart__dot--europe {
  fill: var(--blue);
}

.quantum-pulse__companies ol {
  margin: 18px -22px 0;
  padding: 0;
  list-style: none;
}

.quantum-company {
  padding: 17px 22px;
  display: grid;
  grid-template-columns: 28px 46px minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.quantum-company__rank {
  color: var(--text-faint);
  font: 0.72rem var(--font-mono);
}

.quantum-company__identity h3 {
  margin: 0;
  font-size: 1rem;
}

.quantum-company__identity h3 a {
  color: var(--text-main);
  text-decoration: none;
}

.quantum-company__identity h3 a:hover,
.quantum-company__identity h3 a:focus-visible {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.quantum-company__identity > p {
  margin: 4px 0 0;
  color: var(--text-faint);
  font-size: 0.76rem;
  line-height: 1.4;
}

.quantum-company__facts {
  margin-top: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  color: var(--text-faint);
  font: 0.65rem var(--font-mono);
}

.quantum-company__funding {
  text-align: right;
}

.quantum-company__funding strong,
.quantum-company__funding span {
  display: block;
}

.quantum-company__funding strong {
  color: var(--eyebrow);
  font: 650 1.2rem var(--font-display);
}

.quantum-company__funding span {
  margin-top: 3px;
  color: var(--text-faint);
  font: 0.58rem var(--font-mono);
  text-transform: uppercase;
}

.crm-mini__row {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 82px 36px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  border-bottom: 1px solid var(--border-light);
}

.crm-mini__row:last-child { border-bottom: 0; }

.crm-mini__row span,
.crm-mini__row small {
  color: var(--text-faint);
  font: 0.66rem var(--font-mono);
}

.crm-mini__row strong {
  color: var(--white);
  font: 650 1rem var(--font-display);
}

.crm-scorecard {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
}

.crm-scorecard div {
  padding: 18px 12px;
  border-right: 1px solid var(--border-light);
}

.crm-scorecard div:last-child { border-right: 0; }

.crm-scorecard strong,
.crm-scorecard span { display: block; }

.crm-scorecard strong {
  color: var(--eyebrow);
  font: 650 1.5rem var(--font-display);
}

.crm-scorecard span {
  margin-top: 5px;
  color: var(--text-faint);
  font: 0.64rem/1.35 var(--font-mono);
}

.crm-output-links { display: flex; gap: 12px; }

.crm-enrichment {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.crm-enrichment__header {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--border-light);
  background: var(--navy-light);
}

.crm-enrichment__header h3 { margin: 2px 0 0; font-size: 1rem; }

.crm-enrichment__header > span {
  color: var(--text-faint);
  font: 0.68rem var(--font-mono);
}

.crm-enrichment ol { margin: 0; padding: 0; list-style: none; }

.crm-row {
  padding: 17px 22px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 118px 62px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.crm-row:last-child { border-bottom: 0; }
.crm-row--review { background: var(--cookbook-accent-soft); }
.crm-row--unmatched { background: var(--navy-light); }

.crm-row__id {
  color: var(--text-faint);
  font: 0.67rem var(--font-mono);
}

.crm-row__identity h3 { margin: 0; font-size: 0.96rem; }
.crm-row__identity h3 a { color: var(--text-main); text-decoration: none; }
.crm-row__identity h3 a:hover,
.crm-row__identity h3 a:focus-visible { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.crm-row__identity p {
  margin: 4px 0 0;
  color: var(--text-faint);
  font: 0.67rem/1.45 var(--font-mono);
}

.crm-row__suggestion {
  display: inline-block;
  margin-top: 7px;
  color: var(--text-cool);
  font-size: 0.72rem;
}

.crm-row__match,
.crm-row__score { color: var(--text-cool); font-size: 0.72rem; text-align: right; }

.crm-row__match small,
.crm-row__score small {
  display: block;
  margin-top: 4px;
  color: var(--text-faint);
  font: 0.61rem var(--font-mono);
}

.crm-row__score strong {
  color: var(--eyebrow);
  font: 650 1.35rem var(--font-display);
}

.founder-mini { display: grid; }

.founder-mini__row {
  min-width: 0;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}

.founder-mini__row:last-child { border-bottom: 0; }

.founder-mini__rank,
.founder-mini__row > span:last-child {
  color: var(--cookbook-accent);
  font: 0.66rem var(--font-mono);
}

.founder-mini__row strong,
.founder-mini__row small { display: block; }
.founder-mini__row strong { color: var(--text-light); font-size: 0.84rem; }
.founder-mini__row small { margin-top: 3px; color: var(--text-faint); font: 0.62rem var(--font-mono); }

.founder-network {
  overflow: hidden;
  border: 1px solid var(--border-mid);
  border-radius: var(--cookbook-radius);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
}

.founder-network__header {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border-light);
  background: var(--navy-light);
}

.founder-network__header h3 { margin: 2px 0 0; font-size: 1.05rem; }
.founder-network__header dl { margin: 0; display: flex; gap: 24px; }
.founder-network__header dl div { text-align: right; }
.founder-network__header dt { color: var(--text-faint); font: 0.61rem var(--font-mono); }
.founder-network__header dd { margin: 4px 0 0; color: var(--eyebrow); font: 650 1.05rem var(--font-display); }

.founder-network__note {
  margin: 0;
  padding: 11px 22px;
  color: var(--text-cool);
  border-bottom: 1px solid var(--border-light);
  background: var(--cookbook-accent-soft);
  font-size: 0.74rem;
}

.founder-network__companies,
.founder-company__founders { margin: 0; padding: 0; list-style: none; }

.founder-company { padding: 20px 22px; border-bottom: 1px solid var(--border-light); }
.founder-company:last-child { border-bottom: 0; }

.founder-company__top {
  display: grid;
  grid-template-columns: 28px 42px minmax(0, 1fr) 100px;
  gap: 12px;
  align-items: center;
}

.founder-company__rank { color: var(--text-faint); font: 0.66rem var(--font-mono); }

.founder-company__logo,
.founder-edge__avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--blue);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  background: var(--navy-light);
  font: 650 0.8rem var(--font-display);
}

.founder-company__logo { width: 42px; height: 42px; border-radius: 10px; }
.founder-company__logo img,
.founder-edge__avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-company__identity h3 { margin: 0; font-size: 0.98rem; }
.founder-company__identity h3 a,
.founder-edge strong a { color: var(--text-main); text-decoration: none; }
.founder-company__identity h3 a:hover,
.founder-company__identity h3 a:focus-visible,
.founder-edge strong a:hover,
.founder-edge strong a:focus-visible { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.founder-company__identity p { margin: 4px 0 0; color: var(--text-faint); font: 0.65rem var(--font-mono); }

.founder-company__funding { text-align: right; }
.founder-company__funding strong,
.founder-company__funding span { display: block; }
.founder-company__funding strong { color: var(--eyebrow); font: 650 0.88rem var(--font-display); }
.founder-company__funding span { margin-top: 3px; color: var(--text-faint); font: 0.58rem var(--font-mono); }

.founder-company__flag {
  grid-column: 3 / -1;
  justify-self: end;
  padding: 4px 7px;
  color: var(--text-cool);
  border: 1px solid var(--border-mid);
  border-radius: 4px;
  background: var(--navy-light);
  font: 0.58rem var(--font-mono);
}

.founder-company__founders { margin: 14px 0 0 82px; }

.founder-edge {
  padding: 11px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.founder-edge__avatar { width: 34px; height: 34px; }
.founder-edge strong,
.founder-edge small { display: block; }
.founder-edge strong { font-size: 0.82rem; }
.founder-edge small { margin-top: 3px; color: var(--text-faint); font: 0.62rem/1.4 var(--font-mono); }
.founder-edge__proof { color: var(--text-cool); font: 0.6rem var(--font-mono); white-space: nowrap; }

@media (max-width: 920px) {
  .cookbook-hero__grid,
  .cookbook-index-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookbook-hero__grid > * {
    min-width: 0;
  }

  .cookbook-hero h1 {
    max-width: 14ch;
  }

  .cookbook-terminal {
    width: 100%;
    max-width: 620px;
    min-width: 0;
  }

  .cookbook-layout {
    grid-template-columns: minmax(0, var(--cookbook-reading));
  }

  .watchlist-snapshot__signals {
    grid-template-columns: 1fr;
  }

  .company-brief__metrics,
  .company-brief__facts,
  .company-brief__evidence {
    grid-template-columns: 1fr 1fr;
  }

  .similar-company {
    grid-template-columns: 28px 46px minmax(0, 1fr);
  }

  .investor-fit__item {
    grid-template-columns: 28px 46px minmax(0, 1fr);
  }

  .quantum-pulse__summary {
    grid-template-columns: 1fr 1fr;
  }

  .quantum-pulse__summary > div:nth-child(2) {
    border-right: 0;
  }

  .quantum-pulse__summary > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }

  .quantum-company {
    grid-template-columns: 28px 46px minmax(0, 1fr);
  }

  .next-round-company {
    grid-template-columns: 28px 46px minmax(0, 1fr);
  }

  .next-round-company__signal {
    grid-column: 3;
    text-align: left;
  }

  .next-round-company__signal strong,
  .next-round-company__signal span {
    display: inline;
  }

  .next-round-company__signal span {
    margin-left: 5px;
  }

  .quantum-company__funding {
    grid-column: 3;
    text-align: left;
  }

  .quantum-company__funding strong,
  .quantum-company__funding span {
    display: inline;
  }

  .quantum-company__funding span {
    margin-left: 5px;
  }

  .similar-company__overlap {
    grid-column: 3;
    justify-content: flex-start;
  }

  .investor-fit__match {
    grid-column: 3;
    text-align: left;
  }

  .investor-fit__match strong,
  .investor-fit__match span {
    display: inline;
  }

  .investor-fit__match span {
    margin-left: 5px;
  }

  .crm-scorecard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .crm-scorecard div:nth-child(3) { border-right: 0; }
  .crm-scorecard div:nth-child(-n + 3) { border-bottom: 1px solid var(--border-light); }

  .crm-row {
    grid-template-columns: 72px minmax(0, 1fr) 110px;
  }

  .crm-row__score {
    grid-column: 2;
    text-align: left;
  }

  .crm-row__score strong,
  .crm-row__score small { display: inline; }

  .cookbook-toc {
    display: none;
  }
}

@media (max-width: 640px) {
  .cookbook-shell {
    width: min(calc(100% - 28px), var(--cookbook-max));
  }

  .cookbook-hero {
    padding-top: 54px;
  }

  .cookbook-hero__grid {
    gap: 42px;
  }

  .cookbook-hero h1,
  .cookbook-index-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .cookbook-statline {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .cookbook-statline div,
  .cookbook-statline div:first-child,
  .cookbook-statline div:last-child {
    padding: 0;
    border: 0;
  }

  .cookbook-layout {
    padding-top: 54px;
  }

  .cookbook-article section {
    padding-bottom: 58px;
  }

  .cookbook-filter-table thead {
    display: none;
  }

  .cookbook-filter-table,
  .cookbook-filter-table tbody,
  .cookbook-filter-table tr,
  .cookbook-filter-table td {
    display: block;
  }

  .cookbook-filter-table tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .cookbook-filter-table td {
    padding: 4px 0;
    border: 0;
  }

  .company-result {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .company-result__score {
    grid-column: 2;
    text-align: left;
  }

  .company-result__score strong,
  .company-result__score span {
    display: inline;
  }

  .company-result__score span {
    margin-left: 6px;
  }

  .watchlist-baseline {
    grid-template-columns: 1fr;
  }

  .watchlist-baseline div,
  .watchlist-baseline div:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .watchlist-baseline div:last-child {
    border-bottom: 0;
  }

  .watchlist-company {
    grid-template-columns: 42px minmax(0, 1fr) 62px;
  }

  .watchlist-company__metric:last-child {
    display: none;
  }

  .company-brief__header {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .company-brief__logo {
    width: 50px;
    height: 50px;
  }

  .company-brief__rating {
    grid-column: 2;
    text-align: left;
  }

  .company-brief__rating strong {
    display: inline;
    margin-right: 5px;
  }

  .company-brief__metrics,
  .company-brief__facts,
  .company-brief__evidence {
    grid-template-columns: 1fr;
  }

  .company-brief__metrics > div,
  .company-brief__facts > section:first-child,
  .company-brief__evidence > section:nth-child(odd) {
    border-right: 0;
  }

  .company-brief__metrics > div,
  .company-brief__facts > section {
    border-bottom: 1px solid var(--border-light);
  }

  .company-brief__metrics > div:last-child,
  .company-brief__facts > section:last-child {
    border-bottom: 0;
  }

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

  .similar-landscape__anchor {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .similar-landscape__anchor-label,
  .similar-landscape__tags {
    grid-column: 2;
    justify-content: flex-start;
  }

  .investor-shortlist__target {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .investor-shortlist__tags {
    grid-column: 2;
    justify-content: flex-start;
  }

  .similar-company {
    padding: 16px;
    grid-template-columns: 24px 42px minmax(0, 1fr);
    gap: 10px;
  }

  .similar-company__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .investor-fit__item {
    padding: 16px;
    grid-template-columns: 24px 42px minmax(0, 1fr);
    gap: 10px;
  }

  .investor-fit__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .quantum-pulse__section-heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .quantum-pulse__section-heading > span {
    white-space: normal;
  }

  .quantum-company {
    padding: 16px;
    grid-template-columns: 24px 42px minmax(0, 1fr);
    gap: 10px;
  }

  .next-round-queue__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .next-round-queue__thresholds {
    justify-content: flex-start;
  }

  .next-round-company {
    padding: 16px;
    grid-template-columns: 24px 42px minmax(0, 1fr);
    gap: 10px;
  }

  .next-round-company__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .quantum-company__facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .crm-scorecard { grid-template-columns: 1fr 1fr; }

  .crm-scorecard div,
  .crm-scorecard div:nth-child(3) {
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .crm-scorecard div:nth-child(even) { border-right: 0; }
  .crm-scorecard div:last-child { border-bottom: 0; }

  .crm-enrichment__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .crm-row {
    padding: 16px;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 10px;
  }

  .crm-row__match {
    grid-column: 2;
    text-align: left;
  }

  .crm-row__match small,
  .crm-row__score small {
    display: inline;
    margin-left: 5px;
  }

  .founder-network__header { align-items: flex-start; flex-direction: column; }
  .founder-network__header dl { width: 100%; justify-content: space-between; }
  .founder-network__header dl div { text-align: left; }

  .founder-company__top { grid-template-columns: 24px 42px minmax(0, 1fr); }
  .founder-company__funding { grid-column: 3; text-align: left; }
  .founder-company__funding strong,
  .founder-company__funding span { display: inline; }
  .founder-company__funding span { margin-left: 5px; }
  .founder-company__flag { grid-column: 3; justify-self: start; }
  .founder-company__founders { margin-left: 0; }

  .quantum-pulse__chart,
  .quantum-pulse__companies {
    padding: 18px 16px;
  }

  .quantum-pulse__companies {
    padding-bottom: 0;
  }

  .quantum-pulse__companies ol {
    margin-right: -16px;
    margin-left: -16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cookbook-button {
    transition: none;
  }
}
