:root {
  --paper: #f8fafc;
  --ink: #101828;
  --accent: #345cf6;
  --muted: #5e6b80;
  --line: #e1e7f0;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: var(--accent);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #7597ff;
  outline-offset: 5px;
}
p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 22px;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(50px, 5vw, 68px);
  line-height: 1.12;
}
h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.18;
}
h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
}
em {
  font-style: normal;
  font-weight: inherit;
  color: var(--accent);
}
.shell {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 23px;
  letter-spacing: -0.9px;
  font-weight: 800;
}
.brand-dot {
  color: var(--accent);
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: var(--accent);
  color: white;
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9px;
  box-shadow: 0 4px 9px #345cf61a;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #2649d6;
  color: white;
  transform: translateY(-1px);
}
.button-small {
  padding: 12px 17px;
  gap: 14px;
  font-size: 12px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 10;
  background: var(--accent);
  color: white;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 58px;
  padding-top: 76px;
  padding-bottom: 76px;
  align-items: center;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.09em;
  font-weight: 700;
  display: block;
  color: var(--accent);
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 11px;
  border: 1px solid #dce4ff;
  background: #eef2ff;
  border-radius: 7px;
  margin-bottom: 25px;
  font-size: 10px;
  letter-spacing: 0.055em;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-description {
  max-width: 450px;
  margin: 25px 0 29px;
  font-size: 16px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #738197;
  font-size: 11px;
  margin-top: 25px;
}
.catalog {
  background: #101a2d;
  color: #dae4f6;
  border: 1px solid #243149;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 22px 55px #15264717,
    0 0 0 7px #eaf0fb;
}
.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 23px;
  font-size: 11px;
  border-bottom: 1px solid #273349;
}
.catalog-top > span:last-child {
  color: #8194b1;
  font: 9px var(--mono);
  letter-spacing: 0.06em;
}
.catalog-body {
  padding: 22px;
}
.document-card {
  background: #17243a;
  border: 1px solid #2a3952;
  border-radius: 10px;
  overflow: hidden;
}
.document-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border-bottom: 1px solid #293750;
  font: 10px var(--mono);
}
.document-icon {
  font-size: 16px;
  color: #85a4fc;
}
.document-status {
  margin-left: auto;
  font-size: 8px;
  padding: 4px 7px;
  color: #72ddb9;
  background: #1c3c3d;
  border-radius: 4px;
}
.document-card pre {
  padding: 17px 20px;
  margin: 0;
  line-height: 1.8;
  font-size: 12px;
}
.muted {
  color: #8a9ebc;
}
.code-key {
  color: #a5bdff;
}
.code-value {
  color: #8fe0bd;
}
.code-bool {
  color: #d6b6ff;
}
.connector {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font: 9px var(--mono);
}
.connector:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: #42587e;
}
.connector span {
  position: relative;
  background: #101a2d;
  padding: 5px 10px;
  color: #9fb3d3;
}
.file-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.file-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border: 1px solid #30405b;
  border-radius: 8px;
  background: #19263d;
  font-size: 12px;
  font-weight: 600;
}
.file-tag {
  grid-column: 1;
  grid-row: 2;
  font: 8px var(--mono);
  color: #899dbd;
}
.file-row > span:last-child {
  grid-column: 2;
  grid-row: 1;
  color: #7d9ffc;
}
.catalog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 23px;
  border-top: 1px solid #273349;
  color: #8194b1;
  font: 8px var(--mono);
  letter-spacing: 0.035em;
}
.catalog-bottom > span:first-child {
  color: #81a3ff;
  font-size: 16px;
}
.capabilities-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.capabilities-strip .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 23px;
  font-size: 12px;
  font-weight: 600;
  color: #54637c;
}
.capabilities-strip [aria-hidden] {
  color: #aab9d3;
}
.section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}
.section-heading .eyebrow {
  margin-bottom: 15px;
}
.section-heading p {
  max-width: 360px;
  font-size: 14px;
  margin: 0;
}
.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.provider-card {
  display: flex;
  flex-direction: column;
  padding: 23px 21px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.provider-card:hover {
  border-color: #a7bafd;
  box-shadow: 0 8px 22px #14295408;
  color: var(--ink);
}
.provider-card-top {
  display: flex;
  margin-bottom: 24px;
}
.provider-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #edf2ff;
  color: #4569e9;
  border-radius: 10px;
  font-size: 26px;
}
.provider-card p {
  font-size: 13px;
  margin: 14px 0 26px;
}
.provider-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  font-size: 9px;
  letter-spacing: 0.045em;
  font-weight: 700;
  color: #657690;
}
.section-link {
  margin-top: 25px;
}
.code-section {
  background: #eef2f8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 76px 0;
}
.code-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}
.code-grid .eyebrow {
  margin-bottom: 16px;
}
.code-grid h2 {
  margin-bottom: 24px;
}
.code-grid p {
  font-size: 14px;
  max-width: 365px;
}
.code-footnote {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 33px;
}
.code-footnote > span {
  border: 1px solid #cbd7eb;
  border-radius: 8px;
  padding: 10px;
  color: var(--accent);
  font: 12px var(--mono);
}
.code-footnote p {
  font-size: 11px;
  margin: 0;
}
.code-footnote strong {
  font-weight: 500;
}
.code-sample {
  background: #101a2d;
  color: #dce6f7;
  border: 1px solid #27344a;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
}
.code-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 17px;
  border-bottom: 1px solid #27344a;
  color: #a5b6d1;
  font: 9px var(--mono);
  letter-spacing: 0.06em;
}
.copy-button {
  border: 1px solid #394b68;
  background: #1c2b44;
  border-radius: 5px;
  color: #d7e3f7;
  font: 10px var(--sans);
  cursor: pointer;
  padding: 5px 8px;
}
.copy-button:hover {
  background: #2c4062;
}
.code-sample pre {
  overflow: auto;
  margin: 0;
  padding: 21px;
  font: 11px/1.95 var(--mono);
  color: #cadbf4;
}
.copy-status {
  display: block;
  font-size: 11px;
  padding: 0 20px 12px;
}
.copy-status:empty {
  display: none;
}
code {
  font-family: var(--mono);
  font-size: 0.87em;
}
pre code {
  font: inherit;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.feature-grid > div {
  border-top: 2px solid var(--line);
  padding-top: 25px;
}
.feature-number {
  display: block;
  color: var(--accent);
  font: 22px var(--mono);
  margin: 0 0 22px;
}
.feature-grid h3 {
  margin-bottom: 15px;
}
.feature-grid p {
  font-size: 14px;
}
.performance-section {
  padding: 76px 0;
  background: #101a2d;
  color: #eef3ff;
}
.benchmark-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 36px;
}
.performance-section .eyebrow {
  color: #8eaaff;
  margin-bottom: 15px;
}
.performance-section em {
  color: #91aeff;
}
.benchmark-heading > div:last-child {
  max-width: 440px;
}
.performance-section p {
  color: #adbed7;
  font-size: 14px;
}
.performance-section .text-link {
  color: #b4c8ff;
}
.performance-section .text-link:hover {
  color: #fff;
}
.benchmark-context {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #aabddb;
  font-size: 11px;
  margin-bottom: 13px;
}
.benchmark-context > span:first-child {
  color: #e4edff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}
caption {
  padding: 16px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 650;
  color: #516580;
  background: #f0f4fa;
}
th,
td {
  padding: 18px;
  min-width: 145px;
  border-top: 1px solid var(--line);
}
th {
  font-weight: 600;
}
thead th {
  background: #f1f5fb;
  color: #3e5271;
  border-top: 0;
}
tbody th {
  font-size: 12px;
}
td {
  color: var(--muted);
}
.benchmark-table {
  background: #142139;
  border-color: #2b3c57;
}
.benchmark-table table {
  font-size: 14px;
}
.benchmark-table th,
.benchmark-table td {
  border-color: #2b3c57;
  padding: 19px 24px;
}
.benchmark-table th:first-child {
  min-width: 260px;
  text-align: left;
}
.benchmark-table thead th {
  background: #1b2c46;
  color: #d3e0f5;
  font-size: 13px;
}
.benchmark-table th small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #90a5c6;
  margin-top: 4px;
}
.benchmark-table tbody th {
  color: #c4d2e8;
  font-weight: 500;
}
.benchmark-table td {
  color: #a8bddb;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}
.benchmark-table td,
.benchmark-table th:not(:first-child) {
  text-align: right;
  min-width: 150px;
}
.benchmark-table .librarian-result {
  background: #234181;
  color: #fff;
  font-weight: 700;
}
.benchmark-table thead .librarian-result {
  background: #2e50a0;
  color: #fff;
}
.benchmark-table tbody tr:hover {
  background: #1b2d47;
}
.allocation-details {
  margin-top: 20px;
  border: 1px solid #2b3c57;
  border-radius: 10px;
  padding: 0 20px;
}
.allocation-details summary {
  cursor: pointer;
  padding: 19px 0;
  font-size: 13px;
  font-weight: 600;
  color: #d6e3f8;
}
.allocation-details summary span {
  float: right;
  font-size: 11px;
  font-weight: 400;
  color: #93aaca;
}
.allocation-details .benchmark-table {
  margin-bottom: 15px;
}
.benchmark-methodology {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 24px;
}
.performance-section .benchmark-note {
  font-size: 11px;
  line-height: 1.85;
  color: #91a6c6;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  padding: 0;
  border: 0;
}
.closing {
  text-align: center;
  padding-top: 68px;
  padding-bottom: 76px;
  border-top: 1px solid var(--line);
}
.closing h2 {
  margin: 19px 0 29px;
  font-size: 49px;
}
.closing .hero-actions {
  justify-content: center;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-footer .brand {
  font-size: 20px;
}
.site-footer p {
  margin: 12px 0 0;
  font-size: 11px;
}
.footer-links {
  display: flex;
  gap: 22px;
  font-size: 11px;
  font-weight: 600;
  color: #5f7190;
}
.page-intro {
  padding-top: 64px;
  padding-bottom: 55px;
}
.page-intro .eyebrow {
  margin-bottom: 22px;
}
.page-intro h1 {
  font-size: 64px;
  margin-bottom: 24px;
}
.page-intro p {
  max-width: 600px;
}
.docs-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 60px;
  padding-bottom: 65px;
}
.docs-layout aside nav {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 18px;
  font-size: 12px;
}
.docs-layout aside .eyebrow {
  margin-bottom: 8px;
}
.docs-content section {
  margin-bottom: 55px;
  scroll-margin-top: 30px;
}
.docs-content h2 {
  font-size: 34px;
  margin: 16px 0 20px;
}
.docs-content p {
  font-size: 14px;
}
.docs-content .code-sample pre {
  font-size: 12px;
}
.callout {
  background: #edf2ff;
  border: 1px solid #d9e2ff;
  border-radius: 10px;
  padding: 23px;
  margin: 27px 0;
}
.callout strong {
  font-size: 14px;
}
.callout p {
  margin: 10px 0 0;
}
.resource-list {
  display: grid;
}
.resource-list a {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.table-note {
  font-size: 11px;
  line-height: 1.8;
  margin-top: 16px;
}
.provider-details > section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 20px;
}
.provider-details h2 {
  margin: 16px 0 22px;
}
.provider-details p {
  font-size: 14px;
}
.provider-details .table-note {
  font-size: 11px;
}
.provider-ending {
  padding-top: 56px;
  padding-bottom: 68px;
}
.provider-ending h2 {
  font-size: 35px;
  margin-bottom: 22px;
}
.provider-ending p {
  max-width: 740px;
  font-size: 14px;
}
.provider-ending .button {
  margin-top: 5px;
}
@media (max-width: 1050px) {
  .shell {
    padding-left: 30px;
    padding-right: 30px;
  }
  .site-header nav {
    gap: 20px;
  }
  .hero {
    gap: 35px;
  }
  h1 {
    font-size: 56px;
  }
  .catalog-body {
    padding: 18px;
  }
  .provider-card {
    padding: 20px 16px;
  }
  .provider-card h3 {
    font-size: 19px;
  }
  .code-grid,
  .provider-details > section {
    gap: 35px;
  }
  .benchmark-heading {
    gap: 40px;
  }
  .benchmark-heading > div:last-child {
    max-width: 360px;
  }
}
@media (max-width: 760px) {
  .shell {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-header {
    height: 76px;
  }
  .site-header .brand {
    font-size: 21px;
  }
  .site-header nav {
    gap: 16px;
    font-size: 11px;
  }
  .nav-performance,
  .nav-source {
    display: none;
  }
  .button-small {
    padding: 11px 13px;
    gap: 8px;
    font-size: 11px;
  }
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 45px;
    padding-bottom: 46px;
    gap: 39px;
  }
  .hero h1 {
    font-size: clamp(39px, 7.5vw, 56px);
  }
  .hero-description {
    max-width: 520px;
    font-size: 15px;
  }
  .catalog {
    max-width: 540px;
    width: 100%;
    margin: auto;
  }
  .hero-actions {
    gap: 22px;
  }
  .capabilities-strip .shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    font-size: 10px;
  }
  .capabilities-strip [aria-hidden] {
    display: none;
  }
  .section {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading p {
    margin-top: 20px;
  }
  .provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .provider-card {
    padding: 20px 16px 16px;
  }
  .provider-card p {
    font-size: 12px;
  }
  .provider-card h3 {
    font-size: 18px;
  }
  .provider-card-bottom {
    font-size: 8px;
  }
  .code-section {
    padding: 52px 0;
  }
  .code-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }
  .code-grid p {
    max-width: none;
  }
  .code-footnote {
    display: none;
  }
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .feature-grid > div {
    padding-top: 23px;
  }
  .feature-number {
    margin-bottom: 17px;
  }
  .performance-section {
    padding: 52px 0;
  }
  .benchmark-heading {
    display: block;
    margin-bottom: 26px;
  }
  .benchmark-heading h2 {
    margin-bottom: 22px;
  }
  .benchmark-heading > div:last-child {
    max-width: none;
  }
  .benchmark-context {
    align-items: start;
    flex-direction: column;
    gap: 5px;
    font-size: 10px;
  }
  .benchmark-table th,
  .benchmark-table td {
    padding: 17px 15px;
  }
  .benchmark-table th:first-child {
    min-width: 190px;
    font-size: 11px;
  }
  .benchmark-table td,
  .benchmark-table th:not(:first-child) {
    min-width: 116px;
    font-size: 12px;
  }
  .allocation-details {
    padding: 0 13px;
  }
  .allocation-details summary {
    font-size: 12px;
  }
  .allocation-details summary span {
    display: block;
    float: none;
    padding-left: 16px;
    margin-top: 7px;
  }
  .benchmark-methodology {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 22px;
  }
  .closing {
    padding-top: 52px;
    padding-bottom: 55px;
  }
  .closing h2 {
    font-size: 35px;
  }
  .site-footer {
    align-items: start;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
    font-size: 10px;
  }
  .page-intro {
    padding-top: 43px;
    padding-bottom: 36px;
  }
  .page-intro h1 {
    font-size: 45px;
  }
  .page-intro p {
    font-size: 14px;
  }
  .docs-layout {
    display: block;
    padding-bottom: 20px;
  }
  .docs-layout aside {
    margin-bottom: 34px;
  }
  .docs-layout aside nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 11px;
  }
  .docs-layout aside .eyebrow {
    width: 100%;
    margin: 0;
  }
  .docs-content h2 {
    font-size: 29px;
  }
  .docs-content .code-sample pre {
    font-size: 11px;
  }
  .provider-details > section {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 42px 0;
  }
  .provider-ending h2 {
    font-size: 29px;
  }
}
@media (max-width: 380px) {
  .shell {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .button {
    padding: 14px 17px;
    gap: 16px;
    font-size: 12px;
  }
  .button-small {
    padding: 10px;
    gap: 8px;
    font-size: 10px;
  }
  .site-header nav {
    gap: 10px;
  }
  .text-link {
    font-size: 12px;
  }
  .catalog-body {
    padding: 14px;
  }
  .catalog-top,
  .catalog-bottom {
    padding-left: 17px;
    padding-right: 17px;
  }
  .file-row {
    padding: 12px;
    font-size: 11px;
  }
  .provider-card {
    padding: 17px 13px;
  }
  .site-footer .brand {
    font-size: 18px;
  }
  .site-footer p {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 760px) {
  .benchmark-table {
    overflow: hidden;
  }
  .benchmark-table table,
  .benchmark-table tbody {
    display: block;
  }
  .benchmark-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .benchmark-table tbody tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #2b3c57;
  }
  .benchmark-table tbody tr:first-child {
    border-top: 0;
  }
  .benchmark-table tbody th:first-child {
    grid-column: 1 / -1;
    min-width: 0;
    padding: 15px 13px 12px;
    border: 0;
    font-size: 12px;
    background: #1b2c46;
  }
  .benchmark-table td {
    min-width: 0;
    text-align: left;
    padding: 12px 10px 15px;
    font-size: 11px;
    border: 0;
  }
  .benchmark-table td::before {
    content: attr(data-engine);
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #b6c7e5;
  }
  .benchmark-table td.librarian-result::before {
    color: #e2ebff;
  }
  .allocation-details .benchmark-table td {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 10px;
  }
}
