/* Versioned asset: bump the filename whenever this file changes. */
:root {
  --paper: #f4f0e8;
  --paper-bright: #fffdf8;
  --paper-muted: #e8e2d8;
  --ink: #171713;
  --ink-soft: #514f48;
  --ink-faint: #817e74;
  --line: #cfc8bc;
  --line-dark: #a9a195;
  --orange: #ff5a36;
  --orange-soft: #ffd7c9;
  --blue: #c9e7f2;
  --green: #1d7a52;
  --green-soft: #d6ede1;
  --yellow: #f5d264;
  --black: #11110e;
  --shell: 1240px;
  --radius: 18px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 34rem, rgba(255, 255, 255, 0.78), transparent 36rem), var(--paper);
  color: var(--ink);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 13% 17%, rgba(23, 23, 19, 0.035) 0 0.5px, transparent 0.7px),
    radial-gradient(circle at 71% 63%, rgba(23, 23, 19, 0.025) 0 0.5px, transparent 0.8px);
  background-size:
    7px 7px,
    11px 11px;
  content: "";
  pointer-events: none;
}

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

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

button,
input {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -60px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper-bright);
}

.skip-link:focus {
  top: 12px;
}

.release-bar {
  position: relative;
  z-index: 31;
  border-bottom: 1px solid #282722;
  background: var(--black);
  color: #fffdf8;
  font-size: 12px;
}

.release-bar a {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 7px 16px;
}

.release-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 54, 0.2);
}

.release-detail {
  color: #aaa89f;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(23, 23, 19, 0.14);
  background: rgba(244, 240, 232, 0.91);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.06);
}

.nav {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.brand-mark {
  position: relative;
  width: 31px;
  height: 31px;
  display: inline-block;
  flex: 0 0 auto;
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  background: var(--paper-bright);
  box-shadow: 2px 2px 0 var(--ink);
}

.brand-paper {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 13px;
  height: 17px;
  border: 1.5px solid var(--ink);
  background: var(--paper-bright);
}

.brand-paper::before,
.brand-paper::after {
  position: absolute;
  left: 2px;
  width: 7px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.brand-paper::before {
  top: 5px;
}

.brand-paper::after {
  top: 9px;
}

.brand-latch {
  position: absolute;
  right: 3px;
  bottom: 5px;
  width: 8px;
  height: 7px;
  border-radius: 2px;
  background: var(--orange);
}

.brand-latch::before {
  position: absolute;
  top: -5px;
  left: 2px;
  width: 4px;
  height: 6px;
  border: 1.5px solid var(--ink);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #47463f;
  font-size: 13px;
  font-weight: 570;
}

.nav-links a,
.footer-column a {
  transition: color 150ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-column a:hover {
  color: var(--orange);
}

.nav-cta {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper-bright);
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--orange);
}

.menu-button {
  display: none;
}

.hero {
  padding-top: 92px;
  text-align: center;
}

.hero-intro {
  max-width: 1040px;
  margin: 0 auto;
}

.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker span:first-child::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
  content: "";
}

.kicker span + span::before {
  margin-right: 11px;
  color: var(--line-dark);
  content: "/";
}

h1 {
  max-width: 1040px;
  margin: 0 auto 29px;
  font-size: clamp(62px, 8.6vw, 124px);
  font-weight: 690;
  line-height: 0.88;
  letter-spacing: -0.078em;
}

h1 em,
.problem-grid h2 em,
.security-heading h2 em,
.final-cta h2 em {
  position: relative;
  display: inline-block;
  padding: 0 0.13em 0.04em;
  border-radius: 0.24em;
  background: var(--orange-soft);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.065em;
}

h1 em::before {
  display: inline-block;
  width: 0.13em;
  height: 0.13em;
  margin: 0 0.15em 0.09em 0;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.hero-lede {
  max-width: 710px;
  margin: 0 auto 31px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.65vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 720;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: var(--paper-bright);
}

.button-dark:hover {
  box-shadow: 4px 4px 0 var(--orange);
}

.button-paper {
  background: var(--paper-bright);
}

.button-paper:hover {
  box-shadow: 4px 4px 0 var(--line-dark);
}

.hero-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 19px;
  color: var(--ink-faint);
  font-size: 11px;
}

.hero-notes span + span::before {
  margin: 0 9px;
  content: "·";
}

.product-stage {
  position: relative;
  margin-top: 72px;
  padding-bottom: 60px;
  text-align: left;
}

.stage-shadow {
  position: absolute;
  z-index: -1;
  right: 3%;
  bottom: 8%;
  left: 3%;
  height: 72%;
  border-radius: 50%;
  background: rgba(40, 35, 28, 0.16);
  filter: blur(50px);
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid #aaa297;
  border-radius: 17px;
  background: var(--paper-bright);
  box-shadow:
    0 35px 80px rgba(46, 39, 30, 0.2),
    0 3px 0 rgba(255, 255, 255, 0.85) inset;
}

.window-bar {
  height: 47px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 17px;
  border-bottom: 1px solid #d6d0c6;
  background: #ece8e0;
  color: #747068;
  font-size: 10px;
}

.window-traffic {
  display: flex;
  gap: 6px;
}

.window-traffic i {
  width: 8px;
  height: 8px;
  border: 1px solid #aaa39a;
  border-radius: 999px;
  background: #d9d4ca;
}

.window-title {
  font-weight: 650;
}

.agent-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: end;
  color: #597365;
}

.agent-state i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2e9f69;
  box-shadow: 0 0 0 3px rgba(46, 159, 105, 0.13);
}

.app-shell {
  min-height: 580px;
  display: grid;
  grid-template-columns: 206px 1fr;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 21px 14px 16px;
  border-right: 1px solid #ded8ce;
  background: #efebe4;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 7px 27px;
  font-size: 13px;
  letter-spacing: -0.02em;
}

.mini-brand .brand-mark {
  width: 27px;
  height: 27px;
  transform: scale(0.88);
  transform-origin: left center;
}

.sidebar-group {
  display: grid;
  gap: 4px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.sidebar-label {
  padding: 0 9px 8px;
  color: #918b82;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-tab {
  width: 100%;
  min-height: 39px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #6e6a62;
  text-align: left;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition:
    background 130ms ease,
    color 130ms ease;
}

.demo-tab:hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.demo-tab.active {
  background: var(--paper-bright);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(23, 23, 19, 0.05);
}

.demo-tab b {
  min-width: 19px;
  padding: 2px 5px;
  border-radius: 999px;
  background: #ded8ce;
  color: #777168;
  text-align: center;
  font-size: 8px;
}

.tab-icon {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-block;
}

.tab-jobs {
  border: 1px solid currentColor;
  border-radius: 3px;
}

.tab-jobs::before,
.tab-jobs::after {
  position: absolute;
  left: 3px;
  width: 7px;
  height: 1px;
  background: currentColor;
  content: "";
}

.tab-jobs::before {
  top: 4px;
}

.tab-jobs::after {
  top: 8px;
}

.tab-printers::before {
  position: absolute;
  top: 3px;
  left: 1px;
  width: 13px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 3px;
  content: "";
}

.tab-printers::after {
  position: absolute;
  top: 0;
  left: 4px;
  width: 7px;
  height: 14px;
  border-block: 1px solid currentColor;
  content: "";
}

.tab-security {
  border: 1px solid currentColor;
  border-radius: 7px 7px 5px 5px;
}

.tab-security::before {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.sidebar-origin {
  margin-top: auto;
  padding: 13px;
  border: 1px solid #d7d0c5;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.7);
}

.sidebar-origin > span,
.sidebar-origin small {
  display: block;
  color: #969087;
  font-size: 8px;
}

.sidebar-origin strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 3px;
  font-size: 9px;
}

.sidebar-origin strong i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #2d9c68;
}

.sidebar-local {
  display: grid;
  gap: 4px;
  margin: 14px 3px 0;
  color: #979087;
  font-size: 7px;
}

.sidebar-local code {
  color: #6c675e;
  font-size: 8px;
}

.app-content {
  min-width: 0;
  background: var(--paper-bright);
}

.demo-panel {
  display: none;
  padding: 32px 33px 20px;
}

.demo-panel.active {
  display: block;
  animation: panel-in 220ms ease-out both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-head {
  min-height: 57px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.panel-head p {
  margin-bottom: 5px;
  color: #979087;
  font-size: 9px;
}

.panel-head h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.045em;
}

.panel-head > button {
  min-height: 31px;
  padding: 0 11px;
  border: 1px solid #cfc8bd;
  border-radius: 6px;
  background: #eee9e1;
  color: #aaa39a;
  font-size: 9px;
}

.queue-toolbar {
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 17px 0 11px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2ddd4;
  color: #918b82;
  font-size: 9px;
}

.queue-toolbar span {
  white-space: nowrap;
}

.queue-toolbar b {
  margin-left: 3px;
  color: #b4ada3;
  font-size: 8px;
}

.queue-toolbar .filter-active {
  position: relative;
  color: var(--ink);
  font-weight: 650;
}

.queue-toolbar .filter-active::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
}

.queue-search {
  margin-left: auto;
  padding: 6px 10px;
  border: 1px solid #ded8ce;
  border-radius: 5px;
  background: #faf8f3;
}

.queue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 203px;
  gap: 13px;
}

.job-list {
  display: grid;
  align-content: start;
  gap: 7px;
}

.job-row {
  min-height: 71px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 23px;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid #e1dcd3;
  border-radius: 8px;
  background: #fffdfa;
}

.job-row.selected {
  border-color: #f0a58e;
  background: #fff8f4;
  box-shadow: 3px 3px 0 var(--orange-soft);
}

.file-glyph {
  width: 31px;
  height: 38px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 6px;
  border: 1px solid #a9a297;
  border-radius: 3px;
  background: #fff;
  color: #8a837a;
  font-size: 6px;
  font-weight: 800;
}

.job-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.job-copy strong,
.printer-card strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-copy span,
.printer-card small {
  overflow: hidden;
  color: #969087;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 650;
  white-space: nowrap;
}

.job-state i {
  width: 4px;
  height: 4px;
  border-radius: 999px;
}

.state-printing {
  background: var(--orange-soft);
  color: #9d3c25;
}

.state-printing i {
  background: var(--orange);
}

.state-done {
  background: var(--green-soft);
  color: #2b6e50;
}

.state-done i {
  background: #2d9c68;
}

.state-preview {
  background: var(--blue);
  color: #356a7d;
}

.state-preview i {
  background: #4b98b5;
}

.job-row time {
  color: #aaa399;
  font-size: 7px;
}

.job-detail {
  padding: 13px;
  border: 1px solid #ded8cf;
  border-radius: 9px;
  background: #f5f1eb;
}

.detail-top {
  display: flex;
  justify-content: space-between;
  color: #999188;
  font-size: 7px;
}

.detail-top b {
  color: #6e685f;
}

.paper-preview {
  width: 94px;
  height: 121px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 17px auto;
  padding: 14px 12px;
  border: 1px solid #bfb8ad;
  background: #fff;
  box-shadow: 4px 5px 0 #ded7cc;
}

.paper-preview > span {
  margin-bottom: 17px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.paper-preview > i {
  width: 100%;
  height: 2px;
  display: block;
  margin-bottom: 5px;
  background: #ded9d1;
}

.paper-preview > i:nth-of-type(2) {
  width: 74%;
}

.paper-preview > i:nth-of-type(3) {
  width: 88%;
}

.paper-preview > div {
  margin-top: auto;
  border-top: 1px solid #d7d1c8;
  padding-top: 7px;
  text-align: right;
  font-size: 6px;
}

.job-detail dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.job-detail dl div {
  display: flex;
  justify-content: space-between;
  gap: 9px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ded8cf;
  font-size: 7px;
}

.job-detail dt {
  color: #9c958c;
}

.job-detail dd {
  margin: 0;
  font-weight: 650;
}

.job-detail > button {
  width: 100%;
  min-height: 28px;
  margin-top: 11px;
  border: 1px solid #d3ccc2;
  border-radius: 5px;
  background: #eee9e1;
  color: #a39c92;
  font-size: 7px;
}

.window-footnote {
  margin: 12px 0 0;
  color: #999289;
  font-size: 7px;
}

.last-scan,
.security-badge {
  padding: 6px 9px;
  border: 1px solid #ded8cf;
  border-radius: 999px;
  color: #7e776e;
  background: #f6f3ed;
  font-size: 8px;
}

.printer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}

.printer-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid #ded8cf;
  border-radius: 9px;
  background: #fffdfa;
}

.printer-card.featured {
  border-color: #e9a58f;
  background: #fff7f2;
}

.printer-card > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.printer-card > b {
  padding: 5px 7px;
  border-radius: 999px;
  background: #eeeae3;
  color: #79736a;
  font-size: 7px;
}

.printer-card.featured > b {
  background: var(--green-soft);
  color: #286c4d;
}

.printer-icon {
  position: relative;
  width: 40px;
  height: 34px;
  border: 1px solid #aaa298;
  border-radius: 5px;
  background: #f2eee7;
}

.printer-icon::before {
  position: absolute;
  top: -7px;
  left: 8px;
  width: 22px;
  height: 15px;
  border: 1px solid #aaa298;
  background: #fff;
  content: "";
}

.printer-icon i {
  position: absolute;
  right: 8px;
  bottom: -6px;
  left: 8px;
  height: 15px;
  border: 1px solid #aaa298;
  background: #fff;
}

.printer-disclaimer {
  margin-top: 18px;
  padding: 13px 15px;
  border-left: 3px solid var(--orange);
  background: #f3eee6;
  color: #777169;
  font-size: 8px;
  line-height: 1.6;
}

.pairing-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 13px;
  margin-top: 25px;
}

.pairing-card {
  min-height: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border: 1px solid #e7a18a;
  border-radius: 11px;
  background:
    linear-gradient(rgba(255, 90, 54, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 90, 54, 0.06) 1px, transparent 1px), #fff6f1;
  background-size: 20px 20px;
  text-align: center;
}

.pairing-card > span {
  color: #ad5d47;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.pairing-card > strong {
  margin: 18px 0 15px;
  color: var(--ink);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: 0.03em;
}

.pairing-card > p {
  margin: 25px 0 0;
  color: #8b796f;
  font-size: 8px;
}

.pairing-expiry {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #efc4b7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #8f5848;
  font-size: 8px;
}

.pairing-expiry i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
}

.pairing-rules {
  display: grid;
  align-content: stretch;
  gap: 9px;
}

.pairing-rules > div {
  display: grid;
  grid-template-columns: 31px 1fr;
  align-items: center;
  gap: 11px;
  padding: 17px;
  border: 1px solid #ded8cf;
  border-radius: 9px;
  background: #faf7f1;
}

.pairing-rules > div > span {
  color: var(--orange);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
}

.pairing-rules p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.pairing-rules strong {
  font-size: 9px;
}

.pairing-rules small {
  color: #999188;
  font-size: 7px;
}

.stage-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
  color: #777168;
  font-size: 10px;
}

.stage-caption span {
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-caption p {
  margin: 0;
}

.facts {
  border-block: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.facts article {
  min-height: 144px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-content: center;
  gap: 7px 11px;
  padding: 24px 27px;
  border-left: 1px solid #3a3934;
}

.facts article:last-child {
  border-right: 1px solid #3a3934;
}

.facts article > span {
  grid-row: 1 / 3;
  color: var(--orange);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 9px;
}

.facts strong {
  font-size: 13px;
}

.facts p {
  margin: 0;
  color: #8f8d86;
  font-size: 10px;
  line-height: 1.5;
}

.section {
  padding-top: 138px;
  padding-bottom: 138px;
}

.section-index {
  color: var(--orange);
  font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 100px;
  margin-top: 58px;
}

.problem-grid h2,
.security-heading h2,
.how-heading h2,
.scope-heading h2,
.sdk-copy h2 {
  margin-bottom: 0;
  font-size: clamp(49px, 6.2vw, 82px);
  font-weight: 670;
  line-height: 0.97;
  letter-spacing: -0.068em;
}

.problem-grid h2 em,
.security-heading h2 em {
  background: var(--blue);
}

.problem-copy {
  padding-top: 7px;
}

.problem-copy .large-copy {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.problem-copy > p:last-child {
  max-width: 540px;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.problem-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 79px;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-bright);
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
}

.problem-strip span {
  padding: 14px 10px;
}

.problem-strip .strip-highlight {
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
}

.problem-strip i {
  color: #9a948a;
  font-style: normal;
}

.security-section {
  border-block: 1px solid var(--ink);
  background: #1a1a16;
  color: var(--paper-bright);
}

.section-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 720;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.security-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  align-items: end;
  gap: 90px;
  margin: 59px 0 67px;
}

.security-heading h2 em {
  color: var(--ink);
}

.security-heading > p {
  margin: 0 0 6px;
  color: #a4a29b;
  font-size: 15px;
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 13px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid #414039;
  border-radius: 16px;
  background: #22221d;
}

.bento-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #77766f;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.bento-meta span {
  color: var(--orange);
}

.bento-card h3 {
  max-width: 570px;
  margin: 45px 0 18px;
  font-size: clamp(29px, 3.5vw, 47px);
  font-weight: 630;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.bento-card > p,
.bento-pdf > div > p {
  max-width: 490px;
  color: #9d9a93;
  font-size: 13px;
  line-height: 1.68;
}

.bento-pairing {
  min-height: 500px;
}

.origin-visual {
  position: absolute;
  right: 31px;
  bottom: 31px;
  left: 31px;
  padding: 19px;
  border: 1px solid #4a4942;
  border-radius: 10px;
  background: #181814;
}

.origin-visual > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #34342f;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 9px;
}

.origin-visual > div i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #48c187;
  box-shadow: 0 0 0 4px rgba(72, 193, 135, 0.11);
}

.origin-visual > div b {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(72, 193, 135, 0.12);
  color: #78d4aa;
  font-size: 7px;
}

.origin-visual > small {
  display: inline-block;
  margin-top: 17px;
  color: #6f6e67;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
  text-decoration: line-through;
}

.origin-visual > strong {
  float: right;
  margin-top: 15px;
  color: #f1846a;
  font-size: 8px;
}

.bento-loopback {
  min-height: 500px;
}

.bento-loopback h3 {
  margin-bottom: 0;
}

.loopback-ring {
  width: 172px;
  height: 172px;
  display: grid;
  place-items: center;
  margin: 40px auto 28px;
  border: 1px solid #484740;
  border-radius: 999px;
  box-shadow:
    0 0 0 16px rgba(255, 255, 255, 0.018),
    0 0 0 32px rgba(255, 255, 255, 0.012);
}

.loopback-ring div {
  width: 101px;
  height: 101px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-family: "Cascadia Code", Consolas, monospace;
}

.loopback-ring span {
  font-size: 10px;
}

.loopback-ring b {
  font-size: 7px;
  letter-spacing: 0.14em;
}

.bento-loopback > p {
  margin: 0 auto;
  text-align: center;
}

.bento-pdf {
  min-height: 400px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 45px;
}

.bento-pdf .bento-meta {
  position: absolute;
  top: 31px;
  right: 31px;
  left: 31px;
}

.document-sheet {
  position: relative;
  width: 190px;
  height: 240px;
  display: flex;
  flex-direction: column;
  padding: 31px 27px;
  border: 1px solid #97958c;
  background: #f5f1e9;
  color: var(--ink);
  box-shadow: 10px 10px 0 #0e0e0c;
}

.doc-corner {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 38px;
  height: 38px;
  border-bottom: 1px solid #97958c;
  border-left: 1px solid #97958c;
  background: #d9d3c8;
}

.document-sheet > span {
  margin-bottom: 36px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.document-sheet > i {
  width: 100%;
  height: 3px;
  display: block;
  margin-bottom: 11px;
  background: #c8c1b6;
}

.document-sheet > i:nth-of-type(2) {
  width: 72%;
}

.document-sheet > i:nth-of-type(3) {
  width: 87%;
}

.document-sheet > strong {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 10px;
  border: 2px solid var(--green);
  color: var(--green);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  transform: rotate(-4deg);
}

.bento-pdf h3 {
  margin-top: 0;
}

.limit-row {
  display: flex;
  gap: 8px;
  margin-top: 23px;
}

.limit-row span {
  padding: 8px 10px;
  border: 1px solid #4b4a43;
  border-radius: 6px;
  color: #b8b5ad;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
}

.bento-queue {
  min-height: 400px;
}

.bento-queue h3 {
  margin-bottom: 15px;
}

.bento-queue code {
  color: #f1957e;
}

.state-track {
  position: absolute;
  right: 31px;
  bottom: 37px;
  left: 31px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.state-track::before {
  position: absolute;
  z-index: 0;
  top: 5px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: #4b4a43;
  content: "";
}

.state-track span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  color: #797770;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 7px;
  text-align: center;
}

.state-track i {
  width: 11px;
  height: 11px;
  border: 2px solid #4b4a43;
  border-radius: 999px;
  background: #22221d;
}

.state-track .track-done {
  color: #aaa79f;
}

.state-track .track-done i {
  border-color: #48c187;
  background: #48c187;
}

.state-track .track-warn {
  color: #e78d75;
}

.state-track .track-warn i {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 54, 0.1);
}

.how-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  margin: 56px 0 74px;
}

.how-heading p {
  max-width: 330px;
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--ink);
  list-style: none;
}

.steps li {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  padding: 26px 29px 30px;
  border-left: 1px solid var(--ink);
}

.steps li:last-child {
  border-right: 1px solid var(--ink);
}

.step-number {
  align-self: flex-end;
  color: var(--orange);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 9px;
}

.step-icon {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 46px auto 52px;
}

.step-client {
  border: 1px solid var(--ink);
  border-radius: 13px;
  background: var(--paper-bright);
  box-shadow: 8px 8px 0 var(--blue);
}

.step-client::before {
  position: absolute;
  inset: 12px 12px auto;
  height: 10px;
  border-bottom: 1px solid var(--line-dark);
  content: "";
}

.step-client i {
  position: absolute;
  left: 24px;
  width: 82px;
  height: 8px;
  border-radius: 3px;
  background: var(--paper-muted);
}

.step-client i:nth-child(1) {
  top: 46px;
}

.step-client i:nth-child(2) {
  top: 65px;
  width: 61px;
}

.step-client i:nth-child(3) {
  top: 90px;
  width: 46px;
  background: var(--orange);
}

.step-guard {
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--orange-soft);
}

.step-guard::before {
  width: 62px;
  height: 74px;
  border: 2px solid var(--ink);
  border-radius: 30px 30px 22px 22px;
  background: var(--paper-bright);
  content: "";
}

.step-guard i {
  position: absolute;
  width: 13px;
  height: 23px;
  border-radius: 999px;
  background: var(--orange);
}

.step-target::before {
  position: absolute;
  inset: 23px 8px 27px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  background: var(--paper-bright);
  content: "";
  box-shadow: 8px 8px 0 var(--yellow);
}

.step-target::after {
  position: absolute;
  top: 7px;
  left: 35px;
  width: 60px;
  height: 56px;
  border: 2px solid var(--ink);
  background: #fff;
  content: "";
}

.step-target i:nth-child(1) {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 17px;
  left: 24px;
  height: 39px;
  border: 2px solid var(--ink);
  background: #fff;
}

.step-target i:nth-child(2) {
  position: absolute;
  z-index: 3;
  top: 75px;
  right: 27px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.steps h3 {
  margin-bottom: 13px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.steps p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.steps code {
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper-bright);
  color: #68635b;
  font-size: 9px;
}

.scope-section {
  border-block: 1px solid var(--ink);
  background: #e6e0d6;
}

.scope-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 120px;
  margin-bottom: 66px;
}

.scope-heading .section-index {
  margin-bottom: 52px;
}

.scope-heading > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.scope-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.scope-card {
  border: 1px solid var(--ink);
  border-radius: 14px;
  background: var(--paper-bright);
  box-shadow: 7px 7px 0 var(--ink);
}

.scope-title {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
}

.scope-title span {
  color: var(--ink-faint);
}

.scope-title b {
  padding: 8px 10px;
  border-radius: 6px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.scope-yes .scope-title b {
  background: var(--green-soft);
  color: #246b4a;
}

.scope-no .scope-title b {
  background: var(--orange-soft);
  color: #9f3f27;
}

.scope-card ul {
  margin: 0;
  padding: 11px 28px 17px;
  list-style: none;
}

.scope-card li {
  min-height: 54px;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  border-bottom: 1px solid #e4dfd6;
  color: #3f3d38;
  font-size: 12px;
}

.scope-card li:last-child {
  border-bottom: 0;
}

.scope-card li span {
  color: #a49d93;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
}

.scope-note {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 45px;
  margin-top: 29px;
  padding: 26px 29px;
  border-left: 5px solid var(--orange);
  background: rgba(255, 253, 248, 0.6);
}

.scope-note strong {
  font-size: 12px;
}

.scope-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.67;
}

.sdk-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 100px;
}

.sdk-copy .section-index {
  margin-bottom: 48px;
}

.sdk-copy h2 {
  margin-bottom: 27px;
}

.sdk-copy > p {
  margin-bottom: 29px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.73;
}

.code-window {
  margin: 0;
  overflow: hidden;
  border: 1px solid #46443f;
  border-radius: 14px;
  background: #181814;
  color: #d8d5cd;
  box-shadow: 12px 12px 0 var(--blue);
}

.code-window figcaption {
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #383732;
  color: #908e87;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
}

.code-window figcaption b {
  color: #686760;
}

.code-window pre {
  margin: 0;
  overflow-x: auto;
  padding: 37px 35px;
  font:
    12px / 1.85 "Cascadia Code",
    "SFMono-Regular",
    Consolas,
    monospace;
}

.code-key,
.code-fn {
  color: #ff8f72;
}

.code-type {
  color: #f2d06f;
}

.code-string,
.code-value {
  color: #90cde2;
}

.code-comment {
  color: #66655f;
}

.code-result {
  height: 55px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-top: 1px solid #383732;
  background: #1e1e19;
  color: #aaa79f;
  font-size: 9px;
}

.code-result i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #48c187;
  box-shadow: 0 0 0 4px rgba(72, 193, 135, 0.1);
}

.code-result code {
  color: #686760;
  font-size: 8px;
}

.final-cta {
  overflow: hidden;
  padding: 130px 0 139px;
  border-block: 1px solid var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), var(--orange);
  background-size: 39px 39px;
  color: #fff;
  text-align: center;
}

.final-cta p {
  margin-bottom: 35px;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-bottom: 46px;
  font-size: clamp(55px, 7.8vw, 102px);
  font-weight: 680;
  line-height: 0.91;
  letter-spacing: -0.073em;
}

.final-cta h2 em {
  background: #fff;
  color: var(--ink);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  box-shadow: 4px 4px 0 var(--ink);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.09);
}

footer {
  padding-top: 69px;
  background: var(--paper);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.65fr);
  gap: 55px;
  padding-bottom: 69px;
}

.footer-main > div:first-child p {
  margin: 17px 0 0;
  color: var(--ink-faint);
  font-size: 11px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 11px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  padding-bottom: 23px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 9px;
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.not-found > .brand {
  position: absolute;
  top: 35px;
}

.not-found-code {
  position: absolute;
  z-index: -1;
  right: 4vw;
  color: rgba(255, 90, 54, 0.11);
  font-size: clamp(180px, 34vw, 540px);
  font-weight: 800;
  line-height: 0.75;
  letter-spacing: -0.1em;
}

.not-found .section-index {
  margin-bottom: 27px;
}

.not-found h1 {
  max-width: 900px;
  margin: 0 0 27px;
  font-size: clamp(58px, 10vw, 130px);
  text-align: left;
}

.not-found > p:not(.section-index) {
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 16px;
}

.button:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.demo-tab:focus-visible,
.menu-button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.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;
}

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .app-shell {
    grid-template-columns: 177px 1fr;
  }

  .queue-layout {
    grid-template-columns: 1fr;
  }

  .job-detail {
    display: none;
  }

  .security-heading,
  .scope-heading {
    grid-template-columns: 1fr 0.72fr;
    gap: 60px;
  }

  .bento-pdf {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
  }

  .document-sheet {
    width: 155px;
    height: 206px;
  }

  .sdk-section {
    gap: 55px;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .release-detail {
    display: none;
  }

  .nav {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 41px;
    height: 41px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    justify-self: end;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 8px;
    background: var(--paper-bright);
  }

  .menu-button span:not(.sr-only) {
    width: 17px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 150ms ease;
  }

  .menu-button[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(3.7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3.7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 63px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 19px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper-bright);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 7px;
    border-bottom: 1px solid var(--paper-muted);
  }

  .hero {
    padding-top: 73px;
  }

  h1 {
    font-size: clamp(54px, 12.7vw, 91px);
  }

  .product-stage {
    margin-top: 58px;
  }

  .app-shell {
    grid-template-columns: 142px 1fr;
  }

  .app-sidebar {
    padding-inline: 9px;
  }

  .mini-brand strong {
    display: none;
  }

  .demo-panel {
    padding: 25px 23px 18px;
  }

  .job-row {
    grid-template-columns: 32px minmax(0, 1fr) auto;
  }

  .job-row time {
    display: none;
  }

  .pairing-layout {
    grid-template-columns: 1fr;
  }

  .pairing-rules {
    grid-template-columns: repeat(3, 1fr);
  }

  .pairing-rules > div {
    grid-template-columns: 1fr;
  }

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

  .facts article:nth-child(2) {
    border-right: 1px solid #3a3934;
  }

  .facts article:nth-child(-n + 2) {
    border-bottom: 1px solid #3a3934;
  }

  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .problem-grid,
  .security-heading,
  .scope-heading,
  .sdk-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .problem-strip {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .problem-strip i {
    transform: rotate(90deg);
  }

  .security-heading > p,
  .scope-heading > p {
    max-width: 570px;
  }

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

  .bento-pdf {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .steps {
    grid-template-columns: 1fr;
    border: 1px solid var(--ink);
  }

  .steps li,
  .steps li:last-child {
    min-height: auto;
    border: 0;
    border-bottom: 1px solid var(--ink);
  }

  .steps li:last-child {
    border-bottom: 0;
  }

  .steps code {
    margin-top: 22px;
  }

  .scope-compare {
    grid-template-columns: 1fr;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sdk-section {
    align-items: stretch;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .release-bar a {
    min-height: 38px;
  }

  .kicker {
    flex-direction: column;
    gap: 8px;
  }

  .kicker span + span::before {
    display: none;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    flex-wrap: wrap;
    line-height: 1.8;
  }

  .product-stage {
    margin-right: -16px;
    margin-left: -16px;
  }

  .app-window {
    border-radius: 0;
  }

  .window-bar {
    grid-template-columns: 1fr 1fr;
  }

  .window-title {
    display: none;
  }

  .app-shell {
    min-height: 520px;
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: block;
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid #ded8ce;
  }

  .mini-brand,
  .sidebar-label,
  .sidebar-origin,
  .sidebar-local {
    display: none;
  }

  .sidebar-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .demo-tab {
    grid-template-columns: auto 1fr;
    justify-content: center;
    padding-inline: 8px;
  }

  .demo-tab b {
    display: none;
  }

  .demo-panel {
    padding: 23px 16px 15px;
  }

  .panel-head h2 {
    font-size: 21px;
  }

  .queue-toolbar {
    gap: 13px;
  }

  .queue-toolbar .queue-search {
    display: none;
  }

  .job-state {
    max-width: 68px;
  }

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

  .pairing-card {
    min-height: 260px;
    padding-inline: 15px;
  }

  .pairing-rules {
    grid-template-columns: 1fr;
  }

  .stage-caption {
    display: none;
  }

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

  .facts article,
  .facts article:nth-child(2),
  .facts article:last-child {
    border-right: 1px solid #3a3934;
    border-bottom: 1px solid #3a3934;
  }

  .section-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-heading h2,
  .problem-grid h2,
  .how-heading h2,
  .scope-heading h2,
  .sdk-copy h2 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .bento-card {
    padding: 25px;
  }

  .bento-pairing,
  .bento-loopback {
    min-height: 470px;
  }

  .origin-visual,
  .state-track {
    right: 25px;
    left: 25px;
  }

  .bento-pdf {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .document-sheet {
    width: 145px;
    height: 190px;
    margin: 0 auto;
  }

  .bento-pdf h3 {
    margin-top: 10px;
  }

  .how-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 29px;
  }

  .scope-title {
    padding-inline: 18px;
  }

  .scope-card ul {
    padding-inline: 18px;
  }

  .code-window {
    margin-right: -9px;
    margin-left: -9px;
  }

  .code-window pre {
    padding: 27px 21px;
    font-size: 9px;
  }

  .final-cta {
    padding: 100px 0 108px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 50px;
  }

  .hero {
    padding-top: 58px;
  }

  .job-row {
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .pairing-card > strong {
    font-size: 11px;
  }

  .bento-card h3 {
    font-size: 34px;
  }

  .state-track span {
    font-size: 6px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main > div:first-child {
    grid-column: auto;
  }
}

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

  .site-header,
  .button,
  .nav-cta,
  .nav-links a,
  .footer-column a,
  .text-link span,
  .menu-button span:not(.sr-only) {
    transition: none;
  }

  .demo-panel.active {
    animation: none;
  }
}
