#screen-question .flow-main:has(> .update-strip) {
  justify-content: flex-start;
  padding-top: 12px;
  transition: none;
}

.welcome-strip.update-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  animation: none;
}
.update-strip .ws-copy { min-width: 0; }
.update-strip .ws-actions { width: 100%; flex-wrap: wrap; justify-content: center; }
.update-strip .ws-link {
  flex: none;
  min-height: 32px;
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
}
.update-checkpoints {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
}
.update-checkpoints button {
  appearance: none;
  min-width: 0;
  min-height: 32px;
  padding: 6px 4px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--fill-1);
  color: var(--text-2);
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  cursor: pointer;
}
.update-checkpoints button:hover:not(:disabled) { border-color: var(--teal); color: var(--text); }
.update-checkpoints button:disabled { cursor: default; opacity: .5; }
.update-checkpoints button[aria-current="step"] {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--teal);
  opacity: 1;
}
.update-checkpoints button:focus-visible,
.update-exit-actions button:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.update-checkpoints-note {
  margin: 0;
  color: var(--text-2);
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0;
}
.update-exit-dialog {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(440px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-lg);
  letter-spacing: 0;
}
.update-exit-dialog::backdrop { background: color-mix(in srgb, var(--bg-1) 72%, transparent); backdrop-filter: blur(6px); }
.update-exit-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--teal);
  background: var(--teal-soft);
}
.update-exit-icon svg { width: 20px; height: 20px; }
.update-exit-dialog h2 { font-family: var(--font-display); font-size: 21px; line-height: 1.25; letter-spacing: 0; margin: 0 0 12px; }
.update-exit-dialog p { font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0; }
.update-exit-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 24px; }
.update-exit-actions button {
  appearance: none;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--fill-1);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
}
.update-exit-actions [data-exit="no"] { border-color: var(--teal); background: var(--teal-soft); }
.update-exit-actions button:hover { border-color: var(--teal); }
@media (min-width: 641px) {
  .update-checkpoints { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .update-checkpoints button { font-size: 12px; }
  .update-strip .ws-link, .update-checkpoints-note { font-size: 12px; }
}