:root {
  --paper: #f6f3ec;
  --paper-2: #efebe2;
  --ink: #161513;
  --muted: #6b665c;
  --line: #d8d2c6;
  --line-strong: #c4bdb0;
  --surface: #ebe6dc;
  --accent: #1e3f34;
  --accent-soft: #e4ece8;
  --warn: #6b5420;
  --warn-soft: #f1ead8;
  --stop: #5c2b24;
  --stop-soft: #f0e2df;
  --max: 1180px;
  --header: 64px;
  --font: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow: 0 1px 0 rgba(22, 21, 19, 0.04);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  letter-spacing: -0.011em;
  min-height: 100%;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(720px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  gap: 16px;
  flex-wrap: wrap;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-decoration: none;
  font-size: 1.05rem;
}

.wordmark:hover {
  color: var(--ink);
}

.wordmark-mark {
  width: 14px;
  height: 18px;
  border: 1px solid currentColor;
  position: relative;
  flex: none;
}

.wordmark-mark::before,
.wordmark-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 5px;
  background: currentColor;
  transform: translateX(-50%);
}

.wordmark-mark::before {
  top: -5px;
}

.wordmark-mark::after {
  bottom: -5px;
}

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

.nav a {
  text-decoration: none;
  font-size: 0.9375rem;
}

.nav a:not(.btn):hover {
  color: var(--ink);
  text-decoration: underline;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: #2a2825;
  color: var(--paper);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--surface);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(246, 243, 236, 0.35);
  color: var(--paper);
}

.btn-ghost:hover {
  background: rgba(246, 243, 236, 0.08);
  color: var(--paper);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.section-cta {
  margin-top: 28px;
}

.btn-block {
  width: 100%;
}

/* Type */

.kicker {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 550;
  letter-spacing: -0.048em;
  line-height: 0.96;
  text-wrap: balance;
}

.section-title {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.lede {
  margin: 16px 0 0;
  max-width: 38em;
  color: var(--muted);
  font-size: 1.125rem;
}

.lede-center {
  margin-inline: auto;
  text-align: center;
}

.center {
  text-align: center;
}

hr.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Hero */

.hero {
  padding: 72px 0 24px;
}

.hero .display {
  max-width: 11ch;
}

.hero .lede {
  max-width: 36em;
}

.hero .btn-row {
  margin-top: 28px;
}

.hero-visual {
  margin-top: 56px;
  padding: 48px 24px 56px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

/* Flow primitive */

.flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.flow-io,
.flow-pay,
.flow-work {
  width: min(100%, 420px);
}

.flow-kicker {
  display: block;
  margin-bottom: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.flow-io strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.25;
  min-height: 2.5em;
}

.flow-out strong {
  color: var(--accent);
}

.flow-arrow {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1;
  padding: 12px 0;
  animation: drop 1.4s ease both;
}

.flow-in {
  animation: rise 0.7s ease both;
}

.flow-out {
  animation: rise 0.7s ease 0.2s both;
}

.flow-pay {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  animation: rise 0.7s ease 0.35s both;
}

.flow-pay strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 550;
  letter-spacing: -0.03em;
}

.flow-work {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.flow-work li {
  border: 1px solid var(--line);
  padding: 5px 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.flow-compact .flow-io,
.flow-compact .flow-pay {
  width: 100%;
}

.flow-compact .flow-io strong {
  font-size: 1.05rem;
}

.flow-compact .flow-arrow {
  padding: 8px 0;
  font-size: 1rem;
}

.flow-compact .flow-pay {
  margin-top: 16px;
  padding-top: 14px;
}

.flow-compact .flow-pay strong {
  font-size: 0.98rem;
}

.flow-compact .flow-work {
  display: none;
}

.flow-page .flow-io,
.flow-page .flow-pay,
.flow-page .flow-work {
  width: min(100%, 480px);
}

/* Outcome chips */

.outcome-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.outcome-chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 18px;
  background: var(--paper);
  text-decoration: none;
  min-height: 128px;
}

.outcome-chip:hover {
  background: var(--paper-2);
  color: inherit;
}

.outcome-chip .from {
  color: var(--muted);
  font-size: 0.92rem;
}

.outcome-chip .arrow {
  color: var(--line-strong);
  font-size: 0.85rem;
}

.outcome-chip .to {
  margin-top: 4px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-size: 1.05rem;
}

.outcome-chip .pay {
  margin-top: auto;
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Sections */

.section {
  padding: 88px 0;
}

#how-it-works {
  scroll-margin-top: calc(var(--header) + 12px);
}

.section-head {
  margin-bottom: 40px;
}

.section-muted {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.example-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.example-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.example-list .from {
  color: var(--muted);
}

.example-list .to {
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-align: right;
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step {
  padding: 0;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.step h3 {
  margin: 8px 0 16px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill-list li {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 6px 10px;
  font-size: 0.82rem;
}

.note {
  margin: 28px 0 0;
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: -0.02em;
}

/* Agent cards */

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.agent-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 22px 22px 20px;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}

a.agent-card:hover {
  border-color: var(--ink);
  color: inherit;
}

.agent-card-name {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agent-card-promise {
  margin: 18px 0 18px;
  font-size: 0.98rem;
}

.agent-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.agent-card[data-hidden] {
  display: none;
}

/* Marketplace */

.page-hero {
  padding: 64px 0 36px;
}

.page-bottom {
  padding-bottom: 96px;
}

.page-hero .display {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 16ch;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 32px;
}

.search {
  width: min(100%, 320px);
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
}

.search::placeholder {
  color: var(--muted);
}

.filter-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tabs label {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  cursor: pointer;
}

.tabs label:hover {
  border-color: var(--ink);
}

.marketplace:has(#cat-all:checked) label[for="cat-all"],
.marketplace:has(#cat-healthcare:checked) label[for="cat-healthcare"],
.marketplace:has(#cat-financial:checked) label[for="cat-financial"],
.marketplace:has(#cat-industrial:checked) label[for="cat-industrial"],
.marketplace:has(#cat-operations:checked) label[for="cat-operations"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.marketplace:has(#cat-all:focus-visible) label[for="cat-all"],
.marketplace:has(#cat-healthcare:focus-visible) label[for="cat-healthcare"],
.marketplace:has(#cat-financial:focus-visible) label[for="cat-financial"],
.marketplace:has(#cat-industrial:focus-visible) label[for="cat-industrial"],
.marketplace:has(#cat-operations:focus-visible) label[for="cat-operations"] {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.marketplace:has(#cat-healthcare:checked) .agent-card:not([data-category="healthcare"]),
.marketplace:has(#cat-financial:checked) .agent-card:not([data-category="financial"]),
.marketplace:has(#cat-industrial:checked) .agent-card:not([data-category="industrial"]),
.marketplace:has(#cat-operations:checked) .agent-card:not([data-category="operations"]) {
  display: none;
}

/* Agent detail */

.agent-hero {
  padding: 56px 0 8px;
}

.agent-hero .display {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  max-width: 18ch;
}

.agent-hero .lede {
  font-size: 1.2rem;
  color: var(--ink);
}

.detail-visual {
  margin: 40px 0 28px;
}

.stack {
  display: grid;
  gap: 12px;
}

.input-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.input-list li {
  background: var(--paper);
  padding: 16px 18px;
}

/* Timeline */

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.owner {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  vertical-align: 0.05em;
}

.owner-agent {
  background: var(--ink);
}

.owner-shared {
  background: conic-gradient(var(--ink) 0 180deg, var(--paper) 180deg 360deg);
}

.owner-human {
  background: var(--paper);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow: auto;
}

.timeline li {
  flex: 1 0 7.5rem;
  position: relative;
  padding: 0 12px 0 0;
  min-height: 88px;
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 18px;
  right: 0;
  height: 1px;
  background: var(--line-strong);
}

.timeline li:last-child::after {
  display: none;
}

.timeline .dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.timeline [data-owner="agent"] .dot {
  background: var(--ink);
}

.timeline [data-owner="shared"] .dot {
  background: conic-gradient(var(--ink) 0 180deg, var(--paper) 180deg 360deg);
}

.timeline span {
  display: block;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.timeline small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

/* Capabilities */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cap-grid h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.cap-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cap-grid li {
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

/* Controls */

.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

.matrix th,
.matrix td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.matrix th {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.matrix td:last-child,
.matrix th:last-child {
  text-align: right;
  white-space: nowrap;
}

.perm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
}

.perm i {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  font-style: normal;
}

.perm-allowed {
  color: var(--accent);
}

.perm-allowed i {
  background: var(--accent);
  border-color: var(--accent);
}

.perm-approval {
  color: var(--warn);
}

.perm-approval i {
  background: conic-gradient(var(--warn) 0 180deg, transparent 180deg 360deg);
  border-color: var(--warn);
}

.perm-prohibited {
  color: var(--stop);
}

.perm-prohibited i {
  background: transparent;
}

.perm-prohibited i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top right,
    transparent calc(50% - 0.5px),
    currentColor calc(50% - 0.5px),
    currentColor calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
}

/* Escalation */

.escalation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: stretch;
}

.esc-box {
  border: 1px solid var(--line);
  padding: 22px 18px;
  min-height: 110px;
}

.esc-box strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.esc-box span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.esc-box:nth-child(odd) {
  background: var(--paper);
}

.esc-box:nth-child(even) {
  background: var(--paper-2);
}

/* Comparison */

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.compare caption {
  caption-side: top;
  text-align: left;
  padding: 12px 16px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.compare th,
.compare td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.compare th:first-child,
.compare td:first-child {
  text-align: left;
  font-weight: 500;
}

.compare thead th {
  font-size: 0.82rem;
  font-weight: 550;
}

.compare tbody tr:last-child td {
  border-bottom: 0;
}

.compare td:last-child,
.compare th:last-child {
  color: var(--accent);
  font-weight: 550;
}

/* Integrations */

.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.int-grid li {
  border: 1px solid var(--line);
  padding: 18px 16px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Band */

.band {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
}

.band .section-title,
.band .display {
  color: var(--paper);
}

.band .lede {
  color: rgba(246, 243, 236, 0.72);
}

.band .btn-primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.band .btn-primary:hover {
  background: #e7e2d6;
  color: var(--ink);
}

/* Form */

.form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.tweet textarea {
  min-height: 160px;
  font-size: 1.125rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
  resize: vertical;
}

.tweet-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

.tweet-count {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.form-error {
  margin: 0;
  color: var(--stop);
  font-size: 0.92rem;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.success {
  padding: 64px 0 96px;
}

.success h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a,
.footer-copy {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
}

/* Sticky hire */

.sticky-hire {
  display: none;
}

.legal {
  padding: 64px 0 96px;
}

.legal p {
  max-width: 42em;
  color: var(--muted);
}

/* Motion */

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

@keyframes drop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */

@media (max-width: 980px) {
  .outcome-row {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .steps,
  .agent-grid,
  .cap-grid,
  .escalation {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .nav {
    gap: 12px;
  }

  .nav a:not(.btn) {
    font-size: 0.88rem;
  }

  .site-header,
  .header-inner {
    height: auto;
    min-height: var(--header);
  }

  .header-inner {
    padding: 10px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    padding: 32px 16px 40px;
  }

  .section {
    padding: 64px 0;
  }

  .outcome-row,
  .split,
  .steps,
  .agent-grid,
  .cap-grid,
  .escalation,
  .input-list,
  .int-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
  }

  .timeline li {
    flex: none;
    padding: 0 0 20px 0;
    min-height: 0;
  }

  .timeline li::after {
    top: 12px;
    left: 5px;
    right: auto;
    width: 1px;
    height: calc(100% - 8px);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-hire {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .has-sticky-hire {
    padding-bottom: 84px;
  }

  .matrix td:last-child,
  .matrix th:last-child {
    white-space: normal;
  }
}
