:root {
  --bg: #f6f1e8;
  --bg-deep: #efe2cc;
  --ink: #1f1a14;
  --muted: #6c6257;
  --accent: #a64d2d;
  --accent-soft: rgba(166, 77, 45, 0.12);
  --card: rgba(255, 252, 247, 0.84);
  --card-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(48, 35, 23, 0.12);
  --shadow: 0 22px 54px rgba(62, 38, 18, 0.12);
  --radius: 22px;
  --good-bg: rgba(31, 108, 84, 0.12);
  --warn-bg: rgba(194, 124, 62, 0.16);
  --bad-bg: rgba(143, 45, 45, 0.12);
  --font-display: "Space Grotesk", "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(166, 77, 45, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(215, 164, 108, 0.24), transparent 34%),
    linear-gradient(160deg, var(--bg) 0%, #fbf6ef 48%, var(--bg-deep) 100%);
}

.shell-body,
.operator-body {
  min-height: 100vh;
}

.hero-shell,
.signin-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.shell-header,
.operator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.landing-grid,
.panel-section,
.signin-card,
.operator-sidebar,
.operator-main {
  animation: rise-in 0.45s ease-out both;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
  padding: 12px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, #8f2d2d 0%, var(--accent) 54%, #c27c3e 100%);
  box-shadow: 0 16px 28px rgba(166, 77, 45, 0.24);
}

.button.ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.button.small {
  padding: 9px 14px;
  font-size: 0.92rem;
}

.hero-card,
.summary-card,
.signin-card,
.panel-section,
.operator-sidebar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.landing-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.nav-landing-body {
  min-height: 100vh;
}

.landing-nav-shell {
  width: min(1460px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.landing-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: start;
}

.landing-menu-group {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: rise-in 0.45s ease-out both;
}

.landing-menu-title {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.landing-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.landing-menu-link {
  display: block;
  color: var(--ink);
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.landing-menu-link:hover,
.landing-menu-link:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(166, 77, 45, 0.18);
  transform: translateX(2px);
}

.hero-card {
  padding: 28px;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(143, 45, 45, 0.07), rgba(215, 164, 108, 0.15)),
    var(--card);
}

.summary-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.summary-card {
  padding: 18px 20px;
}

.summary-label,
.summary-detail,
.sidebar-meta,
.operator-hero-note,
.operator-hero-meta,
.section-note,
.action-cluster-label,
.status-card-copy,
.fact-card-value {
  color: var(--muted);
}

.status-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.status-chip {
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.62);
}

.tone-good {
  color: #1f6c54;
}

.tone-warn {
  color: #9d6a11;
}

.tone-bad {
  color: #8f2d2d;
}

.operator-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 22px;
  width: min(1520px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.operator-sidebar {
  padding: 24px 20px;
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  max-height: calc(100vh - 36px);
  overflow: hidden;
}

.operator-nav {
  display: grid;
  gap: 16px;
  margin: 0;
  overflow: auto;
  padding-right: 6px;
}

.operator-nav-group {
  display: grid;
  gap: 8px;
}

.operator-nav-group-emphasis {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(166, 77, 45, 0.08), rgba(255, 255, 255, 0.4)),
    rgba(255, 252, 247, 0.72);
}

.operator-nav-title {
  margin: 0;
  padding: 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: var(--muted);
}

.operator-nav a {
  color: var(--ink);
  text-decoration: none;
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.operator-nav a:hover,
.operator-nav a.is-active {
  background: var(--accent-soft);
  border-color: rgba(166, 77, 45, 0.16);
  transform: translateX(2px);
}

.sidebar-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.operator-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.operator-header {
  align-items: stretch;
}

.operator-hero {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(140deg, rgba(166, 77, 45, 0.08), rgba(255, 255, 255, 0.72)),
    var(--card);
  backdrop-filter: blur(14px);
}

.operator-hero-copy {
  display: grid;
  gap: 10px;
  max-width: 44rem;
}

.operator-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.95rem;
}

.operator-hero-note {
  margin: 0;
  max-width: 38rem;
  line-height: 1.6;
}

.operator-header-actions {
  display: grid;
  gap: 12px;
  align-items: start;
  justify-items: stretch;
  min-width: min(34rem, 100%);
}

.action-cluster {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.action-cluster-primary {
  background:
    linear-gradient(180deg, rgba(166, 77, 45, 0.08), rgba(255, 255, 255, 0.82)),
    rgba(255, 255, 255, 0.78);
}

.action-cluster-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.action-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.execution-shell {
  display: grid;
  gap: 18px;
}

.execution-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-field.field-wide {
  grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.9);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

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

.form-actions,
.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-actions {
  grid-column: 1 / -1;
}

.panel-section {
  display: grid;
  gap: 18px;
  padding: 24px 26px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-note {
  margin: 0;
  line-height: 1.6;
  max-width: 34rem;
}

.surface-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.surface-card-plain {
  background: rgba(255, 255, 255, 0.58);
}

.surface-card-accent {
  background:
    linear-gradient(180deg, rgba(166, 77, 45, 0.08), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.76);
}

.surface-card-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.surface-card-head h4 {
  margin: 0;
  font-family: var(--font-display);
}

.detail-shell {
  display: grid;
  gap: 16px;
}

.detail-grid {
  display: grid;
  gap: 16px;
}

.detail-grid-facts,
.detail-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-grid,
.facts-grid,
.split-grid {
  display: grid;
  gap: 16px;
}

.status-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.facts-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.split-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.status-card,
.fact-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
}

.status-card h4,
.fact-card h4 {
  margin: 0 0 10px;
  font-family: var(--font-display);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  background: rgba(31, 26, 20, 0.06);
}

.status-pill.tone-good {
  background: var(--good-bg);
  border-color: rgba(31, 108, 84, 0.18);
}

.status-pill.tone-warn {
  background: var(--warn-bg);
  border-color: rgba(194, 124, 62, 0.22);
}

.status-pill.tone-bad {
  background: var(--bad-bg);
  border-color: rgba(143, 45, 45, 0.2);
}

.status-card-copy,
.summary-detail,
.table-copy,
.fact-card-value {
  line-height: 1.6;
}

.summary-card h3,
.fact-card-value {
  margin: 0;
}

.table-shell {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.table-scroll {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.table-shell table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  overflow: hidden;
}

.facts-grid + .table-shell,
.summary-grid + .table-shell {
  margin-top: 18px;
}

.table-shell + .table-shell {
  margin-top: 18px;
}

.table-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.table-shell th,
.table-shell td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
  word-break: break-word;
  white-space: normal;
}

.table-shell th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(246, 241, 232, 0.92);
}

.table-shell tbody tr:nth-child(even) {
  background: rgba(255, 252, 247, 0.5);
}

.table-shell tbody tr:hover {
  background: rgba(166, 77, 45, 0.06);
}

.table-shell tbody tr.is-selected {
  background: rgba(166, 77, 45, 0.12);
}

.token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.token {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.token code,
.mono-pill {
  font-family: "IBM Plex Mono", Consolas, monospace;
}

.mono-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 12px;
  background: rgba(31, 26, 20, 0.06);
}

.table-empty {
  color: var(--muted);
}

.table-meta {
  color: var(--muted);
  white-space: nowrap;
}

.table-number {
  font-variant-numeric: tabular-nums;
}

.kv-list {
  margin: 0;
  display: grid;
  gap: 10px;
}

.kv-list div {
  display: grid;
  gap: 4px;
}

.kv-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kv-list dd {
  margin: 0;
}

.bullet-list {
  margin: 14px 0 0;
  padding-left: 18px;
  line-height: 1.6;
}

.inline-alert {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: auto;
  white-space: pre-wrap;
}

.inline-alert.bad {
  color: #8f2d2d;
  background: rgba(143, 45, 45, 0.08);
}

.inline-alert.warn {
  color: #9d6a11;
  background: rgba(194, 124, 62, 0.14);
}

.inline-alert.muted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
}

.hidden {
  display: none;
}

.signin-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.signin-card {
  width: min(560px, calc(100% - 32px));
  padding: 34px;
  display: grid;
  gap: 16px;
}

.signin-form {
  display: grid;
  gap: 14px;
}

.docs-layout {
  grid-template-columns: 320px 1fr;
}

.docs-sidebar {
  display: grid;
  gap: 18px;
}

.docs-tree {
  display: grid;
  gap: 14px;
  max-height: 44vh;
  overflow: auto;
  padding-right: 4px;
}

.docs-tree-section {
  display: grid;
  gap: 8px;
}

.docs-tree-heading,
.docs-tree-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.docs-tree-heading {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  font-weight: 600;
}

.docs-tree-heading.active,
.docs-tree-link.active,
.docs-route-nav a:hover,
.docs-route-nav a.active {
  background: rgba(166, 77, 45, 0.12);
}

.docs-tree-count {
  color: var(--muted);
}

.docs-tree-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 8px;
  display: grid;
  gap: 6px;
}

.docs-tree-link {
  padding: 8px 10px;
  border-radius: 12px;
}

.docs-main {
  gap: 14px;
}

.docs-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.docs-breadcrumbs a {
  color: var(--ink);
  text-decoration: none;
}

.docs-breadcrumb-sep {
  color: var(--muted);
}

.docs-panel {
  overflow: hidden;
}

.docs-hero,
.docs-view-grid,
.docs-card-grid,
.docs-quick-links,
.docs-meta-row {
  display: grid;
  gap: 16px;
}

.docs-hero {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 22px;
}

.docs-section-block + .docs-section-block {
  margin-top: 28px;
}

.docs-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.docs-doc-card {
  display: grid;
  gap: 14px;
}

.docs-doc-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.docs-doc-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.docs-doc-card a,
.docs-inline-link {
  color: var(--accent);
  text-decoration: none;
}

.docs-inline-link {
  font-weight: 600;
}

.docs-meta-row {
  grid-template-columns: repeat(auto-fit, minmax(160px, auto));
}

.meta-pill,
.docs-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 7px 12px;
  font-size: 0.88rem;
}

.docs-tag-row,
.docs-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.docs-view-grid {
  grid-template-columns: 320px 1fr;
  align-items: start;
}

.docs-meta-panel,
.docs-prose {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.docs-meta-panel {
  padding: 20px;
  display: grid;
  gap: 16px;
  position: sticky;
  top: 18px;
}

.docs-meta-panel h3 {
  margin: 0;
}

.docs-definition-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.docs-definition-list div {
  display: grid;
  gap: 4px;
}

.docs-definition-list dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.docs-definition-list dd {
  margin: 0;
}

.docs-link-list {
  margin: 0;
  padding-left: 18px;
}

.docs-prose {
  padding: 28px;
  overflow: auto;
}

.docs-prose h1,
.docs-prose h2,
.docs-prose h3,
.docs-prose h4 {
  scroll-margin-top: 24px;
}

.docs-prose p,
.docs-prose li,
.docs-prose blockquote {
  line-height: 1.65;
}

.docs-prose a {
  color: var(--accent);
}

.docs-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.docs-prose th,
.docs-prose td {
  padding: 12px 10px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.docs-prose th {
  background: rgba(166, 77, 45, 0.08);
}

.docs-prose pre {
  padding: 16px;
  overflow: auto;
  border-radius: 16px;
  background: #201a16;
  color: #f5efe8;
}

.docs-prose code {
  font-family: "IBM Plex Mono", Consolas, monospace;
}

.docs-prose p code,
.docs-prose li code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(31, 26, 20, 0.08);
  color: var(--ink);
}

.docs-prose blockquote {
  margin: 18px 0;
  padding: 12px 18px;
  border-left: 4px solid rgba(166, 77, 45, 0.5);
  background: rgba(166, 77, 45, 0.06);
}

.runworkers-shell {
  width: min(1520px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 40px;
  display: grid;
  gap: 22px;
}

.runworkers-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.runworkers-hero-copy {
  display: grid;
  gap: 10px;
  max-width: 54rem;
}

.runworkers-hero-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.runworkers-section-actions {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.runworkers-definition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.runworkers-line-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.runworkers-line-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(260px, 1.2fr) minmax(320px, 1.85fr);
  gap: 16px;
  align-items: start;
  padding: 14px 18px;
  border-top: 1px solid rgba(120, 74, 38, 0.1);
}

.runworkers-line-row:first-child {
  border-top: 0;
}

.runworkers-line-row.is-empty {
  grid-template-columns: 1fr;
}

.runworkers-line-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

.runworkers-line-value {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
}

.runworkers-line-detail {
  color: var(--muted-ink);
  line-height: 1.55;
}

.runworkers-definition-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.runworkers-definition-copy {
  margin: 0;
  line-height: 1.6;
  color: var(--ink);
}

.runworkers-stage-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.runworkers-stage-pill.stage-yes {
  color: #1f6c54;
  background: var(--good-bg);
  border-color: rgba(31, 108, 84, 0.18);
}

.runworkers-stage-pill.stage-part {
  color: #9d6a11;
  background: var(--warn-bg);
  border-color: rgba(194, 124, 62, 0.22);
}

.runworkers-stage-pill.stage-no {
  color: #8f2d2d;
  background: var(--bad-bg);
  border-color: rgba(143, 45, 45, 0.2);
}

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

@media (max-width: 980px) {
  .landing-grid,
  .operator-layout {
    grid-template-columns: 1fr;
  }

  .landing-nav-shell {
    width: min(100%, calc(100% - 24px));
    padding: 16px 0 28px;
  }

  .landing-nav-grid {
    grid-template-columns: 1fr;
  }

  .operator-sidebar {
    position: static;
    max-height: none;
  }

  .shell-header,
  .operator-header,
  .section-heading,
  .surface-card-head,
  .runworkers-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .operator-header-actions,
  .detail-grid-facts,
  .detail-grid-two,
  .runworkers-definition-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .runworkers-section-actions {
    justify-items: start;
  }

  .runworkers-line-row {
    grid-template-columns: 1fr;
  }

  .table-shell table {
    min-width: 640px;
  }

  .docs-view-grid {
    grid-template-columns: 1fr;
  }

  .docs-meta-panel {
    position: static;
  }
}
