@font-face {
  font-family: Instrument;
  src: url("/assets/fonts/instrument-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url("/assets/fonts/ibm-plex-mono-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #f8f9fb;
  --white: #fff;
  --ink: #172334;
  --muted: #616c7c;
  --faint: #758195;
  --line: #dfe4ec;
  --blue: #245fec;
  --blue-dark: #174bca;
  --blue-soft: #edf3ff;
  --navy: #111f32;
  --mono: Plex, monospace;
  --radius: 12px;
  color-scheme: light;
  font-family: Instrument, sans-serif;
  font-synthesis: none;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body,
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
  flex-shrink: 0;
}
button {
  color: inherit;
}
::selection {
  background: #cdddff;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
  border-radius: 3px;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 20px;
  height: 20px;
}
.eyebrow {
  font: 400 11px/1.6 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono {
  font: 400 11px/1.8 var(--mono);
}
h1,
h2,
h3 {
  font-weight: 550;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(52px, 6.55vw, 88px);
  line-height: 1.04;
}
h2 {
  font-size: clamp(34px, 3.75vw, 50px);
  line-height: 1.13;
}
h3 {
  font-size: 23px;
  line-height: 1.25;
}
p {
  line-height: 1.65;
}
p + p {
  margin-top: 16px;
}
.skip-link {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 20px;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #31765f;
  flex-shrink: 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -1.7px;
  font-weight: 650;
  line-height: 1;
}
.brand img {
  width: 34px;
  height: 34px;
}
.brand-period {
  color: var(--blue);
}
.site-header {
  height: 84px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 249, 251, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 500;
  margin-left: 60px;
}
.desktop-nav a {
  padding: 12px 0;
  color: var(--muted);
  transition: color 0.18s;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current] {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.version-tag {
  font: 10px var(--mono);
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 6px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 16px 22px;
  min-height: 54px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.2;
  box-shadow: 0 2px 2px #11274b09;
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: var(--blue-dark);
  box-shadow: 0 5px 15px #1c4cb822;
  transform: translateY(-2px);
}
.button-small {
  min-height: 39px;
  font-size: 12px;
  padding: 10px 15px;
  gap: 20px;
}
.button-small .icon {
  width: 16px;
  height: 16px;
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.button-secondary:hover {
  background: var(--white);
  box-shadow: 0 3px 12px #18264708;
}
.mobile-menu {
  display: none;
}
.hero {
  padding-top: 81px;
  padding-bottom: 48px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #516279;
}
.hero .eyebrow:before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--blue);
}
.hero-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
}
.hero h1 span,
.download-header h1 span {
  color: var(--blue);
}
.hero-aside {
  text-align: center;
  padding-right: 45px;
  padding-top: 4px;
  align-self: center;
}
.hero-aside .mono {
  color: #586a82;
  font-size: 9px;
  display: block;
  margin-top: 17px;
}
.orbit-mark {
  width: 142px;
  height: 124px;
  position: relative;
  display: grid;
  place-items: center;
  margin: auto;
}
.orbit-mark span {
  position: absolute;
  inset: 4px 20px;
  border: 1px solid #d4deed;
  border-radius: 50%;
  transform: rotate(-36deg);
}
.orbit-mark span:nth-child(2) {
  transform: rotate(36deg);
}
.orbit-mark span:nth-child(3) {
  transform: rotate(90deg);
}
.orbit-mark:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 12px;
  right: 38px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #245fec10;
}
.orbit-mark img {
  transform: rotate(-6deg);
}
.hero-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 570px;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  margin-top: 21px;
}
.hero-note .icon {
  width: 14px;
  height: 14px;
  color: #6c7d94;
}
.product-showcase {
  padding-top: 13px;
}
.showcase-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}
.showcase-heading h2 {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
}
.showcase-heading > span {
  font: 9px var(--mono);
  color: var(--muted);
}
.showcase-stage {
  background-color: #eaf0f9;
  background-image: radial-gradient(#b8c8e070 0.7px, transparent 0.7px);
  background-size: 13px 13px;
  padding: 0 30px;
  border: 1px solid #dce5f3;
  border-radius: 12px;
  box-shadow: 0 24px 45px -35px #132c5638;
  overflow: hidden;
}
.showcase-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  height: 65px;
}
.showcase-toolbar > a {
  display: flex;
  padding: 8px;
  color: var(--muted);
  border-radius: 5px;
}
.showcase-toolbar > a:hover {
  background: #fff8;
  color: var(--blue);
}
.preview-tabs {
  display: flex;
  gap: 7px;
}
.preview-tabs button {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid transparent;
  background: transparent;
  color: #52647d;
  font-size: 11px;
  border-radius: 5px;
  transition:
    background 0.15s,
    color 0.15s;
}
.preview-tabs button.active {
  background: white;
  border-color: #d9e2ef;
  color: var(--ink);
  box-shadow: 0 1px 3px #19395c08;
}
.preview-tabs button:hover {
  background: #ffffffa0;
}
.preview-tabs .icon {
  height: 14px;
  width: 14px;
}
.product-image-link {
  display: block;
  border: 1px solid #c5d1e2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 36px #2f496c17;
  background: white;
}
.product-image-link img {
  width: 100%;
  aspect-ratio: 1360/900;
  object-fit: contain;
}
.showcase-foot {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 9px var(--mono);
  color: #5e7392;
  gap: 10px;
}
.showcase-foot span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.showcase-foot .icon {
  width: 12px;
  height: 12px;
}
.format-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  padding-block: 30px;
}
.format-strip > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 35px;
  border-right: 1px solid var(--line);
}
.format-strip > div:first-child {
  padding-left: 0;
}
.format-strip > div:last-child {
  border: 0;
}
.format-strip .icon {
  color: #8296b2;
  width: 23px;
  height: 23px;
}
.format-strip strong {
  font-size: 13px;
  font-weight: 550;
  display: block;
}
.format-strip span span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 5px;
  display: block;
}
.section {
  padding-block: 112px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 70px;
  margin-bottom: 54px;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-intro {
  max-width: 330px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  padding-bottom: 3px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #cfd7e2;
  padding: 20px 0 34px;
}
.step-top .icon {
  color: var(--blue);
  width: 24px;
  height: 24px;
}
.step-number {
  font: 11px var(--mono);
  color: var(--muted);
}
.step h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 13px;
}
.step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  max-width: 330px;
}
.features-section {
  background: white;
  border-block: 1px solid var(--line);
  padding-block: 99px 30px;
}
.features-section .section-heading {
  margin-bottom: 64px;
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
  padding: 15px 45px 72px 0;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 42px;
}
.feature-copy {
  padding-left: 43px;
  position: relative;
}
.feature-index {
  position: absolute;
  left: 0;
  top: 5px;
  font: 10px var(--mono);
  color: #586a82;
}
.feature-copy h3 {
  font-size: 34px;
  line-height: 1.18;
  margin-bottom: 22px;
}
.feature-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 395px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 550;
  color: var(--blue);
  margin-top: 24px;
  line-height: 1.5;
}
.text-link .icon {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.feature-visual {
  min-width: 0;
  padding: 25px 28px 20px;
  border: 1px solid #e1e6ed;
  background: #f8fafc;
  border-radius: 10px;
  position: relative;
}
.visual-label {
  font: 9px var(--mono);
  letter-spacing: 0.03em;
  color: #5d6d83;
  margin-bottom: 25px;
}
.endpoint {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #dce3ed;
  border-radius: 6px;
  padding: 12px 15px;
  background: #fff;
  font-size: 12px;
  box-shadow: 0 2px 3px #14264103;
}
.method {
  color: #7653b5;
  background: #f1edf8;
  padding: 3px 6px;
  border-radius: 3px;
  font: 9px var(--mono);
}
code {
  font-family: var(--mono);
  font-weight: 400;
}
.endpoint-count {
  margin-left: auto;
  color: #65768d;
  font: 9px var(--mono);
}
.operation-branches {
  margin: 0 0 0 26px;
  border-left: 1px solid #cbd8ee;
  padding: 16px 0 0 22px;
}
.operation-branches > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dae4f4;
  border-radius: 5px;
  background: var(--white);
  padding: 10px 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px #1c375406;
}
.operation-branches > div:last-child {
  margin-bottom: 0;
}
.branch-node {
  position: absolute;
  left: -23px;
  top: 50%;
  width: 22px;
  height: 1px;
  background: #cbd8ee;
}
.branch-node:after {
  position: absolute;
  right: -2px;
  top: -1px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #558af0;
  content: "";
}
.operation-branches code {
  font-size: 10px;
}
.operation-branches .icon {
  height: 13px;
  width: 13px;
  color: #5985cc;
}
.operation-branches > div > span:last-child {
  margin-left: auto;
  font: 8px var(--mono);
  color: #596f8b;
}
.visual-caption {
  display: block;
  text-align: right;
  font: 8px var(--mono);
  color: #5d6d83;
  margin-top: 20px;
}
.export-file {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid #e0e6ef;
  background: white;
  margin-bottom: 9px;
  border-radius: 6px;
}
.export-file > .icon:first-child {
  width: 24px;
  height: 24px;
  color: #7d96bc;
}
.export-file > .icon:last-child {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: #4c8c75;
}
.export-file code {
  font-size: 11px;
  display: block;
}
.export-file div span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.coverage-line {
  display: flex;
  gap: 15px;
  align-items: center;
  background: white;
  border: 1px solid #e0e6ef;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 9px;
}
.coverage-line strong,
.coverage-line div > span {
  display: block;
}
.coverage-line strong {
  font-size: 12px;
  font-weight: 550;
}
.coverage-line div > span {
  color: var(--muted);
  font-size: 10px;
  margin-top: 5px;
}
.coverage-line > .icon {
  margin-left: auto;
  width: 15px;
  height: 15px;
  color: #7e8da2;
}
.signal {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #c78e44;
  box-shadow: 0 0 0 4px #fbf3e9;
}
.signal-1 {
  background: #768fbd;
  box-shadow: 0 0 0 4px #edf1f8;
}
.signal-2 {
  background: #9687ac;
  box-shadow: 0 0 0 4px #f3eff8;
}
.local-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: var(--navy);
  border-radius: 14px;
  margin-top: 98px;
  padding: 62px 66px;
  color: #f5f8ff;
  overflow: hidden;
  position: relative;
}
.local-section .eyebrow {
  color: #98abc4;
  font-size: 9px;
  margin-bottom: 23px;
}
.local-copy h2 {
  font-size: 43px;
}
.local-copy > p:not(.eyebrow) {
  color: #aab8cc;
  font-size: 14px;
  line-height: 1.85;
  margin-top: 24px;
  max-width: 380px;
}
.local-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.local-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #c5d1e3;
  margin-top: 12px;
}
.local-copy li .icon {
  width: 15px;
  height: 15px;
  color: #7eaaed;
}
.local-copy .text-link {
  color: #aacdff;
  font-size: 12px;
  margin-top: 26px;
}
.local-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 25px;
  background-image: radial-gradient(#40618a50 0.7px, transparent 0.7px);
  background-size: 16px 16px;
}
.device-boundary {
  position: relative;
  width: 100%;
  border: 1px dashed #466184;
  border-radius: 12px;
  padding: 36px 30px 27px;
  background: #111f3290;
}
.device-label {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  top: -7px;
  left: 25px;
  background: var(--navy);
  padding-inline: 9px;
  font: 9px var(--mono);
  color: #88a5cd;
}
.device-label .icon {
  width: 14px;
  height: 14px;
}
.diagram-browser,
.diagram-output {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid #344960;
  border-radius: 6px;
  background: #1b2a3e;
  font-size: 11px;
  color: #c4d4e8;
}
.diagram-browser > .icon,
.diagram-output > .icon {
  color: #91b3e4;
  width: 18px;
  height: 18px;
}
.mini-dots {
  margin-left: auto;
  letter-spacing: 2px;
  color: #6a80a0;
}
.diagram-connector {
  height: 30px;
  width: 1px;
  background: #486f9e;
  margin: auto;
  position: relative;
}
.diagram-connector:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #8bb5f6;
  border-radius: 50%;
  bottom: 0;
  left: -1.5px;
}
.diagram-core {
  border: 1px solid #5076a9;
  background: #203954;
  box-shadow: 0 0 40px #4b8bea08;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.diagram-core img {
  width: 32px;
  height: 32px;
}
.diagram-core strong {
  font-size: 22px;
  letter-spacing: -1px;
  font-weight: 550;
}
.diagram-core > span {
  font-size: 10px;
  color: #a9bfdb;
  margin-left: auto;
}
.local-tag {
  font: 7px var(--mono);
  color: #8cafcf;
  margin-left: auto;
  border: 1px solid #3c5875;
  border-radius: 3px;
  padding: 4px;
}
.guides-section {
  padding-top: 120px;
  padding-bottom: 104px;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  display: flex;
  flex-direction: column;
  padding: 28px 25px 24px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.guide-card:hover {
  transform: translateY(-4px);
  border-color: #adbfdd;
  box-shadow: 0 10px 24px #263c6010;
}
.guide-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
}
.guide-card-top > .icon:first-child {
  width: 22px;
  height: 22px;
  color: #7391bf;
}
.guide-card-top > .icon:last-child {
  margin-left: auto;
  width: 17px;
  height: 17px;
  color: #8594a9;
}
.guide-card-top .eyebrow {
  font-size: 9px;
  letter-spacing: 0.04em;
}
.guide-card h3 {
  font-size: 23px;
  line-height: 1.25;
  max-width: 280px;
  letter-spacing: -0.035em;
}
.guide-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 15px;
}
.read-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--blue);
  font-weight: 550;
  margin-top: auto;
  padding-top: 28px;
}
.read-link .icon {
  width: 15px;
  height: 15px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding-top: 87px;
  padding-bottom: 112px;
}
.faq-section > .eyebrow,
.faq-section > div > .eyebrow {
  margin-bottom: 22px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 550;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 15px;
  height: 15px;
  color: #8797ae;
  transition: transform 0.2s;
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
  color: var(--blue);
}
.faq-list details[open] summary {
  color: var(--blue);
}
.faq-list details p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 35px 23px 0;
}
.final-cta {
  background: #edf2fb;
  border-block: 1px solid #dee6f3;
  padding-block: 74px;
}
.final-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.final-cta .eyebrow {
  font-size: 9px;
  margin-bottom: 19px;
  color: #586a82;
}
.final-cta h2 {
  font-size: 43px;
}
.final-cta p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 18px;
}
.final-cta .button {
  min-width: 195px;
}
.cta-platforms {
  display: block;
  text-align: center;
  font-size: 10px;
  color: #596c88;
  margin-top: 14px;
}
.site-footer {
  padding-top: 62px;
  background: var(--paper);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 54px;
}
.footer-top p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 17px;
}
.footer-links {
  display: flex;
  gap: 98px;
  padding-right: 75px;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 12px;
  color: var(--muted);
}
.footer-links > div > span {
  font-weight: 550;
  color: var(--ink);
  margin-bottom: 7px;
}
.footer-links a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-bottom .dot {
  width: 5px;
  height: 5px;
  background: #8796ac;
}
/* Long-form pages share the product's typography, spacing and navigation. */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 10px var(--mono);
  color: #586a82;
  margin-bottom: 53px;
}
.breadcrumb a:hover {
  color: var(--blue);
}
.article-header {
  padding-top: 31px;
}
.article-header > .eyebrow {
  color: var(--blue);
  margin-bottom: 21px;
}
.article-header h1 {
  font-size: clamp(45px, 5.2vw, 70px);
  max-width: 1040px;
}
.article-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 800px;
  margin-top: 28px;
}
.article-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  border-block: 1px solid var(--line);
  padding-block: 27px;
  margin-top: 48px;
}
.article-summary span {
  display: block;
  font: 10px var(--mono);
  color: #586a82;
  margin-bottom: 8px;
}
.article-summary strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
.article-layout {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 85px;
  padding-top: 60px;
  align-items: start;
}
.article-toc {
  position: sticky;
  top: 122px;
}
.article-toc > .eyebrow {
  font-size: 10px;
}
.article-toc nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 18px;
}
.article-toc nav a {
  display: flex;
  gap: 13px;
  align-items: baseline;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  padding-block: 10px;
}
.article-toc nav span {
  font: 9px var(--mono);
  color: #586a82;
}
.article-toc nav a:hover {
  color: var(--blue);
}
.article-toc > .text-link {
  padding-top: 19px;
  border-top: 1px solid var(--line);
  display: flex;
  margin-top: 22px;
}
.article-body {
  max-width: 745px;
  min-width: 0;
}
.article-body section {
  margin-bottom: 48px;
}
.article-body h2 {
  font-size: 29px;
  line-height: 1.25;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.article-body p,
.article-body li {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
}
.article-body strong {
  font-weight: 600;
  color: var(--ink);
}
.article-body ol {
  padding-left: 24px;
  margin: 0;
}
.article-body li {
  padding-left: 6px;
  margin-bottom: 15px;
}
.article-body li::marker {
  font: 12px var(--mono);
  color: var(--blue);
}
.article-body a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: #9eb8f2;
  text-underline-offset: 3px;
}
.article-body a:hover {
  text-decoration-color: var(--blue);
}
.article-body p code {
  font-size: 0.82em;
  background: #eaf0f8;
  border: 1px solid #dee6f3;
  border-radius: 3px;
  padding: 2px 4px;
  color: #426087;
  overflow-wrap: anywhere;
}
.article-code {
  margin-block: 27px;
  background: var(--navy);
  color: #bad0ee;
  border: 1px solid #23364e;
  border-radius: 8px;
  overflow: hidden;
}
.article-code > span {
  display: block;
  border-bottom: 1px solid #2b3b52;
  padding: 14px 22px;
  font: 10px var(--mono);
  color: #8fa7c7;
}
.article-code pre {
  font: 11px/1.9 var(--mono);
  padding: 22px;
  margin: 0;
  overflow-x: auto;
}
.article-note {
  font-size: 12px;
  line-height: 1.8;
  color: #5f7088;
  border-left: 2px solid #afc4e8;
  padding: 13px 20px;
  background: #eff3f9;
}
.related-guides {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  padding-block: 70px 85px;
}
.related-guides .section-heading {
  margin-bottom: 30px;
}
.related-guides h2 {
  font-size: 34px;
}
.related-guides .guide-grid {
  grid-template-columns: repeat(2, 1fr);
}
.related-guides .guide-card h3 {
  max-width: none;
}
.page-download .related-guides .guide-grid {
  grid-template-columns: repeat(3, 1fr);
}
.download-header {
  padding-top: 80px;
}
.download-header > .eyebrow {
  margin-bottom: 26px;
}
.download-header h1 {
  font-size: clamp(47px, 5.7vw, 76px);
}
.download-header .article-lead {
  max-width: 675px;
}
.release-status {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  padding: 11px 15px;
  border-radius: 5px;
  background: white;
  margin-top: 29px;
  font-size: 11px;
  flex-wrap: wrap;
}
.release-status .dot {
  background: #bd9554;
}
.release-status strong {
  font: 10px var(--mono);
}
.release-status > span {
  color: var(--muted);
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.download-card {
  padding: 28px 25px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
}
.platform-icon {
  width: 50px;
  height: 50px;
  background: #eff3fa;
  color: #456387;
  border: 1px solid #dfe7f4;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 33px;
}
.platform-icon .icon {
  width: 25px;
  height: 25px;
}
.platform-icon .icon path {
  stroke-width: 1.3;
}
.download-card h2 {
  font-size: 30px;
}
.download-card > p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}
.platform-builds {
  margin-top: 30px;
}
.platform-build {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.platform-build strong {
  font-size: 12px;
  font-weight: 550;
  display: block;
}
.platform-build div > span {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 5px;
}
.build-pending {
  font-size: 9px;
  background: #f0f3f7;
  border: 1px solid #e1e6ee;
  padding: 5px 8px;
  border-radius: 4px;
  color: #586a82;
  white-space: nowrap;
}
.build-download {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-size: 11px;
}
.build-download .icon {
  width: 15px;
  height: 15px;
}
.build-download:hover {
  text-decoration: underline;
}
.download-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.download-details h2 {
  font-size: 30px;
  margin-bottom: 22px;
}
.download-details p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.not-found {
  padding-block: 125px 150px;
}
.not-found h1 {
  margin-block: 25px;
}
.not-found p {
  color: var(--muted);
  margin-bottom: 30px;
}
@media (min-width: 1600px) {
  .container {
    width: 1240px;
  }
  .hero {
    padding-top: 90px;
  }
  .hero-heading h1 {
    font-size: 94px;
  }
  .hero-intro {
    max-width: 630px;
  }
  .hero-aside {
    padding-right: 75px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero-aside {
    padding-right: 5px;
  }
  .hero h1 {
    font-size: 7.2vw;
  }
  .feature-row {
    gap: 60px;
    padding-right: 0;
  }
  .feature-copy {
    padding-left: 30px;
  }
  .feature-copy h3 {
    font-size: 30px;
  }
  .local-section {
    padding: 50px 42px;
    gap: 30px;
  }
  .local-copy h2 {
    font-size: 37px;
  }
  .local-diagram {
    padding: 0;
  }
  .device-boundary {
    padding: 32px 20px 23px;
  }
  .diagram-browser,
  .diagram-output {
    padding: 15px 12px;
  }
  .diagram-core > span {
    max-width: 65px;
    text-align: right;
    line-height: 1.5;
  }
  .section-heading {
    gap: 40px;
  }
  .section-intro {
    max-width: 280px;
  }
  .format-strip > div {
    padding-left: 20px;
    gap: 12px;
  }
  .format-strip span span {
    font-size: 9px;
  }
  .feature-visual {
    padding: 23px 20px 18px;
  }
  .operation-branches code {
    font-size: 9px;
  }
  .operation-branches > div {
    padding-inline: 9px;
  }
  .footer-links {
    padding-right: 0;
  }
  .article-layout {
    grid-template-columns: 220px 1fr;
    gap: 45px;
  }
  .download-grid {
    gap: 15px;
  }
  .download-card {
    padding-inline: 20px;
  }
}
@media (max-width: 800px) {
  .desktop-nav {
    margin-left: 0;
    gap: 20px;
  }
  .header-actions .version-tag {
    display: none;
  }
  .header-inner {
    gap: 20px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .hero {
    padding-top: 58px;
  }
  .hero h1 {
    font-size: 8vw;
  }
  .hero-aside {
    display: none;
  }
  .hero-intro {
    font-size: 17px;
    max-width: 580px;
  }
  .showcase-stage {
    padding-inline: 18px;
  }
  .showcase-toolbar {
    height: 60px;
  }
  .format-strip {
    gap: 15px;
  }
  .format-strip > div {
    padding-left: 0;
    gap: 10px;
    align-items: flex-start;
    border: none;
  }
  .format-strip .icon {
    width: 20px;
    height: 20px;
  }
  .format-strip strong {
    font-size: 12px;
  }
  .format-strip span span {
    font-size: 10px;
    line-height: 1.6;
  }
  .section {
    padding-block: 80px;
  }
  .section-heading {
    display: block;
    margin-bottom: 38px;
  }
  .section-intro {
    max-width: 490px;
    margin-top: 22px;
  }
  .steps {
    gap: 26px;
  }
  .step h3 {
    font-size: 19px;
  }
  .step p {
    font-size: 13px;
  }
  .features-section {
    padding-top: 73px;
  }
  .feature-row {
    gap: 35px;
    padding-bottom: 45px;
    margin-bottom: 45px;
  }
  .feature-copy h3 {
    font-size: 28px;
  }
  .feature-copy p {
    font-size: 13px;
  }
  .feature-copy .text-link {
    font-size: 11px;
  }
  .feature-copy {
    padding-left: 0;
  }
  .feature-index {
    position: static;
    display: block;
    margin-bottom: 15px;
  }
  .feature-visual {
    padding: 20px 16px 16px;
  }
  .visual-label {
    font-size: 8px;
  }
  .operation-branches {
    margin-left: 12px;
    padding-left: 15px;
  }
  .operation-branches > div > span:last-child {
    display: none;
  }
  .branch-node {
    left: -16px;
    width: 15px;
  }
  .local-section {
    margin-top: 65px;
    padding: 44px 34px;
    grid-template-columns: 1fr;
  }
  .local-diagram {
    padding: 40px 25px 0;
  }
  .local-copy h2 {
    font-size: 40px;
  }
  .local-copy > p:not(.eyebrow) {
    max-width: 520px;
  }
  .diagram-core > span {
    max-width: none;
  }
  .device-boundary {
    max-width: 460px;
  }
  .guide-grid {
    gap: 15px;
  }
  .guide-card {
    padding: 22px 20px;
  }
  .guide-card-top {
    gap: 7px;
    flex-wrap: wrap;
  }
  .guide-card-top .eyebrow {
    font-size: 8px;
  }
  .guide-card h3 {
    font-size: 20px;
  }
  .guide-card p {
    font-size: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 65px 80px;
  }
  .final-cta .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }
  .final-cta h2 {
    font-size: 40px;
  }
  .cta-platforms {
    text-align: left;
  }
  .footer-links {
    gap: 45px;
  }
  .article-header h1 {
    font-size: 54px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 35px;
  }
  .article-toc {
    position: static;
  }
  .article-toc nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .article-toc > .text-link {
    display: none;
  }
  .article-body {
    max-width: none;
  }
  .article-summary {
    gap: 25px;
  }
  .article-summary strong {
    font-size: 11px;
  }
  .article-lead {
    font-size: 17px;
  }
  .download-grid {
    grid-template-columns: 1fr;
  }
  .download-card {
    display: grid;
    grid-template-columns: 70px 1fr 1.2fr;
    column-gap: 15px;
    align-items: center;
    padding: 25px;
  }
  .platform-icon {
    grid-column: 1;
    grid-row: 1/3;
    margin-bottom: 0;
  }
  .download-card h2 {
    grid-column: 2;
    grid-row: 1;
    font-size: 27px;
    align-self: end;
  }
  .download-card > p {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    max-width: 140px;
    line-height: 1.6;
  }
  .platform-builds {
    grid-column: 3;
    grid-row: 1/3;
    margin: 0;
  }
  .platform-build:first-child {
    border: 0;
    padding-top: 0;
  }
  .platform-build:last-child {
    padding-bottom: 0;
  }
  .download-details {
    gap: 45px;
  }
  .page-download .related-guides .guide-grid {
    grid-template-columns: 1fr;
  }
  .page-download .related-guides .guide-card-top {
    margin-bottom: 20px;
  }
  .page-download .related-guides .guide-card h3 {
    max-width: none;
  }
}
@media (max-width: 560px) {
  :root {
    scroll-padding-top: 85px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 70px;
  }
  .brand {
    font-size: 27px;
    gap: 7px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-actions .button {
    min-height: 35px;
    padding: 9px 11px;
    font-size: 11px;
    gap: 10px;
  }
  .header-actions .icon {
    width: 13px;
    height: 13px;
  }
  .header-inner {
    gap: 14px;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    list-style: none;
    padding: 8px 0 8px 7px;
    cursor: pointer;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .mobile-menu summary .icon {
    height: 21px;
    width: 21px;
  }
  .mobile-menu nav {
    position: absolute;
    top: 69px;
    left: 0;
    right: 0;
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 25px #152a3f0d;
  }
  .mobile-menu nav a {
    padding: 13px 8px;
    font-size: 15px;
  }
  .mobile-menu nav a:hover {
    color: var(--blue);
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 30px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 0.065em;
  }
  .hero-heading {
    margin-top: 25px;
  }
  .hero h1 {
    font-size: clamp(37px, 9.5vw, 53px);
    letter-spacing: -0.05em;
    line-height: 1.12;
  }
  .hero-intro {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 23px;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 11px;
    gap: 12px;
    min-height: 47px;
    padding: 13px 15px;
  }
  .hero-actions .icon {
    width: 16px;
    height: 16px;
  }
  .hero-note {
    font-size: 9px;
    align-items: flex-start;
    line-height: 1.8;
    margin-top: 18px;
    gap: 6px;
  }
  .hero-note .icon {
    margin-top: 2px;
    flex-shrink: 0;
    width: 13px;
    height: 13px;
  }
  .showcase-heading {
    align-items: flex-start;
    gap: 7px;
    flex-direction: column;
    margin-bottom: 13px;
  }
  .showcase-heading h2 {
    font-size: 11px;
  }
  .showcase-heading > span {
    font-size: 8px;
    padding-left: 15px;
  }
  .showcase-stage {
    padding: 0 10px;
    border-radius: 8px;
  }
  .showcase-toolbar {
    height: 48px;
    gap: 4px;
  }
  .preview-tabs {
    gap: 0;
    flex: 1;
    justify-content: space-between;
  }
  .preview-tabs button {
    font-size: 9px;
    padding: 7px 8px;
    gap: 4px;
  }
  .preview-tabs button .icon {
    display: none;
  }
  .showcase-toolbar > a {
    padding: 5px;
  }
  .showcase-toolbar > a .icon {
    width: 14px;
    height: 14px;
  }
  .product-image-link {
    border-radius: 4px;
  }
  .showcase-foot {
    font-size: 7px;
    height: 31px;
    gap: 5px;
  }
  .showcase-foot span:nth-child(2) {
    display: none;
  }
  .showcase-foot .icon {
    width: 10px;
    height: 10px;
  }
  .format-strip {
    grid-template-columns: 1fr;
    padding-block: 21px;
    gap: 18px;
  }
  .format-strip > div {
    gap: 13px;
    align-items: center;
  }
  .format-strip > div > span {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .format-strip strong {
    font-size: 11px;
    white-space: nowrap;
  }
  .format-strip span span {
    font-size: 8px;
    margin: 0;
    text-align: right;
    max-width: 185px;
  }
  .format-strip .icon {
    width: 17px;
    height: 17px;
  }
  .section {
    padding-block: 62px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 34px;
  }
  .section-intro {
    font-size: 14px;
    margin-top: 20px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .step-top {
    padding: 17px 0 19px;
  }
  .step-top .icon {
    width: 21px;
    height: 21px;
  }
  .step h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .step p {
    font-size: 14px;
    max-width: none;
  }
  .features-section {
    padding-block: 57px 10px;
  }
  .features-section .section-heading {
    margin-bottom: 40px;
  }
  .feature-row {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-bottom: 38px;
    margin-bottom: 35px;
  }
  .feature-copy h3 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  .feature-copy p {
    font-size: 14px;
    max-width: none;
  }
  .feature-copy .text-link {
    font-size: 12px;
    margin-top: 18px;
  }
  .feature-index {
    margin-bottom: 13px;
  }
  .feature-visual {
    padding: 23px 23px 18px;
  }
  .operation-branches > div > span:last-child {
    display: block;
  }
  .operation-branches code {
    font-size: 10px;
  }
  .visual-label {
    font-size: 8px;
  }
  .local-section {
    padding: 37px 25px;
    margin-top: 50px;
    gap: 0;
    border-radius: 10px;
  }
  .local-section .eyebrow {
    font-size: 8px;
    letter-spacing: 0.04em;
  }
  .local-copy h2 {
    font-size: 32px;
  }
  .local-copy > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 20px;
  }
  .local-copy li {
    font-size: 11px;
  }
  .local-copy .text-link {
    font-size: 11px;
  }
  .local-diagram {
    padding: 46px 0 0;
  }
  .device-boundary {
    padding: 30px 14px 20px;
  }
  .diagram-browser,
  .diagram-output {
    padding: 13px 10px;
    font-size: 10px;
    gap: 9px;
  }
  .diagram-core {
    padding: 13px 10px;
    gap: 7px;
  }
  .diagram-core img {
    width: 26px;
    height: 26px;
  }
  .diagram-core strong {
    font-size: 20px;
  }
  .diagram-core > span {
    font-size: 8px;
  }
  .local-tag {
    font-size: 6px;
    padding: 3px;
  }
  .device-label {
    font-size: 8px;
    left: 12px;
  }
  .guide-grid,
  .related-guides .guide-grid {
    grid-template-columns: 1fr;
  }
  .guide-card {
    padding: 25px;
  }
  .guide-card-top {
    margin-bottom: 28px;
    gap: 11px;
  }
  .guide-card-top .eyebrow {
    font-size: 9px;
  }
  .guide-card h3 {
    font-size: 25px;
    max-width: 290px;
  }
  .guide-card p {
    font-size: 14px;
    line-height: 1.8;
  }
  .read-link {
    font-size: 12px;
    padding-top: 22px;
  }
  .faq-section {
    padding-block: 55px 62px;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 21px;
    gap: 20px;
  }
  .faq-list details p {
    font-size: 13px;
    padding-right: 0;
  }
  .final-cta {
    padding-block: 48px;
  }
  .final-cta h2 {
    font-size: 32px;
  }
  .final-cta .eyebrow {
    font-size: 8px;
    letter-spacing: 0.03em;
  }
  .final-cta p:not(.eyebrow) {
    font-size: 13px;
  }
  .final-cta .container {
    gap: 27px;
  }
  .final-cta .button {
    min-height: 48px;
    font-size: 12px;
  }
  .cta-platforms {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    flex-direction: column;
    gap: 37px;
    padding-bottom: 38px;
  }
  .footer-links {
    gap: 55px;
  }
  .footer-links > div {
    font-size: 11px;
    gap: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 9px;
    padding-block: 22px;
  }
  .breadcrumb {
    margin-bottom: 32px;
    font-size: 9px;
    gap: 9px;
  }
  .article-header {
    padding-top: 24px;
  }
  .article-header > .eyebrow {
    font-size: 9px;
  }
  .article-header h1 {
    font-size: 39px;
    line-height: 1.12;
  }
  .article-lead {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 23px;
  }
  .article-summary {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
    padding-block: 22px;
  }
  .article-summary > div {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    align-items: baseline;
  }
  .article-summary span {
    margin: 0;
    font-size: 9px;
  }
  .article-summary strong {
    font-size: 11px;
  }
  .article-layout {
    padding-top: 27px;
    gap: 35px;
  }
  .article-toc nav {
    grid-template-columns: 1fr;
  }
  .article-toc nav a {
    font-size: 12px;
    padding-block: 7px;
  }
  .article-toc .eyebrow {
    font-size: 9px;
  }
  .article-body h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
  .article-body p,
  .article-body li {
    font-size: 15px;
    line-height: 1.85;
  }
  .article-body section {
    margin-bottom: 36px;
  }
  .article-code pre {
    font-size: 10px;
    padding: 18px;
  }
  .article-code > span {
    font-size: 9px;
    padding-inline: 18px;
  }
  .article-note {
    font-size: 11px;
  }
  .related-guides {
    margin-top: 45px;
    padding-block: 45px 60px;
  }
  .related-guides h2 {
    font-size: 31px;
  }
  .download-header {
    padding-top: 48px;
  }
  .download-header h1 {
    font-size: 43px;
    line-height: 1.1;
  }
  .download-header > .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .release-status {
    font-size: 10px;
    gap: 10px;
    padding: 10px 12px;
  }
  .download-grid {
    margin-top: 35px;
    gap: 20px;
  }
  .download-card {
    display: block;
    padding: 26px 23px 9px;
  }
  .platform-icon {
    margin-bottom: 25px;
  }
  .download-card h2 {
    font-size: 29px;
  }
  .download-card > p {
    max-width: none;
    font-size: 13px;
  }
  .platform-builds {
    margin-top: 27px;
  }
  .platform-build:first-child {
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .platform-build:last-child {
    padding-bottom: 20px;
  }
  .platform-build strong {
    font-size: 13px;
  }
  .platform-build div > span {
    font-size: 11px;
  }
  .build-pending {
    font-size: 10px;
  }
  .download-details {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 45px;
    padding-top: 35px;
  }
  .download-details h2 {
    font-size: 29px;
    margin-bottom: 20px;
  }
  .not-found {
    padding-block: 80px 100px;
  }
  .not-found h1 {
    font-size: 50px;
  }
  .not-found p {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero > .eyebrow {
    animation: arrive 0.45s ease-out both;
  }
  .hero-heading {
    animation: arrive 0.55s 0.06s ease-out both;
  }
  .hero-intro,
  .hero-actions,
  .hero-note {
    animation: arrive 0.55s 0.12s ease-out both;
  }
}
/* Installation prerequisite and featured use case. */
.hero-requirement {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-requirement > .icon {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--blue);
}
.hero-requirement a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  color: var(--blue);
  margin-left: 5px;
  white-space: nowrap;
}
.hero-requirement a .icon {
  width: 13px;
  height: 13px;
}
.hero-requirement + .hero-note {
  margin-top: 8px;
}
.chrome-requirement {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 30px;
  padding: 24px 27px;
  background: var(--blue-soft);
  border: 1px solid #d5e1f6;
  border-radius: 8px;
}
.chrome-requirement > .icon {
  width: 25px;
  height: 25px;
  color: var(--blue);
}
.chrome-requirement h2 {
  font-size: 20px;
  letter-spacing: -0.025em;
}
.chrome-requirement p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 7px;
  max-width: 590px;
}
.chrome-requirement .text-link {
  margin: 0 0 0 auto;
  flex-shrink: 0;
}
.featured-guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--blue-soft);
  border: 1px solid #d5e1f6;
  border-radius: 9px;
  padding: 32px;
  margin-bottom: 24px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.featured-guide:hover {
  border-color: #adbfdd;
  background: #e8effc;
}
.featured-guide h3 {
  font-size: 30px;
  margin-top: 16px;
}
.featured-guide p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.featured-guide .eyebrow {
  font-size: 9px;
}
.featured-guide .read-link {
  margin-top: 0;
  padding-top: 20px;
}
@media (max-width: 800px) {
  .chrome-requirement {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .chrome-requirement > div {
    flex: 1;
  }
  .chrome-requirement .text-link {
    margin-left: 44px;
  }
  .featured-guide {
    gap: 28px;
    padding: 26px;
  }
}
@media (max-width: 560px) {
  .hero-requirement {
    font-size: 11px;
    margin-top: 18px;
  }
  .hero-requirement a {
    display: flex;
    margin: 3px 0 0;
    width: max-content;
  }
  .hero-requirement > .icon {
    width: 14px;
    height: 14px;
  }
  .chrome-requirement {
    padding: 21px;
    gap: 13px;
  }
  .chrome-requirement > .icon {
    width: 21px;
    height: 21px;
  }
  .chrome-requirement h2 {
    font-size: 19px;
    line-height: 1.3;
  }
  .chrome-requirement p {
    font-size: 12px;
  }
  .chrome-requirement .text-link {
    margin-left: 34px;
    font-size: 11px;
  }
  .featured-guide {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }
  .featured-guide h3 {
    font-size: 27px;
  }
  .featured-guide .eyebrow {
    font-size: 8px;
  }
  .featured-guide .read-link {
    font-size: 11px;
  }
}
/* Linux offers a package choice as well as a processor choice. */
.download-grid {
  grid-template-columns: repeat(2, 1fr);
}
.download-card.linux-card {
  display: block;
  grid-column: 1 / -1;
  padding: 28px 25px 15px;
}
.linux-heading {
  display: flex;
  align-items: center;
  gap: 18px;
}
.linux-heading .platform-icon {
  margin: 0;
  flex-shrink: 0;
}
.linux-heading p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.linux-formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.linux-format {
  min-width: 0;
}
.linux-format h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
}
.linux-format > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
  .linux-formats {
    gap: 22px;
  }
  .linux-format .platform-build {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 560px) {
  .download-card.linux-card {
    padding: 26px 23px 9px;
  }
  .linux-heading {
    align-items: flex-start;
    gap: 13px;
  }
  .linux-heading h2 {
    font-size: 29px;
  }
  .linux-heading p {
    font-size: 12px;
  }
  .linux-formats {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }
  .linux-format .platform-build {
    flex-wrap: nowrap;
  }
  .linux-format > p {
    margin-bottom: 17px;
  }
}
