@font-face {
  font-family: Geist;
  src: url("assets/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --green: #22c55e;
  --green-dark: #127335;
  --ink: #15201a;
  --muted: #617068;
  --line: #dbe3dd;
  --paper: #fff;
  --mist: #f7f9f7;
  --mint: #eef6ef;
  --coral: #a94e37;
  --violet: #706284;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color-scheme: light;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family:
    Geist,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
::selection {
  background: #b4efc7;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.shell {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--green);
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 30;
  border-bottom: 1px solid rgba(21, 32, 26, 0.08);
  backdrop-filter: blur(12px);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 21px;
  font-weight: 650;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 27px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13px;
  font-weight: 550;
  color: #4e5b53;
}
.nav-links a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}
.nav-actions {
  display: flex;
  gap: 21px;
  align-items: center;
}
.icon-link,
.icon-button {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  border-radius: 6px;
}
.icon-link:hover,
.icon-button:hover {
  background: rgba(127, 145, 132, 0.13);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
  line-height: 1.35;
  text-align: center;
}
.button:hover {
  transform: translateY(-2px);
}
.button-green {
  background: var(--green);
  color: #0e2a17;
  box-shadow: 0 3px 0 #179f48;
}
.button-green:hover {
  background: #40d975;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #2c4234;
}
.button-outline {
  border-color: #becdc1;
  background: rgba(255, 255, 255, 0.35);
}
.button-outline:hover {
  background: white;
}
.nav-download {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 12px;
}
.nav-download svg {
  width: 15px;
  height: 15px;
}
.mobile-menu {
  display: none;
}
.mobile-nav {
  padding-block: 8px 18px;
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
}
.hero {
  position: relative;
  isolation: isolate;
  height: min(760px, calc(100svh - 138px));
  min-height: 650px;
  background: var(--mint);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  z-index: -1;
}
.hero-content {
  text-align: center;
  padding-top: 38px;
  position: relative;
}
.release-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 550;
  border: 1px solid #c7dacc;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.52);
  padding: 5px 10px;
}
.release-pill svg {
  width: 13px;
  height: 13px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-size: 108px;
  font-weight: 580;
  line-height: 1.05;
  margin-top: 17px;
}
.title-period {
  color: var(--green);
}
.hero-tagline {
  font-size: 25px;
  font-weight: 500;
  margin-top: 8px;
}
.hero-copy {
  font-size: 16px;
  color: #56665b;
  line-height: 1.55;
  margin-top: 12px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.hero-meta {
  font-size: 11px;
  color: #5a6d60;
  margin-top: 17px;
}
.hero-meta span {
  padding: 0 7px;
}
.hero-foot {
  position: absolute;
  bottom: 17px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 26px;
  color: #4d6254;
  font-size: 11px;
}
.hero-foot > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-foot svg {
  width: 15px;
  height: 15px;
}
.hero-foot > a {
  margin-left: auto;
  border: 1px solid #bcccbf;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
}
.compatibility {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.compatibility-inner {
  min-height: 116px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.compatibility-inner p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.compatibility-inner strong {
  color: var(--ink);
  font-weight: 550;
}
.compatibility-inner > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 550;
  color: #566258;
  white-space: nowrap;
}
.compatibility-inner svg {
  width: 19px;
  height: 19px;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 21px;
}
h2 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 550;
}
h3 {
  font-weight: 560;
  font-size: 17px;
  line-height: 1.4;
}
.section-heading {
  max-width: 700px;
}
.section-heading > p:last-child {
  max-width: 530px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.7;
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 66px;
  margin-top: 54px;
  align-items: center;
}
.product-screen {
  align-self: center;
  min-width: 0;
}
.product-screen img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #cdd8d0;
  box-shadow: 0 18px 50px -28px #102c23;
}
.product-screen figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  padding-top: 17px;
}
.caption-note {
  margin-left: auto;
}
.product-features {
  display: grid;
  gap: 27px;
}
.product-features article {
  position: relative;
  padding-left: 45px;
}
.feature-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: #e9f5ed;
  border-radius: 6px;
}
.feature-icon svg {
  width: 18px;
  height: 18px;
}
.feature-icon.coral {
  color: var(--coral);
  background: #fbede8;
}
.feature-icon.violet {
  color: var(--violet);
  background: #f1eef7;
}
.product-features h3 {
  font-size: 16px;
}
.product-features p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 8px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
}
.text-link svg {
  width: 15px;
  height: 15px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 58px;
  padding-top: 27px;
}
.principles > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  color: #57665d;
}
.principles svg {
  width: 17px;
  height: 17px;
  color: var(--green-dark);
}
.team-section {
  background: var(--mist);
  border-block: 1px solid var(--line);
}
.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 80px;
  align-items: end;
}
.team-heading > p {
  font-size: 15px;
  color: var(--muted);
  max-width: 360px;
  margin-left: auto;
}
.network {
  margin: 70px auto 52px;
  max-width: 940px;
}
.network-clients {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.network-device {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 37px;
}
.network-device > svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.3;
  margin-bottom: 12px;
  color: #4b6252;
}
.network-device strong {
  font-size: 13px;
  font-weight: 550;
}
.network-device span {
  font-size: 11px;
  color: var(--muted);
}
.network-device:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 23px;
  width: 1px;
  background: #a9c7b1;
}
.network-bus {
  position: relative;
  border-top: 1px solid #a9c7b1;
  margin: 0 16.65%;
  text-align: center;
  padding-top: 27px;
  padding-bottom: 28px;
}
.network-bus:before,
.network-bus:after {
  content: "";
  position: absolute;
  width: 1px;
  background: #a9c7b1;
  height: 26px;
  top: 0;
  left: 50%;
}
.network-bus:after {
  top: auto;
  bottom: 0;
  height: 27px;
}
.network-bus > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green-dark);
  padding: 5px 10px;
  border: 1px solid #c9ddcd;
  border-radius: 4px;
  background: #f1f8f2;
}
.network-bus svg {
  width: 12px;
  height: 12px;
}
.network-hosts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.network-host {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 25px 30px;
  background: #fff;
  border: 1px solid #92c4a0;
  border-radius: 8px;
  box-shadow: 0 4px 0 #d6e8db;
  min-width: 360px;
}
.network-host > div {
  display: flex;
  flex-direction: column;
}
.host-label {
  font-size: 10px;
  color: var(--green-dark);
  font-family: var(--mono);
  text-transform: uppercase;
}
.network-host strong {
  font-size: 22px;
  font-weight: 550;
}
.network-host > div > span:last-child {
  font-size: 11px;
  color: var(--muted);
}
.host-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  margin-left: 10px;
  white-space: nowrap;
  color: var(--green-dark);
}
.network-fallback {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 250px;
}
.network-fallback > svg {
  color: #8e9e93;
  width: 30px;
  height: 30px;
}
.network-fallback strong {
  font-size: 12px;
  font-weight: 550;
}
.network-fallback p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.team-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.team-details article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.team-details article > span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green-dark);
  margin-bottom: 13px;
}
.team-details p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.8;
}
.team-note {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: space-between;
}
.team-note p {
  font-size: 11px;
  color: var(--muted);
  max-width: 715px;
}
.team-note > a {
  flex-shrink: 0;
}
.muted-heading {
  color: #829086;
}
.benchmark-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 80px;
  margin-top: 55px;
  align-items: center;
}
.metric-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.large-metric {
  font-size: 114px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
}
.large-metric > span {
  font-size: 66px;
  margin-left: 4px;
  font-weight: 350;
}
.benchmark-result > p {
  font-size: 13px;
  color: var(--muted);
}
.verified {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 9px;
  font-size: 11px;
}
.verified svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
}
.chart-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
}
.chart-heading h3 {
  font-size: 13px;
}
.chart-heading > span {
  font-size: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.bar-row {
  margin-top: 24px;
}
.bar-row > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.bar-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.bar-row strong {
  font-family: var(--mono);
  font-weight: 500;
}
.bar-track {
  height: 39px;
  background: #f0f3f0;
  border-radius: 3px;
  overflow: hidden;
}
.bar {
  height: 100%;
  width: var(--bar-width);
  border-radius: 3px;
}
.baseline {
  background: #a7b4ad;
}
.accelerated {
  background: var(--green);
}
.chart-note {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 20px;
}
.benchmark-boundary {
  display: flex;
  gap: 14px;
  border: 1px solid #dcdeda;
  background: #f8f9f7;
  padding: 18px 21px;
  border-radius: 6px;
  margin-top: 48px;
}
.benchmark-boundary svg {
  color: var(--green-dark);
  width: 17px;
  height: 17px;
  margin-top: 3px;
}
.benchmark-boundary p {
  font-size: 12px;
  color: #56605a;
  line-height: 1.8;
}
.evidence-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  padding-top: 24px;
}
.evidence-links a {
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
}
.evidence-links svg {
  width: 13px;
  height: 13px;
}
.evidence-links a:hover {
  text-decoration: underline;
}
.developer-section {
  background: #18231d;
  color: #f7fbf8;
}
.developer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 70px;
  align-items: center;
}
.developer-copy .eyebrow {
  color: #71d991;
}
.developer-copy h2 {
  font-size: 39px;
}
.developer-copy > p:not(.eyebrow) {
  color: #acbcb0;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 24px;
}
.developer-copy > .text-link {
  color: #78dfa1;
}
.protocol-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.protocol-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #d0dcd3;
}
.protocol-list svg {
  width: 14px;
  height: 14px;
  color: #79d697;
}
.code-workbench {
  min-width: 0;
  background: #101713;
  border: 1px solid #3a4a3f;
  border-radius: 8px;
  overflow: hidden;
}
.code-tabs {
  display: flex;
  gap: 5px;
  background: #202e25;
  padding: 10px 12px;
  border-bottom: 1px solid #3a4a3f;
}
.code-tabs button {
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #aabbad;
  padding: 7px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.code-tabs button svg {
  width: 14px;
  height: 14px;
}
.code-tabs button[aria-selected="true"] {
  background: #304837;
  border-color: #4d6c53;
  color: #bdfacc;
}
.code-tabs button:hover {
  color: white;
}
.code-panel {
  min-height: 405px;
  outline-offset: -4px;
}
.code-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 14px 0 24px;
  color: #849889;
  font-family: var(--mono);
  font-size: 10px;
}
.code-toolbar .icon-button {
  color: #a5b6aa;
  width: 30px;
  min-width: 30px;
  height: 30px;
}
.code-toolbar svg {
  width: 15px;
  height: 15px;
}
pre {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.9;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  padding: 5px 24px 24px;
  color: #e0e9e3;
  tab-size: 2;
}
code {
  font-family: var(--mono);
}
.code-comment {
  color: #a0b2a5;
}
.code-string {
  color: #8cdea3;
}
.code-keyword {
  color: #d5b49a;
}
.code-footnote {
  font-size: 10px;
  color: #a7b9ac;
  line-height: 1.8;
  margin: 0 24px;
  padding: 14px 0 20px;
  border-top: 1px solid #2d3d32;
}
.developer-section :focus-visible {
  outline-color: #7aeca3;
}
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  gap: 95px;
}
.faq-layout h2 {
  font-size: 36px;
}
.faq-layout .text-link {
  margin-top: 27px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 550;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary svg {
  width: 16px;
  height: 16px;
  color: #75897b;
  transition: transform 0.2s;
}
details[open] summary svg {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  padding: 0 32px 23px 0;
}
.install-section {
  background: #dff4e6;
  padding: 85px 0 48px;
  text-align: center;
}
.install-heading > img {
  margin: 0 auto 20px;
}
.install-heading .eyebrow {
  margin-bottom: 17px;
}
.install-heading h2 {
  font-size: 46px;
}
.install-heading > p:last-child {
  font-size: 15px;
  color: #4f6a59;
  margin-top: 17px;
}
.install-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.release-status {
  font-size: 11px;
  color: #526f5b;
  margin-top: 22px;
  min-height: 20px;
}
.install-steps {
  list-style: none;
  padding: 30px 0 0;
  margin: 44px 0 0;
  border-top: 1px solid #bad6c3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  text-align: left;
}
.install-steps li {
  display: flex;
  gap: 13px;
}
.install-steps li > span {
  font-family: var(--mono);
  font-size: 12px;
  width: 25px;
  height: 25px;
  border: 1px solid #93b29c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.install-steps strong {
  font-size: 12px;
  font-weight: 600;
}
.install-steps p {
  font-size: 11px;
  line-height: 1.8;
  color: #52705a;
  margin-top: 6px;
}
.install-disclosure {
  font-size: 10px;
  color: #4d6956;
  margin-top: 30px;
}
.install-disclosure > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 8px;
}
.install-disclosure svg {
  width: 12px;
  height: 12px;
}
.site-footer {
  padding: 42px 0 25px;
  background: #fff;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-top .brand {
  font-size: 18px;
}
.footer-top p {
  font-size: 12px;
  color: var(--muted);
}
.footer-top > div {
  margin-left: auto;
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: #607267;
  font-size: 10px;
}
@media (min-width: 1700px) {
  .hero-image {
    object-fit: contain;
    background: #eef6ef;
    object-position: center bottom;
  }
  .hero {
    height: 760px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 48px);
  }
  .nav {
    gap: 22px;
  }
  .nav-links {
    gap: 17px;
  }
  .nav-actions {
    gap: 10px;
  }
  .compatibility-inner {
    gap: 18px;
    flex-wrap: wrap;
    padding-block: 24px;
    justify-content: center;
  }
  .compatibility-inner p {
    border: 0;
    padding-right: 15px;
  }
  .compatibility-inner > span {
    font-size: 12px;
  }
  .product-layout {
    gap: 34px;
  }
  .team-heading {
    gap: 35px;
  }
  h2 {
    font-size: 39px;
  }
  .developer-layout {
    gap: 35px;
  }
  .developer-copy h2 {
    font-size: 33px;
  }
  .benchmark-layout {
    gap: 36px;
  }
  .chart-heading {
    display: block;
  }
  .chart-heading > span {
    display: block;
    margin-top: 4px;
  }
  .faq-layout {
    gap: 55px;
  }
  .network-host {
    min-width: 0;
    padding: 23px;
  }
  .host-badge {
    display: none;
  }
}
@media (max-width: 800px) {
  .section {
    padding: 76px 0;
  }
  .nav {
    height: 66px;
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
  }
  .mobile-menu {
    display: grid;
  }
  .hero {
    height: 700px;
    min-height: 0;
  }
  .hero-content {
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 83px;
  }
  .hero-image {
    object-position: center bottom;
  }
  .hero-foot {
    font-size: 10px;
    gap: 18px;
  }
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-features {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .product-features article:last-of-type {
    grid-column: 1 / -1;
    max-width: 480px;
  }
  .principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }
  .team-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-heading > p {
    margin-left: 0;
    max-width: 560px;
  }
  .network-clients {
    gap: 16px;
  }
  .team-details {
    gap: 22px;
  }
  .team-note {
    align-items: flex-start;
    gap: 20px;
  }
  .benchmark-layout {
    gap: 30px;
  }
  .large-metric {
    font-size: 88px;
  }
  .large-metric > span {
    font-size: 50px;
  }
  .developer-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .developer-copy h2 {
    font-size: 39px;
  }
  .code-panel {
    min-height: 380px;
  }
  pre {
    font-size: 12px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-layout h2 br {
    display: none;
  }
  .install-heading h2 {
    font-size: 39px;
  }
  .install-steps {
    gap: 22px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > div {
    margin-left: auto;
  }
  .footer-top > p {
    display: none;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }
  .nav-download {
    display: none;
  }
}
@media (max-width: 520px) {
  .shell {
    width: calc(100% - 36px);
  }
  .nav {
    height: 62px;
  }
  .brand {
    font-size: 19px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .hero {
    height: 660px;
  }
  .hero-content {
    padding-top: 28px;
  }
  .release-pill {
    font-size: 10px;
  }
  .hero h1 {
    font-size: 55px;
    margin-top: 25px;
  }
  .hero-tagline {
    font-size: 22px;
    margin-top: 12px;
  }
  .hero-copy {
    font-size: 14px;
    margin-top: 14px;
    max-width: 310px;
    margin-inline: auto;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 11px;
    margin-top: 24px;
  }
  .hero-actions .button {
    width: 234px;
    min-height: 47px;
    font-size: 13px;
    padding: 12px 15px;
  }
  .hero-meta {
    font-size: 9px;
  }
  .hero-meta span {
    padding: 0 3px;
  }
  .hero-image {
    object-position: center bottom;
  }
  .hero-foot {
    bottom: 14px;
  }
  .hero-foot > span:nth-child(2) {
    display: none;
  }
  .compatibility-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 12px;
    padding-block: 27px;
  }
  .compatibility-inner p {
    font-size: 11px;
  }
  .compatibility-inner > span {
    font-size: 11px;
    gap: 7px;
  }
  .compatibility-inner svg {
    width: 16px;
    height: 16px;
  }
  .section {
    padding: 64px 0;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  h2,
  .developer-copy h2 {
    font-size: 32px;
  }
  .section-heading > p:last-child {
    font-size: 14px;
    margin-top: 17px;
  }
  .product-layout {
    margin-top: 30px;
    gap: 32px;
  }
  .product-features {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .product-features article:last-of-type {
    grid-column: auto;
  }
  .product-screen figcaption {
    font-size: 10px;
  }
  .principles {
    gap: 18px 10px;
    padding-top: 24px;
  }
  .principles > span {
    font-size: 10px;
    justify-content: flex-start;
    gap: 7px;
  }
  .principles svg {
    width: 15px;
    height: 15px;
  }
  .team-heading > p {
    font-size: 14px;
  }
  .network {
    margin-top: 37px;
    margin-bottom: 36px;
  }
  .network-clients {
    gap: 8px;
  }
  .network-device > svg {
    width: 32px;
    height: 32px;
  }
  .network-device strong {
    font-size: 10px;
    line-height: 1.4;
    min-height: 28px;
    display: grid;
    place-items: center;
  }
  .network-device span {
    font-size: 9px;
    line-height: 1.5;
    max-width: 90px;
  }
  .network-bus {
    margin-inline: 16.65%;
  }
  .network-bus > span {
    font-size: 8px;
    gap: 4px;
    padding: 5px;
    white-space: nowrap;
  }
  .network-hosts {
    flex-direction: column;
    gap: 18px;
  }
  .network-host {
    width: 100%;
    justify-content: center;
    padding: 20px;
    gap: 20px;
  }
  .network-host > img {
    width: 37px;
    height: 37px;
  }
  .network-host strong {
    font-size: 20px;
  }
  .network-fallback {
    max-width: 100%;
    font-size: 10px;
  }
  .network-fallback > svg {
    width: 21px;
    height: 21px;
  }
  .team-details {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .team-details article {
    position: relative;
    padding-left: 31px;
  }
  .team-details article > span {
    position: absolute;
    left: 0;
    top: 24px;
  }
  .team-details h3 {
    font-size: 16px;
  }
  .team-details p {
    margin-top: 7px;
  }
  .team-note {
    flex-direction: column;
    gap: 17px;
  }
  .benchmark-layout {
    grid-template-columns: 1fr;
    margin-top: 29px;
    gap: 29px;
  }
  .benchmark-result {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .large-metric {
    font-size: 86px;
    line-height: 1.2;
  }
  .verified {
    margin-top: 13px;
  }
  .benchmark-chart {
    border-top: 1px solid var(--line);
    padding-top: 25px;
  }
  .chart-heading {
    margin-bottom: 22px;
  }
  .chart-heading h3 {
    font-size: 12px;
  }
  .bar-track {
    height: 34px;
  }
  .chart-note {
    font-size: 9px;
  }
  .benchmark-boundary {
    padding: 15px;
    margin-top: 29px;
    gap: 10px;
  }
  .benchmark-boundary p {
    font-size: 11px;
  }
  .evidence-links {
    gap: 18px;
  }
  .code-tabs {
    padding: 9px;
    gap: 3px;
  }
  .code-tabs button {
    padding: 7px 9px;
    font-size: 11px;
  }
  .code-tabs svg {
    width: 13px;
    height: 13px;
  }
  .code-toolbar {
    margin-left: 17px;
  }
  pre {
    font-size: 10px;
    padding-inline: 17px;
  }
  .code-panel {
    min-height: 375px;
  }
  .code-footnote {
    margin-inline: 17px;
  }
  .faq-layout {
    gap: 24px;
  }
  .faq-layout h2 {
    font-size: 32px;
  }
  summary {
    font-size: 13px;
    padding: 21px 0;
  }
  .install-section {
    padding: 59px 0 35px;
  }
  .install-heading h2 {
    font-size: 32px;
  }
  .install-heading > img {
    width: 46px;
    height: 46px;
  }
  .install-actions {
    flex-direction: column;
    align-items: center;
  }
  .install-actions .button {
    width: 248px;
  }
  .release-status {
    font-size: 10px;
    line-height: 1.8;
  }
  .install-steps {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
    padding-top: 28px;
  }
  .install-disclosure {
    font-size: 9px;
    line-height: 1.8;
  }
  .footer-top {
    gap: 24px;
  }
  .footer-top > div {
    width: 100%;
    margin: 0;
    gap: 25px;
  }
  .footer-bottom {
    font-size: 9px;
  }
  .site-footer {
    padding-top: 30px;
  }
}
@media (max-width: 360px) {
  .hero h1 {
    font-size: 47px;
  }
}
@media (min-width: 801px) and (max-height: 780px) {
  .hero {
    min-height: 570px;
    height: calc(100svh - 125px);
  }
  .hero-content {
    padding-top: 22px;
  }
  .hero h1 {
    font-size: 82px;
    margin-top: 10px;
  }
  .hero-tagline {
    margin-top: 5px;
  }
  .hero-actions {
    margin-top: 16px;
  }
}
@media (max-width: 520px) and (max-height: 740px) {
  .hero {
    height: calc(100svh - 100px);
    min-height: 560px;
  }
  .hero-content {
    padding-top: 18px;
  }
  .hero h1 {
    margin-top: 12px;
  }
  .hero-tagline {
    margin-top: 6px;
    font-size: 20px;
  }
  .hero-copy {
    margin-top: 8px;
  }
  .hero-actions {
    margin-top: 16px;
    gap: 6px;
  }
  .hero-actions .button {
    min-height: 42px;
    padding-block: 10px;
  }
  .hero-actions .button-outline {
    min-height: 35px;
    padding-block: 7px;
  }
  .hero-meta {
    margin-top: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
