@font-face {
  font-family: Studio;
  src: local("Inter"), local("Arial");
  font-display: swap;
}
:root {
  color-scheme: light;
  --forest: #1c3930;
  --paper: #f8f8f1;
  --ink: #243c33;
  --muted: #627268;
  --line: #dae0d5;
  --lime: #dfeab4;
  --clay: #c17b52;
  --cursor-interaction: pointer;
  font-family:
    Studio,
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #182f29;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: var(--cursor-interaction);
  border: 0;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #abbb72;
  outline-offset: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #698755;
  outline-offset: 2px;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button {
  color: inherit;
}
::selection {
  background: #cfe3a2;
  color: #142d24;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip {
  position: fixed;
  top: -60px;
  left: 10px;
  z-index: 99;
  background: var(--paper);
  padding: 12px;
}
.skip:focus {
  top: 8px;
}
.loading {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: var(--paper);
}
.icon {
  width: 20px;
  height: 20px;
  flex: none;
}
.small-icon {
  width: 16px;
  height: 16px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 11px;
  background: #e9ede4;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.18s,
    transform 0.18s;
}
.btn:hover:not(:disabled) {
  background: #dce4d5;
}
.btn.primary {
  background: var(--forest);
  color: var(--paper);
}
.btn.primary:hover:not(:disabled) {
  background: #2b5141;
}
.btn.subtle {
  background: transparent;
  border: 1px solid var(--line);
}
.icon-button {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  background: transparent;
  border-radius: 10px;
}
.icon-button:hover {
  background: #263d3010;
}
.kicker {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
}
.hint {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 650;
  white-space: nowrap;
}
.wordmark img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.wordmark .dot {
  color: var(--clay);
}
.studio-shell {
  height: 100svh;
  min-height: 560px;
  display: grid;
  grid-template-rows: 70px minmax(0, 1fr);
  overflow: hidden;
  background: #182f29;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--paper);
  padding: 0 26px;
  border-bottom: 1px solid #ffffff14;
  z-index: 12;
}
.brand-group,
.nav-group,
.title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.studio-label {
  font-size: 12px;
  color: var(--muted);
  padding-left: 15px;
  border-left: 1px solid #bfcbbc;
}
.board-name {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: transparent;
  padding: 8px;
  font-size: 13px;
}
.save-state {
  background: transparent;
  padding: 6px;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.save-state:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #72965f;
  border-radius: 50%;
}
.save-state.dirty:before {
  background: #c17b52;
}
.nav-link {
  font-size: 12px;
  color: #53645c;
}
.workspace {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
}
.canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 56% 44%, #31534666 0, transparent 65%), #182f29;
  touch-action: none;
  outline-offset: -5px;
}
.canvas:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(#d4ddba15 0.7px, transparent 0.9px);
  background-size: 24px 24px;
  opacity: 0.8;
  z-index: -1;
}
.world {
  position: absolute;
  left: 0;
  top: 0;
  width: 3000px;
  height: 2400px;
  transform-origin: 0 0;
  will-change: transform;
}
.connections {
  position: absolute;
  inset: 0;
  width: 3000px;
  height: 2400px;
  overflow: visible;
  pointer-events: none;
}
.connection-path {
  fill: none;
  stroke: #b5c5a965;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.connection-path.proposed {
  stroke: #d8e9a5;
  stroke-dasharray: 5 6;
}
.connection-path.proposed.arriving {
  animation: arrive-line 0.7s ease-out both;
}
.connection-path.focus {
  stroke: #e3efbe;
  stroke-width: 2.3;
}
.edge-label {
  z-index: 1;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 10px;
  line-height: 1.2;
  border: 1px solid #a5b79d44;
  background: #1d382f;
  color: #c9d6bd;
  border-radius: 20px;
  padding: 5px 9px;
  max-width: 145px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.edge-label:hover {
  border-color: #e5efc5;
}
.edge-label.proposed {
  border-style: dashed;
  pointer-events: none;
}
.card {
  z-index: 2;
  position: absolute;
  width: 236px;
  border-radius: 14px;
  background: #f3f4eb;
  color: var(--ink);
  box-shadow: 0 8px 22px #051a1830;
  outline: none;
  user-select: none;
  transition:
    box-shadow 0.18s,
    opacity 0.2s,
    border-color 0.2s;
  border: 2px solid transparent;
}
.card:hover {
  box-shadow: 0 12px 34px #06191360;
}
.card.selected {
  border-color: #e1eca6;
  box-shadow:
    0 0 0 3px #aec58b35,
    0 12px 30px #071c1560;
}
.card.source-lit {
  box-shadow:
    0 0 0 4px #e5edb764,
    0 12px 30px #071c1560;
}
.card.dim {
  opacity: 0.35;
}
.card.kind-evidence {
  background: #e7eae1;
  border-radius: 3px 14px 14px 14px;
}
.card.kind-goal {
  background: #e5ecc5;
  border-radius: 28px;
}
.card.kind-constraint {
  border-left: 5px solid #bf815d;
  background: #f0e9de;
}
.card.kind-question {
  border: 1px dashed #c7d0be;
  background: #29453b;
  color: #e2e8d5;
  box-shadow: none;
}
.card.kind-idea {
  background: #d8e4db;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 17px 3px;
  cursor: grab;
  touch-action: none;
}
.card-head:active {
  cursor: grabbing;
}
.card-type {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #667965;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.kind-question .card-type {
  color: #b5c6ac;
}
.select-card {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 1px solid #73866955;
  border-radius: 50%;
  color: inherit;
}
.selected .select-card {
  background: #35533a;
  color: #eff4df;
  border-color: #35533a;
}
.card-body {
  padding: 10px 18px 18px;
}
.card h3 {
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.45px;
  font-weight: 550;
  overflow-wrap: anywhere;
}
.card p {
  font-size: 12px;
  line-height: 1.55;
  margin-top: 10px;
  color: #596b5d;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}
.kind-question p {
  color: #b9c9b6;
}
.card-foot {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 18px 14px;
  font-size: 9px;
  color: #71826d;
}
.card-foot .icon {
  width: 12px;
  height: 12px;
}
.suggestion {
  background: #dcebb7;
  border: 1px dashed #eaf4cc;
  width: 256px;
}
.suggestion.arriving {
  animation: materialise 0.55s cubic-bezier(0.2, 0.8, 0.3, 1) both;
  animation-delay: var(--delay, 0ms);
}
.suggestion.risk {
  background: #eddbc7;
}
.suggestion.question {
  background: #e4e5d7;
}
.suggestion .card-type {
  color: #566447;
}
.suggestion-actions {
  display: flex;
  gap: 6px;
  padding: 0 14px 14px;
}
.suggestion-actions .btn {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 11px;
}
.suggestion-actions .inspect-sources {
  margin-left: auto;
}
.suggestion.stale {
  opacity: 0.7;
  filter: saturate(0.4);
}
.suggestion .status-tag {
  font-size: 9px;
  padding: 4px 18px 13px;
  color: #516245;
}
.canvas-tag {
  position: absolute;
  left: 88px;
  top: 28px;
  color: #a5b5a1;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  pointer-events: none;
}
.canvas-tag span {
  color: #d3dec7;
}
.canvas-add {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid #b5c5a940;
  border-radius: 8px;
  color: #e3ead8;
  background: #213d32;
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.canvas-add:hover:not(:disabled) {
  background: #315346;
}
.piece-picker {
  display: grid;
  gap: 10px;
}
.piece-choice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f1f3e9;
}
.piece-choice:hover {
  background: #e4e9d8;
}
.piece-choice strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}
.piece-choice small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.tool-dock {
  position: absolute;
  left: 22px;
  top: 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 7px;
  background: #f3f5e9;
  border: 1px solid #ffffff40;
  border-radius: 15px;
  box-shadow: 0 8px 30px #091c2240;
  z-index: 5;
}
.tool-dock .icon-button {
  width: 39px;
  height: 39px;
  position: relative;
}
.tool-dock .icon-button:hover:after {
  content: attr(aria-label);
  position: absolute;
  left: 50px;
  background: var(--paper);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  white-space: nowrap;
  box-shadow: 0 3px 20px #142c3030;
  z-index: 10;
}
.tool-separator {
  height: 1px;
  background: #d8e0d0;
  margin: 4px;
}
.canvas-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  pointer-events: none;
}
.canvas-footer > * {
  pointer-events: auto;
}
.view-tools {
  display: flex;
  align-items: center;
  background: #f4f5eb;
  border-radius: 11px;
  padding: 3px;
  box-shadow: 0 8px 30px #071d2430;
}
.view-tools .icon-button {
  min-width: 33px;
  min-height: 33px;
}
.zoom-level {
  font-size: 10px;
  min-width: 36px;
  text-align: center;
}
.canvas-help {
  font-size: 10px;
  color: #b0c2ac;
  line-height: 1.65;
  text-align: right;
}
.canvas-help button {
  color: inherit;
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
}
.lens-dock {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f8ed;
  padding: 7px;
  border: 1px solid #f7f8ed;
  border-radius: 16px;
  box-shadow: 0 10px 40px #091b2470;
  z-index: 5;
  max-width: calc(100% - 260px);
}
.lens-options {
  display: flex;
  gap: 3px;
}
.lens {
  min-height: 40px;
  padding: 9px 12px;
  display: flex;
  gap: 6px;
  align-items: center;
  border-radius: 10px;
  background: transparent;
  font-size: 12px;
  white-space: nowrap;
}
.lens[aria-pressed="true"] {
  background: #e3e9d8;
  color: #274c32;
}
.lens .icon {
  width: 16px;
  height: 16px;
}
.lens-dock .primary {
  background: #214236;
}
.scope-label {
  position: absolute;
  bottom: 66px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: #d1ddc7;
  white-space: nowrap;
  pointer-events: none;
}
.connection-prompt {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 11px 16px;
  border: 1px solid #cbd5a965;
  border-radius: 12px;
  background: #dce7b8;
  color: #294030;
  font-size: 12px;
  box-shadow: 0 8px 25px #0b1a2350;
  z-index: 8;
  display: flex;
  gap: 15px;
  align-items: center;
}
.connection-prompt button {
  background: none;
  text-decoration: underline;
  font-size: inherit;
}
.toast {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #f7f6eb;
  color: #354436;
  padding: 11px 16px;
  max-width: min(520px, 80%);
  border-radius: 11px;
  font-size: 12px;
  line-height: 1.5;
  box-shadow: 0 8px 30px #081a2440;
  z-index: 9;
}
.toast.error {
  background: #f9e6d8;
  border: 1px solid #ca966e;
}
.toast button {
  margin-left: 12px;
  background: transparent;
  font-size: 12px;
  text-decoration: underline;
}
.empty-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  padding: 40px 90px 115px;
  color: #f1f3e5;
}
.empty-state > * {
  pointer-events: auto;
}
.empty-orbit {
  width: 170px;
  height: 125px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.orbit-ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px solid #b7c6a32e;
  border-radius: 50%;
  transform: rotateX(43deg) rotate(-24deg);
}
.orbit-ring:nth-child(2) {
  width: 100px;
  height: 100px;
  transform: rotateY(50deg) rotate(34deg);
  border-color: #b7c6a353;
}
.empty-orbit img {
  width: 53px;
  height: 53px;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 0 75px #bfd18e25;
}
.orbit-point {
  position: absolute;
  right: 17px;
  top: 29px;
  width: 7px;
  height: 7px;
  background: #d9e5b4;
  border-radius: 50%;
}
.empty-state h1 {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 450;
  line-height: 1.16;
  letter-spacing: -1.6px;
  max-width: 580px;
}
.empty-state > p {
  font-size: 14px;
  color: #b6c9b3;
  line-height: 1.6;
  max-width: 430px;
  margin-top: 16px;
}
.empty-state > .btn {
  margin: 25px 0;
  background: #e0edb5;
  color: #264232;
}
.starting-points {
  display: flex;
  gap: 10px;
  margin-top: 27px;
}
.starter {
  background: #263f35;
  border: 1px solid #95b29b40;
  color: #d7e5ce;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: start;
  max-width: 186px;
  width: 186px;
  min-height: 103px;
  padding: 17px;
  border-radius: 12px;
  text-align: left;
  transition:
    transform 0.2s,
    background 0.2s;
}
.starter:hover {
  background: #34503d;
  transform: translateY(-3px);
}
.starter .icon {
  color: #aec291;
}
.starter strong {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}
.starter-label {
  margin-top: 15px;
  font-size: 10px;
  color: #9fb299;
}
.thinking {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 60% 50%, #dfe9b009 0, transparent 60%);
  z-index: 4;
}
.thinking:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid #dce9b32e;
  border-radius: 50%;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  animation: scan-ring 2.5s ease-in-out infinite;
}
.thinking-status {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: #e9efca;
  color: #2d4433;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px #0b1f3060;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #496a42;
  border-radius: 50%;
  animation: breathe 1.5s ease-in-out infinite;
}
.insight-summary {
  position: absolute;
  right: 22px;
  top: 25px;
  width: 275px;
  padding: 17px 19px;
  background: #213d32e8;
  border: 1px solid #9baa7749;
  border-radius: 14px;
  color: #dbe4c8;
  backdrop-filter: blur(12px);
  z-index: 3;
}
.insight-summary .kicker {
  color: #a6b88c;
  font-size: 9px;
}
.insight-summary p {
  font-size: 12px;
  line-height: 1.55;
  margin: 8px 0 10px;
}
.insight-summary button {
  font-size: 10px;
  color: #b6c8a7;
  background: transparent;
  text-decoration: underline;
}
.insight-summary .review-focus {
  display: block;
  margin-top: 12px;
}
.insight-summary .suggestion-count {
  margin: 9px 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.insight-summary .overview-link {
  display: block;
  margin-bottom: 12px;
}
.original-boundary {
  border-left: 3px solid #b67c58;
}
.interpretation-version {
  display: block;
  margin: 0 0 12px;
  font-size: 10px;
  line-height: 1.5;
  color: #dbe4c8;
}
.insight-summary.outdated {
  border-color: #d39a75;
}
.insight-summary.outdated .interpretation-version {
  color: #f0c19c;
}
.next-step {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 22px;
}
.next-step .hint {
  margin: 9px 0 14px;
}
.selection-bar {
  position: absolute;
  left: 90px;
  top: 74px;
  display: flex;
  gap: 4px;
  align-items: center;
  background: #eff2e1;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 8px 25px #10232040;
  z-index: 5;
}
.selection-bar .btn {
  font-size: 11px;
  padding: 7px 10px;
  min-height: 33px;
  background: transparent;
}
.selection-bar .btn:hover {
  background: #dce5ce;
}
.selection-bar .icon {
  width: 16px;
  height: 16px;
}
.shade {
  position: fixed;
  inset: 0;
  background: #081a2066;
  backdrop-filter: blur(7px);
  z-index: 30;
  display: flex;
  justify-content: flex-end;
}
.panel {
  width: 390px;
  max-width: 100%;
  height: 100%;
  overflow: auto;
  background: #f6f7ee;
  padding: 26px;
  box-shadow: -20px 0 70px #0b212c30;
  animation: slide-in 0.25s ease-out;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.panel h2 {
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  font-weight: 550;
}
.panel h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 20px 0 10px;
}
.panel p {
  font-size: 13px;
  line-height: 1.6;
  color: #596b5d;
}
.panel-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.panel input,
.panel textarea,
.panel select {
  width: 100%;
  border: 1px solid #ccd6c4;
  border-radius: 10px;
  padding: 12px;
  background: #fffef7;
  font-size: 14px;
  line-height: 1.5;
  color: #263f32;
}
.panel textarea {
  resize: vertical;
  min-height: 150px;
}
.form-field {
  display: grid;
  gap: 7px;
  margin: 17px 0;
}
.form-field label {
  font-size: 11px;
  font-weight: 600;
}
.kind-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0;
}
.kind-choice {
  font-size: 11px;
  background: #e7eddf;
  padding: 8px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
}
.kind-choice .icon {
  width: 13px;
  height: 13px;
}
.kind-choice[aria-pressed="true"] {
  border-color: #5b7854;
  background: #dce8c7;
}
.source-excerpt {
  padding: 14px;
  border-left: 3px solid #a5b282;
  background: #e9eee0;
  border-radius: 0 8px 8px 0;
  margin: 12px 0;
}
.source-excerpt strong {
  font-size: 12px;
  font-weight: 600;
}
.source-excerpt p {
  font-size: 12px;
  margin: 5px 0 0;
  white-space: pre-wrap;
}
.saved-board {
  display: block;
  width: 100%;
  padding: 16px 12px;
  text-align: left;
  border: 1px solid #dce3d2;
  background: #fbfcf4;
  border-radius: 10px;
  margin: 10px 0;
}
.saved-board strong {
  display: block;
  font-size: 14px;
  font-weight: 550;
  overflow-wrap: anywhere;
}
.saved-board small {
  display: block;
  color: #687b62;
  margin-top: 6px;
  font-size: 10px;
}
.history-line {
  padding: 12px 0;
  border-bottom: 1px solid #dce2d3;
  font-size: 12px;
  line-height: 1.5;
}
.history-line small {
  display: block;
  color: #76826e;
  font-size: 10px;
}
.gate {
  min-height: 100svh;
  background: #192f29;
  color: #f1f3e7;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}
.gate-art {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 45px 8vw;
  justify-content: center;
  overflow: hidden;
}
.gate-art > .wordmark {
  position: absolute;
  top: 38px;
  left: 6vw;
}
.gate-art h1 {
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 450;
  letter-spacing: -2.8px;
  max-width: 500px;
}
.gate-art > p {
  color: #bdcbb5;
  font-size: 16px;
  line-height: 1.65;
  max-width: 340px;
  margin-top: 25px;
}
.gate-orbit {
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid #a3ba7e23;
  border-radius: 50%;
  right: -300px;
  bottom: -260px;
  pointer-events: none;
}
.gate-orbit:before,
.gate-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid #bacc9d20;
  border-radius: 50%;
  inset: 45px;
}
.gate-orbit:after {
  inset: 120px;
}
.gate-form-area {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 45px;
  background: #f0f2e8;
  color: #233d30;
}
.gate-form {
  width: 100%;
  max-width: 355px;
}
.gate-form h2 {
  font-size: 29px;
  letter-spacing: -0.8px;
  font-weight: 500;
  margin-bottom: 9px;
}
.gate-form p {
  font-size: 13px;
  color: #687965;
  line-height: 1.6;
}
.gate-form textarea {
  width: 100%;
  min-height: 105px;
  border: 1px solid #c4d0bb;
  background: #fcfdf5;
  border-radius: 12px;
  padding: 14px;
  font-size: 13px;
  margin: 10px 0;
  resize: vertical;
}
.gate-form label {
  display: block;
  margin-top: 26px;
  font-size: 12px;
}
.gate-form .primary {
  width: 100%;
  margin: 8px 0 22px;
}
.gate-error {
  color: #a34326 !important;
  margin: 10px 0;
}
.gate-small {
  font-size: 11px !important;
}
.input-error {
  color: #9b4c31 !important;
  font-size: 12px !important;
  margin: 10px 0;
}
.panel .danger {
  color: #a15037;
}
.focus-view {
  position: absolute;
  inset: 100px 20% 120px;
  overflow-y: auto;
  padding: 0 12px 22px;
  color: #e5ecda;
  scrollbar-width: thin;
  scrollbar-color: #698468 transparent;
}
.focus-tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0 0 18px;
}
.focus-tabs button {
  background: transparent;
  color: #adbfaa;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 11px;
}
.focus-tabs button[aria-pressed="true"] {
  background: #ffffff12;
  color: #e4edce;
}
.focus-position {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #b5c6a9;
  margin-bottom: 15px;
}
.focus-position .icon-button {
  border: 1px solid #b6cda438;
  color: #dbe7c6;
}
.focus-card {
  padding: 30px;
  border: 1px solid #cedab941;
  background: #f2f5e8;
  color: #263d2e;
  border-radius: 18px;
  max-width: 650px;
  margin: 0 auto;
}
.focus-card.kind-question {
  background: #2e493c;
  color: #e5ebd8;
  border-style: dashed;
}
.focus-card.kind-goal {
  background: #e0eac2;
}
.focus-card.kind-constraint {
  border-left: 5px solid #be8959;
}
.focus-card.from-ai {
  background: #d9e7b9;
}
.focus-card-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  opacity: 0.7;
  margin-bottom: 19px;
}
.focus-card h2 {
  font-size: 28px;
  letter-spacing: -0.8px;
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.focus-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
  margin: 18px 0 22px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.focus-card .panel-actions {
  margin-bottom: 0;
}
.focus-card .hint {
  display: block;
  margin-top: 12px;
}
.focus-relations {
  display: grid;
  gap: 8px;
  margin: 25px auto 0;
  max-width: 650px;
}
.focus-relations > .kicker {
  color: #a7bb98;
  margin: 0 0 5px;
}
.focus-related {
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 5px;
  padding: 13px 15px;
  text-align: left;
  background: #244233;
  border: 1px solid #a8c09b38;
  color: #dce8ce;
  border-radius: 10px;
}
.focus-related small {
  grid-column: 1;
  font-size: 10px;
  color: #aebf9e;
}
.focus-related span {
  grid-column: 1;
  font-size: 13px;
}
.focus-related .icon {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  width: 16px;
}
.focus-hint {
  color: #adbfa6;
  margin-top: 20px;
}
.is-focus .world,
.is-focus .insight-summary,
.is-focus .selection-bar {
  display: none;
}
.is-focus .view-tools > button:not([data-action="focus"]),
.is-focus .zoom-level {
  display: none;
}
.is-focus .canvas-help {
  display: none;
}
@keyframes materialise {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes arrive-line {
  from {
    opacity: 0;
    stroke-dashoffset: 18;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}
@keyframes slide-in {
  from {
    transform: translateX(25px);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes breathe {
  50% {
    opacity: 0.3;
  }
}
@keyframes scan-ring {
  from {
    opacity: 0;
    scale: 0.7;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    scale: 1.7;
  }
}
@media (min-width: 1500px) {
  .card {
    width: 236px;
  }
  .suggestion {
    width: 256px;
  }
}
@media (max-width: 1050px) {
  .title-group .save-state {
    display: none;
  }
  .board-name {
    max-width: 180px;
  }
  .insight-summary {
    width: 240px;
  }
  .canvas-help {
    display: none;
  }
  .lens-dock {
    max-width: calc(100% - 200px);
    left: auto;
    right: 20px;
    transform: none;
  }
  .scope-label {
    left: auto;
    right: 23px;
    transform: none;
  }
  .lens {
    padding: 9px;
  }
  .lens .icon {
    display: none;
  }
  .canvas-footer {
    right: auto;
  }
  .lens-dock .btn {
    padding: 10px 12px;
  }
  .nav-group {
    gap: 12px;
  }
}
@media (max-width: 700px) {
  .studio-shell {
    grid-template-rows: 61px minmax(0, 1fr);
    min-height: 500px;
  }
  .topbar {
    padding: 0 14px;
    gap: 5px;
  }
  .wordmark {
    font-size: 14px;
    gap: 7px;
  }
  .wordmark img {
    width: 29px;
    height: 29px;
  }
  .studio-label {
    font-size: 10px;
    margin-left: 0;
    padding-left: 8px;
  }
  .title-group {
    display: none;
  }
  .nav-link {
    display: none;
  }
  .nav-group {
    gap: 5px;
  }
  .nav-group .btn {
    font-size: 11px;
    padding: 8px;
    min-height: 34px;
  }
  .tool-dock {
    top: 17px;
    left: 12px;
    padding: 4px;
    border-radius: 12px;
  }
  .tool-dock .icon-button {
    height: 36px;
    width: 36px;
  }
  .tool-dock .icon-button:hover:after {
    display: none;
  }
  .canvas-tag {
    left: 70px;
    top: 21px;
    font-size: 8px;
  }
  .selection-bar {
    top: 65px;
    left: 67px;
    gap: 0;
    max-width: calc(100% - 85px);
    flex-wrap: wrap;
  }
  .selection-bar .btn {
    font-size: 10px;
    padding: 6px;
  }
  .lens-dock {
    bottom: 17px;
    left: 12px;
    right: 12px;
    transform: none;
    max-width: none;
    gap: 4px;
    padding: 5px;
    border-radius: 13px;
    justify-content: space-between;
  }
  .lens-options {
    flex: 1;
    justify-content: space-around;
  }
  .lens {
    padding: 8px 5px;
    font-size: 10px;
    min-height: 37px;
    gap: 0;
  }
  .lens-dock .btn {
    font-size: 11px;
    min-height: 38px;
    padding: 9px;
  }
  .lens-dock .btn .icon {
    width: 15px;
    height: 15px;
  }
  .scope-label {
    bottom: 75px;
    font-size: 9px;
    right: 18px;
  }
  .canvas-footer {
    left: 12px;
    bottom: 75px;
  }
  .view-tools {
    padding: 2px;
  }
  .view-tools .icon-button {
    min-width: 28px;
    min-height: 28px;
  }
  .view-tools .icon {
    width: 15px;
    height: 15px;
  }
  .zoom-level {
    font-size: 9px;
    min-width: 30px;
  }
  .empty-state {
    padding: 35px 45px 95px;
  }
  .empty-orbit {
    width: 120px;
    height: 75px;
    margin-bottom: 20px;
  }
  .orbit-ring {
    width: 95px;
    height: 95px;
  }
  .orbit-ring:nth-child(2) {
    width: 70px;
    height: 70px;
  }
  .empty-orbit img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .empty-state h1 {
    font-size: 29px;
    letter-spacing: -1px;
    max-width: 320px;
  }
  .empty-state > p {
    font-size: 12px;
    max-width: 270px;
    margin-top: 12px;
  }
  .empty-state > .btn {
    margin: 17px 0;
  }
  .starting-points {
    margin-top: 15px;
    gap: 6px;
    max-width: calc(100vw - 50px);
  }
  .starter {
    width: 95px;
    min-height: 96px;
    padding: 12px;
    gap: 9px;
  }
  .starter strong {
    font-size: 10px;
  }
  .starter .icon {
    width: 17px;
    height: 17px;
  }
  .starter-label {
    font-size: 9px;
  }
  .insight-summary {
    right: 12px;
    top: 18px;
    width: 200px;
    padding: 11px 13px;
  }
  .insight-summary p {
    font-size: 10px;
  }
  .insight-summary .kicker {
    font-size: 8px;
  }
  .toast {
    top: 18px;
    font-size: 11px;
    max-width: 80%;
    left: 55%;
  }
  .thinking-status {
    top: 20px;
    max-width: 75%;
    white-space: nowrap;
    font-size: 10px;
  }
  .connection-prompt {
    max-width: calc(100% - 30px);
    font-size: 11px;
    top: 110px;
    width: 280px;
  }
  .panel {
    padding: 22px;
  }
  .gate {
    grid-template-columns: 1fr;
  }
  .gate-art {
    padding: 90px 28px 40px;
    min-height: 300px;
  }
  .gate-art > .wordmark {
    top: 25px;
    left: 28px;
  }
  .gate-art h1 {
    font-size: 45px;
    letter-spacing: -1.9px;
  }
  .gate-art > p {
    font-size: 13px;
    margin-top: 15px;
  }
  .gate-form-area {
    padding: 35px 28px;
  }
  .gate-form h2 {
    font-size: 25px;
  }
}
@media (max-width: 700px) {
  .tool-dock {
    flex-direction: row;
    left: 12px;
    right: 12px;
    top: 14px;
    justify-content: space-between;
    padding: 4px;
  }
  .tool-dock .tool-separator {
    height: 25px;
    width: 1px;
    margin: 6px 2px;
  }
  .canvas-tag {
    top: 67px;
    left: 18px;
  }
  .selection-bar {
    top: 101px;
    left: 16px;
  }
  .insight-summary {
    top: 102px;
    width: 200px;
  }
  .focus-view {
    inset: 102px 5px 125px;
    padding: 0 12px 18px;
  }
  .focus-card {
    padding: 22px;
    border-radius: 15px;
  }
  .focus-card h2 {
    font-size: 24px;
  }
  .focus-card p {
    font-size: 13px;
  }
  .focus-card .btn {
    min-height: 36px;
    font-size: 11px;
    padding: 8px 10px;
  }
  .focus-position {
    margin-bottom: 12px;
  }
  .empty-state {
    padding-left: 25px;
    padding-right: 25px;
  }
  .empty-state h1 {
    max-width: 340px;
  }
  .thinking-status {
    top: 108px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .world {
    will-change: auto;
  }
}

/* ---------------------------------------------------------------------------
   Trying a real case. A sheet beside the material; the person's pieces become
   the stations a case passes through. Threads are provenance, never inference.
   --------------------------------------------------------------------------- */
.dock-separator {
  width: 1px;
  height: 26px;
  background: #c9d3bd;
  margin: 0 3px;
}
.trial-launch {
  background: #eef3df;
  color: #22412f;
}
.trial-launch:hover:not(:disabled) {
  background: #e2ebc9;
}
.trial-launch[aria-pressed="true"] {
  background: #d6e2b7;
}
.trial-launch-mobile {
  display: none;
}
.trials-pill {
  position: absolute;
  right: 22px;
  top: 25px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px 11px 13px;
  border-radius: 14px;
  background: #213d32e8;
  border: 1px solid #9baa7749;
  color: #dbe4c8;
  backdrop-filter: blur(12px);
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.18s;
}
.trials-pill:hover {
  border-color: #cfdcb0;
}
.trials-pill .icon {
  width: 18px;
  height: 18px;
  color: #cfe0a8;
}
.trials-pill span {
  display: grid;
  gap: 2px;
}
.trials-pill small {
  font-size: 10px;
  font-weight: 500;
  color: #a6b88c;
}
.threads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
  transition: opacity 0.2s;
}
.threads.settling {
  opacity: 0;
}
.thread {
  fill: none;
  stroke: #d8e9a5;
  stroke-opacity: 0.32;
  stroke-width: 1.2;
  stroke-dasharray: 3 5;
}
.thread.focus {
  stroke-opacity: 0.95;
  stroke-width: 1.7;
  stroke-dasharray: none;
}
.card.thread-focus {
  box-shadow:
    0 0 0 4px #e5edb7,
    0 14px 34px #071c1570;
}
.is-trial .lens-dock {
  left: 214px;
  transform: none;
  max-width: calc(100% - 470px - 232px);
  flex-wrap: wrap;
}
.is-trial .scope-label {
  left: 222px;
  transform: none;
}
.is-trial .toast,
.is-trial .thinking-status,
.is-trial .connection-prompt {
  left: calc((100% - 470px) / 2);
}
.is-trial .canvas-help,
.is-trial .trials-pill {
  display: none;
}
.is-trial .insight-summary {
  right: 492px;
}
.trial-sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 470px;
  max-width: 100%;
  overflow-y: auto;
  background: #f6f7ee;
  color: var(--ink);
  box-shadow: -18px 0 60px #0b212c40;
  z-index: 6;
  padding: 24px 26px 30px;
  scrollbar-width: thin;
  scrollbar-color: #b7c4ad transparent;
  animation: slide-in 0.28s ease-out;
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.sheet-head .kicker {
  color: #6f8367;
  display: block;
  margin-bottom: 8px;
}
.sheet-head h2 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.7px;
  font-weight: 550;
  outline: none;
}
.case-quote {
  margin: 0 0 6px;
  padding: 16px 18px 14px;
  background: #e7eae1;
  border-radius: 3px 14px 14px 14px;
  border-left: 3px solid #8fa385;
  transition: box-shadow 0.18s;
}
.case-quote:hover {
  box-shadow: 0 0 0 3px #e5edb7;
}
.case-quote p {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.2px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.case-quote footer {
  margin-top: 10px;
  font-size: 10px;
  color: #6c7f6a;
}
.trial-status {
  font-size: 11px;
  line-height: 1.5;
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 9px;
}
.trial-status.current {
  color: #4e6a4f;
  background: #e8f0d6;
}
.trial-status.outdated {
  color: #7a4a30;
  background: #f5e7dc;
  border-left: 3px solid #c17b52;
}
.trial-status.outdated p {
  font-size: 11px;
  font-weight: 600;
}
.trial-status ul {
  margin: 6px 0 0;
  padding-left: 16px;
}
.trial-status li {
  margin: 3px 0;
}
.stations {
  position: relative;
  margin: 26px 0 8px;
  padding-left: 30px;
}
.stations:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(#8fa385 0, #8fa385 calc(100% - 40px), transparent);
}
.station {
  position: relative;
  padding: 2px 0 26px;
}
.station-mark {
  position: absolute;
  left: -27px;
  top: 4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid #7f9a7a;
  background: #f6f7ee;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.station.active .station-mark,
.station:focus-within .station-mark {
  background: #2b4d3c;
  border-color: #2b4d3c;
  box-shadow: 0 0 0 4px #dfeab4;
}
.station.quiet {
  padding-bottom: 22px;
}
.station.quiet .station-mark {
  border-style: dashed;
}
.station h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin: 0 0 8px;
}
.station-piece {
  display: grid;
  gap: 3px;
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.5;
}
.station-piece .kicker {
  color: #7d8f78;
  font-size: 9px;
}
.station-piece strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.2px;
}
.station-piece span:not(.kicker) {
  color: #596b5d;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.station .hint {
  margin: 0 0 10px;
}
.station .kind-choices {
  margin: 6px 0 0;
}
.station .kind-choices.stacked {
  flex-direction: column;
  align-items: flex-start;
}
.station .kind-choice {
  font-size: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #ebefe2;
  text-align: left;
  white-space: normal;
}
.station .kind-choice[aria-pressed="true"] {
  background: #d9e6bf;
  border-color: #5b7854;
}
.station input {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #ccd6c4;
  border-radius: 10px;
  padding: 11px 12px;
  background: #fffef7;
  font-size: 13px;
  color: #263f32;
}
.station .decision {
  font-size: 13px;
  font-weight: 600;
  color: #2b4d3c;
  padding: 8px 12px;
  border-radius: 9px;
  background: #e8ecdf;
  display: inline-block;
}
.station .decision.holds {
  background: #f3e3d6;
  color: #7a4a30;
}
.station .decision.declined {
  background: #f3e3d6;
  color: #7a4a30;
}
.station .decision.open {
  background: #e6e7da;
  border: 1px dashed #b8c0ad;
}
.route-summary {
  margin: 4px 0 0;
  padding: 16px 18px 14px;
  border-radius: 14px;
  background: #1f3a31;
  color: #e3ecd4;
}
.route-summary .kicker {
  color: #a6b88c;
  display: block;
  margin-bottom: 12px;
}
.route-summary .hint {
  color: #b5c6a9;
  margin-top: 12px;
}
.route {
  list-style: none;
  margin: 0;
  padding: 0 0 0 4px;
  display: grid;
  gap: 0;
}
.stop {
  position: relative;
  padding: 0 0 12px 24px;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.1px;
}
.stop:not(:last-child):before {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  bottom: -2px;
  width: 1px;
  background: #7fa07a;
}
.stop-mark {
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid #cfe0a8;
  background: #1f3a31;
}
.stop.arrive .stop-mark {
  background: #cfe0a8;
}
.stop.hold {
  color: #f0c9a9;
}
.stop.hold .stop-mark {
  border-radius: 2px;
  border-color: #d99a6f;
  background: #d99a6f;
}
.stop.handled .stop-mark {
  background: #dfeab4;
  border-color: #dfeab4;
}
.stop.declined .stop-mark {
  border-color: #d99a6f;
  background: transparent;
  transform: rotate(45deg);
  border-radius: 1px;
}
.stop.open .stop-mark {
  border-style: dashed;
}
.stop.handled,
.stop.declined,
.stop.open {
  font-weight: 600;
}
.sheet-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 8px;
}
.sheet-note {
  margin-top: 4px;
}
.trial-row small.outdated {
  color: #a15037;
}
.composed-name {
  font-size: 20px !important;
  letter-spacing: -0.5px;
  margin: 4px 0 8px !important;
}
.composed-list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.55;
}
.composed-list li {
  margin: 6px 0;
}
.composed-list small {
  color: #6c7f6a;
  font-size: 11px;
}
.composed-list .hint {
  display: block;
  margin-top: 2px;
}
.composed-notes {
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f0e9de;
  border-left: 3px solid #bf815d;
}
.composed-notes h3 {
  margin: 0 0 6px !important;
  font-size: 12px !important;
}
.composed-notes ul {
  margin: 0;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: #5f4a3a;
}
@media (max-width: 1050px) {
  .is-trial .lens-dock {
    display: none;
  }
  .is-trial .scope-label {
    display: none;
  }
  .is-trial .insight-summary {
    display: none;
  }
}
@media (max-width: 900px) {
  .trial-sheet {
    width: 100%;
    box-shadow: none;
  }
  .is-trial .tool-dock,
  .is-trial .canvas-tag,
  .is-trial .canvas-footer,
  .is-trial .selection-bar {
    display: none;
  }
}
@media (max-width: 700px) {
  .lens-dock .trial-launch,
  .lens-dock .dock-separator {
    display: none;
  }
  .trial-launch-mobile {
    display: inline-flex;
    position: absolute;
    right: 12px;
    bottom: 78px;
    z-index: 5;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 11px;
    border-radius: 11px;
    background: #eef3df;
    color: #22412f;
    box-shadow: 0 8px 25px #10232040;
  }
  .trial-launch-mobile .icon {
    width: 15px;
    height: 15px;
  }
  .scope-label {
    bottom: 124px;
  }
  .trials-pill {
    right: 12px;
    top: 66px;
    padding: 6px 10px;
    font-size: 11px;
    gap: 7px;
    border-radius: 11px;
  }
  .trials-pill .icon {
    width: 15px;
    height: 15px;
  }
  .trials-pill small {
    font-size: 9px;
  }
  .trial-sheet {
    padding: 18px 16px 26px;
  }
  .sheet-head h2 {
    font-size: 21px;
  }
  .case-quote p {
    font-size: 14px;
  }
  .stations {
    padding-left: 26px;
  }
  .station-mark {
    left: -24px;
  }
}
