:root {
  --ink: #111521;
  --ink-soft: #1b2130;
  --night: #0c0f17;
  --paper: #f2f0e9;
  --paper-deep: #e4e5df;
  --line: rgba(17, 21, 33, 0.16);
  --line-light: rgba(242, 240, 233, 0.2);
  --blue: #5471ff;
  --blue-dark: #2e49d1;
  --amber: #f4b249;
  --mint: #83e3bd;
  --white: #f7f7f4;
  --muted: #6d7380;
  --display: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--blue);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-grid {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image: linear-gradient(to right, rgba(17, 21, 33, 0.045) 1px, transparent 1px), linear-gradient(to bottom, rgba(17, 21, 33, 0.045) 1px, transparent 1px);
  background-size: 80px 80px;
}

.shell {
  width: min(1160px, calc(100% - 80px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark,
.footer-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 10px;
}

.brand-mark img,
.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 80px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a,
.header-link,
.footer-links a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.header-link:hover,
.footer-links a:hover {
  color: var(--blue-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-link {
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 9px 22px rgba(84, 113, 255, 0.18);
}

.button-primary:hover {
  background: #3e5cf0;
}

.button-blue {
  color: var(--white);
  background: var(--ink);
}

.button-blue:hover {
  background: var(--blue-dark);
}

.button-small {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 13px;
}

.button-wide {
  width: 100%;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 8%;
  min-height: 700px;
  padding-block: 88px 78px;
}

.hero-copy {
  max-width: 540px;
}

.eyebrow,
.section-index,
.visual-label,
.card-index,
.runtime-panel-top,
.install-card-head,
.port-name,
.port-state,
.runtime-foot {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 28px;
  color: var(--blue-dark);
}

.eyebrow-dot,
.label-pulse,
.proof-dot,
.port-light,
.status-dot {
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(84, 113, 255, 0.12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(62px, 7.6vw, 106px);
  font-weight: 760;
}

h1 em,
h2 span {
  color: var(--blue);
  font-style: normal;
}

.hero-lede {
  max-width: 480px;
  margin-bottom: 34px;
  color: #5d6471;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 46px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link:hover {
  color: var(--blue-dark);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: #69707c;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof-dot {
  width: 7px;
  height: 7px;
}

.proof-blue,
.port-light-blue {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(84, 113, 255, 0.12);
}

.proof-amber {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(244, 178, 73, 0.14);
}

.proof-mint,
.port-light-green,
.status-dot {
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(131, 227, 189, 0.13);
}

.hero-visual {
  position: relative;
}

.visual-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px 22px;
  color: var(--muted);
}

.label-pulse {
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.visual-board {
  position: relative;
  padding: 39px 28px 32px;
  overflow: hidden;
  background: var(--ink);
  border-radius: 28px 28px 8px 28px;
  box-shadow: 18px 24px 0 rgba(17, 21, 33, 0.08);
}

.visual-board::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(84, 113, 255, 0.32), transparent 40%), radial-gradient(circle at 80% 15%, rgba(131, 227, 189, 0.25), transparent 28%);
  content: "";
}

.board-corner {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: rgba(242, 240, 233, 0.45);
}

.board-corner-tl {
  top: 18px;
  left: 19px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.board-corner-br {
  right: 19px;
  bottom: 18px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.app-window {
  position: relative;
  z-index: 1;
  width: min(284px, 70%);
  margin: 0 auto;
  overflow: hidden;
  background: #e7e9ed;
  border: 4px solid rgba(247, 247, 244, 0.9);
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.33);
  transform: rotate(2.6deg);
}

.app-window img {
  width: 100%;
  height: auto;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 29px;
  padding: 0 9px;
  color: #606674;
  background: #f4f5f7;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.window-controls {
  display: flex;
  gap: 4px;
}

.window-controls i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c5c8ce;
}

.window-signal {
  color: #3ec693;
}

.board-note {
  position: absolute;
  right: 24px;
  bottom: 43px;
  z-index: 1;
  display: grid;
  gap: 7px;
  color: rgba(242, 240, 233, 0.62);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-align: right;
}

.board-note strong {
  color: var(--white);
  font-size: 11px;
}

.port-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 25px;
  padding: 16px 2px 0;
  color: var(--white);
  border-top: 1px solid rgba(242, 240, 233, 0.19);
}

.port-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 8px;
}

.port-item strong {
  justify-self: end;
  font-family: var(--mono);
  font-size: 13px;
}

.port-light {
  width: 6px;
  height: 6px;
}

.port-name,
.port-state {
  color: rgba(242, 240, 233, 0.58);
  font-size: 9px;
}

.port-state {
  grid-column: 2 / -1;
  color: var(--mint);
  font-size: 8px;
}

.port-divider {
  width: 1px;
  height: 32px;
  background: rgba(242, 240, 233, 0.19);
}

.signal-bar {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-block: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #666d78;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.signal-bar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.signal-bar b {
  color: var(--blue-dark);
  font-size: 9px;
}

.signal-note {
  margin-left: auto;
  color: #a1a4aa;
  font-size: 9px;
}

.section {
  padding-block: 132px;
}

.section-light {
  background: var(--paper);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 9%;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 40px;
}

.section-index {
  margin-bottom: 28px;
  color: var(--blue-dark);
}

.section-index-light {
  color: var(--mint);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 740;
}

.section-intro > p:last-child,
.route-copy > p:not(.section-index),
.install-copy > p:not(.section-index) {
  max-width: 410px;
  color: #656c77;
  font-size: 17px;
  line-height: 1.72;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  min-height: 360px;
  padding: 27px 27px 24px;
  border: 1px solid rgba(17, 21, 33, 0.12);
  border-radius: 5px;
  background: #e8e8e1;
}

.feature-card-wide {
  grid-column: 1 / -1;
  min-height: 326px;
  background: #e2e4e0;
}

.feature-card-dark {
  color: var(--white);
  background: var(--night);
  border-color: var(--night);
}

.feature-card-blue {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.card-index {
  color: #747b83;
}

.feature-card-dark .card-index,
.feature-card-blue .card-index {
  color: rgba(247, 247, 244, 0.58);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-block: 28px 23px;
  color: var(--blue-dark);
  border: 1px solid rgba(17, 21, 33, 0.2);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 22px;
}

.feature-card-dark .card-icon,
.feature-card-blue .card-icon {
  color: var(--mint);
  border-color: rgba(247, 247, 244, 0.28);
}

.card-icon-orbit {
  position: relative;
  border: 1px solid var(--mint);
}

.card-icon-orbit::before,
.card-icon-orbit::after {
  position: absolute;
  width: 28px;
  height: 13px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  content: "";
}

.card-icon-orbit::before {
  transform: rotate(45deg);
}

.card-icon-orbit::after {
  transform: rotate(-45deg);
}

.card-icon-orbit i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.feature-card h3 {
  margin-bottom: 13px;
  font-size: clamp(28px, 3vw, 41px);
  font-weight: 720;
}

.feature-card p {
  max-width: 410px;
  margin-bottom: 0;
  color: #646b74;
  font-size: 16px;
  line-height: 1.65;
}

.feature-card-dark p,
.feature-card-blue p {
  color: rgba(247, 247, 244, 0.71);
}

.card-footer {
  display: flex;
  gap: 16px;
  margin-top: 45px;
  color: #7b828a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.card-footer span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 6px 1px 0;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.status-readout,
.path-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 45px;
  padding: 8px 10px;
  color: var(--mint);
  background: rgba(131, 227, 189, 0.1);
  border: 1px solid rgba(131, 227, 189, 0.25);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.status-dot {
  width: 6px;
  height: 6px;
}

.path-chip {
  color: rgba(247, 247, 244, 0.86);
  background: rgba(247, 247, 244, 0.1);
  border-color: rgba(247, 247, 244, 0.2);
}

.route-section {
  color: var(--white);
  background: var(--ink);
}

.route-layout {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 10%;
  align-items: center;
}

.route-copy h2 {
  margin-bottom: 28px;
}

.route-copy > p:not(.section-index) {
  color: rgba(247, 247, 244, 0.66);
}

.text-link-light {
  margin-top: 25px;
  color: var(--mint);
}

.text-link-light:hover {
  color: var(--white);
}

.runtime-panel {
  position: relative;
  padding: 24px 26px 19px;
  background: #171d2a;
  border: 1px solid rgba(247, 247, 244, 0.15);
  border-radius: 5px;
}

.runtime-panel::after {
  position: absolute;
  top: 0;
  right: 16%;
  width: 1px;
  height: 100%;
  background: rgba(247, 247, 244, 0.08);
  content: "";
}

.runtime-panel-top,
.install-card-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 31px;
  color: rgba(247, 247, 244, 0.52);
  font-size: 10px;
}

.runtime-panel-top span:last-child {
  color: var(--mint);
}

.runtime-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 19px 16px;
  border: 1px solid rgba(247, 247, 244, 0.13);
  border-radius: 4px;
}

.path-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.path-node-blue {
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(84, 113, 255, 0.13);
}

.path-node-amber {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(244, 178, 73, 0.13);
}

.runtime-path small {
  display: block;
  margin-bottom: 4px;
  color: rgba(247, 247, 244, 0.48);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.runtime-path strong {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
}

.path-check {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--mint);
  border: 1px solid rgba(131, 227, 189, 0.35);
  border-radius: 50%;
  font-size: 13px;
}

.path-connector {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 43px;
  padding-left: 21px;
}

.path-connector span {
  width: 1px;
  height: 100%;
  background: rgba(247, 247, 244, 0.2);
}

.path-connector i {
  color: rgba(247, 247, 244, 0.46);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}

.runtime-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  color: rgba(247, 247, 244, 0.4);
  font-size: 9px;
}

.runtime-foot span:first-child {
  color: var(--amber);
}

.install-section {
  background: #dfe2df;
}

.install-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 11%;
  align-items: center;
}

.install-copy > p:not(.section-index) {
  color: #626a70;
}

.compatibility {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
  color: #626970;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.compatibility i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.apple-mark {
  color: var(--ink);
  font-size: 12px;
}

.install-card {
  padding: 28px;
  background: var(--ink);
  border-radius: 5px;
  box-shadow: 16px 17px 0 rgba(17, 21, 33, 0.09);
}

.copy-status {
  min-width: 70px;
  color: var(--mint);
  text-align: right;
}

.command-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 10px 10px 10px 14px;
  background: #1c2433;
  border: 1px solid rgba(247, 247, 244, 0.14);
  border-radius: 4px;
}

.command-row code {
  flex: 1;
  overflow: auto;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  white-space: nowrap;
}

.command-row code::before {
  margin-right: 8px;
  color: var(--mint);
  content: "$";
}

.copy-button {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(247, 247, 244, 0.1);
  border: 1px solid rgba(247, 247, 244, 0.18);
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
}

.copy-button:hover,
.copy-button:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
}

.install-divider {
  height: 1px;
  margin-block: 24px;
  background: rgba(247, 247, 244, 0.12);
}

.install-note {
  margin: 14px 0 0;
  color: rgba(247, 247, 244, 0.52);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  align-items: center;
  gap: 24px;
  min-height: 135px;
  color: #686f7a;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--ink);
}

.footer-mark {
  width: 29px;
  height: 29px;
  border-radius: 8px;
}

.site-footer p,
.site-footer small {
  margin: 0;
  color: #858b94;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 19px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.site-footer small {
  grid-column: 2 / -1;
  font-family: var(--mono);
  font-size: 10px;
}

:focus-visible {
  outline: 3px solid rgba(84, 113, 255, 0.58);
  outline-offset: 4px;
}

[data-reveal] {
  animation: rise-in 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  animation-delay: calc(var(--delay, 0) * 1ms);
}

[data-delay="80"] {
  --delay: 80;
}

[data-delay="120"] {
  --delay: 120;
}

[data-delay="160"] {
  --delay: 160;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .shell {
    width: min(100% - 48px, 760px);
  }

  .desktop-nav {
    gap: 18px;
    margin-left: 0;
  }

  .hero,
  .feature-layout,
  .route-layout,
  .install-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 64px;
    padding-block: 76px 70px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    max-width: 650px;
  }

  .section-intro {
    position: static;
  }

  .section-intro > p:last-child,
  .route-copy > p:not(.section-index),
  .install-copy > p:not(.section-index) {
    max-width: 600px;
  }

  .route-layout,
  .install-layout {
    gap: 58px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    padding-block: 31px;
  }

  .site-footer p {
    text-align: right;
  }

  .site-footer small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 36px);
  }

  .site-header {
    min-height: 74px;
  }

  .desktop-nav,
  .header-link {
    display: none;
  }

  .header-actions {
    gap: 12px;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 16px;
    height: 1px;
    background: currentColor;
  }

  .mobile-nav {
    position: absolute;
    z-index: 5;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    width: auto;
    max-height: 0;
    padding: 0 17px;
    overflow: hidden;
    background: rgba(242, 240, 233, 0.98);
    border: 0 solid var(--line);
    border-radius: 4px;
    box-shadow: 0 16px 24px rgba(17, 21, 33, 0.1);
    transition: max-height 220ms ease, padding 220ms ease, border-width 220ms ease;
  }

  .mobile-nav.is-open {
    max-height: 280px;
    padding-block: 8px;
    border-width: 1px;
  }

  .mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    gap: 46px;
    padding-block: 65px 55px;
  }

  .eyebrow {
    font-size: 9px;
  }

  h1 {
    font-size: clamp(56px, 17vw, 84px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
  }

  .visual-board {
    padding: 34px 17px 23px;
    border-radius: 20px 20px 6px 20px;
  }

  .app-window {
    width: 72%;
  }

  .board-note {
    right: 16px;
    bottom: 32px;
    font-size: 7px;
  }

  .board-note strong {
    font-size: 9px;
  }

  .port-strip {
    gap: 10px;
  }

  .port-item {
    grid-template-columns: auto 1fr;
  }

  .port-item strong {
    grid-column: 2;
    justify-self: start;
  }

  .port-state {
    grid-column: 2;
  }

  .port-name,
  .port-state {
    font-size: 8px;
  }

  .signal-bar {
    gap: 13px;
    overflow: auto;
    padding-block: 15px;
  }

  .signal-note {
    display: none !important;
  }

  .section {
    padding-block: 86px;
  }

  h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 310px;
  }

  .runtime-panel,
  .install-card {
    padding: 20px 16px 17px;
  }

  .runtime-foot {
    display: grid;
    gap: 6px;
  }

  .command-row {
    align-items: stretch;
    flex-direction: column;
  }

  .command-row code {
    width: 100%;
    padding-bottom: 3px;
  }

  .copy-button {
    width: 100%;
  }

  .site-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-block: 32px;
  }

  .site-footer p {
    max-width: 260px;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
