/* agent-band.css
 *
 * Two-row centered band between the picker and <main class="stream">.
 * Primary action "Copy init prompt" centered on top, platform shortcuts
 * (plain navigation) centered below. See ADR-0144.
 */

.agent-band {
  position: relative;
  /* Float above feed-v2 card hover/backdrop-filter effects. */
  z-index: 100;
  isolation: isolate;

  display: block;
  text-align: center;

  max-width: 1680px;
  margin: 6px auto 10px;
  padding: 10px 36px 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text, #e8e8ea);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.agent-band-primary {
  display: block;
  margin: 0 0 4px;
  text-align: center;
}

.agent-band-copy {
  display: inline-block;
  appearance: none;
  background: rgba(255, 111, 60, 0.13);
  color: #ff6f3c;
  border: 1px solid rgba(255, 111, 60, 0.38);
  border-radius: 999px;
  padding: 5px 18px;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.08s ease;
}
.agent-band-copy:hover { background: rgba(255, 111, 60, 0.22); }
.agent-band-copy:active { transform: scale(0.97); }
.agent-band-copy:focus-visible { outline: 2px solid #ff6f3c; outline-offset: 2px; }
.agent-band-copy.copied {
  background: rgba(46, 204, 113, 0.18);
  color: #4ade80;
  border-color: rgba(46, 204, 113, 0.45);
}

.agent-band-links {
  display: block;
  margin: 2px 0 0;
  text-align: center;
}
.agent-band-links a {
  display: inline-block;
  color: var(--text-muted, #a0a0a8);
  text-decoration: none;
  padding: 2px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.12s ease;
}
.agent-band-links a:last-child { border-right: 0; }
.agent-band-links a:hover { color: #ff6f3c; text-decoration: none; }

.agent-band-dismiss {
  position: absolute;
  top: 4px;
  right: 6px;
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--text-muted, #a0a0a8);
  font-size: 18px;
  line-height: 1;
  padding: 2px 6px;
  cursor: pointer;
  border-radius: 4px;
  z-index: 2;
}
.agent-band-dismiss:hover { color: var(--text, #e8e8ea); background: rgba(255, 255, 255, 0.06); }

/* Light theme */
body.light .agent-band {
  background: rgba(0, 0, 0, 0.025);
  border-color: rgba(0, 0, 0, 0.08);
}
body.light .agent-band-links a { color: #555; }

/* Mobile */
@media (max-width: 640px) {
  .agent-band { padding: 8px 28px 6px; }
  .agent-band-copy { padding: 4px 14px; font-size: 12.5px; }
  .agent-band-links a { padding: 2px 7px; font-size: 11.5px; }
}
