@font-face {
  font-family: Manrope;
  src: url('/assets/manrope-variable.woff2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Sora;
  src: url('/assets/sora-variable.woff2') format('woff2');
  font-weight: 100 800;
  font-display: swap;
}
@font-face {
  font-family: Plex;
  src: url('/assets/ibm-plex-mono-regular.woff2') format('woff2');
  font-display: swap;
}
:root {
  --paper: #f3f6fa;
  --white: #fff;
  --ink: #182d3d;
  --muted: #62717e;
  --line: #dce3eb;
  --dusk: #7887bd;
  --cloud: #e8edf4;
  --rose: #ddbad1;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    15px/1.7 Manrope,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #6374af;
  outline-offset: 5px;
}
::selection {
  background: #cfd8f0;
}
.wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}
.header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Sora, sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -1px;
}
.header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta {
  padding: 9px 15px;
  border: 1px solid #ccd6e0;
  border-radius: 8px;
}
.nav-cta span {
  margin-left: 14px;
}
.hero {
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  min-height: 622px;
  align-items: center;
  padding-block: 35px 74px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 25px;
  color: #5e6c7a;
  display: flex;
  align-items: center;
  gap: 10px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #7887bd;
  border-radius: 100%;
  box-shadow: 0 0 0 4px #7887bd14;
}
.hero h1 {
  font-size: clamp(50px, 5.35vw, 76px);
  line-height: 1.06;
  letter-spacing: -0.065em;
  font-weight: 550;
  margin: 0 0 28px;
}
.period {
  color: var(--dusk);
}
.hero-description {
  max-width: 440px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}
.actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 33px;
}
.button {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 160ms var(--ease-out),
    background 160ms ease;
  box-shadow: 0 2px 4px #182d3d08;
}
.primary {
  background: var(--ink);
  color: white;
}
.button:active,
.replay:active,
.scenario:active {
  transform: scale(0.97);
}
.text-link {
  font-size: 13px;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.small {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.hero-note {
  margin-top: 18px;
}
.flight-scene {
  position: relative;
  min-height: 480px;
  isolation: isolate;
}
.sky-halo {
  position: absolute;
  inset: -25px -60px -20px -10px;
  background:
    radial-gradient(ellipse at 60% 40%, #bac9e065, transparent 64%),
    radial-gradient(ellipse at 60% 80%, #ddbad160, transparent 60%);
  z-index: -2;
}
.flight-lines {
  position: absolute;
  width: 115%;
  height: 100%;
  left: -5%;
  top: -5px;
  color: #91a2bd;
  opacity: 0.48;
  overflow: visible;
}
.flight-bird {
  width: 115px;
  position: absolute;
  left: 47%;
  top: 27%;
  color: #3c5270;
  transform: rotate(-8deg);
  filter: drop-shadow(0 20px 24px #687daf30);
}
.flight-bird svg {
  display: block;
  width: 100%;
}
.orbit-note {
  position: absolute;
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 17px 20px;
  background: #ffffffdf;
  border: 1px solid #ffffff;
  border-radius: 13px;
  box-shadow:
    0 8px 38px #324c6809,
    0 1px 2px #324c6808;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.orbit-note b {
  display: block;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.6;
}
.orbit-note div > span {
  font-size: 10px;
  color: #7a8996;
}
.note-icon {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  background: var(--paper);
  display: grid;
  place-items: center;
  font-size: 19px;
}
.note-request {
  left: 4%;
  top: 9%;
  transform: rotate(-3deg);
}
.note-work {
  left: 24%;
  top: 54%;
  transform: rotate(2deg);
}
.note-result {
  left: 0;
  top: 81%;
  transform: rotate(-2deg);
}
.tiny-signal {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #7d8dba;
  margin-left: 8px;
}
.result-icon {
  color: #577268;
}
.sky-label {
  font:
    9px Plex,
    monospace;
  letter-spacing: 0.15em;
  position: absolute;
  bottom: -25px;
  right: 0;
  color: #8594a3;
}
.model-strip {
  display: flex;
  align-items: center;
  gap: 65px;
  min-height: 132px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.model-strip p {
  font-size: 12px;
  color: var(--muted);
  margin-right: auto;
}
.model-strip p strong {
  font-weight: 500;
  color: var(--ink);
}
.model-strip > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font:
    500 22px Sora,
    sans-serif;
  letter-spacing: -0.6px;
}
.strip-tail {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.8;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
  margin-bottom: 45px;
}
.section-heading > p {
  max-width: 350px;
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 5px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(33px, 3.3vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin: 0;
}
h3 {
  font-size: 19px;
  letter-spacing: -0.035em;
  font-weight: 650;
  line-height: 1.4;
}
.playground {
  padding-block: 110px 50px;
}
.demo {
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px #182d3d0c,
    0 20px 65px -35px #3d52742b;
  overflow: hidden;
}
.demo-toolbar {
  padding: 19px 25px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #edf0f4;
}
.scenario-buttons {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: #f1f4f8;
}
.scenario {
  border: 0;
  padding: 7px 12px;
  background: transparent;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 160ms var(--ease-out);
}
.scenario.active {
  background: #fff;
  box-shadow: 0 1px 4px #182d3d15;
}
.demo-label {
  font:
    9px Plex,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.demo-stage {
  display: grid;
  grid-template-columns: 0.9fr 80px 1.1fr;
  align-items: center;
  padding: 54px 40px;
  min-height: 330px;
  background: radial-gradient(ellipse at 75% 50%, #e5eaf46b, transparent 65%);
}
.brief {
  padding: 24px;
  border-radius: 11px;
  border: 1px solid #e0e6ee;
  background: #fff;
  box-shadow: 0 3px 12px #182d3d04;
}
.micro-label {
  font:
    9px Plex,
    monospace;
  letter-spacing: 0.1em;
  color: #88939d;
}
.brief > p {
  font-size: 17px;
  line-height: 1.7;
  margin: 16px 0 25px;
  min-height: 58px;
  letter-spacing: -0.025em;
}
.brief-bottom {
  display: flex;
  gap: 15px;
  align-items: center;
}
.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 650;
}
.brief-access {
  font-size: 9px;
  color: var(--muted);
}
.transfer {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  color: #9aa8b8;
}
.transfer span {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.4;
  transition:
    opacity 250ms ease,
    transform 250ms var(--ease-out);
}
.transfer b {
  font-size: 15px;
  margin-left: 3px;
  font-weight: 400;
}
.run-preview {
  padding: 20px;
  border-radius: 11px;
  background: #fff;
  box-shadow:
    0 0 0 1px #e2e7ed,
    0 8px 20px #182d3d06;
}
.run-preview-head {
  display: flex;
  align-items: center;
  gap: 9px;
}
.run-preview-head strong {
  font-size: 11px;
  font-weight: 600;
}
.run-status {
  font-size: 8px;
  margin-left: auto;
  color: var(--muted);
  background: var(--paper);
  padding: 2px 6px;
  border-radius: 4px;
}
.run-steps {
  list-style: none;
  padding: 14px 0 0;
  margin: 0 0 17px;
  display: grid;
  gap: 8px;
  font-size: 10px;
  color: #7b8792;
}
.run-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  transition:
    opacity 250ms ease,
    transform 250ms var(--ease-out);
  opacity: 0.45;
  transform: translateY(3px);
}
.step-check {
  font-size: 9px;
  background: #edf2f4;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #728583;
}
.result-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid #e8edf3;
  background: #f8fafc;
  border-radius: 7px;
  opacity: 0.3;
  transform: translateY(5px);
  transition:
    opacity 250ms ease,
    transform 250ms var(--ease-out);
}
.file-symbol {
  font:
    18px Plex,
    monospace;
  color: #6f80a7;
}
.result-preview strong {
  font:
    9px Plex,
    monospace;
  display: block;
}
.result-preview div > span {
  font-size: 9px;
  color: var(--muted);
}
.result-arrow {
  margin-left: auto;
  color: var(--dusk);
}
.demo-stage[data-stage='1'] .transfer span,
.demo-stage[data-stage='2'] .transfer span {
  opacity: 1;
  transform: translateX(3px);
}
.demo-stage[data-stage='1'] .run-steps li:first-child,
.demo-stage[data-stage='2'] .run-steps li:nth-child(-n + 2),
.demo-stage[data-stage='3'] .run-steps li {
  opacity: 1;
  transform: translateY(0);
}
.demo-stage[data-stage='3'] .result-preview {
  opacity: 1;
  transform: translateY(0);
}
.demo-stage[data-stage='3'] .run-status {
  color: #4b6b5f;
  background: #ecf4ef;
}
.demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 25px;
  border-top: 1px solid #edf0f4;
}
.demo-footer p {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.replay {
  border: 0;
  background: none;
  font-size: 11px;
  font-weight: 600;
  padding: 6px;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out);
}
.replay span {
  margin-right: 6px;
  color: var(--dusk);
}
.how {
  padding-block: 95px 105px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.how-grid article {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-number {
  font:
    10px Plex,
    monospace;
  color: #798898;
  letter-spacing: 0.05em;
}
.how-grid h3 {
  margin: 25px 0 12px;
}
.how-grid p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}
.connections-section {
  background: #e9eef5;
  padding-block: 85px;
}
.connections-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.connections-layout > div > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  max-width: 365px;
  margin-block: 23px;
}
.connections-layout h2 {
  font-size: 36px;
}
.connection-board {
  display: grid;
  gap: 12px;
  transform: rotate(-2deg);
}
.connection-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.connection-row > span {
  padding: 15px 18px;
  background: #f9fbfd;
  border: 1px solid #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  min-width: 125px;
  box-shadow: 0 2px 7px #182d3d03;
}
.connection-row img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}
.letter-logo {
  width: 20px;
  display: inline-block;
  font-size: 19px;
  line-height: 1;
}
.connection-board > p {
  font-size: 10px;
  text-align: center;
  color: var(--muted);
  margin-top: 13px;
}
.developers {
  padding-block: 105px;
}
.developer-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.code-side {
  background: #203443;
  color: #dce6ed;
  padding: 24px 30px;
  min-width: 0;
}
.code-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ffffff15;
  padding-bottom: 15px;
}
.code-tabs button {
  background: none;
  border: 0;
  font:
    11px Plex,
    monospace;
  color: #b7c8d5;
  padding: 3px 0;
}
.code-tabs button.active {
  color: white;
}
.code-tabs .copy-code {
  margin-left: auto;
  font-size: 10px;
}
pre {
  font:
    12px/1.95 Plex,
    monospace;
  margin: 25px 0;
  overflow-x: auto;
  white-space: pre;
}
.code-side > p {
  font-size: 10px;
  color: #a0b4c4;
  margin: 0;
  max-width: 390px;
}
.developer-copy {
  padding: 35px 40px;
  align-self: center;
}
.developer-copy h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0;
}
.developer-copy > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.developer-copy .small {
  font-size: 10px;
  margin-top: 30px;
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 15px 90px;
}
.principle-list {
  display: grid;
  gap: 26px;
}
.principle-list h3 {
  font-size: 15px;
  margin: 0 0 7px;
}
.principle-list p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.9;
}
.principle-list a {
  font-size: 11px;
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.final-cta {
  text-align: center;
  padding-block: 74px 90px;
  border-top: 1px solid var(--line);
}
.final-cta > img {
  margin-bottom: 24px;
}
.final-cta .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.final-cta > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 28px;
}
.final-cta h2 {
  font-size: clamp(33px, 4vw, 51px);
}
.footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-block: 28px 36px;
  border-top: 1px solid var(--line);
}
.footer .brand {
  font-size: 18px;
}
.footer > p {
  color: var(--muted);
  font-size: 11px;
  margin-right: auto;
}
.footer nav {
  display: flex;
  gap: 20px;
  font-size: 11px;
}
.copyright {
  font-size: 10px;
  color: var(--muted);
  flex-basis: 100%;
  margin-top: 10px;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
.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;
}
.document {
  max-width: 800px;
  margin: auto;
  padding: 55px 28px 100px;
}
.document h1 {
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.045em;
  font-weight: 500;
  margin: 0 0 25px;
}
.document h2 {
  font-size: 23px;
  margin: 35px 0 13px;
}
.document h3 {
  margin-top: 30px;
}
.document p,
.document li {
  color: var(--muted);
  font-size: 14px;
}
.document a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.document code {
  font-family: Plex, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.document pre {
  background: #203443;
  color: #dce6ed;
  padding: 24px;
  border-radius: 9px;
  white-space: pre-wrap;
}
.document table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}
.document th,
.document td {
  padding: 13px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.document details {
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
}
.document summary {
  cursor: pointer;
  font-weight: 600;
}
.document .lead {
  font-size: 18px;
}
.document .updated {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 45px;
  font-size: 11px;
}
@media (hover: hover) and (pointer: fine) {
  .primary:hover {
    background: #31495f;
  }
  .text-link:hover,
  .footer a:hover,
  .header nav > a:not(.nav-cta):hover {
    text-decoration: underline;
    text-underline-offset: 5px;
  }
  .nav-cta:hover {
    background: #e8edf4;
  }
  .scenario:not(.active):hover {
    background: #ffffff80;
  }
  .connection-row > span {
    transition: transform 200ms var(--ease-out);
  }
  .connection-row > span:hover {
    transform: translateY(-3px);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: enter 700ms var(--ease-out) both;
  }
  .flight-scene {
    animation: enter 900ms 80ms var(--ease-out) both;
  }
  .note-request {
    animation: note-in 850ms 130ms var(--ease-out) both;
  }
  .note-work {
    animation: note-in 850ms 200ms var(--ease-out) both;
  }
  .note-result {
    animation: note-in 850ms 270ms var(--ease-out) both;
  }
  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes note-in {
    from {
      opacity: 0;
      translate: 0 15px;
    }
    to {
      opacity: 1;
      translate: 0 0;
    }
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 680px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    padding-inline: 28px;
  }
  .hero h1 {
    font-size: 59px;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .flight-scene {
    transform: scale(0.88);
    transform-origin: center right;
  }
  .orbit-note {
    padding: 14px;
  }
  .model-strip {
    gap: 36px;
  }
  .connections-layout {
    gap: 30px;
  }
  .connection-row > span {
    padding: 12px;
    min-width: 103px;
  }
  .demo-stage {
    padding: 35px 25px;
    grid-template-columns: 1fr 45px 1.1fr;
  }
  .brief {
    padding: 18px;
  }
  .principles {
    gap: 50px;
  }
  .sky-halo {
    right: 0;
  }
  .flight-lines {
    width: 105%;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding-inline: 23px;
  }
  .header {
    height: 83px;
  }
  .brand {
    font-size: 21px;
  }
  .header nav {
    gap: 17px;
    font-size: 12px;
  }
  .header nav > a:first-child {
    display: none;
  }
  .nav-cta {
    padding: 7px 10px;
  }
  .nav-cta span {
    margin-left: 5px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: 65px;
    letter-spacing: -0.07em;
  }
  .hero-description {
    font-size: 16px;
    max-width: 460px;
  }
  .flight-scene {
    min-height: 380px;
    max-width: 440px;
    width: 100%;
    margin: 40px auto 20px;
    transform: none;
  }
  .sky-halo {
    inset: 0;
  }
  .flight-bird {
    width: 94px;
  }
  .flight-lines {
    width: 100%;
    left: 0;
  }
  .note-request {
    left: 9%;
  }
  .note-work {
    left: 29%;
    top: 51%;
  }
  .note-result {
    left: 6%;
    top: 77%;
  }
  .sky-label {
    bottom: -14px;
    right: 5%;
  }
  .model-strip {
    gap: 28px;
    flex-wrap: wrap;
    padding-block: 22px;
  }
  .model-strip p {
    flex-basis: 100%;
    margin: 0;
  }
  .model-strip > div {
    font-size: 19px;
  }
  .strip-tail {
    margin-left: auto;
    font-size: 10px;
  }
  .playground {
    padding-top: 75px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 23px;
    max-width: 440px;
    font-size: 13px;
  }
  .section-heading > .text-link {
    margin-top: 24px;
  }
  .demo-toolbar {
    padding: 13px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .scenario-buttons {
    width: 100%;
    justify-content: space-between;
  }
  .scenario {
    font-size: 10px;
    flex: 1;
    padding: 8px 4px;
  }
  .demo-label {
    font-size: 8px;
    margin-left: 4px;
  }
  .demo-stage {
    grid-template-columns: 1fr;
    padding: 25px 18px;
    gap: 17px;
  }
  .brief > p {
    min-height: 0;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .transfer {
    height: 15px;
    transform: rotate(90deg);
  }
  .run-preview {
    padding: 20px;
  }
  .run-preview-head strong {
    font-size: 12px;
  }
  .run-steps {
    font-size: 11px;
    gap: 10px;
    padding-top: 18px;
  }
  .result-preview strong,
  .result-preview div > span {
    font-size: 10px;
  }
  .demo-footer {
    padding: 13px;
    align-items: flex-start;
  }
  .demo-footer p {
    max-width: 185px;
    font-size: 9px;
  }
  .replay {
    font-size: 10px;
  }
  .how {
    padding-block: 45px 65px;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .how-grid article {
    padding-top: 20px;
  }
  .how-grid h3 {
    margin-top: 15px;
  }
  .how-grid p {
    max-width: 440px;
  }
  .connections-section {
    padding-block: 60px;
  }
  .connections-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .connections-layout h2 {
    font-size: 34px;
  }
  .connection-board {
    transform: none;
  }
  .connection-row {
    gap: 8px;
  }
  .connection-row > span {
    font-size: 10px;
    padding: 12px 8px;
    min-width: 0;
    flex: 1;
    gap: 7px;
  }
  .connection-row img {
    height: 17px;
    width: 17px;
  }
  .developers {
    padding-block: 65px;
  }
  .developer-panel {
    grid-template-columns: 1fr;
  }
  .code-side {
    padding: 23px;
  }
  .developer-copy {
    padding: 28px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 33px;
    padding-bottom: 65px;
  }
  .final-cta {
    padding-block: 58px;
  }
  .footer {
    gap: 16px;
  }
  .footer > p {
    font-size: 10px;
  }
  .footer nav {
    flex-basis: 100%;
    gap: 25px;
  }
  .copyright {
    margin-top: 0;
  }
  .document {
    padding-top: 40px;
  }
  .document h1 {
    font-size: 39px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 55px;
  }
  .actions {
    gap: 15px;
  }
  .button {
    padding: 12px 14px;
    gap: 12px;
  }
  .text-link {
    font-size: 11px;
  }
  .note-work {
    left: 20%;
  }
  .orbit-note b {
    font-size: 11px;
  }
  .orbit-note div > span {
    font-size: 9px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .model-strip {
    gap: 20px;
  }
  .strip-tail {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0s !important;
  }
  .run-steps li,
  .result-preview {
    transform: none !important;
  }
}
@media (max-width: 760px) {
  .hero .actions {
    flex-wrap: wrap;
    gap: 18px;
  }
  .hero .actions .button {
    padding: 13px 17px;
    gap: 17px;
  }
  .hero .actions .text-link {
    white-space: nowrap;
    font-size: 12px;
    gap: 7px;
  }
}
