
        .hero-status-wrap button#hero-status-trigger:hover { border-color: var(--clay); }
        .hero-status-item {
          display: flex; align-items: center; justify-content: space-between;
          padding: 10px 14px; cursor: pointer; font-size: 13px; color: var(--ink);
          gap: 12px; transition: background 0.1s;
        }
        .hero-status-item:hover { background: rgba(245,240,232,0.7); }
        .hero-status-item.current {
          background: rgba(184,92,62,0.06);
          font-weight: 600;
        }
        .hero-status-item .lab {
          font-family: 'JetBrains Mono', monospace; font-size: 9px;
          letter-spacing: 0.06em; color: var(--ink-4); text-transform: uppercase;
        }
        .hero-status-item .pill {
          font-family: 'JetBrains Mono', monospace; font-size: 9px; font-weight: 600;
          padding: 2px 6px; border-radius: 3px; letter-spacing: 0.04em;
        }
        .hero-status-divider {
          height: 1px; background: var(--ink-4); opacity: 0.3; margin: 4px 8px;
        }
        .hero-status-section-label {
          padding: 8px 14px 4px; font-family: 'JetBrains Mono', monospace;
          font-size: 8.5px; color: var(--ink-4); letter-spacing: 0.12em;
          text-transform: uppercase; font-weight: 500;
        }
        /* Danger row · permanent-delete action.  Steven 2026-05-27:
           "i need an ability to copmletely delete permanently off
           supabase/cortex".  Lives below a divider in the hero status
           dropdown · double-confirm via deleteCurrentBid() prevents
           accidental clicks. */
        .hero-status-item.danger {
          color: #c93545;
        }
        .hero-status-item.danger:hover {
          background: rgba(201,53,69,0.08);
        }
        .hero-status-item.danger .lab {
          color: #c93545; opacity: 0.85;
        }
