@font-face {
  font-family: Inter;
  src: url(/fonts/inter.woff2) format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Rethink Sans";
  src: url(/fonts/rethink-sans-700.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #14161a;
  --secondary: #616874;
  --rule: #dedfe3;
  --paper: #fff;
  --wash: #f5f6f7;
  --blue: #145ec0;
  --focus: #145ec0;
  --page-gutter: 3.90625vw;
  --display: "Rethink Sans",Inter,sans-serif;
  --body: Inter,sans-serif;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
  scrollbar-color: #aeb3bd #f5f6f7;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.5 var(--body);
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #d9e8fc;
  color: #14161a;
}
a {
  color: var(--blue);
  text-decoration: none;
  text-underline-offset: 4px;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
input {
  caret-color: var(--blue);
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p {
  color: var(--secondary);
}
h1,
h2,
h3 {
  letter-spacing: -.035em;
}
h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}
h3 {
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
}
.wrap {
  width: calc(100% - var(--page-gutter)*2);
  max-width: 1416px;
  margin-inline: auto;
}
.site-header {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--rule);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -.04em;
  color: var(--ink);
  white-space: nowrap;
}
.site-header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.site-header nav a {
  font-size: 17px;
  color: var(--secondary);
}
.site-header nav a[aria-current=page] {
  color: var(--ink);
  text-decoration: underline;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: var(--ink);
  color: white;
  padding: 10px 18px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.hero {
  padding: 35px 0 25px;
  border-bottom: 1px solid var(--rule);
}
.hero h1 {
  font: 700 clamp(44px,4.6875vw,72px)/1 var(--display);
  letter-spacing: -.025em;
  max-width: 1000px;
}
.hero > p {
  font-size: 24px;
  line-height: 31px;
  margin-top: 16px;
  letter-spacing: -.025em;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 5px;
  color: white;
  font-size: 16px;
  line-height: 24px;
  font-weight: 650;
  padding: 11px 22px;
  min-height: 48px;
}
.button:hover {
  background: #30343b;
  text-decoration: none;
}
.underlined {
  text-decoration: underline;
}
.company-grid {
  display: grid;
  grid-template-columns: minmax(0,3fr) minmax(280px,1.04fr);
  gap: 28px;
  padding: 27px 0 31px;
}
.products > h2 {
  margin: 1px 0 17px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 30px;
}
.product-image {
  display: block;
  aspect-ratio: 503/328;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.product h3 {
  margin-top: 10px;
}
.product p {
  margin-top: 3px;
  line-height: 26px;
  font-size: 17px;
  letter-spacing: -.025em;
}
.product .text-link {
  margin-top: 6px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 26px;
  min-height: 28px;
}
.arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.45;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s cubic-bezier(.16,1,.3,1);
}
.text-link:hover .arrow {
  transform: translateX(3px);
}
.side-rail {
  border-left: 1px solid var(--rule);
  padding: 6px 0 8px 32px;
}
.side-rail h2 {
  font-size: 28px;
}
.side-rail p {
  margin-top: 7px;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -.03em;
}
.tool-links {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
.tool-links li + li {
  margin-top: 12px;
}
.guide-feature {
  border-top: 1px solid var(--rule);
  margin-top: 42px;
  padding-top: 31px;
}
.featured-guides {
  list-style: none;
  padding: 0;
  margin: 0;
}
.guide-feature h3 {
  font-size: 17px;
  letter-spacing: -.035em;
  line-height: 24px;
  margin-top: 22px;
}
.guide-feature h3 a {
  color: var(--ink);
}
.guide-feature p {
  margin-top: 3px;
}
.guide-feature > .text-link {
  margin-top: 22px;
}
.maker {
  border-top: 1px solid var(--rule);
  padding: 17px 0 12px;
}
.maker h2 {
  font-size: 25px;
  line-height: 32px;
}
.maker > div {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-top: 3px;
}
.maker p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -.02em;
}

[hidden] {
  display: none!important;
}
.subpage {
  padding-top: 46px;
  padding-bottom: 64px;
  min-height: calc(100vh - 160px);
}
.page-intro {
  max-width: 860px;
  margin-bottom: 46px;
}
.page-intro h1,
.article-header h1 {
  font: 700 clamp(38px,4vw,60px)/1.08 var(--display);
  letter-spacing: -.03em;
  text-wrap: balance;
}
.page-intro > p {
  font-size: 21px;
  line-height: 1.55;
  margin-top: 20px;
  max-width: 66ch;
}
.page-intro > .text-link {
  margin-top: 18px;
}
.catalog-controls {
  display: flex;
  gap: 24px;
  max-width: 900px;
}
.catalog-controls > div:first-child {
  flex: 1;
}
.catalog-controls > div:last-child {
  min-width: 220px;
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
input,
select {
  width: 100%;
  border: 1px solid #89919e;
  background: white;
  color: var(--ink);
  border-radius: 4px;
  padding: 12px;
  min-height: 48px;
}
input::placeholder {
  color: var(--secondary);
  opacity: 1;
}
.result-count {
  margin: 22px 0 12px;
  font-size: 15px;
}
.catalog-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) 185px;
  gap: 40px;
  border-top: 1px solid var(--rule);
  padding: 30px 0;
  scroll-margin-top: 30px;
}
.catalog-row h2 {
  font-size: 26px;
}
.catalog-row p {
  max-width: 70ch;
  margin-top: 10px;
}
.catalog-row:target {
  background: var(--wash);
}
.output-note {
  font-size: 15px;
}
.category-label {
  display: block;
  font-size: 14px;
  color: var(--secondary);
  margin-top: 12px;
}
.row-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding-top: 3px;
}
.closing-note {
  border-top: 1px solid var(--rule);
  margin-top: 38px;
  padding-top: 30px;
}
.closing-note h2 {
  font-size: 26px;
}
.closing-note p {
  max-width: 68ch;
  margin-top: 12px;
}
.closing-note .text-link {
  margin-top: 16px;
}
.text-link + .text-link {
  margin-left: 22px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  padding: 22px 0 30px;
  font-size: 15px;
}
.empty-state {
  padding: 42px 0;
}
.empty-state p {
  margin: 12px 0 20px;
}
.guide-list-item {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--rule);
  padding: 30px 0;
}
.guide-list-item h2 {
  font-size: 28px;
  max-width: 620px;
}
.guide-list-item h2 a {
  color: var(--ink);
}
.guide-list-item p {
  max-width: 68ch;
  margin-top: 12px;
}
.breadcrumb {
  display: inline-block;
  font-size: 16px;
  margin-bottom: 28px;
  text-decoration: underline;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0,760px) 240px;
  gap: clamp(40px,7vw,110px);
}
.article-header > p {
  font-size: 21px;
  line-height: 1.6;
  margin-top: 24px;
}
.article-header .byline {
  font-size: 14px;
  margin-top: 18px;
}
.reading {
  min-width: 0;
}
.reading > section {
  margin-top: 44px;
}
.reading h2 {
  font-size: 28px;
  letter-spacing: -.025em;
}
.reading section > p {
  font-size: 18px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 72ch;
}
.reading p a {
  text-decoration: underline;
}
.reading code {
  font-family: ui-monospace,monospace;
  font-size: .86em;
  overflow-wrap: anywhere;
}
.code-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--wash);
  padding: 12px 16px;
  border: 1px solid var(--rule);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  margin-top: 24px;
  font-size: 14px;
}
.copy-button {
  background: white;
  border: 1px solid #89919e;
  border-radius: 4px;
  color: var(--ink);
  padding: 8px 12px;
  font-size: 14px;
  min-height: 40px;
}
.copy-button:hover {
  background: #e9edf2;
}
pre {
  margin: 0;
  padding: 20px;
  background: var(--wash);
  border: 1px solid var(--rule);
  overflow: auto;
  line-height: 1.6;
  font-size: 16px;
  tab-size: 2;
}
.reading pre code {
  font-size: inherit;
  overflow-wrap: normal;
}
.copy-status {
  font-size: 14px!important;
  min-height: 24px;
}
.article-toc {
  align-self: start;
  position: sticky;
  top: 30px;
  margin-top: 9px;
  border-left: 1px solid var(--rule);
  padding-left: 28px;
}
.article-toc h2 {
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.article-toc nav a {
  display: block;
  margin-top: 12px;
  font-size: 16px;
}
.article-toc > div {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.article-toc p {
  font-size: 16px;
}
.article-toc .text-link {
  font-size: 16px;
  margin-top: 10px;
}
.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  margin: 24px 0 10px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  text-align: left;
}
caption {
  text-align: left;
  color: var(--secondary);
  font-size: 14px;
  padding-bottom: 12px;
}
th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--rule);
  white-space: nowrap;
}
th {
  background: var(--wash);
  font-weight: 600;
}
@media (min-width:1600px) {
  :root {
    --page-gutter: 60px;
  }
}
@media (max-width:1100px) {
  .company-grid {
    grid-template-columns: minmax(0,1fr);
    gap: 32px;
  }
  .side-rail {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 28px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .guide-feature {
    border-top: 0;
    border-left: 1px solid var(--rule);
    margin: 0;
    padding: 0 0 0 28px;
  }
  .product p {
    min-height: 52px;
  }
  .maker {
    padding-bottom: 28px;
  }
  .maker > div {
    flex-wrap: wrap;
    gap: 8px 24px;
  }
  .article-layout {
    grid-template-columns: minmax(0,1fr) 220px;
    gap: 36px;
  }
}
@media (max-width:700px) {
  :root {
    --page-gutter: 24px;
  }
  .site-header {
    padding: 18px 0;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }
  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }
  .site-header nav a {
    font-size: 15px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
  }
  .hero {
    padding: 30px 0;
  }
  .hero h1 {
    font-size: clamp(36px,7.8vw,52px);
    line-height: 1.04;
    letter-spacing: -.03em;
  }
  .hero h1 br {
    display: none;
  }
  .hero > p {
    font-size: 19px;
    line-height: 1.5;
    margin-top: 20px;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 18px 22px;
    margin-top: 24px;
  }
  .company-grid {
    padding-top: 30px;
    padding-bottom: 28px;
  }
  .products > h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .product-grid {
    grid-template-columns: minmax(0,1fr);
    gap: 32px;
  }
  .product h3 {
    font-size: 24px;
    margin-top: 14px;
  }
  .product p {
    min-height: 0;
    margin-top: 6px;
    letter-spacing: -.015em;
  }
  .product .text-link {
    margin-top: 10px;
  }
  .side-rail {
    grid-template-columns: minmax(0,1fr);
    gap: 30px;
  }
  .guide-feature {
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 28px 0 0;
  }
  .guide-feature h3 {
    margin-top: 16px;
    font-size: 19px;
  }
  .side-rail .text-link,
  .product .text-link {
    min-height: 36px;
  }
  .maker h2 {
    font-size: 24px;
    line-height: 1.25;
  }
  .maker > div {
    display: block;
    margin-top: 12px;
  }
  .maker .text-link {
    margin-top: 10px;
  }
  .subpage {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .page-intro {
    margin-bottom: 32px;
  }
  .page-intro h1,
  .article-header h1 {
    font-size: 40px;
  }
  .page-intro > p,
  .article-header > p {
    font-size: 19px;
  }
  .catalog-controls {
    display: block;
  }
  .catalog-controls > div + div {
    margin-top: 16px;
  }
  .catalog-row {
    grid-template-columns: minmax(0,1fr);
    gap: 18px;
    padding: 26px 0;
  }
  .row-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
  .guide-list-item {
    grid-template-columns: minmax(0,1fr);
    gap: 20px;
  }
  .guide-list-item h2 {
    font-size: 26px;
  }
  .article-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .article-toc {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--rule);
    padding: 24px 0 0;
    order: 1;
  }
  .reading section > p {
    font-size: 17px;
  }
  .reading h2 {
    font-size: 25px;
  }
  .article-header .byline {
    font-size: 14px;
  }
  .reading pre {
    font-size: 14px;
    padding: 16px;
  }
  .site-footer {
    gap: 12px;
    font-size: 14px;
  }
  .closing-note h2 {
    font-size: 24px;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  .arrow {
    transition: none;
  }
  .text-link:hover .arrow {
    transform: none;
  }
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}
.prose {
  max-width: 780px;
}
.prose h1 {
  font: 700 clamp(38px,4vw,60px)/1.08 var(--display);
}
.prose h2 {
  margin-top: 36px;
  font-size: 26px;
}
.prose p {
  margin-top: 18px;
  line-height: 1.7;
}
.prose .updated {
  font-size: 14px;
}
.prose p a {
  text-decoration: underline;
}

.wordmark img {
  display: block;
  flex-shrink: 0;
  border-radius: 5px;
}
