:root {
  color-scheme: light;
  --bg: #ede7da;
  --ink: #17211a;
  --muted: #5b655e;
  --line: #d0c4b2;
  --panel: rgba(255, 250, 240, 0.84);
  --panel-strong: rgba(255, 248, 235, 0.96);
  --accent: #244b3d;
  --accent-2: #a6462b;
  --good: #2d6840;
  --bad: #9f3d29;
  --warn: #8d691e;
  --neutral-chip: #444841;
  --pressure-ink: #5a2323;
  --pressure-ink-soft: #6a2f2f;
  --pressure-charcoal: #4a423d;
  --shadow: rgba(23, 33, 26, 0.08);
  --text-shadow: rgba(14, 18, 16, 0.42);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Georgia Pro", Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(36, 75, 61, 0.16), transparent 22%),
    radial-gradient(circle at top right, rgba(166, 70, 43, 0.14), transparent 24%),
    linear-gradient(180deg, #efe8db, #e6dfd0);
}

button {
  cursor: pointer;
  border: 1px solid var(--accent);
  background: var(--panel-strong);
  color: var(--accent);
  padding: 0.5rem 0.8rem;
  border-radius: 10px;
  font: 600 0.98rem/1.1 "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#app {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(0.7rem, 1vw, 1rem);
}

.topbar,
.info-bar,
.lane,
.review-strip,
.log-shell {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px var(--shadow);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  margin-bottom: 0.7rem;
}

.brand-stack {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-titles h1 {
  margin: 0;
  font-size: 1.85rem;
  letter-spacing: 0.02em;
}

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo.game {
  height: 56px;
  width: auto;
}

.studio-float {
  position: fixed;
  right: 14px;
  bottom: 12px;
  height: 38px;
  width: auto;
  opacity: 0.88;
  z-index: 50;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(14, 18, 16, 0.16));
}

.top-actions,
.round-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  margin-bottom: 0.8rem;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
}

.status-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  min-width: 0;
  padding-bottom: 0.1rem;
  scrollbar-width: thin;
}

.metric-badge {
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  font-size: 0.83rem;
  white-space: nowrap;
  font-family: "Inter", "Segoe UI", sans-serif;
}

.metric-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.18));
}

.metric-badge.projected {
  background: rgba(243, 242, 236, 0.92);
  border-color: rgba(36, 75, 61, 0.24);
}

.metric-key {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-value {
  display: inline-flex;
  gap: 0.22rem;
  align-items: center;
}

.metric-arrow {
  color: var(--muted);
}

.pressure-lane {
  position: relative;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(23, 33, 26, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 4px rgba(23, 33, 26, 0.08);
}

.pressure-fill {
  position: absolute;
  top: 0;
  bottom: 0;
}

.pressure-fill.climate {
  left: 0;
  background: linear-gradient(90deg, rgba(74, 66, 61, 0.82), rgba(90, 35, 35, 0.82));
}

.pressure-fill.outrage {
  right: 0;
  background: linear-gradient(90deg, rgba(106, 47, 47, 0.82), rgba(90, 35, 35, 0.9));
}

.pressure-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 26, 0.12);
  background: rgba(255, 255, 255, 0.78);
  font: 600 0.76rem/1 "Inter", "Segoe UI", sans-serif;
}

.pressure-chip.climate { color: var(--pressure-charcoal); }
.pressure-chip.outrage { color: var(--pressure-ink); }
.pressure-chip.total { color: var(--neutral-chip); }

.pressure-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.pressure-stack.compact {
  width: clamp(220px, 28vw, 360px);
  flex: 0 1 360px;
}

.pressure-stack {
  display: grid;
  gap: 0.14rem;
  padding: 0.34rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 26, 0.12);
  background: rgba(255,255,255,0.78);
}

.pressure-gap {
  text-align: center;
  font: 700 0.65rem/1 "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.board-layout {
  display: grid;
  gap: 0.8rem;
  width: 100%;
}

#board {
  display: grid;
  gap: 0.75rem;
}

.lane {
  border-radius: 16px;
  padding: 0.7rem;
}

.human-lane {
  border-color: var(--accent);
  background: rgba(250, 247, 237, 0.96);
}

.lane-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.corp-name {
  font-size: 1.15rem;
  font-weight: 700;
}

.corp-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.lane-body {
  display: grid;
  grid-template-columns: minmax(0, var(--lane-left-fr, 1.1fr)) minmax(0, var(--lane-right-fr, 1.2fr));
  gap: 0.7rem;
  align-items: start;
}

.lane-zone {
  min-height: 172px;
  min-width: 0;
}

.zone-label,
.review-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.35rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
}

.review-label {
  font-size: 0.73rem;
  margin-bottom: 0.2rem;
}

.card-rack {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}

.empty-zone,
.lane-center {
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  padding: 0.8rem;
  background: rgba(255,255,255,0.28);
}

.card {
  position: relative;
  width: 198px;
  flex: 0 0 198px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  border: 1px solid rgba(27, 34, 30, 0.16);
  padding: 0.55rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 26%, rgba(14,18,16,0.1) 100%);
  box-shadow: 0 5px 15px var(--shadow);
  overflow: hidden;
}

.card.event {
  border-color: rgba(166, 70, 43, 0.42);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 28%, rgba(14,18,16,0.14) 100%);
  pointer-events: none;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.01);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  align-items: flex-start;
}

.corner-badge {
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(27,34,30,0.14);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
}

.corner-badge.event { color: var(--accent-2); }
.corner-badge.project { color: var(--accent); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.22rem;
  max-width: 110px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 24px;
  padding: 0 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(27,34,30,0.12);
  background: rgba(255,255,255,0.82);
  font-size: 0.68rem;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
}

.tag-chip.icon {
  min-width: 28px;
  width: 28px;
  padding: 0;
}

.tag-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.18));
}

.card-title {
  margin: 0.4rem auto 0;
  padding: 0.28rem 0.5rem;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
  max-width: 92%;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(241, 234, 223, 0.9), rgba(247, 240, 231, 0.72));
  box-shadow: 0 8px 22px rgba(17, 20, 18, 0.18);
  text-shadow: 0 1px 1px rgba(255,255,255,0.64), 0 2px 8px var(--text-shadow);
}

.card-bottom {
  display: grid;
  gap: 0.45rem;
}

.stat-band {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.28rem;
  padding: 0.34rem 0.42rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(241, 234, 223, 0.9), rgba(247, 240, 231, 0.72));
  box-shadow: 0 8px 22px rgba(17, 20, 18, 0.18);
  overflow: hidden;
}

.event-band {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(241, 234, 223, 0.92), rgba(247, 240, 231, 0.78));
  box-shadow: 0 8px 22px rgba(17, 20, 18, 0.18);
  text-align: center;
  font: 700 0.79rem/1.22 "Inter", "Segoe UI", sans-serif;
  color: #5b2417;
  text-wrap: balance;
}

.stat-chip {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: rgba(255,248,237,0.94);
  border: 1px solid rgba(27,34,30,0.10);
  font-size: clamp(0.64rem, 0.48rem + 0.32vw, 0.76rem);
  font-family: "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.stat-chip.good { color: var(--good); }
.stat-chip.bad { color: var(--bad); }
.stat-chip.neutral { color: var(--neutral-chip); }

.draft-button {
  width: 100%;
}

.review-strip {
  border-radius: 16px;
  padding: 0.75rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 0.7rem;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.55rem;
  background: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.log-shell {
  border-radius: 16px;
  padding: 0.65rem 0.8rem;
}

.log-shell summary {
  cursor: pointer;
  font-weight: 700;
}

.log-list {
  display: grid;
  gap: 0.35rem;
  max-height: 300px;
  overflow: auto;
  margin-top: 0.65rem;
}

.log-item {
  padding: 0.4rem 0.5rem;
  border-left: 3px solid var(--line);
  background: rgba(255,255,255,0.46);
  font-size: 0.91rem;
}

.muted { color: var(--muted); }
.warning { color: var(--warn); }

.ghost-button {
  border-color: rgba(27,34,30,0.14);
  color: var(--muted);
}

.ghost-link {
  color: var(--muted);
  font: 600 0.92rem/1 "Inter", "Segoe UI", sans-serif;
  text-decoration: none;
}

.ghost-link:hover {
  text-decoration: underline;
}

.settings-modal {
  border: 0;
  padding: 0;
  background: transparent;
}

.settings-modal::backdrop {
  background: rgba(17, 21, 18, 0.35);
  backdrop-filter: blur(4px);
}

.settings-panel {
  min-width: min(92vw, 420px);
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 235, 0.98);
  box-shadow: 0 18px 40px rgba(17, 20, 18, 0.18);
}

.settings-header,
.settings-row,
.settings-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.settings-header {
  margin-bottom: 0.8rem;
}

.settings-header h2 {
  margin: 0;
  font-size: 1.15rem;
}

.settings-row {
  padding: 0.55rem 0;
  border-top: 1px solid rgba(27,34,30,0.08);
  font: 600 0.95rem/1.2 "Inter", "Segoe UI", sans-serif;
}

.settings-row select,
.settings-row input {
  accent-color: var(--accent);
}

.settings-actions {
  margin-top: 0.9rem;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .lane-body {
    grid-template-columns: 1fr;
  }

  .lane-left,
  .lane-right {
    min-width: 0;
  }

  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar,
  .info-bar,
  .lane-header {
    flex-direction: column;
    align-items: stretch;
  }

  .corp-metrics,
  .status-row {
    justify-content: flex-start;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .card {
    width: 168px;
    flex-basis: 168px;
    min-height: 220px;
  }

  .pressure-inline {
    gap: 0.3rem;
  }

  .pressure-stack.compact {
    width: 180px;
    flex-basis: 180px;
  }
}

.engine-hero,
.engine-section,
.engine-phase-card,
.engine-phase-observed,
.engine-check {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px var(--shadow);
}

.engine-hero,
.engine-section {
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.engine-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.engine-hero h1,
.engine-section-head h2 {
  margin: 0;
}

.engine-copy {
  max-width: 72ch;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.engine-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.engine-section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: 0.75rem;
}

.engine-flow {
  display: grid;
  gap: 1rem;
}

.engine-workflow-row {
  display: grid;
  gap: 0.45rem;
}

.engine-workflow-track {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  gap: 0.55rem;
  align-items: stretch;
}

.engine-workflow-node,
.engine-workflow-edge {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.54);
  padding: 0.7rem;
  box-shadow: 0 8px 18px rgba(23, 33, 26, 0.06);
}

.engine-workflow-node,
.engine-workflow-edge,
.engine-rule-tab {
  width: 100%;
  text-align: left;
}

.engine-workflow-node {
  display: grid;
  gap: 0.35rem;
  cursor: pointer;
}

.engine-node-title,
.engine-edge-title {
  font: 700 0.8rem/1.2 "Inter", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.engine-node-copy,
.engine-edge-stat {
  font-size: 0.9rem;
  line-height: 1.35;
}

.engine-workflow-edge {
  display: grid;
  gap: 0.32rem;
  align-content: center;
  border-style: dashed;
  cursor: pointer;
}

.engine-workflow-edge.warn {
  border-color: rgba(141, 105, 30, 0.32);
  background: rgba(255, 249, 236, 0.94);
}

.engine-workflow-edge.good {
  border-color: rgba(45, 104, 64, 0.28);
  background: rgba(245, 251, 246, 0.88);
}

.engine-loop-map {
  display: grid;
  gap: 0.8rem;
}

.engine-rule-browser {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.engine-rule-nav {
  display: grid;
  gap: 0.4rem;
}

.engine-rule-tab {
  border-color: rgba(23, 33, 26, 0.14);
  color: var(--muted);
}

.engine-rule-tab.active {
  border-color: rgba(36, 75, 61, 0.34);
  background: rgba(245, 251, 246, 0.92);
  color: var(--accent);
}

.engine-rule-detail {
  min-height: 220px;
}

.engine-loop-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(180px, 1fr));
  gap: 0.7rem;
  align-items: start;
}

.engine-loop-node {
  position: relative;
  min-height: 100%;
}

.engine-loop-connector {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 0.2rem 0.35rem;
  border-radius: 999px;
  border: 1px dashed rgba(23, 33, 26, 0.18);
  background: rgba(255,255,255,0.42);
  font: 600 0.76rem/1.15 "Inter", "Segoe UI", sans-serif;
  color: var(--muted);
  text-align: center;
}

.engine-phase-card,
.engine-phase-observed,
.engine-check {
  border-radius: 14px;
  padding: 0.75rem;
}

.engine-phase-card {
  display: grid;
  gap: 0.55rem;
}

.engine-phase-summary {
  font-weight: 700;
}

.engine-phase-list,
.engine-checks {
  display: grid;
  gap: 0.28rem;
}

.engine-bullet {
  line-height: 1.35;
}

.engine-phase-observed {
  display: grid;
  gap: 0.4rem;
}

.engine-phase-observed-copy {
  color: var(--muted);
}

.engine-metric-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.engine-metric-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.46rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 33, 26, 0.12);
  background: rgba(255,255,255,0.78);
  font: 600 0.74rem/1 "Inter", "Segoe UI", sans-serif;
}

.engine-metric-chip.warn {
  border-color: rgba(141, 105, 30, 0.3);
  color: var(--warn);
}

.engine-metric-chip.good {
  border-color: rgba(45, 104, 64, 0.28);
  color: var(--good);
}

.engine-grid,
.engine-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.engine-json-shell {
  margin-top: 0.8rem;
}

.engine-json {
  margin: 0.7rem 0 0;
  padding: 0.8rem;
  overflow: auto;
  border-radius: 12px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(23, 33, 26, 0.08);
  font: 0.82rem/1.45 "IBM Plex Mono", "Consolas", monospace;
}

.engine-check.pass {
  border-color: rgba(45, 104, 64, 0.32);
  background: rgba(245, 251, 246, 0.86);
}

.engine-check.warn {
  border-color: rgba(141, 105, 30, 0.28);
  background: rgba(255, 249, 236, 0.9);
}

.engine-check.info {
  border-color: rgba(36, 75, 61, 0.24);
}

.engine-check-head {
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.engine-winners {
  margin-top: 0.8rem;
}

.engine-tuning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.engine-note-card {
  display: grid;
  gap: 0.45rem;
}

.engine-note-input {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(23, 33, 26, 0.14);
  background: rgba(255,255,255,0.74);
  color: var(--ink);
  font: 0.92rem/1.45 "Inter", "Segoe UI", sans-serif;
}

.engine-note-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.help-layout {
  width: 100%;
  max-width: none;
  margin: 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.help-stack {
  display: grid;
  gap: 0.7rem;
}

.help-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.54);
  padding: 0.8rem;
  box-shadow: 0 8px 18px rgba(23, 33, 26, 0.06);
}

.help-copy {
  margin: 0;
  color: var(--ink);
  line-height: 1.45;
}

.help-list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  line-height: 1.4;
}

.help-hero-copy {
  max-width: none;
  white-space: nowrap;
}

.help-chip {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.help-chip-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}

.help-chip-copy {
  display: grid;
  gap: 0.15rem;
  line-height: 1.4;
}

.help-chip-label {
  font: 700 0.82rem/1.2 "Inter", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.help-event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.help-event-card {
  display: grid;
  gap: 0.55rem;
}

.help-event-head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
}

.help-event-art {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(23, 33, 26, 0.12);
}

@media (max-width: 960px) {
  .engine-hero,
  .engine-section-head {
    flex-direction: column;
  }

  .engine-loop-row,
  .engine-workflow-track,
  .engine-tuning-grid,
  .engine-rule-browser {
    grid-template-columns: 1fr;
  }

  .engine-links {
    justify-content: flex-start;
  }

  .engine-grid,
  .engine-summary-grid,
  .help-grid,
  .help-event-grid {
    grid-template-columns: 1fr;
  }

  .help-hero-copy {
    white-space: normal;
  }
}
