.v11-focus-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 24px;
  background: rgba(4, 8, 18, 0.88);
}

.v11-focus-panel {
  width: min(920px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: #111827;
  color: #fff;
}

.v11-focus-title,
.v11-focus-intro {
  margin-top: 0;
  text-align: center;
}

.v11-focus-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.v11-focus-choice {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: #1f2937;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.v11-focus-choice:hover,
.v11-focus-choice:focus-visible {
  border-color: #f5c542;
  outline: none;
}

.v11-focus-choice strong,
.v11-focus-choice span,
.v11-status-item strong,
.v11-status-item span,
.v11-direction-card strong,
.v11-direction-card span,
.v11-direction-card small {
  display: block;
}

.v11-focus-choice span,
.v11-direction-card small {
  margin-top: 6px;
  opacity: 0.78;
}

.v11-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.v11-status-item,
.v11-direction-card,
.v11-feedback,
.v11-retirement-echoes {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.v11-direction-card {
  grid-column: 1 / -1;
}

.v11-feedback {
  margin-top: 12px;
}

.v11-feedback p,
.v11-retirement-echoes p {
  margin: 6px 0 0;
}

@media (max-width: 600px) {
  .v11-focus-overlay {
    align-items: start;
    padding: 12px;
  }

  .v11-focus-panel {
    max-height: none;
    padding: 16px;
  }

  .v11-focus-choices,
  .v11-status {
    grid-template-columns: minmax(0, 1fr);
  }

  .v11-direction-card {
    grid-column: auto;
  }
}
